diff --git a/BitBean-qt.pro b/BitBean-qt.pro index 429595b..f661741 100644 --- a/BitBean-qt.pro +++ b/BitBean-qt.pro @@ -1,6 +1,6 @@ TEMPLATE = app TARGET = BitBean-qt -VERSION = 1.0.7 +VERSION = 1.1.0 INCLUDEPATH += src src/json src/qt DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE CONFIG += no_include_pwd @@ -82,14 +82,15 @@ contains(USE_DBUS, 1) { QT += dbus } -contains(BITCOIN_NEED_QT_PLUGINS, 1) { - DEFINES += BITCOIN_NEED_QT_PLUGINS +contains(BITBEAN_NEED_QT_PLUGINS, 1) { + DEFINES += BITBEAN_NEED_QT_PLUGINS QTPLUGIN += qcncodecs qjpcodecs qtwcodecs qkrcodecs qtaccessiblewidgets } INCLUDEPATH += src/leveldb/include src/leveldb/helpers LIBS += $$PWD/src/leveldb/libleveldb.a $$PWD/src/leveldb/libmemenv.a -SOURCES += src/txdb-leveldb.cpp +SOURCES += src/txdb-leveldb.cpp \ + !win32 { # we use QMAKE_CXXFLAGS_RELEASE even without RELEASE=1 because we use RELEASE to indicate linking preferences not -O preferences genleveldb.commands = cd $$PWD/src/leveldb && CC=$$QMAKE_CC CXX=$$QMAKE_CXX $(MAKE) OPT=\"$$QMAKE_CXXFLAGS $$QMAKE_CXXFLAGS_RELEASE\" libleveldb.a libmemenv.a @@ -137,42 +138,31 @@ QMAKE_CXXFLAGS_WARN_ON = -fdiagnostics-show-option -Wall -Wextra -Wno-ignored-qu # Input DEPENDPATH += src src/json src/qt -HEADERS += src/qt/bitcoingui.h \ +HEADERS += src/qt/bitbeangui.h \ src/qt/transactiontablemodel.h \ src/qt/addresstablemodel.h \ src/qt/optionsdialog.h \ - src/qt/coincontroldialog.h \ - src/qt/coincontroltreewidget.h \ - src/qt/sendcoinsdialog.h \ + src/qt/beancontroldialog.h \ + src/qt/beancontroltreewidget.h \ + src/qt/sendbeansdialog.h \ src/qt/addressbookpage.h \ src/qt/signverifymessagedialog.h \ src/qt/aboutdialog.h \ src/qt/editaddressdialog.h \ - src/qt/bitcoinaddressvalidator.h \ + src/qt/bitbeanaddressvalidator.h \ src/alert.h \ src/addrman.h \ src/base58.h \ src/bignum.h \ src/checkpoints.h \ src/compat.h \ - src/coincontrol.h \ + src/beancontrol.h \ src/sync.h \ src/util.h \ src/uint256.h \ src/kernel.h \ src/scrypt.h \ src/pbkdf2.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/Coin.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/ParamGeneration.h \ - src/zerocoin/Params.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ZeroTest.h \ - src/zerocoin/Zerocoin.h \ src/serialize.h \ src/strlcpy.h \ src/main.h \ @@ -184,7 +174,6 @@ HEADERS += src/qt/bitcoingui.h \ src/walletdb.h \ src/script.h \ src/init.h \ - src/irc.h \ src/mruset.h \ src/json/json_spirit_writer_template.h \ src/json/json_spirit_writer.h \ @@ -203,19 +192,19 @@ HEADERS += src/qt/bitcoingui.h \ src/qt/monitoreddatamapper.h \ src/qt/transactiondesc.h \ src/qt/transactiondescdialog.h \ - src/qt/bitcoinamountfield.h \ + src/qt/bitbeanamountfield.h \ src/wallet.h \ src/keystore.h \ src/qt/transactionfilterproxy.h \ src/qt/transactionview.h \ src/qt/walletmodel.h \ - src/bitcoinrpc.h \ + src/bitbeanrpc.h \ src/qt/overviewpage.h \ src/qt/csvmodelwriter.h \ src/crypter.h \ - src/qt/sendcoinsentry.h \ + src/qt/sendbeansentry.h \ src/qt/qvalidatedlineedit.h \ - src/qt/bitcoinunits.h \ + src/qt/bitbeanunits.h \ src/qt/qvaluecombobox.h \ src/qt/askpassphrasedialog.h \ src/protocol.h \ @@ -226,20 +215,20 @@ HEADERS += src/qt/bitcoingui.h \ src/qt/rpcconsole.h \ src/version.h \ src/netbase.h \ - src/clientversion.h + src/clientversion.h \ -SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \ +SOURCES += src/qt/bitbean.cpp src/qt/bitbeangui.cpp \ src/qt/transactiontablemodel.cpp \ src/qt/addresstablemodel.cpp \ src/qt/optionsdialog.cpp \ - src/qt/sendcoinsdialog.cpp \ - src/qt/coincontroldialog.cpp \ - src/qt/coincontroltreewidget.cpp \ + src/qt/sendbeansdialog.cpp \ + src/qt/beancontroldialog.cpp \ + src/qt/beancontroltreewidget.cpp \ src/qt/addressbookpage.cpp \ src/qt/signverifymessagedialog.cpp \ src/qt/aboutdialog.cpp \ src/qt/editaddressdialog.cpp \ - src/qt/bitcoinaddressvalidator.cpp \ + src/qt/bitbeanaddressvalidator.cpp \ src/alert.cpp \ src/version.cpp \ src/sync.cpp \ @@ -251,7 +240,6 @@ SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \ src/miner.cpp \ src/init.cpp \ src/net.cpp \ - src/irc.cpp \ src/checkpoints.cpp \ src/addrman.cpp \ src/db.cpp \ @@ -263,14 +251,14 @@ SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \ src/qt/monitoreddatamapper.cpp \ src/qt/transactiondesc.cpp \ src/qt/transactiondescdialog.cpp \ - src/qt/bitcoinstrings.cpp \ - src/qt/bitcoinamountfield.cpp \ + src/qt/bitbeanstrings.cpp \ + src/qt/bitbeanamountfield.cpp \ src/wallet.cpp \ src/keystore.cpp \ src/qt/transactionfilterproxy.cpp \ src/qt/transactionview.cpp \ src/qt/walletmodel.cpp \ - src/bitcoinrpc.cpp \ + src/bitbeanrpc.cpp \ src/rpcdump.cpp \ src/rpcnet.cpp \ src/rpcmining.cpp \ @@ -280,9 +268,9 @@ SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \ src/qt/overviewpage.cpp \ src/qt/csvmodelwriter.cpp \ src/crypter.cpp \ - src/qt/sendcoinsentry.cpp \ + src/qt/sendbeansentry.cpp \ src/qt/qvalidatedlineedit.cpp \ - src/qt/bitcoinunits.cpp \ + src/qt/bitbeanunits.cpp \ src/qt/qvaluecombobox.cpp \ src/qt/askpassphrasedialog.cpp \ src/protocol.cpp \ @@ -296,33 +284,23 @@ SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \ src/scrypt-x86_64.S \ src/scrypt.cpp \ src/pbkdf2.cpp \ - src/zerocoin/Accumulator.cpp \ - src/zerocoin/AccumulatorProofOfKnowledge.cpp \ - src/zerocoin/Coin.cpp \ - src/zerocoin/CoinSpend.cpp \ - src/zerocoin/Commitment.cpp \ - src/zerocoin/ParamGeneration.cpp \ - src/zerocoin/Params.cpp \ - src/zerocoin/SerialNumberSignatureOfKnowledge.cpp \ - src/zerocoin/SpendMetaData.cpp \ - src/zerocoin/ZeroTest.cpp RESOURCES += \ - src/qt/bitcoin.qrc + src/qt/bitbean.qrc FORMS += \ - src/qt/forms/coincontroldialog.ui \ - src/qt/forms/sendcoinsdialog.ui \ + src/qt/forms/beancontroldialog.ui \ + src/qt/forms/sendbeansdialog.ui \ src/qt/forms/addressbookpage.ui \ src/qt/forms/signverifymessagedialog.ui \ src/qt/forms/aboutdialog.ui \ src/qt/forms/editaddressdialog.ui \ src/qt/forms/transactiondescdialog.ui \ src/qt/forms/overviewpage.ui \ - src/qt/forms/sendcoinsentry.ui \ + src/qt/forms/sendbeansentry.ui \ src/qt/forms/askpassphrasedialog.ui \ src/qt/forms/rpcconsole.ui \ - src/qt/forms/optionsdialog.ui + src/qt/forms/optionsdialog.ui \ contains(USE_QRCODE, 1) { HEADERS += src/qt/qrcodedialog.h @@ -333,8 +311,8 @@ FORMS += src/qt/forms/qrcodedialog.ui CODECFORTR = UTF-8 # for lrelease/lupdate -# also add new translations to src/qt/bitcoin.qrc under translations/ -TRANSLATIONS = $$files(src/qt/locale/bitcoin_*.ts) +# also add new translations to src/qt/bitbean.qrc under translations/ +TRANSLATIONS = $$files(src/qt/locale/bitbean_*.ts) isEmpty(QMAKE_LRELEASE) { win32:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\\lrelease.exe @@ -351,7 +329,7 @@ QMAKE_EXTRA_COMPILERS += TSQM # "Other files" to show in Qt Creator OTHER_FILES += \ - doc/*.rst doc/*.txt doc/README README.md res/bitcoin-qt.rc + doc/*.rst doc/*.txt doc/README README.md res/bitbean-qt.rc # platform specific defaults, if not overridden on command line isEmpty(BOOST_LIB_SUFFIX) { @@ -385,7 +363,7 @@ isEmpty(BOOST_INCLUDE_PATH) { } windows:DEFINES += WIN32 -windows:RC_FILE = src/qt/res/bitcoin-qt.rc +windows:RC_FILE = src/qt/res/bitbean-qt.rc windows:!contains(MINGW_THREAD_BUGFIX, 0) { # At least qmake's win32-g++-cross profile is missing the -lmingwthrd @@ -402,7 +380,7 @@ macx:HEADERS += src/qt/macdockiconhandler.h macx:OBJECTIVE_SOURCES += src/qt/macdockiconhandler.mm macx:LIBS += -framework Foundation -framework ApplicationServices -framework AppKit macx:DEFINES += MAC_OSX MSG_NOSIGNAL=0 -macx:ICON = src/qt/res/icons/bitcoin.icns +macx:ICON = src/qt/res/icons/bitbean.icns macx:TARGET = "BitBean-Qt" macx:QMAKE_CFLAGS_THREAD += -pthread macx:QMAKE_LFLAGS_THREAD += -pthread diff --git a/BitBean-qt.pro.user b/BitBean-qt.pro.user deleted file mode 100644 index 60ee82e..0000000 --- a/BitBean-qt.pro.user +++ /dev/null @@ -1,251 +0,0 @@ - - - - - - ProjectExplorer.Project.ActiveTarget - 0 - - - ProjectExplorer.Project.EditorSettings - - true - false - true - - Cpp - - CppGlobal - - - - QmlJS - - QmlJSGlobal - - - 2 - UTF-8 - false - 4 - false - 80 - true - true - 1 - true - false - 0 - true - 0 - 8 - true - 1 - true - true - true - false - - - - ProjectExplorer.Project.PluginSettings - - - - ProjectExplorer.Project.Target.0 - - static - static - {ae62291f-c27d-4e6c-8aab-f04d7f6ee3b8} - 1 - 0 - 0 - - C:/Users/Matthew/Desktop/coin_building/build-BitBean-qt-static-Debug - - - true - qmake - - QtProjectManager.QMakeBuildStep - false - true - - false - - - true - Make - - Qt4ProjectManager.MakeStep - - false - - - - 2 - Build - - ProjectExplorer.BuildSteps.Build - - - - true - Make - - Qt4ProjectManager.MakeStep - - true - clean - - - 1 - Clean - - ProjectExplorer.BuildSteps.Clean - - 2 - false - - Debug - - Qt4ProjectManager.Qt4BuildConfiguration - 2 - true - - - C:/Users/Matthew/Desktop/coin_building/build-BitBean-qt-static-Release - - - true - qmake - - QtProjectManager.QMakeBuildStep - false - true - - false - - - true - Make - - Qt4ProjectManager.MakeStep - - false - - - - 2 - Build - - ProjectExplorer.BuildSteps.Build - - - - true - Make - - Qt4ProjectManager.MakeStep - - true - clean - - - 1 - Clean - - ProjectExplorer.BuildSteps.Clean - - 2 - false - - Release - - Qt4ProjectManager.Qt4BuildConfiguration - 0 - true - - 2 - - - 0 - Deploy - - ProjectExplorer.BuildSteps.Deploy - - 1 - Deploy locally - - ProjectExplorer.DefaultDeployConfiguration - - 1 - - - - false - false - false - false - true - 0.01 - 10 - true - 1 - 25 - - 1 - true - false - true - valgrind - - 0 - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - - 2 - - BitBean-qt - - Qt4ProjectManager.Qt4RunConfiguration:C:/Users/Matthew/Desktop/coin_building/BitBean/BitBean-qt.pro - - BitBean-qt.pro - false - false - - 3768 - false - true - false - false - true - - 1 - - - - ProjectExplorer.Project.TargetCount - 1 - - - ProjectExplorer.Project.Updater.EnvironmentId - {a200086b-8fc5-4ec1-8342-0db763fe7420} - - - ProjectExplorer.Project.Updater.FileVersion - 15 - - diff --git a/BitBeanLogo.png b/BitBeanLogo.png new file mode 100644 index 0000000..b393b13 Binary files /dev/null and b/BitBeanLogo.png differ diff --git a/COPYING b/COPYING index 94460d4..228047d 100644 --- a/COPYING +++ b/COPYING @@ -1,3 +1,4 @@ +Copyright (c) 2015 Bean Core Developers www.bitbean.org Copyright (c) 2015 BitBean Developers Copyright (c) 2014 BitcoinDark Developers Copyright (c) 2014 Blackcoin Developers diff --git a/INSTALL b/INSTALL index be21227..5e35225 100644 --- a/INSTALL +++ b/INSTALL @@ -4,6 +4,6 @@ See doc/readme-qt.rst for instructions on building BitBean QT, the intended-for-end-users, nice-graphical-interface, reference implementation of BitBean. -See doc/build-*.txt for instructions on building Testcoind, +See doc/build-*.txt for instructions on building bitbeand, the intended-for-services, no-graphical-interface, reference implementation of BitBean. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..16ddee3 --- /dev/null +++ b/Makefile @@ -0,0 +1,2453 @@ +############################################################################# +# Makefile for building: BitBean-qt +# Generated by qmake (2.01a) (Qt 4.8.6) on: Sun Sep 20 08:25:36 2015 +# Project: BitBean-qt.pro +# Template: app +# Command: /usr/lib/i386-linux-gnu/qt4/bin/qmake USE_UPNP=- USE_QRCODE=1 -o Makefile BitBean-qt.pro +############################################################################# + +####### Compiler, tools and options + +CC = gcc +CXX = g++ +DEFINES = -DQT_WEBKIT -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DUSE_QRCODE -DHAVE_BUILD_INFO -DLINUX -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED +CFLAGS = -pipe -O2 -D_REENTRANT -Wall -W $(DEFINES) +CXXFLAGS = -pipe -fstack-protector-all --param ssp-buffer-size=1 -O2 -D_REENTRANT -fdiagnostics-show-option -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector $(DEFINES) +INCPATH = -I/usr/share/qt4/mkspecs/linux-g++ -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 -Isrc -Isrc/json -Isrc/qt -Isrc/leveldb/include -Isrc/leveldb/helpers -Ibuild -Ibuild +LINK = g++ +LFLAGS = -fstack-protector-all --param ssp-buffer-size=1 -Wl,-O1 +LIBS = $(SUBLIBS) -L/usr/lib/i386-linux-gnu -lqrencode /home/jeramie/BitBean/bitbean-core/src/leveldb/libleveldb.a /home/jeramie/BitBean/bitbean-core/src/leveldb/libmemenv.a -lssl -lcrypto -ldb_cxx -lboost_system -lboost_filesystem -lboost_program_options -lboost_thread -lrt -ldl -lpthread -lQtGui -lQtCore +AR = ar cqs +RANLIB = +QMAKE = /usr/lib/i386-linux-gnu/qt4/bin/qmake +TAR = tar -cf +COMPRESS = gzip -9f +COPY = cp -f +SED = sed +COPY_FILE = $(COPY) +COPY_DIR = $(COPY) -r +STRIP = strip +INSTALL_FILE = install -m 644 -p +INSTALL_DIR = $(COPY_DIR) +INSTALL_PROGRAM = install -m 755 -p +DEL_FILE = rm -f +SYMLINK = ln -f -s +DEL_DIR = rmdir +MOVE = mv -f +CHK_DIR_EXISTS= test -d +MKDIR = mkdir -p + +####### Output directory + +OBJECTS_DIR = build/ + +####### Files + +SOURCES = src/txdb-leveldb.cpp \ + src/qt/bitbean.cpp \ + src/qt/bitbeangui.cpp \ + src/qt/transactiontablemodel.cpp \ + src/qt/addresstablemodel.cpp \ + src/qt/optionsdialog.cpp \ + src/qt/sendbeansdialog.cpp \ + src/qt/beancontroldialog.cpp \ + src/qt/beancontroltreewidget.cpp \ + src/qt/addressbookpage.cpp \ + src/qt/signverifymessagedialog.cpp \ + src/qt/aboutdialog.cpp \ + src/qt/editaddressdialog.cpp \ + src/qt/bitbeanaddressvalidator.cpp \ + src/alert.cpp \ + src/version.cpp \ + src/sync.cpp \ + src/util.cpp \ + src/netbase.cpp \ + src/key.cpp \ + src/script.cpp \ + src/main.cpp \ + src/miner.cpp \ + src/init.cpp \ + src/net.cpp \ + src/checkpoints.cpp \ + src/addrman.cpp \ + src/db.cpp \ + src/walletdb.cpp \ + src/qt/clientmodel.cpp \ + src/qt/guiutil.cpp \ + src/qt/transactionrecord.cpp \ + src/qt/optionsmodel.cpp \ + src/qt/monitoreddatamapper.cpp \ + src/qt/transactiondesc.cpp \ + src/qt/transactiondescdialog.cpp \ + src/qt/bitbeanstrings.cpp \ + src/qt/bitbeanamountfield.cpp \ + src/wallet.cpp \ + src/keystore.cpp \ + src/qt/transactionfilterproxy.cpp \ + src/qt/transactionview.cpp \ + src/qt/walletmodel.cpp \ + src/bitbeanrpc.cpp \ + src/rpcdump.cpp \ + src/rpcnet.cpp \ + src/rpcmining.cpp \ + src/rpcwallet.cpp \ + src/rpcblockchain.cpp \ + src/rpcrawtransaction.cpp \ + src/qt/overviewpage.cpp \ + src/qt/csvmodelwriter.cpp \ + src/crypter.cpp \ + src/qt/sendbeansentry.cpp \ + src/qt/qvalidatedlineedit.cpp \ + src/qt/bitbeanunits.cpp \ + src/qt/qvaluecombobox.cpp \ + src/qt/askpassphrasedialog.cpp \ + src/protocol.cpp \ + src/qt/notificator.cpp \ + src/qt/qtipcserver.cpp \ + src/qt/rpcconsole.cpp \ + src/noui.cpp \ + src/kernel.cpp \ + src/scrypt-arm.S \ + src/scrypt-x86.S \ + src/scrypt-x86_64.S \ + src/scrypt.cpp \ + src/pbkdf2.cpp \ + src/qt/qrcodedialog.cpp build/moc_bitbeangui.cpp \ + build/moc_transactiontablemodel.cpp \ + build/moc_addresstablemodel.cpp \ + build/moc_optionsdialog.cpp \ + build/moc_beancontroldialog.cpp \ + build/moc_beancontroltreewidget.cpp \ + build/moc_sendbeansdialog.cpp \ + build/moc_addressbookpage.cpp \ + build/moc_signverifymessagedialog.cpp \ + build/moc_aboutdialog.cpp \ + build/moc_editaddressdialog.cpp \ + build/moc_bitbeanaddressvalidator.cpp \ + build/moc_clientmodel.cpp \ + build/moc_guiutil.cpp \ + build/moc_optionsmodel.cpp \ + build/moc_monitoreddatamapper.cpp \ + build/moc_transactiondesc.cpp \ + build/moc_transactiondescdialog.cpp \ + build/moc_bitbeanamountfield.cpp \ + build/moc_transactionfilterproxy.cpp \ + build/moc_transactionview.cpp \ + build/moc_walletmodel.cpp \ + build/moc_overviewpage.cpp \ + build/moc_csvmodelwriter.cpp \ + build/moc_sendbeansentry.cpp \ + build/moc_qvalidatedlineedit.cpp \ + build/moc_qvaluecombobox.cpp \ + build/moc_askpassphrasedialog.cpp \ + build/moc_notificator.cpp \ + build/moc_rpcconsole.cpp \ + build/moc_qrcodedialog.cpp \ + qrc_bitbean.cpp +OBJECTS = build/txdb-leveldb.o \ + build/bitbean.o \ + build/bitbeangui.o \ + build/transactiontablemodel.o \ + build/addresstablemodel.o \ + build/optionsdialog.o \ + build/sendbeansdialog.o \ + build/beancontroldialog.o \ + build/beancontroltreewidget.o \ + build/addressbookpage.o \ + build/signverifymessagedialog.o \ + build/aboutdialog.o \ + build/editaddressdialog.o \ + build/bitbeanaddressvalidator.o \ + build/alert.o \ + build/version.o \ + build/sync.o \ + build/util.o \ + build/netbase.o \ + build/key.o \ + build/script.o \ + build/main.o \ + build/miner.o \ + build/init.o \ + build/net.o \ + build/checkpoints.o \ + build/addrman.o \ + build/db.o \ + build/walletdb.o \ + build/clientmodel.o \ + build/guiutil.o \ + build/transactionrecord.o \ + build/optionsmodel.o \ + build/monitoreddatamapper.o \ + build/transactiondesc.o \ + build/transactiondescdialog.o \ + build/bitbeanstrings.o \ + build/bitbeanamountfield.o \ + build/wallet.o \ + build/keystore.o \ + build/transactionfilterproxy.o \ + build/transactionview.o \ + build/walletmodel.o \ + build/bitbeanrpc.o \ + build/rpcdump.o \ + build/rpcnet.o \ + build/rpcmining.o \ + build/rpcwallet.o \ + build/rpcblockchain.o \ + build/rpcrawtransaction.o \ + build/overviewpage.o \ + build/csvmodelwriter.o \ + build/crypter.o \ + build/sendbeansentry.o \ + build/qvalidatedlineedit.o \ + build/bitbeanunits.o \ + build/qvaluecombobox.o \ + build/askpassphrasedialog.o \ + build/protocol.o \ + build/notificator.o \ + build/qtipcserver.o \ + build/rpcconsole.o \ + build/noui.o \ + build/kernel.o \ + build/scrypt-arm.o \ + build/scrypt-x86.o \ + build/scrypt-x86_64.o \ + build/scrypt.o \ + build/pbkdf2.o \ + build/qrcodedialog.o \ + build/moc_bitbeangui.o \ + build/moc_transactiontablemodel.o \ + build/moc_addresstablemodel.o \ + build/moc_optionsdialog.o \ + build/moc_beancontroldialog.o \ + build/moc_beancontroltreewidget.o \ + build/moc_sendbeansdialog.o \ + build/moc_addressbookpage.o \ + build/moc_signverifymessagedialog.o \ + build/moc_aboutdialog.o \ + build/moc_editaddressdialog.o \ + build/moc_bitbeanaddressvalidator.o \ + build/moc_clientmodel.o \ + build/moc_guiutil.o \ + build/moc_optionsmodel.o \ + build/moc_monitoreddatamapper.o \ + build/moc_transactiondesc.o \ + build/moc_transactiondescdialog.o \ + build/moc_bitbeanamountfield.o \ + build/moc_transactionfilterproxy.o \ + build/moc_transactionview.o \ + build/moc_walletmodel.o \ + build/moc_overviewpage.o \ + build/moc_csvmodelwriter.o \ + build/moc_sendbeansentry.o \ + build/moc_qvalidatedlineedit.o \ + build/moc_qvaluecombobox.o \ + build/moc_askpassphrasedialog.o \ + build/moc_notificator.o \ + build/moc_rpcconsole.o \ + build/moc_qrcodedialog.o \ + build/qrc_bitbean.o +DIST = /usr/share/qt4/mkspecs/common/unix.conf \ + /usr/share/qt4/mkspecs/common/linux.conf \ + /usr/share/qt4/mkspecs/common/gcc-base.conf \ + /usr/share/qt4/mkspecs/common/gcc-base-unix.conf \ + /usr/share/qt4/mkspecs/common/g++-base.conf \ + /usr/share/qt4/mkspecs/common/g++-unix.conf \ + /usr/share/qt4/mkspecs/qconfig.pri \ + /usr/share/qt4/mkspecs/modules/qt_webkit.pri \ + /usr/share/qt4/mkspecs/features/qt_functions.prf \ + /usr/share/qt4/mkspecs/features/qt_config.prf \ + /usr/share/qt4/mkspecs/features/exclusive_builds.prf \ + /usr/share/qt4/mkspecs/features/default_pre.prf \ + /usr/share/qt4/mkspecs/features/release.prf \ + /usr/share/qt4/mkspecs/features/default_post.prf \ + /usr/share/qt4/mkspecs/features/unix/thread.prf \ + /usr/share/qt4/mkspecs/features/shared.prf \ + /usr/share/qt4/mkspecs/features/unix/gdb_dwarf_index.prf \ + /usr/share/qt4/mkspecs/features/warn_on.prf \ + /usr/share/qt4/mkspecs/features/qt.prf \ + /usr/share/qt4/mkspecs/features/moc.prf \ + /usr/share/qt4/mkspecs/features/resources.prf \ + /usr/share/qt4/mkspecs/features/uic.prf \ + /usr/share/qt4/mkspecs/features/yacc.prf \ + /usr/share/qt4/mkspecs/features/lex.prf \ + BitBean-qt.pro +QMAKE_TARGET = BitBean-qt +DESTDIR = +TARGET = BitBean-qt + +first: all +####### Implicit rules + +.SUFFIXES: .o .c .cpp .cc .cxx .C + +.cpp.o: + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<" + +.cc.o: + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<" + +.cxx.o: + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<" + +.C.o: + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<" + +.c.o: + $(CC) -c $(CFLAGS) $(INCPATH) -o "$@" "$<" + +####### Build rules + +all: Makefile $(TARGET) + +$(TARGET): /home/jeramie/BitBean/bitbean-core/src/leveldb/libleveldb.a /home/jeramie/BitBean/bitbean-core/build/build.h build/ui_beancontroldialog.h build/ui_sendbeansdialog.h build/ui_addressbookpage.h build/ui_signverifymessagedialog.h build/ui_aboutdialog.h build/ui_editaddressdialog.h build/ui_transactiondescdialog.h build/ui_overviewpage.h build/ui_sendbeansentry.h build/ui_askpassphrasedialog.h build/ui_rpcconsole.h build/ui_optionsdialog.h build/ui_qrcodedialog.h $(OBJECTS) + $(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS) + +Makefile: BitBean-qt.pro /usr/share/qt4/mkspecs/linux-g++/qmake.conf /usr/share/qt4/mkspecs/common/unix.conf \ + /usr/share/qt4/mkspecs/common/linux.conf \ + /usr/share/qt4/mkspecs/common/gcc-base.conf \ + /usr/share/qt4/mkspecs/common/gcc-base-unix.conf \ + /usr/share/qt4/mkspecs/common/g++-base.conf \ + /usr/share/qt4/mkspecs/common/g++-unix.conf \ + /usr/share/qt4/mkspecs/qconfig.pri \ + /usr/share/qt4/mkspecs/modules/qt_webkit.pri \ + /usr/share/qt4/mkspecs/features/qt_functions.prf \ + /usr/share/qt4/mkspecs/features/qt_config.prf \ + /usr/share/qt4/mkspecs/features/exclusive_builds.prf \ + /usr/share/qt4/mkspecs/features/default_pre.prf \ + /usr/share/qt4/mkspecs/features/release.prf \ + /usr/share/qt4/mkspecs/features/default_post.prf \ + /usr/share/qt4/mkspecs/features/unix/thread.prf \ + /usr/share/qt4/mkspecs/features/shared.prf \ + /usr/share/qt4/mkspecs/features/unix/gdb_dwarf_index.prf \ + /usr/share/qt4/mkspecs/features/warn_on.prf \ + /usr/share/qt4/mkspecs/features/qt.prf \ + /usr/share/qt4/mkspecs/features/moc.prf \ + /usr/share/qt4/mkspecs/features/resources.prf \ + /usr/share/qt4/mkspecs/features/uic.prf \ + /usr/share/qt4/mkspecs/features/yacc.prf \ + /usr/share/qt4/mkspecs/features/lex.prf \ + /usr/lib/i386-linux-gnu/libQtGui.prl \ + /usr/lib/i386-linux-gnu/libQtCore.prl + $(QMAKE) USE_UPNP=- USE_QRCODE=1 -o Makefile BitBean-qt.pro +/usr/share/qt4/mkspecs/common/unix.conf: +/usr/share/qt4/mkspecs/common/linux.conf: +/usr/share/qt4/mkspecs/common/gcc-base.conf: +/usr/share/qt4/mkspecs/common/gcc-base-unix.conf: +/usr/share/qt4/mkspecs/common/g++-base.conf: +/usr/share/qt4/mkspecs/common/g++-unix.conf: +/usr/share/qt4/mkspecs/qconfig.pri: +/usr/share/qt4/mkspecs/modules/qt_webkit.pri: +/usr/share/qt4/mkspecs/features/qt_functions.prf: +/usr/share/qt4/mkspecs/features/qt_config.prf: +/usr/share/qt4/mkspecs/features/exclusive_builds.prf: +/usr/share/qt4/mkspecs/features/default_pre.prf: +/usr/share/qt4/mkspecs/features/release.prf: +/usr/share/qt4/mkspecs/features/default_post.prf: +/usr/share/qt4/mkspecs/features/unix/thread.prf: +/usr/share/qt4/mkspecs/features/shared.prf: +/usr/share/qt4/mkspecs/features/unix/gdb_dwarf_index.prf: +/usr/share/qt4/mkspecs/features/warn_on.prf: +/usr/share/qt4/mkspecs/features/qt.prf: +/usr/share/qt4/mkspecs/features/moc.prf: +/usr/share/qt4/mkspecs/features/resources.prf: +/usr/share/qt4/mkspecs/features/uic.prf: +/usr/share/qt4/mkspecs/features/yacc.prf: +/usr/share/qt4/mkspecs/features/lex.prf: +/usr/lib/i386-linux-gnu/libQtGui.prl: +/usr/lib/i386-linux-gnu/libQtCore.prl: +qmake: FORCE + @$(QMAKE) USE_UPNP=- USE_QRCODE=1 -o Makefile BitBean-qt.pro + +dist: + @$(CHK_DIR_EXISTS) build/BitBean-qt1.1.0 || $(MKDIR) build/BitBean-qt1.1.0 + $(COPY_FILE) --parents $(SOURCES) $(DIST) build/BitBean-qt1.1.0/ && $(COPY_FILE) --parents src/qt/locale/bitbean_af_ZA.ts src/qt/locale/bitbean_ar.ts src/qt/locale/bitbean_be_BY.ts src/qt/locale/bitbean_bg.ts src/qt/locale/bitbean_bs.ts src/qt/locale/bitbean_ca.ts src/qt/locale/bitbean_ca@valencia.ts src/qt/locale/bitbean_ca_ES.ts src/qt/locale/bitbean_cs.ts src/qt/locale/bitbean_cy.ts src/qt/locale/bitbean_da.ts src/qt/locale/bitbean_de.ts src/qt/locale/bitbean_el_GR.ts src/qt/locale/bitbean_en.ts src/qt/locale/bitbean_eo.ts src/qt/locale/bitbean_es.ts src/qt/locale/bitbean_es_CL.ts src/qt/locale/bitbean_es_DO.ts src/qt/locale/bitbean_es_MX.ts src/qt/locale/bitbean_es_UY.ts src/qt/locale/bitbean_et.ts src/qt/locale/bitbean_eu_ES.ts src/qt/locale/bitbean_fa.ts src/qt/locale/bitbean_fa_IR.ts src/qt/locale/bitbean_fi.ts src/qt/locale/bitbean_fr.ts src/qt/locale/bitbean_fr_CA.ts src/qt/locale/bitbean_gl.ts src/qt/locale/bitbean_he.ts src/qt/locale/bitbean_hi_IN.ts src/qt/locale/bitbean_hr.ts src/qt/locale/bitbean_hu.ts src/qt/locale/bitbean_id_ID.ts src/qt/locale/bitbean_it.ts src/qt/locale/bitbean_ja.ts src/qt/locale/bitbean_ka.ts src/qt/locale/bitbean_kk_KZ.ts src/qt/locale/bitbean_ko_KR.ts src/qt/locale/bitbean_ky.ts src/qt/locale/bitbean_la.ts src/qt/locale/bitbean_lt.ts src/qt/locale/bitbean_lv_LV.ts src/qt/locale/bitbean_ms_MY.ts src/qt/locale/bitbean_nb.ts src/qt/locale/bitbean_nl.ts src/qt/locale/bitbean_pam.ts src/qt/locale/bitbean_pl.ts src/qt/locale/bitbean_pt_BR.ts src/qt/locale/bitbean_pt_PT.ts src/qt/locale/bitbean_ro_RO.ts src/qt/locale/bitbean_ru.ts src/qt/locale/bitbean_sah.ts src/qt/locale/bitbean_sk.ts src/qt/locale/bitbean_sl_SI.ts src/qt/locale/bitbean_sq.ts src/qt/locale/bitbean_sr.ts src/qt/locale/bitbean_sv.ts src/qt/locale/bitbean_th_TH.ts src/qt/locale/bitbean_tr.ts src/qt/locale/bitbean_uk.ts src/qt/locale/bitbean_ur_PK.ts src/qt/locale/bitbean_vi.ts src/qt/locale/bitbean_vi_VN.ts src/qt/locale/bitbean_zh_CN.ts src/qt/locale/bitbean_zh_TW.ts build/BitBean-qt1.1.0/ && $(COPY_FILE) --parents src/qt/bitbeangui.h src/qt/transactiontablemodel.h src/qt/addresstablemodel.h src/qt/optionsdialog.h src/qt/beancontroldialog.h src/qt/beancontroltreewidget.h src/qt/sendbeansdialog.h src/qt/addressbookpage.h src/qt/signverifymessagedialog.h src/qt/aboutdialog.h src/qt/editaddressdialog.h src/qt/bitbeanaddressvalidator.h src/alert.h src/addrman.h src/base58.h src/bignum.h src/checkpoints.h src/compat.h src/beancontrol.h src/sync.h src/util.h src/uint256.h src/kernel.h src/scrypt.h src/pbkdf2.h src/serialize.h src/strlcpy.h src/main.h src/miner.h src/net.h src/key.h src/db.h src/txdb.h src/walletdb.h src/script.h src/init.h src/mruset.h src/json/json_spirit_writer_template.h src/json/json_spirit_writer.h src/json/json_spirit_value.h src/json/json_spirit_utils.h src/json/json_spirit_stream_reader.h src/json/json_spirit_reader_template.h src/json/json_spirit_reader.h src/json/json_spirit_error_position.h src/json/json_spirit.h src/qt/clientmodel.h src/qt/guiutil.h src/qt/transactionrecord.h src/qt/guiconstants.h src/qt/optionsmodel.h src/qt/monitoreddatamapper.h src/qt/transactiondesc.h src/qt/transactiondescdialog.h src/qt/bitbeanamountfield.h src/wallet.h src/keystore.h src/qt/transactionfilterproxy.h src/qt/transactionview.h src/qt/walletmodel.h src/bitbeanrpc.h src/qt/overviewpage.h src/qt/csvmodelwriter.h src/crypter.h src/qt/sendbeansentry.h src/qt/qvalidatedlineedit.h src/qt/bitbeanunits.h src/qt/qvaluecombobox.h src/qt/askpassphrasedialog.h src/protocol.h src/qt/notificator.h src/qt/qtipcserver.h src/allocators.h src/ui_interface.h src/qt/rpcconsole.h src/version.h src/netbase.h src/clientversion.h src/qt/qrcodedialog.h build/BitBean-qt1.1.0/ && $(COPY_FILE) --parents src/qt/bitbean.qrc build/BitBean-qt1.1.0/ && $(COPY_FILE) --parents src/txdb-leveldb.cpp src/qt/bitbean.cpp src/qt/bitbeangui.cpp src/qt/transactiontablemodel.cpp src/qt/addresstablemodel.cpp src/qt/optionsdialog.cpp src/qt/sendbeansdialog.cpp src/qt/beancontroldialog.cpp src/qt/beancontroltreewidget.cpp src/qt/addressbookpage.cpp src/qt/signverifymessagedialog.cpp src/qt/aboutdialog.cpp src/qt/editaddressdialog.cpp src/qt/bitbeanaddressvalidator.cpp src/alert.cpp src/version.cpp src/sync.cpp src/util.cpp src/netbase.cpp src/key.cpp src/script.cpp src/main.cpp src/miner.cpp src/init.cpp src/net.cpp src/checkpoints.cpp src/addrman.cpp src/db.cpp src/walletdb.cpp src/qt/clientmodel.cpp src/qt/guiutil.cpp src/qt/transactionrecord.cpp src/qt/optionsmodel.cpp src/qt/monitoreddatamapper.cpp src/qt/transactiondesc.cpp src/qt/transactiondescdialog.cpp src/qt/bitbeanstrings.cpp src/qt/bitbeanamountfield.cpp src/wallet.cpp src/keystore.cpp src/qt/transactionfilterproxy.cpp src/qt/transactionview.cpp src/qt/walletmodel.cpp src/bitbeanrpc.cpp src/rpcdump.cpp src/rpcnet.cpp src/rpcmining.cpp src/rpcwallet.cpp src/rpcblockchain.cpp src/rpcrawtransaction.cpp src/qt/overviewpage.cpp src/qt/csvmodelwriter.cpp src/crypter.cpp src/qt/sendbeansentry.cpp src/qt/qvalidatedlineedit.cpp src/qt/bitbeanunits.cpp src/qt/qvaluecombobox.cpp src/qt/askpassphrasedialog.cpp src/protocol.cpp src/qt/notificator.cpp src/qt/qtipcserver.cpp src/qt/rpcconsole.cpp src/noui.cpp src/kernel.cpp src/scrypt-arm.S src/scrypt-x86.S src/scrypt-x86_64.S src/scrypt.cpp src/pbkdf2.cpp src/qt/qrcodedialog.cpp build/BitBean-qt1.1.0/ && $(COPY_FILE) --parents src/qt/forms/beancontroldialog.ui src/qt/forms/sendbeansdialog.ui src/qt/forms/addressbookpage.ui src/qt/forms/signverifymessagedialog.ui src/qt/forms/aboutdialog.ui src/qt/forms/editaddressdialog.ui src/qt/forms/transactiondescdialog.ui src/qt/forms/overviewpage.ui src/qt/forms/sendbeansentry.ui src/qt/forms/askpassphrasedialog.ui src/qt/forms/rpcconsole.ui src/qt/forms/optionsdialog.ui src/qt/forms/qrcodedialog.ui build/BitBean-qt1.1.0/ && $(COPY_FILE) --parents src/qt/locale/bitbean_af_ZA.ts src/qt/locale/bitbean_ar.ts src/qt/locale/bitbean_be_BY.ts src/qt/locale/bitbean_bg.ts src/qt/locale/bitbean_bs.ts src/qt/locale/bitbean_ca.ts src/qt/locale/bitbean_ca@valencia.ts src/qt/locale/bitbean_ca_ES.ts src/qt/locale/bitbean_cs.ts src/qt/locale/bitbean_cy.ts src/qt/locale/bitbean_da.ts src/qt/locale/bitbean_de.ts src/qt/locale/bitbean_el_GR.ts src/qt/locale/bitbean_en.ts src/qt/locale/bitbean_eo.ts src/qt/locale/bitbean_es.ts src/qt/locale/bitbean_es_CL.ts src/qt/locale/bitbean_es_DO.ts src/qt/locale/bitbean_es_MX.ts src/qt/locale/bitbean_es_UY.ts src/qt/locale/bitbean_et.ts src/qt/locale/bitbean_eu_ES.ts src/qt/locale/bitbean_fa.ts src/qt/locale/bitbean_fa_IR.ts src/qt/locale/bitbean_fi.ts src/qt/locale/bitbean_fr.ts src/qt/locale/bitbean_fr_CA.ts src/qt/locale/bitbean_gl.ts src/qt/locale/bitbean_he.ts src/qt/locale/bitbean_hi_IN.ts src/qt/locale/bitbean_hr.ts src/qt/locale/bitbean_hu.ts src/qt/locale/bitbean_id_ID.ts src/qt/locale/bitbean_it.ts src/qt/locale/bitbean_ja.ts src/qt/locale/bitbean_ka.ts src/qt/locale/bitbean_kk_KZ.ts src/qt/locale/bitbean_ko_KR.ts src/qt/locale/bitbean_ky.ts src/qt/locale/bitbean_la.ts src/qt/locale/bitbean_lt.ts src/qt/locale/bitbean_lv_LV.ts src/qt/locale/bitbean_ms_MY.ts src/qt/locale/bitbean_nb.ts src/qt/locale/bitbean_nl.ts src/qt/locale/bitbean_pam.ts src/qt/locale/bitbean_pl.ts src/qt/locale/bitbean_pt_BR.ts src/qt/locale/bitbean_pt_PT.ts src/qt/locale/bitbean_ro_RO.ts src/qt/locale/bitbean_ru.ts src/qt/locale/bitbean_sah.ts src/qt/locale/bitbean_sk.ts src/qt/locale/bitbean_sl_SI.ts src/qt/locale/bitbean_sq.ts src/qt/locale/bitbean_sr.ts src/qt/locale/bitbean_sv.ts src/qt/locale/bitbean_th_TH.ts src/qt/locale/bitbean_tr.ts src/qt/locale/bitbean_uk.ts src/qt/locale/bitbean_ur_PK.ts src/qt/locale/bitbean_vi.ts src/qt/locale/bitbean_vi_VN.ts src/qt/locale/bitbean_zh_CN.ts src/qt/locale/bitbean_zh_TW.ts build/BitBean-qt1.1.0/ && (cd `dirname build/BitBean-qt1.1.0` && $(TAR) BitBean-qt1.1.0.tar BitBean-qt1.1.0 && $(COMPRESS) BitBean-qt1.1.0.tar) && $(MOVE) `dirname build/BitBean-qt1.1.0`/BitBean-qt1.1.0.tar.gz . && $(DEL_FILE) -r build/BitBean-qt1.1.0 + + +clean:compiler_clean + -$(DEL_FILE) $(OBJECTS) + -$(DEL_FILE) /home/jeramie/BitBean/bitbean-core/src/leveldb/libleveldb.a; cd /home/jeramie/BitBean/bitbean-core/src/leveldb ; $(MAKE) clean + -$(DEL_FILE) *~ core *.core + + +####### Sub-libraries + +distclean: clean + -$(DEL_FILE) $(TARGET) + -$(DEL_FILE) Makefile + + +/home/jeramie/BitBean/bitbean-core/src/leveldb/libleveldb.a: FORCE + cd /home/jeramie/BitBean/bitbean-core/src/leveldb && CC=gcc CXX=g++ $(MAKE) OPT="-pipe -fstack-protector-all --param ssp-buffer-size=1 -O2" libleveldb.a libmemenv.a + +/home/jeramie/BitBean/bitbean-core/build/build.h: FORCE + cd /home/jeramie/BitBean/bitbean-core; /bin/sh share/genbuild.sh /home/jeramie/BitBean/bitbean-core/build/build.h + +check: first + +mocclean: compiler_moc_header_clean compiler_moc_source_clean + +mocables: compiler_moc_header_make_all compiler_moc_source_make_all + +compiler_TSQM_make_all: src/qt/locale/bitbean_af_ZA.qm src/qt/locale/bitbean_ar.qm src/qt/locale/bitbean_be_BY.qm src/qt/locale/bitbean_bg.qm src/qt/locale/bitbean_bs.qm src/qt/locale/bitbean_ca.qm src/qt/locale/bitbean_ca@valencia.qm src/qt/locale/bitbean_ca_ES.qm src/qt/locale/bitbean_cs.qm src/qt/locale/bitbean_cy.qm src/qt/locale/bitbean_da.qm src/qt/locale/bitbean_de.qm src/qt/locale/bitbean_el_GR.qm src/qt/locale/bitbean_en.qm src/qt/locale/bitbean_eo.qm src/qt/locale/bitbean_es.qm src/qt/locale/bitbean_es_CL.qm src/qt/locale/bitbean_es_DO.qm src/qt/locale/bitbean_es_MX.qm src/qt/locale/bitbean_es_UY.qm src/qt/locale/bitbean_et.qm src/qt/locale/bitbean_eu_ES.qm src/qt/locale/bitbean_fa.qm src/qt/locale/bitbean_fa_IR.qm src/qt/locale/bitbean_fi.qm src/qt/locale/bitbean_fr.qm src/qt/locale/bitbean_fr_CA.qm src/qt/locale/bitbean_gl.qm src/qt/locale/bitbean_he.qm src/qt/locale/bitbean_hi_IN.qm src/qt/locale/bitbean_hr.qm src/qt/locale/bitbean_hu.qm src/qt/locale/bitbean_id_ID.qm src/qt/locale/bitbean_it.qm src/qt/locale/bitbean_ja.qm src/qt/locale/bitbean_ka.qm src/qt/locale/bitbean_kk_KZ.qm src/qt/locale/bitbean_ko_KR.qm src/qt/locale/bitbean_ky.qm src/qt/locale/bitbean_la.qm src/qt/locale/bitbean_lt.qm src/qt/locale/bitbean_lv_LV.qm src/qt/locale/bitbean_ms_MY.qm src/qt/locale/bitbean_nb.qm src/qt/locale/bitbean_nl.qm src/qt/locale/bitbean_pam.qm src/qt/locale/bitbean_pl.qm src/qt/locale/bitbean_pt_BR.qm src/qt/locale/bitbean_pt_PT.qm src/qt/locale/bitbean_ro_RO.qm src/qt/locale/bitbean_ru.qm src/qt/locale/bitbean_sah.qm src/qt/locale/bitbean_sk.qm src/qt/locale/bitbean_sl_SI.qm src/qt/locale/bitbean_sq.qm src/qt/locale/bitbean_sr.qm src/qt/locale/bitbean_sv.qm src/qt/locale/bitbean_th_TH.qm src/qt/locale/bitbean_tr.qm src/qt/locale/bitbean_uk.qm src/qt/locale/bitbean_ur_PK.qm src/qt/locale/bitbean_vi.qm src/qt/locale/bitbean_vi_VN.qm src/qt/locale/bitbean_zh_CN.qm src/qt/locale/bitbean_zh_TW.qm +compiler_TSQM_clean: + -$(DEL_FILE) src/qt/locale/bitbean_af_ZA.qm src/qt/locale/bitbean_ar.qm src/qt/locale/bitbean_be_BY.qm src/qt/locale/bitbean_bg.qm src/qt/locale/bitbean_bs.qm src/qt/locale/bitbean_ca.qm src/qt/locale/bitbean_ca@valencia.qm src/qt/locale/bitbean_ca_ES.qm src/qt/locale/bitbean_cs.qm src/qt/locale/bitbean_cy.qm src/qt/locale/bitbean_da.qm src/qt/locale/bitbean_de.qm src/qt/locale/bitbean_el_GR.qm src/qt/locale/bitbean_en.qm src/qt/locale/bitbean_eo.qm src/qt/locale/bitbean_es.qm src/qt/locale/bitbean_es_CL.qm src/qt/locale/bitbean_es_DO.qm src/qt/locale/bitbean_es_MX.qm src/qt/locale/bitbean_es_UY.qm src/qt/locale/bitbean_et.qm src/qt/locale/bitbean_eu_ES.qm src/qt/locale/bitbean_fa.qm src/qt/locale/bitbean_fa_IR.qm src/qt/locale/bitbean_fi.qm src/qt/locale/bitbean_fr.qm src/qt/locale/bitbean_fr_CA.qm src/qt/locale/bitbean_gl.qm src/qt/locale/bitbean_he.qm src/qt/locale/bitbean_hi_IN.qm src/qt/locale/bitbean_hr.qm src/qt/locale/bitbean_hu.qm src/qt/locale/bitbean_id_ID.qm src/qt/locale/bitbean_it.qm src/qt/locale/bitbean_ja.qm src/qt/locale/bitbean_ka.qm src/qt/locale/bitbean_kk_KZ.qm src/qt/locale/bitbean_ko_KR.qm src/qt/locale/bitbean_ky.qm src/qt/locale/bitbean_la.qm src/qt/locale/bitbean_lt.qm src/qt/locale/bitbean_lv_LV.qm src/qt/locale/bitbean_ms_MY.qm src/qt/locale/bitbean_nb.qm src/qt/locale/bitbean_nl.qm src/qt/locale/bitbean_pam.qm src/qt/locale/bitbean_pl.qm src/qt/locale/bitbean_pt_BR.qm src/qt/locale/bitbean_pt_PT.qm src/qt/locale/bitbean_ro_RO.qm src/qt/locale/bitbean_ru.qm src/qt/locale/bitbean_sah.qm src/qt/locale/bitbean_sk.qm src/qt/locale/bitbean_sl_SI.qm src/qt/locale/bitbean_sq.qm src/qt/locale/bitbean_sr.qm src/qt/locale/bitbean_sv.qm src/qt/locale/bitbean_th_TH.qm src/qt/locale/bitbean_tr.qm src/qt/locale/bitbean_uk.qm src/qt/locale/bitbean_ur_PK.qm src/qt/locale/bitbean_vi.qm src/qt/locale/bitbean_vi_VN.qm src/qt/locale/bitbean_zh_CN.qm src/qt/locale/bitbean_zh_TW.qm +src/qt/locale/bitbean_af_ZA.qm: src/qt/locale/bitbean_af_ZA.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_af_ZA.ts -qm src/qt/locale/bitbean_af_ZA.qm + +src/qt/locale/bitbean_ar.qm: src/qt/locale/bitbean_ar.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_ar.ts -qm src/qt/locale/bitbean_ar.qm + +src/qt/locale/bitbean_be_BY.qm: src/qt/locale/bitbean_be_BY.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_be_BY.ts -qm src/qt/locale/bitbean_be_BY.qm + +src/qt/locale/bitbean_bg.qm: src/qt/locale/bitbean_bg.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_bg.ts -qm src/qt/locale/bitbean_bg.qm + +src/qt/locale/bitbean_bs.qm: src/qt/locale/bitbean_bs.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_bs.ts -qm src/qt/locale/bitbean_bs.qm + +src/qt/locale/bitbean_ca.qm: src/qt/locale/bitbean_ca.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_ca.ts -qm src/qt/locale/bitbean_ca.qm + +src/qt/locale/bitbean_ca@valencia.qm: src/qt/locale/bitbean_ca@valencia.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_ca@valencia.ts -qm src/qt/locale/bitbean_ca@valencia.qm + +src/qt/locale/bitbean_ca_ES.qm: src/qt/locale/bitbean_ca_ES.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_ca_ES.ts -qm src/qt/locale/bitbean_ca_ES.qm + +src/qt/locale/bitbean_cs.qm: src/qt/locale/bitbean_cs.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_cs.ts -qm src/qt/locale/bitbean_cs.qm + +src/qt/locale/bitbean_cy.qm: src/qt/locale/bitbean_cy.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_cy.ts -qm src/qt/locale/bitbean_cy.qm + +src/qt/locale/bitbean_da.qm: src/qt/locale/bitbean_da.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_da.ts -qm src/qt/locale/bitbean_da.qm + +src/qt/locale/bitbean_de.qm: src/qt/locale/bitbean_de.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_de.ts -qm src/qt/locale/bitbean_de.qm + +src/qt/locale/bitbean_el_GR.qm: src/qt/locale/bitbean_el_GR.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_el_GR.ts -qm src/qt/locale/bitbean_el_GR.qm + +src/qt/locale/bitbean_en.qm: src/qt/locale/bitbean_en.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_en.ts -qm src/qt/locale/bitbean_en.qm + +src/qt/locale/bitbean_eo.qm: src/qt/locale/bitbean_eo.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_eo.ts -qm src/qt/locale/bitbean_eo.qm + +src/qt/locale/bitbean_es.qm: src/qt/locale/bitbean_es.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_es.ts -qm src/qt/locale/bitbean_es.qm + +src/qt/locale/bitbean_es_CL.qm: src/qt/locale/bitbean_es_CL.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_es_CL.ts -qm src/qt/locale/bitbean_es_CL.qm + +src/qt/locale/bitbean_es_DO.qm: src/qt/locale/bitbean_es_DO.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_es_DO.ts -qm src/qt/locale/bitbean_es_DO.qm + +src/qt/locale/bitbean_es_MX.qm: src/qt/locale/bitbean_es_MX.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_es_MX.ts -qm src/qt/locale/bitbean_es_MX.qm + +src/qt/locale/bitbean_es_UY.qm: src/qt/locale/bitbean_es_UY.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_es_UY.ts -qm src/qt/locale/bitbean_es_UY.qm + +src/qt/locale/bitbean_et.qm: src/qt/locale/bitbean_et.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_et.ts -qm src/qt/locale/bitbean_et.qm + +src/qt/locale/bitbean_eu_ES.qm: src/qt/locale/bitbean_eu_ES.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_eu_ES.ts -qm src/qt/locale/bitbean_eu_ES.qm + +src/qt/locale/bitbean_fa.qm: src/qt/locale/bitbean_fa.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_fa.ts -qm src/qt/locale/bitbean_fa.qm + +src/qt/locale/bitbean_fa_IR.qm: src/qt/locale/bitbean_fa_IR.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_fa_IR.ts -qm src/qt/locale/bitbean_fa_IR.qm + +src/qt/locale/bitbean_fi.qm: src/qt/locale/bitbean_fi.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_fi.ts -qm src/qt/locale/bitbean_fi.qm + +src/qt/locale/bitbean_fr.qm: src/qt/locale/bitbean_fr.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_fr.ts -qm src/qt/locale/bitbean_fr.qm + +src/qt/locale/bitbean_fr_CA.qm: src/qt/locale/bitbean_fr_CA.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_fr_CA.ts -qm src/qt/locale/bitbean_fr_CA.qm + +src/qt/locale/bitbean_gl.qm: src/qt/locale/bitbean_gl.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_gl.ts -qm src/qt/locale/bitbean_gl.qm + +src/qt/locale/bitbean_he.qm: src/qt/locale/bitbean_he.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_he.ts -qm src/qt/locale/bitbean_he.qm + +src/qt/locale/bitbean_hi_IN.qm: src/qt/locale/bitbean_hi_IN.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_hi_IN.ts -qm src/qt/locale/bitbean_hi_IN.qm + +src/qt/locale/bitbean_hr.qm: src/qt/locale/bitbean_hr.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_hr.ts -qm src/qt/locale/bitbean_hr.qm + +src/qt/locale/bitbean_hu.qm: src/qt/locale/bitbean_hu.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_hu.ts -qm src/qt/locale/bitbean_hu.qm + +src/qt/locale/bitbean_id_ID.qm: src/qt/locale/bitbean_id_ID.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_id_ID.ts -qm src/qt/locale/bitbean_id_ID.qm + +src/qt/locale/bitbean_it.qm: src/qt/locale/bitbean_it.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_it.ts -qm src/qt/locale/bitbean_it.qm + +src/qt/locale/bitbean_ja.qm: src/qt/locale/bitbean_ja.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_ja.ts -qm src/qt/locale/bitbean_ja.qm + +src/qt/locale/bitbean_ka.qm: src/qt/locale/bitbean_ka.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_ka.ts -qm src/qt/locale/bitbean_ka.qm + +src/qt/locale/bitbean_kk_KZ.qm: src/qt/locale/bitbean_kk_KZ.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_kk_KZ.ts -qm src/qt/locale/bitbean_kk_KZ.qm + +src/qt/locale/bitbean_ko_KR.qm: src/qt/locale/bitbean_ko_KR.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_ko_KR.ts -qm src/qt/locale/bitbean_ko_KR.qm + +src/qt/locale/bitbean_ky.qm: src/qt/locale/bitbean_ky.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_ky.ts -qm src/qt/locale/bitbean_ky.qm + +src/qt/locale/bitbean_la.qm: src/qt/locale/bitbean_la.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_la.ts -qm src/qt/locale/bitbean_la.qm + +src/qt/locale/bitbean_lt.qm: src/qt/locale/bitbean_lt.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_lt.ts -qm src/qt/locale/bitbean_lt.qm + +src/qt/locale/bitbean_lv_LV.qm: src/qt/locale/bitbean_lv_LV.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_lv_LV.ts -qm src/qt/locale/bitbean_lv_LV.qm + +src/qt/locale/bitbean_ms_MY.qm: src/qt/locale/bitbean_ms_MY.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_ms_MY.ts -qm src/qt/locale/bitbean_ms_MY.qm + +src/qt/locale/bitbean_nb.qm: src/qt/locale/bitbean_nb.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_nb.ts -qm src/qt/locale/bitbean_nb.qm + +src/qt/locale/bitbean_nl.qm: src/qt/locale/bitbean_nl.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_nl.ts -qm src/qt/locale/bitbean_nl.qm + +src/qt/locale/bitbean_pam.qm: src/qt/locale/bitbean_pam.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_pam.ts -qm src/qt/locale/bitbean_pam.qm + +src/qt/locale/bitbean_pl.qm: src/qt/locale/bitbean_pl.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_pl.ts -qm src/qt/locale/bitbean_pl.qm + +src/qt/locale/bitbean_pt_BR.qm: src/qt/locale/bitbean_pt_BR.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_pt_BR.ts -qm src/qt/locale/bitbean_pt_BR.qm + +src/qt/locale/bitbean_pt_PT.qm: src/qt/locale/bitbean_pt_PT.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_pt_PT.ts -qm src/qt/locale/bitbean_pt_PT.qm + +src/qt/locale/bitbean_ro_RO.qm: src/qt/locale/bitbean_ro_RO.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_ro_RO.ts -qm src/qt/locale/bitbean_ro_RO.qm + +src/qt/locale/bitbean_ru.qm: src/qt/locale/bitbean_ru.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_ru.ts -qm src/qt/locale/bitbean_ru.qm + +src/qt/locale/bitbean_sah.qm: src/qt/locale/bitbean_sah.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_sah.ts -qm src/qt/locale/bitbean_sah.qm + +src/qt/locale/bitbean_sk.qm: src/qt/locale/bitbean_sk.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_sk.ts -qm src/qt/locale/bitbean_sk.qm + +src/qt/locale/bitbean_sl_SI.qm: src/qt/locale/bitbean_sl_SI.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_sl_SI.ts -qm src/qt/locale/bitbean_sl_SI.qm + +src/qt/locale/bitbean_sq.qm: src/qt/locale/bitbean_sq.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_sq.ts -qm src/qt/locale/bitbean_sq.qm + +src/qt/locale/bitbean_sr.qm: src/qt/locale/bitbean_sr.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_sr.ts -qm src/qt/locale/bitbean_sr.qm + +src/qt/locale/bitbean_sv.qm: src/qt/locale/bitbean_sv.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_sv.ts -qm src/qt/locale/bitbean_sv.qm + +src/qt/locale/bitbean_th_TH.qm: src/qt/locale/bitbean_th_TH.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_th_TH.ts -qm src/qt/locale/bitbean_th_TH.qm + +src/qt/locale/bitbean_tr.qm: src/qt/locale/bitbean_tr.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_tr.ts -qm src/qt/locale/bitbean_tr.qm + +src/qt/locale/bitbean_uk.qm: src/qt/locale/bitbean_uk.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_uk.ts -qm src/qt/locale/bitbean_uk.qm + +src/qt/locale/bitbean_ur_PK.qm: src/qt/locale/bitbean_ur_PK.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_ur_PK.ts -qm src/qt/locale/bitbean_ur_PK.qm + +src/qt/locale/bitbean_vi.qm: src/qt/locale/bitbean_vi.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_vi.ts -qm src/qt/locale/bitbean_vi.qm + +src/qt/locale/bitbean_vi_VN.qm: src/qt/locale/bitbean_vi_VN.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_vi_VN.ts -qm src/qt/locale/bitbean_vi_VN.qm + +src/qt/locale/bitbean_zh_CN.qm: src/qt/locale/bitbean_zh_CN.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_zh_CN.ts -qm src/qt/locale/bitbean_zh_CN.qm + +src/qt/locale/bitbean_zh_TW.qm: src/qt/locale/bitbean_zh_TW.ts + /usr/lib/i386-linux-gnu/qt4/bin/lrelease src/qt/locale/bitbean_zh_TW.ts -qm src/qt/locale/bitbean_zh_TW.qm + +compiler_moc_header_make_all: build/moc_bitbeangui.cpp build/moc_transactiontablemodel.cpp build/moc_addresstablemodel.cpp build/moc_optionsdialog.cpp build/moc_beancontroldialog.cpp build/moc_beancontroltreewidget.cpp build/moc_sendbeansdialog.cpp build/moc_addressbookpage.cpp build/moc_signverifymessagedialog.cpp build/moc_aboutdialog.cpp build/moc_editaddressdialog.cpp build/moc_bitbeanaddressvalidator.cpp build/moc_clientmodel.cpp build/moc_guiutil.cpp build/moc_optionsmodel.cpp build/moc_monitoreddatamapper.cpp build/moc_transactiondesc.cpp build/moc_transactiondescdialog.cpp build/moc_bitbeanamountfield.cpp build/moc_transactionfilterproxy.cpp build/moc_transactionview.cpp build/moc_walletmodel.cpp build/moc_overviewpage.cpp build/moc_csvmodelwriter.cpp build/moc_sendbeansentry.cpp build/moc_qvalidatedlineedit.cpp build/moc_qvaluecombobox.cpp build/moc_askpassphrasedialog.cpp build/moc_notificator.cpp build/moc_rpcconsole.cpp build/moc_qrcodedialog.cpp +compiler_moc_header_clean: + -$(DEL_FILE) build/moc_bitbeangui.cpp build/moc_transactiontablemodel.cpp build/moc_addresstablemodel.cpp build/moc_optionsdialog.cpp build/moc_beancontroldialog.cpp build/moc_beancontroltreewidget.cpp build/moc_sendbeansdialog.cpp build/moc_addressbookpage.cpp build/moc_signverifymessagedialog.cpp build/moc_aboutdialog.cpp build/moc_editaddressdialog.cpp build/moc_bitbeanaddressvalidator.cpp build/moc_clientmodel.cpp build/moc_guiutil.cpp build/moc_optionsmodel.cpp build/moc_monitoreddatamapper.cpp build/moc_transactiondesc.cpp build/moc_transactiondescdialog.cpp build/moc_bitbeanamountfield.cpp build/moc_transactionfilterproxy.cpp build/moc_transactionview.cpp build/moc_walletmodel.cpp build/moc_overviewpage.cpp build/moc_csvmodelwriter.cpp build/moc_sendbeansentry.cpp build/moc_qvalidatedlineedit.cpp build/moc_qvaluecombobox.cpp build/moc_askpassphrasedialog.cpp build/moc_notificator.cpp build/moc_rpcconsole.cpp build/moc_qrcodedialog.cpp +build/moc_bitbeangui.cpp: src/qt/bitbeangui.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/bitbeangui.h -o build/moc_bitbeangui.cpp + +build/moc_transactiontablemodel.cpp: src/qt/transactiontablemodel.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/transactiontablemodel.h -o build/moc_transactiontablemodel.cpp + +build/moc_addresstablemodel.cpp: src/qt/addresstablemodel.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/addresstablemodel.h -o build/moc_addresstablemodel.cpp + +build/moc_optionsdialog.cpp: src/qt/optionsdialog.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/optionsdialog.h -o build/moc_optionsdialog.cpp + +build/moc_beancontroldialog.cpp: src/qt/beancontroldialog.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/beancontroldialog.h -o build/moc_beancontroldialog.cpp + +build/moc_beancontroltreewidget.cpp: src/qt/beancontroltreewidget.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/beancontroltreewidget.h -o build/moc_beancontroltreewidget.cpp + +build/moc_sendbeansdialog.cpp: src/qt/sendbeansdialog.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/sendbeansdialog.h -o build/moc_sendbeansdialog.cpp + +build/moc_addressbookpage.cpp: src/qt/addressbookpage.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/addressbookpage.h -o build/moc_addressbookpage.cpp + +build/moc_signverifymessagedialog.cpp: src/qt/signverifymessagedialog.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/signverifymessagedialog.h -o build/moc_signverifymessagedialog.cpp + +build/moc_aboutdialog.cpp: src/qt/aboutdialog.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/aboutdialog.h -o build/moc_aboutdialog.cpp + +build/moc_editaddressdialog.cpp: src/qt/editaddressdialog.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/editaddressdialog.h -o build/moc_editaddressdialog.cpp + +build/moc_bitbeanaddressvalidator.cpp: src/qt/bitbeanaddressvalidator.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/bitbeanaddressvalidator.h -o build/moc_bitbeanaddressvalidator.cpp + +build/moc_clientmodel.cpp: src/qt/clientmodel.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/clientmodel.h -o build/moc_clientmodel.cpp + +build/moc_guiutil.cpp: src/qt/guiutil.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/guiutil.h -o build/moc_guiutil.cpp + +build/moc_optionsmodel.cpp: src/qt/optionsmodel.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/optionsmodel.h -o build/moc_optionsmodel.cpp + +build/moc_monitoreddatamapper.cpp: src/qt/monitoreddatamapper.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/monitoreddatamapper.h -o build/moc_monitoreddatamapper.cpp + +build/moc_transactiondesc.cpp: src/qt/transactiondesc.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/transactiondesc.h -o build/moc_transactiondesc.cpp + +build/moc_transactiondescdialog.cpp: src/qt/transactiondescdialog.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/transactiondescdialog.h -o build/moc_transactiondescdialog.cpp + +build/moc_bitbeanamountfield.cpp: src/qt/bitbeanamountfield.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/bitbeanamountfield.h -o build/moc_bitbeanamountfield.cpp + +build/moc_transactionfilterproxy.cpp: src/qt/transactionfilterproxy.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/transactionfilterproxy.h -o build/moc_transactionfilterproxy.cpp + +build/moc_transactionview.cpp: src/qt/transactionview.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/transactionview.h -o build/moc_transactionview.cpp + +build/moc_walletmodel.cpp: src/allocators.h \ + src/qt/walletmodel.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/walletmodel.h -o build/moc_walletmodel.cpp + +build/moc_overviewpage.cpp: src/qt/clientmodel.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/wallet.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + src/qt/overviewpage.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/overviewpage.h -o build/moc_overviewpage.cpp + +build/moc_csvmodelwriter.cpp: src/qt/csvmodelwriter.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/csvmodelwriter.h -o build/moc_csvmodelwriter.cpp + +build/moc_sendbeansentry.cpp: src/qt/sendbeansentry.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/sendbeansentry.h -o build/moc_sendbeansentry.cpp + +build/moc_qvalidatedlineedit.cpp: src/qt/qvalidatedlineedit.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/qvalidatedlineedit.h -o build/moc_qvalidatedlineedit.cpp + +build/moc_qvaluecombobox.cpp: src/qt/qvaluecombobox.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/qvaluecombobox.h -o build/moc_qvaluecombobox.cpp + +build/moc_askpassphrasedialog.cpp: src/qt/askpassphrasedialog.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/askpassphrasedialog.h -o build/moc_askpassphrasedialog.cpp + +build/moc_notificator.cpp: src/qt/notificator.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/notificator.h -o build/moc_notificator.cpp + +build/moc_rpcconsole.cpp: src/qt/rpcconsole.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/rpcconsole.h -o build/moc_rpcconsole.cpp + +build/moc_qrcodedialog.cpp: src/qt/qrcodedialog.h + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/qrcodedialog.h -o build/moc_qrcodedialog.cpp + +compiler_rcc_make_all: qrc_bitbean.cpp +compiler_rcc_clean: + -$(DEL_FILE) qrc_bitbean.cpp +qrc_bitbean.cpp: src/qt/bitbean.qrc \ + src/qt/locale/bitbean_ka.ts \ + src/qt/locale/bitbean_ko_KR.ts \ + src/qt/locale/bitbean_fr.ts \ + src/qt/locale/bitbean_sk.ts \ + src/qt/locale/bitbean_gl.ts \ + src/qt/locale/bitbean_sv.ts \ + src/qt/locale/bitbean_pt_BR.ts \ + src/qt/locale/bitbean_da.ts \ + src/qt/locale/bitbean_zh_CN.ts \ + src/qt/locale/bitbean_he.ts \ + src/qt/locale/bitbean_pl.ts \ + src/qt/locale/bitbean_cs.ts \ + src/qt/locale/bitbean_de.ts \ + src/qt/locale/bitbean_tr.ts \ + src/qt/locale/bitbean_fr_CA.ts \ + src/qt/locale/bitbean_ca_ES.ts \ + src/qt/locale/bitbean_lt.ts \ + src/qt/locale/bitbean_zh_TW.ts \ + src/qt/locale/bitbean_hr.ts \ + src/qt/locale/bitbean_uk.ts \ + src/qt/locale/bitbean_sl_SI.ts \ + src/qt/locale/bitbean_hu.ts \ + src/qt/locale/bitbean_es_CL.ts \ + src/qt/locale/bitbean_pt_PT.ts \ + src/qt/locale/bitbean_ro_RO.ts \ + src/qt/locale/bitbean_nb.ts \ + src/qt/locale/bitbean_pam.ts \ + src/qt/locale/bitbean_el_GR.ts \ + src/qt/locale/bitbean_ja.ts \ + src/qt/locale/bitbean_en.ts \ + src/qt/locale/bitbean_eo.ts \ + src/qt/locale/bitbean_it.ts \ + src/qt/locale/bitbean_fa.ts \ + src/qt/locale/bitbean_es.ts \ + src/qt/locale/bitbean_ar.ts \ + src/qt/locale/bitbean_nl.ts \ + src/qt/locale/bitbean_es_DO.ts \ + src/qt/locale/bitbean_fi.ts \ + src/qt/locale/bitbean_ru.ts \ + src/qt/res/images/about.png \ + src/qt/res/images/BeanSky.png \ + src/qt/res/images/Bean2Moon.png \ + src/qt/res/movies/bitbean_spinner.mng \ + src/qt/res/icons/add.png \ + src/qt/res/icons/staking_on.png \ + src/qt/res/icons/connect0_16.png \ + src/qt/res/icons/connect1_16.png \ + src/qt/res/icons/quit.png \ + src/qt/res/icons/connect2_16.png \ + src/qt/res/icons/overview.png \ + src/qt/res/icons/connect3_16.png \ + src/qt/res/icons/connect4_16.png \ + src/qt/res/icons/address-book.png \ + src/qt/res/icons/send.png \ + src/qt/res/icons/configure.png \ + src/qt/res/icons/export.png \ + src/qt/res/icons/bitbean-80.png \ + src/qt/res/icons/checkmark.png \ + src/qt/res/icons/history.png \ + src/qt/res/icons/filesave.png \ + src/qt/res/icons/beans-confirmed.png \ + src/qt/res/icons/editpaste.png \ + src/qt/res/icons/sprout.png \ + src/qt/res/icons/transaction_conflicted.png \ + src/qt/res/icons/lock_closed.png \ + src/qt/res/icons/editcopy.png \ + src/qt/res/icons/receive.png \ + src/qt/res/icons/transaction0.png \ + src/qt/res/icons/clock1.png \ + src/qt/res/icons/clock2.png \ + src/qt/res/icons/clock3.png \ + src/qt/res/icons/clock4.png \ + src/qt/res/icons/qrcode.png \ + src/qt/res/icons/clock5.png \ + src/qt/res/icons/signmessage.png \ + src/qt/res/icons/key.png \ + src/qt/res/icons/tx_inout.png \ + src/qt/res/icons/remove.png \ + src/qt/res/icons/bitbean-16.png \ + src/qt/res/icons/verifymessage.png \ + src/qt/res/icons/lock_open.png \ + src/qt/res/icons/tx_input.png \ + src/qt/res/icons/debugwindow.png \ + src/qt/res/icons/staking_off.png \ + src/qt/res/icons/tx_output.png + /usr/lib/i386-linux-gnu/qt4/bin/rcc -name bitbean src/qt/bitbean.qrc -o qrc_bitbean.cpp + +compiler_image_collection_make_all: build/qmake_image_collection.cpp +compiler_image_collection_clean: + -$(DEL_FILE) build/qmake_image_collection.cpp +compiler_moc_source_make_all: build/overviewpage.moc build/rpcconsole.moc +compiler_moc_source_clean: + -$(DEL_FILE) build/overviewpage.moc build/rpcconsole.moc +build/overviewpage.moc: src/qt/overviewpage.h \ + src/qt/clientmodel.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/wallet.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + build/ui_overviewpage.h \ + src/qt/walletmodel.h \ + src/qt/bitbeanunits.h \ + src/qt/optionsmodel.h \ + src/qt/transactiontablemodel.h \ + src/qt/transactionfilterproxy.h \ + src/qt/guiutil.h \ + src/qt/guiconstants.h \ + src/bitbeanrpc.h \ + src/json/json_spirit_reader_template.h \ + src/json/json_spirit_value.h \ + src/json/json_spirit_error_position.h \ + src/json/json_spirit_writer_template.h \ + src/json/json_spirit_utils.h \ + src/checkpoints.h \ + src/init.h \ + src/qt/overviewpage.cpp + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/overviewpage.cpp -o build/overviewpage.moc + +build/rpcconsole.moc: src/qt/rpcconsole.h \ + build/ui_rpcconsole.h \ + src/qt/clientmodel.h \ + src/bitbeanrpc.h \ + src/json/json_spirit_reader_template.h \ + src/json/json_spirit_value.h \ + src/json/json_spirit_error_position.h \ + src/json/json_spirit_writer_template.h \ + src/json/json_spirit_utils.h \ + src/util.h \ + src/uint256.h \ + src/netbase.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/compat.h \ + src/checkpoints.h \ + src/net.h \ + src/mruset.h \ + src/protocol.h \ + src/addrman.h \ + src/sync.h \ + src/qt/guiutil.h \ + src/qt/rpcconsole.cpp + /usr/lib/i386-linux-gnu/qt4/bin/moc $(DEFINES) $(INCPATH) src/qt/rpcconsole.cpp -o build/rpcconsole.moc + +compiler_uic_make_all: build/ui_beancontroldialog.h build/ui_sendbeansdialog.h build/ui_addressbookpage.h build/ui_signverifymessagedialog.h build/ui_aboutdialog.h build/ui_editaddressdialog.h build/ui_transactiondescdialog.h build/ui_overviewpage.h build/ui_sendbeansentry.h build/ui_askpassphrasedialog.h build/ui_rpcconsole.h build/ui_optionsdialog.h build/ui_qrcodedialog.h +compiler_uic_clean: + -$(DEL_FILE) build/ui_beancontroldialog.h build/ui_sendbeansdialog.h build/ui_addressbookpage.h build/ui_signverifymessagedialog.h build/ui_aboutdialog.h build/ui_editaddressdialog.h build/ui_transactiondescdialog.h build/ui_overviewpage.h build/ui_sendbeansentry.h build/ui_askpassphrasedialog.h build/ui_rpcconsole.h build/ui_optionsdialog.h build/ui_qrcodedialog.h +build/ui_beancontroldialog.h: src/qt/forms/beancontroldialog.ui \ + src/qt/beancontroltreewidget.h + /usr/lib/i386-linux-gnu/qt4/bin/uic src/qt/forms/beancontroldialog.ui -o build/ui_beancontroldialog.h + +build/ui_sendbeansdialog.h: src/qt/forms/sendbeansdialog.ui + /usr/lib/i386-linux-gnu/qt4/bin/uic src/qt/forms/sendbeansdialog.ui -o build/ui_sendbeansdialog.h + +build/ui_addressbookpage.h: src/qt/forms/addressbookpage.ui + /usr/lib/i386-linux-gnu/qt4/bin/uic src/qt/forms/addressbookpage.ui -o build/ui_addressbookpage.h + +build/ui_signverifymessagedialog.h: src/qt/forms/signverifymessagedialog.ui \ + src/qt/qvalidatedlineedit.h + /usr/lib/i386-linux-gnu/qt4/bin/uic src/qt/forms/signverifymessagedialog.ui -o build/ui_signverifymessagedialog.h + +build/ui_aboutdialog.h: src/qt/forms/aboutdialog.ui + /usr/lib/i386-linux-gnu/qt4/bin/uic src/qt/forms/aboutdialog.ui -o build/ui_aboutdialog.h + +build/ui_editaddressdialog.h: src/qt/forms/editaddressdialog.ui + /usr/lib/i386-linux-gnu/qt4/bin/uic src/qt/forms/editaddressdialog.ui -o build/ui_editaddressdialog.h + +build/ui_transactiondescdialog.h: src/qt/forms/transactiondescdialog.ui + /usr/lib/i386-linux-gnu/qt4/bin/uic src/qt/forms/transactiondescdialog.ui -o build/ui_transactiondescdialog.h + +build/ui_overviewpage.h: src/qt/forms/overviewpage.ui + /usr/lib/i386-linux-gnu/qt4/bin/uic src/qt/forms/overviewpage.ui -o build/ui_overviewpage.h + +build/ui_sendbeansentry.h: src/qt/forms/sendbeansentry.ui \ + src/qt/bitbeanamountfield.h \ + src/qt/qvalidatedlineedit.h + /usr/lib/i386-linux-gnu/qt4/bin/uic src/qt/forms/sendbeansentry.ui -o build/ui_sendbeansentry.h + +build/ui_askpassphrasedialog.h: src/qt/forms/askpassphrasedialog.ui + /usr/lib/i386-linux-gnu/qt4/bin/uic src/qt/forms/askpassphrasedialog.ui -o build/ui_askpassphrasedialog.h + +build/ui_rpcconsole.h: src/qt/forms/rpcconsole.ui + /usr/lib/i386-linux-gnu/qt4/bin/uic src/qt/forms/rpcconsole.ui -o build/ui_rpcconsole.h + +build/ui_optionsdialog.h: src/qt/forms/optionsdialog.ui \ + src/qt/bitbeanamountfield.h \ + src/qt/qvaluecombobox.h \ + src/qt/qvalidatedlineedit.h + /usr/lib/i386-linux-gnu/qt4/bin/uic src/qt/forms/optionsdialog.ui -o build/ui_optionsdialog.h + +build/ui_qrcodedialog.h: src/qt/forms/qrcodedialog.ui \ + src/qt/bitbeanamountfield.h + /usr/lib/i386-linux-gnu/qt4/bin/uic src/qt/forms/qrcodedialog.ui -o build/ui_qrcodedialog.h + +compiler_yacc_decl_make_all: +compiler_yacc_decl_clean: +compiler_yacc_impl_make_all: +compiler_yacc_impl_clean: +compiler_lex_make_all: +compiler_lex_clean: +compiler_clean: compiler_TSQM_clean compiler_moc_header_clean compiler_rcc_clean compiler_moc_source_clean compiler_uic_clean + +####### Compile + +build/txdb-leveldb.o: src/txdb-leveldb.cpp src/kernel.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/checkpoints.h \ + src/txdb.h \ + src/txdb-leveldb.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/txdb-leveldb.o src/txdb-leveldb.cpp + +build/bitbean.o: src/qt/bitbean.cpp src/qt/bitbeangui.h \ + src/qt/clientmodel.h \ + src/qt/walletmodel.h \ + src/allocators.h \ + src/qt/optionsmodel.h \ + src/qt/guiutil.h \ + src/qt/guiconstants.h \ + src/init.h \ + src/wallet.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + src/qt/qtipcserver.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitbean.o src/qt/bitbean.cpp + +build/bitbeangui.o: src/qt/bitbeangui.cpp src/qt/bitbeangui.h \ + src/qt/transactiontablemodel.h \ + src/qt/addressbookpage.h \ + src/qt/sendbeansdialog.h \ + src/qt/signverifymessagedialog.h \ + src/qt/optionsdialog.h \ + src/qt/aboutdialog.h \ + src/qt/clientmodel.h \ + src/qt/walletmodel.h \ + src/allocators.h \ + src/qt/editaddressdialog.h \ + src/qt/optionsmodel.h \ + src/qt/transactiondescdialog.h \ + src/qt/addresstablemodel.h \ + src/qt/transactionview.h \ + src/qt/overviewpage.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/wallet.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + src/qt/bitbeanunits.h \ + src/qt/guiconstants.h \ + src/qt/askpassphrasedialog.h \ + src/qt/notificator.h \ + src/qt/guiutil.h \ + src/qt/rpcconsole.h \ + src/qt/macdockiconhandler.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitbeangui.o src/qt/bitbeangui.cpp + +build/transactiontablemodel.o: src/qt/transactiontablemodel.cpp src/qt/transactiontablemodel.h \ + src/qt/guiutil.h \ + src/qt/transactionrecord.h \ + src/uint256.h \ + src/qt/guiconstants.h \ + src/qt/transactiondesc.h \ + src/qt/walletmodel.h \ + src/allocators.h \ + src/qt/optionsmodel.h \ + src/qt/addresstablemodel.h \ + src/qt/bitbeanunits.h \ + src/wallet.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/version.h \ + src/clientversion.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/transactiontablemodel.o src/qt/transactiontablemodel.cpp + +build/addresstablemodel.o: src/qt/addresstablemodel.cpp src/qt/addresstablemodel.h \ + src/qt/guiutil.h \ + src/qt/walletmodel.h \ + src/allocators.h \ + src/wallet.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/addresstablemodel.o src/qt/addresstablemodel.cpp + +build/optionsdialog.o: src/qt/optionsdialog.cpp src/qt/optionsdialog.h \ + build/ui_optionsdialog.h \ + src/qt/bitbeanamountfield.h \ + src/qt/qvalidatedlineedit.h \ + src/qt/qvaluecombobox.h \ + src/qt/bitbeanunits.h \ + src/qt/monitoreddatamapper.h \ + src/netbase.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/compat.h \ + src/qt/optionsmodel.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/optionsdialog.o src/qt/optionsdialog.cpp + +build/sendbeansdialog.o: src/qt/sendbeansdialog.cpp src/qt/sendbeansdialog.h \ + build/ui_sendbeansdialog.h \ + src/init.h \ + src/wallet.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + src/qt/walletmodel.h \ + src/qt/addresstablemodel.h \ + src/qt/addressbookpage.h \ + src/qt/bitbeanunits.h \ + src/qt/optionsmodel.h \ + src/qt/sendbeansentry.h \ + src/qt/guiutil.h \ + src/qt/askpassphrasedialog.h \ + src/beancontrol.h \ + src/qt/beancontroldialog.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/sendbeansdialog.o src/qt/sendbeansdialog.cpp + +build/beancontroldialog.o: src/qt/beancontroldialog.cpp src/qt/beancontroldialog.h \ + build/ui_beancontroldialog.h \ + src/qt/beancontroltreewidget.h \ + src/init.h \ + src/wallet.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + src/qt/bitbeanunits.h \ + src/qt/walletmodel.h \ + src/qt/addresstablemodel.h \ + src/qt/optionsmodel.h \ + src/beancontrol.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/beancontroldialog.o src/qt/beancontroldialog.cpp + +build/beancontroltreewidget.o: src/qt/beancontroltreewidget.cpp src/qt/beancontroltreewidget.h \ + src/qt/beancontroldialog.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/beancontroltreewidget.o src/qt/beancontroltreewidget.cpp + +build/addressbookpage.o: src/qt/addressbookpage.cpp src/qt/addressbookpage.h \ + build/ui_addressbookpage.h \ + src/qt/addresstablemodel.h \ + src/qt/optionsmodel.h \ + src/qt/bitbeangui.h \ + src/qt/editaddressdialog.h \ + src/qt/csvmodelwriter.h \ + src/qt/guiutil.h \ + src/qt/qrcodedialog.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/addressbookpage.o src/qt/addressbookpage.cpp + +build/signverifymessagedialog.o: src/qt/signverifymessagedialog.cpp src/qt/signverifymessagedialog.h \ + build/ui_signverifymessagedialog.h \ + src/qt/qvalidatedlineedit.h \ + src/qt/addressbookpage.h \ + src/base58.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/key.h \ + src/util.h \ + src/netbase.h \ + src/compat.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/sync.h \ + src/qt/guiutil.h \ + src/init.h \ + src/wallet.h \ + src/main.h \ + src/net.h \ + src/mruset.h \ + src/protocol.h \ + src/addrman.h \ + src/scrypt.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/qt/optionsmodel.h \ + src/qt/walletmodel.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/signverifymessagedialog.o src/qt/signverifymessagedialog.cpp + +build/aboutdialog.o: src/qt/aboutdialog.cpp src/qt/aboutdialog.h \ + build/ui_aboutdialog.h \ + src/qt/clientmodel.h \ + src/version.h \ + src/clientversion.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/aboutdialog.o src/qt/aboutdialog.cpp + +build/editaddressdialog.o: src/qt/editaddressdialog.cpp src/qt/editaddressdialog.h \ + build/ui_editaddressdialog.h \ + src/qt/addresstablemodel.h \ + src/qt/guiutil.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/editaddressdialog.o src/qt/editaddressdialog.cpp + +build/bitbeanaddressvalidator.o: src/qt/bitbeanaddressvalidator.cpp src/qt/bitbeanaddressvalidator.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitbeanaddressvalidator.o src/qt/bitbeanaddressvalidator.cpp + +build/alert.o: src/alert.cpp src/alert.h \ + src/uint256.h \ + src/util.h \ + src/netbase.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/compat.h \ + src/key.h \ + src/net.h \ + src/mruset.h \ + src/protocol.h \ + src/addrman.h \ + src/sync.h \ + src/ui_interface.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/alert.o src/alert.cpp + +build/version.o: src/version.cpp src/version.h \ + src/clientversion.h \ + build/build.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/version.o src/version.cpp + +build/sync.o: src/sync.cpp src/sync.h \ + src/util.h \ + src/uint256.h \ + src/netbase.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/compat.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/sync.o src/sync.cpp + +build/util.o: src/util.cpp src/util.h \ + src/uint256.h \ + src/netbase.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/compat.h \ + src/sync.h \ + src/strlcpy.h \ + src/ui_interface.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/util.o src/util.cpp + +build/netbase.o: src/netbase.cpp src/netbase.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/compat.h \ + src/util.h \ + src/uint256.h \ + src/sync.h \ + src/strlcpy.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/netbase.o src/netbase.cpp + +build/key.o: src/key.cpp src/key.h \ + src/allocators.h \ + src/serialize.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/util.h \ + src/netbase.h \ + src/compat.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/key.o src/key.cpp + +build/script.o: src/script.cpp src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/allocators.h \ + src/key.h \ + src/serialize.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/util.h \ + src/netbase.h \ + src/compat.h \ + src/sync.h \ + src/bignum.h \ + src/main.h \ + src/net.h \ + src/mruset.h \ + src/protocol.h \ + src/addrman.h \ + src/scrypt.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/script.o src/script.cpp + +build/main.o: src/main.cpp src/alert.h \ + src/uint256.h \ + src/util.h \ + src/netbase.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/compat.h \ + src/checkpoints.h \ + src/net.h \ + src/mruset.h \ + src/protocol.h \ + src/addrman.h \ + src/sync.h \ + src/db.h \ + src/main.h \ + src/bignum.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/txdb.h \ + src/txdb-leveldb.h \ + src/init.h \ + src/wallet.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/base58.h \ + src/kernel.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/main.o src/main.cpp + +build/miner.o: src/miner.cpp src/txdb.h \ + src/txdb-leveldb.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/miner.h \ + src/wallet.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + src/kernel.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/miner.o src/miner.cpp + +build/init.o: src/init.cpp src/txdb.h \ + src/txdb-leveldb.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + src/bitbeanrpc.h \ + src/json/json_spirit_reader_template.h \ + src/json/json_spirit_value.h \ + src/json/json_spirit_error_position.h \ + src/json/json_spirit_writer_template.h \ + src/json/json_spirit_utils.h \ + src/checkpoints.h \ + src/init.h \ + src/wallet.h \ + src/ui_interface.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/init.o src/init.cpp + +build/net.o: src/net.cpp src/db.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/init.h \ + src/wallet.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/base58.h \ + src/strlcpy.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/net.o src/net.cpp + +build/checkpoints.o: src/checkpoints.cpp src/checkpoints.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/compat.h \ + src/protocol.h \ + src/uint256.h \ + src/addrman.h \ + src/util.h \ + src/sync.h \ + src/txdb.h \ + src/txdb-leveldb.h \ + src/main.h \ + src/bignum.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/checkpoints.o src/checkpoints.cpp + +build/addrman.o: src/addrman.cpp src/addrman.h \ + src/netbase.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/compat.h \ + src/protocol.h \ + src/uint256.h \ + src/util.h \ + src/sync.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/addrman.o src/addrman.cpp + +build/db.o: src/db.cpp src/db.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/ui_interface.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/db.o src/db.cpp + +build/walletdb.o: src/walletdb.cpp src/walletdb.h \ + src/db.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/base58.h \ + src/wallet.h \ + src/ui_interface.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/walletdb.o src/walletdb.cpp + +build/clientmodel.o: src/qt/clientmodel.cpp src/qt/clientmodel.h \ + src/qt/guiconstants.h \ + src/qt/optionsmodel.h \ + src/qt/addresstablemodel.h \ + src/qt/transactiontablemodel.h \ + src/alert.h \ + src/uint256.h \ + src/util.h \ + src/netbase.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/compat.h \ + src/main.h \ + src/bignum.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/protocol.h \ + src/addrman.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/ui_interface.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/clientmodel.o src/qt/clientmodel.cpp + +build/guiutil.o: src/qt/guiutil.cpp src/qt/guiutil.h \ + src/qt/bitbeanaddressvalidator.h \ + src/qt/walletmodel.h \ + src/allocators.h \ + src/qt/bitbeanunits.h \ + src/util.h \ + src/uint256.h \ + src/netbase.h \ + src/serialize.h \ + src/version.h \ + src/clientversion.h \ + src/compat.h \ + src/init.h \ + src/wallet.h \ + src/main.h \ + src/bignum.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/protocol.h \ + src/addrman.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/guiutil.o src/qt/guiutil.cpp + +build/transactionrecord.o: src/qt/transactionrecord.cpp src/qt/transactionrecord.h \ + src/uint256.h \ + src/wallet.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/transactionrecord.o src/qt/transactionrecord.cpp + +build/optionsmodel.o: src/qt/optionsmodel.cpp src/qt/optionsmodel.h \ + src/qt/bitbeanunits.h \ + src/init.h \ + src/wallet.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + src/qt/guiutil.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/optionsmodel.o src/qt/optionsmodel.cpp + +build/monitoreddatamapper.o: src/qt/monitoreddatamapper.cpp src/qt/monitoreddatamapper.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/monitoreddatamapper.o src/qt/monitoreddatamapper.cpp + +build/transactiondesc.o: src/qt/transactiondesc.cpp src/qt/transactiondesc.h \ + src/qt/guiutil.h \ + src/qt/bitbeanunits.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/wallet.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + src/txdb.h \ + src/txdb-leveldb.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/transactiondesc.o src/qt/transactiondesc.cpp + +build/transactiondescdialog.o: src/qt/transactiondescdialog.cpp src/qt/transactiondescdialog.h \ + build/ui_transactiondescdialog.h \ + src/qt/transactiontablemodel.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/transactiondescdialog.o src/qt/transactiondescdialog.cpp + +build/bitbeanstrings.o: src/qt/bitbeanstrings.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitbeanstrings.o src/qt/bitbeanstrings.cpp + +build/bitbeanamountfield.o: src/qt/bitbeanamountfield.cpp src/qt/bitbeanamountfield.h \ + src/qt/qvaluecombobox.h \ + src/qt/bitbeanunits.h \ + src/qt/guiconstants.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitbeanamountfield.o src/qt/bitbeanamountfield.cpp + +build/wallet.o: src/wallet.cpp src/txdb.h \ + src/txdb-leveldb.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/wallet.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + src/kernel.h \ + src/beancontrol.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/wallet.o src/wallet.cpp + +build/keystore.o: src/keystore.cpp src/keystore.h \ + src/crypter.h \ + src/allocators.h \ + src/key.h \ + src/serialize.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/util.h \ + src/netbase.h \ + src/compat.h \ + src/sync.h \ + src/script.h \ + src/bignum.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/keystore.o src/keystore.cpp + +build/transactionfilterproxy.o: src/qt/transactionfilterproxy.cpp src/qt/transactionfilterproxy.h \ + src/qt/transactiontablemodel.h \ + src/qt/transactionrecord.h \ + src/uint256.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/transactionfilterproxy.o src/qt/transactionfilterproxy.cpp + +build/transactionview.o: src/qt/transactionview.cpp src/qt/transactionview.h \ + src/qt/transactionfilterproxy.h \ + src/qt/transactionrecord.h \ + src/uint256.h \ + src/qt/walletmodel.h \ + src/allocators.h \ + src/qt/addresstablemodel.h \ + src/qt/transactiontablemodel.h \ + src/qt/bitbeanunits.h \ + src/qt/csvmodelwriter.h \ + src/qt/transactiondescdialog.h \ + src/qt/editaddressdialog.h \ + src/qt/optionsmodel.h \ + src/qt/guiutil.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/transactionview.o src/qt/transactionview.cpp + +build/walletmodel.o: src/qt/walletmodel.cpp src/qt/walletmodel.h \ + src/allocators.h \ + src/qt/guiconstants.h \ + src/qt/optionsmodel.h \ + src/qt/addresstablemodel.h \ + src/qt/transactiontablemodel.h \ + src/ui_interface.h \ + src/wallet.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/walletmodel.o src/qt/walletmodel.cpp + +build/bitbeanrpc.o: src/bitbeanrpc.cpp src/init.h \ + src/wallet.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + src/bitbeanrpc.h \ + src/json/json_spirit_reader_template.h \ + src/json/json_spirit_value.h \ + src/json/json_spirit_error_position.h \ + src/json/json_spirit_writer_template.h \ + src/json/json_spirit_utils.h \ + src/checkpoints.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitbeanrpc.o src/bitbeanrpc.cpp + +build/rpcdump.o: src/rpcdump.cpp src/init.h \ + src/wallet.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + src/bitbeanrpc.h \ + src/json/json_spirit_reader_template.h \ + src/json/json_spirit_value.h \ + src/json/json_spirit_error_position.h \ + src/json/json_spirit_writer_template.h \ + src/json/json_spirit_utils.h \ + src/checkpoints.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/rpcdump.o src/rpcdump.cpp + +build/rpcnet.o: src/rpcnet.cpp src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/compat.h \ + src/protocol.h \ + src/uint256.h \ + src/addrman.h \ + src/util.h \ + src/sync.h \ + src/bitbeanrpc.h \ + src/json/json_spirit_reader_template.h \ + src/json/json_spirit_value.h \ + src/json/json_spirit_error_position.h \ + src/json/json_spirit_writer_template.h \ + src/json/json_spirit_utils.h \ + src/checkpoints.h \ + src/alert.h \ + src/wallet.h \ + src/main.h \ + src/bignum.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/rpcnet.o src/rpcnet.cpp + +build/rpcmining.o: src/rpcmining.cpp src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/db.h \ + src/txdb.h \ + src/txdb-leveldb.h \ + src/init.h \ + src/wallet.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/base58.h \ + src/miner.h \ + src/bitbeanrpc.h \ + src/json/json_spirit_reader_template.h \ + src/json/json_spirit_value.h \ + src/json/json_spirit_error_position.h \ + src/json/json_spirit_writer_template.h \ + src/json/json_spirit_utils.h \ + src/checkpoints.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/rpcmining.o src/rpcmining.cpp + +build/rpcwallet.o: src/rpcwallet.cpp src/wallet.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + src/bitbeanrpc.h \ + src/json/json_spirit_reader_template.h \ + src/json/json_spirit_value.h \ + src/json/json_spirit_error_position.h \ + src/json/json_spirit_writer_template.h \ + src/json/json_spirit_utils.h \ + src/checkpoints.h \ + src/init.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/rpcwallet.o src/rpcwallet.cpp + +build/rpcblockchain.o: src/rpcblockchain.cpp src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/bitbeanrpc.h \ + src/json/json_spirit_reader_template.h \ + src/json/json_spirit_value.h \ + src/json/json_spirit_error_position.h \ + src/json/json_spirit_writer_template.h \ + src/json/json_spirit_utils.h \ + src/checkpoints.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/rpcblockchain.o src/rpcblockchain.cpp + +build/rpcrawtransaction.o: src/rpcrawtransaction.cpp src/base58.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/key.h \ + src/util.h \ + src/netbase.h \ + src/compat.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/sync.h \ + src/bitbeanrpc.h \ + src/json/json_spirit_reader_template.h \ + src/json/json_spirit_value.h \ + src/json/json_spirit_error_position.h \ + src/json/json_spirit_writer_template.h \ + src/json/json_spirit_utils.h \ + src/checkpoints.h \ + src/net.h \ + src/mruset.h \ + src/protocol.h \ + src/addrman.h \ + src/txdb.h \ + src/txdb-leveldb.h \ + src/main.h \ + src/scrypt.h \ + src/init.h \ + src/wallet.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/rpcrawtransaction.o src/rpcrawtransaction.cpp + +build/overviewpage.o: src/qt/overviewpage.cpp src/qt/overviewpage.h \ + src/qt/clientmodel.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/wallet.h \ + src/ui_interface.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + build/ui_overviewpage.h \ + src/qt/walletmodel.h \ + src/qt/bitbeanunits.h \ + src/qt/optionsmodel.h \ + src/qt/transactiontablemodel.h \ + src/qt/transactionfilterproxy.h \ + src/qt/guiutil.h \ + src/qt/guiconstants.h \ + src/bitbeanrpc.h \ + src/json/json_spirit_reader_template.h \ + src/json/json_spirit_value.h \ + src/json/json_spirit_error_position.h \ + src/json/json_spirit_writer_template.h \ + src/json/json_spirit_utils.h \ + src/checkpoints.h \ + src/init.h \ + build/overviewpage.moc + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/overviewpage.o src/qt/overviewpage.cpp + +build/csvmodelwriter.o: src/qt/csvmodelwriter.cpp src/qt/csvmodelwriter.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/csvmodelwriter.o src/qt/csvmodelwriter.cpp + +build/crypter.o: src/crypter.cpp src/crypter.h \ + src/allocators.h \ + src/key.h \ + src/serialize.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/util.h \ + src/netbase.h \ + src/compat.h \ + src/scrypt.h \ + src/net.h \ + src/mruset.h \ + src/protocol.h \ + src/addrman.h \ + src/sync.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/crypter.o src/crypter.cpp + +build/sendbeansentry.o: src/qt/sendbeansentry.cpp src/qt/sendbeansentry.h \ + build/ui_sendbeansentry.h \ + src/qt/bitbeanamountfield.h \ + src/qt/qvalidatedlineedit.h \ + src/qt/guiutil.h \ + src/qt/bitbeanunits.h \ + src/qt/addressbookpage.h \ + src/qt/walletmodel.h \ + src/allocators.h \ + src/qt/optionsmodel.h \ + src/qt/addresstablemodel.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/sendbeansentry.o src/qt/sendbeansentry.cpp + +build/qvalidatedlineedit.o: src/qt/qvalidatedlineedit.cpp src/qt/qvalidatedlineedit.h \ + src/qt/guiconstants.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/qvalidatedlineedit.o src/qt/qvalidatedlineedit.cpp + +build/bitbeanunits.o: src/qt/bitbeanunits.cpp src/qt/bitbeanunits.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitbeanunits.o src/qt/bitbeanunits.cpp + +build/qvaluecombobox.o: src/qt/qvaluecombobox.cpp src/qt/qvaluecombobox.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/qvaluecombobox.o src/qt/qvaluecombobox.cpp + +build/askpassphrasedialog.o: src/qt/askpassphrasedialog.cpp src/qt/askpassphrasedialog.h \ + build/ui_askpassphrasedialog.h \ + src/qt/guiconstants.h \ + src/qt/walletmodel.h \ + src/allocators.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/askpassphrasedialog.o src/qt/askpassphrasedialog.cpp + +build/protocol.o: src/protocol.cpp src/protocol.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/netbase.h \ + src/compat.h \ + src/uint256.h \ + src/util.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/protocol.o src/protocol.cpp + +build/notificator.o: src/qt/notificator.cpp src/qt/notificator.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/notificator.o src/qt/notificator.cpp + +build/qtipcserver.o: src/qt/qtipcserver.cpp src/qt/qtipcserver.h \ + src/qt/guiconstants.h \ + src/ui_interface.h \ + src/util.h \ + src/uint256.h \ + src/netbase.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/compat.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/qtipcserver.o src/qt/qtipcserver.cpp + +build/rpcconsole.o: src/qt/rpcconsole.cpp src/qt/rpcconsole.h \ + build/ui_rpcconsole.h \ + src/qt/clientmodel.h \ + src/bitbeanrpc.h \ + src/json/json_spirit_reader_template.h \ + src/json/json_spirit_value.h \ + src/json/json_spirit_error_position.h \ + src/json/json_spirit_writer_template.h \ + src/json/json_spirit_utils.h \ + src/util.h \ + src/uint256.h \ + src/netbase.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/compat.h \ + src/checkpoints.h \ + src/net.h \ + src/mruset.h \ + src/protocol.h \ + src/addrman.h \ + src/sync.h \ + src/qt/guiutil.h \ + build/rpcconsole.moc + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/rpcconsole.o src/qt/rpcconsole.cpp + +build/noui.o: src/noui.cpp src/ui_interface.h \ + src/init.h \ + src/wallet.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/walletdb.h \ + src/db.h \ + src/base58.h \ + src/bitbeanrpc.h \ + src/json/json_spirit_reader_template.h \ + src/json/json_spirit_value.h \ + src/json/json_spirit_error_position.h \ + src/json/json_spirit_writer_template.h \ + src/json/json_spirit_utils.h \ + src/checkpoints.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/noui.o src/noui.cpp + +build/kernel.o: src/kernel.cpp src/kernel.h \ + src/main.h \ + src/bignum.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/uint256.h \ + src/sync.h \ + src/net.h \ + src/mruset.h \ + src/netbase.h \ + src/compat.h \ + src/protocol.h \ + src/addrman.h \ + src/util.h \ + src/script.h \ + src/keystore.h \ + src/crypter.h \ + src/key.h \ + src/scrypt.h \ + src/txdb.h \ + src/txdb-leveldb.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/kernel.o src/kernel.cpp + +build/scrypt-arm.o: src/scrypt-arm.S + $(CC) -c $(CFLAGS) $(INCPATH) -o build/scrypt-arm.o src/scrypt-arm.S + +build/scrypt-x86.o: src/scrypt-x86.S + $(CC) -c $(CFLAGS) $(INCPATH) -o build/scrypt-x86.o src/scrypt-x86.S + +build/scrypt-x86_64.o: src/scrypt-x86_64.S + $(CC) -c $(CFLAGS) $(INCPATH) -o build/scrypt-x86_64.o src/scrypt-x86_64.S + +build/scrypt.o: src/scrypt.cpp src/scrypt.h \ + src/util.h \ + src/uint256.h \ + src/netbase.h \ + src/serialize.h \ + src/allocators.h \ + src/version.h \ + src/clientversion.h \ + src/compat.h \ + src/net.h \ + src/mruset.h \ + src/protocol.h \ + src/addrman.h \ + src/sync.h \ + src/pbkdf2.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/scrypt.o src/scrypt.cpp + +build/pbkdf2.o: src/pbkdf2.cpp src/pbkdf2.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/pbkdf2.o src/pbkdf2.cpp + +build/qrcodedialog.o: src/qt/qrcodedialog.cpp src/qt/qrcodedialog.h \ + build/ui_qrcodedialog.h \ + src/qt/bitbeanamountfield.h \ + src/qt/bitbeanunits.h \ + src/qt/guiconstants.h \ + src/qt/guiutil.h \ + src/qt/optionsmodel.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/qrcodedialog.o src/qt/qrcodedialog.cpp + +build/moc_bitbeangui.o: build/moc_bitbeangui.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_bitbeangui.o build/moc_bitbeangui.cpp + +build/moc_transactiontablemodel.o: build/moc_transactiontablemodel.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_transactiontablemodel.o build/moc_transactiontablemodel.cpp + +build/moc_addresstablemodel.o: build/moc_addresstablemodel.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_addresstablemodel.o build/moc_addresstablemodel.cpp + +build/moc_optionsdialog.o: build/moc_optionsdialog.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_optionsdialog.o build/moc_optionsdialog.cpp + +build/moc_beancontroldialog.o: build/moc_beancontroldialog.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_beancontroldialog.o build/moc_beancontroldialog.cpp + +build/moc_beancontroltreewidget.o: build/moc_beancontroltreewidget.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_beancontroltreewidget.o build/moc_beancontroltreewidget.cpp + +build/moc_sendbeansdialog.o: build/moc_sendbeansdialog.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_sendbeansdialog.o build/moc_sendbeansdialog.cpp + +build/moc_addressbookpage.o: build/moc_addressbookpage.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_addressbookpage.o build/moc_addressbookpage.cpp + +build/moc_signverifymessagedialog.o: build/moc_signverifymessagedialog.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_signverifymessagedialog.o build/moc_signverifymessagedialog.cpp + +build/moc_aboutdialog.o: build/moc_aboutdialog.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_aboutdialog.o build/moc_aboutdialog.cpp + +build/moc_editaddressdialog.o: build/moc_editaddressdialog.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_editaddressdialog.o build/moc_editaddressdialog.cpp + +build/moc_bitbeanaddressvalidator.o: build/moc_bitbeanaddressvalidator.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_bitbeanaddressvalidator.o build/moc_bitbeanaddressvalidator.cpp + +build/moc_clientmodel.o: build/moc_clientmodel.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_clientmodel.o build/moc_clientmodel.cpp + +build/moc_guiutil.o: build/moc_guiutil.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_guiutil.o build/moc_guiutil.cpp + +build/moc_optionsmodel.o: build/moc_optionsmodel.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_optionsmodel.o build/moc_optionsmodel.cpp + +build/moc_monitoreddatamapper.o: build/moc_monitoreddatamapper.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_monitoreddatamapper.o build/moc_monitoreddatamapper.cpp + +build/moc_transactiondesc.o: build/moc_transactiondesc.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_transactiondesc.o build/moc_transactiondesc.cpp + +build/moc_transactiondescdialog.o: build/moc_transactiondescdialog.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_transactiondescdialog.o build/moc_transactiondescdialog.cpp + +build/moc_bitbeanamountfield.o: build/moc_bitbeanamountfield.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_bitbeanamountfield.o build/moc_bitbeanamountfield.cpp + +build/moc_transactionfilterproxy.o: build/moc_transactionfilterproxy.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_transactionfilterproxy.o build/moc_transactionfilterproxy.cpp + +build/moc_transactionview.o: build/moc_transactionview.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_transactionview.o build/moc_transactionview.cpp + +build/moc_walletmodel.o: build/moc_walletmodel.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_walletmodel.o build/moc_walletmodel.cpp + +build/moc_overviewpage.o: build/moc_overviewpage.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_overviewpage.o build/moc_overviewpage.cpp + +build/moc_csvmodelwriter.o: build/moc_csvmodelwriter.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_csvmodelwriter.o build/moc_csvmodelwriter.cpp + +build/moc_sendbeansentry.o: build/moc_sendbeansentry.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_sendbeansentry.o build/moc_sendbeansentry.cpp + +build/moc_qvalidatedlineedit.o: build/moc_qvalidatedlineedit.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_qvalidatedlineedit.o build/moc_qvalidatedlineedit.cpp + +build/moc_qvaluecombobox.o: build/moc_qvaluecombobox.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_qvaluecombobox.o build/moc_qvaluecombobox.cpp + +build/moc_askpassphrasedialog.o: build/moc_askpassphrasedialog.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_askpassphrasedialog.o build/moc_askpassphrasedialog.cpp + +build/moc_notificator.o: build/moc_notificator.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_notificator.o build/moc_notificator.cpp + +build/moc_rpcconsole.o: build/moc_rpcconsole.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_rpcconsole.o build/moc_rpcconsole.cpp + +build/moc_qrcodedialog.o: build/moc_qrcodedialog.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_qrcodedialog.o build/moc_qrcodedialog.cpp + +build/qrc_bitbean.o: qrc_bitbean.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/qrc_bitbean.o qrc_bitbean.cpp + +####### Install + +install: FORCE + +uninstall: FORCE + +FORCE: + diff --git a/README.html b/README.html index 407ac0a..ce76f4f 100644 --- a/README.html +++ b/README.html @@ -1,16 +1,14 @@ -

BitBean

+

BitBean Logo

-

--insert image here--

+

What Is BitBean?

-

What Is BitBean?

- -

BitBean is a Proof of Stake Cryptocurrency. The first two weeks after release will consist of a two week Proof of Work period.

+

Bitbeans (Ticker: BITB) is a new crypto currency designed for scale-ability, speed and lightening fast transactions! It features an innovative Proof of Stake algorithm that more closely resembles traditional Proof of Work crypto currencies. BitBean is the first crypto to impliment 20MB blocks, based off Gavin Andersen's proposals to fix Bitcoin's scale-ability limitations.

Why BitBean?

It is the goal of the BitBean developers for everyone involved in the Cryptocurrency revolution to have access to the exciting developments that have been taking place. An ASIC-friendly, mixed PoW/PoS coin with eventual anonymous transaction capabilities has been sorely overlooked.

-

The BitBean developers believe that progress should never be held back. ASICs use much less energy than GPUs and are orders of magnitude more efficient. The energy used mining Scrypt coins for years to prolong the days of GPU mining was a truly enormous waste of resources on a global scale. Why hold back progress? BitBean encourages it.

+

The BitBean developers believe that progress should never be held back. Proof of Stake Crypto-currencies use a considerably smaller amount of energy and allows everyone to be involved in the network, without prohibitively expensive propriatary hardware as required to mine Bitcoin. The energy used mining Scrypt beans for years to prolong the days of GPU mining was a truly enormous waste of resources on a global scale. Why hold back progress? BitBean encourages it, allowing everyone with even a small investment in BitBean to participate in the network's success!

BitBean Specifications

@@ -35,3 +33,11 @@

BitBean Specifications

Proof of Stake Reward: 1000 per block

Minimum Coin Stake Age: 6 hours

+ + +

BitBean Monetary Units

+

Sprout = 1,000 BitBeans

+

BitB = 1 BitBean

+

mBitB = .001 BitBean

+

uBitB = .000001 BitBean

+

nokat = .00000001 BitBean

diff --git a/README.md b/README.md index 85a0ac9..96061ea 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,45 @@ BitBean -============================ +"BitBean, Leading the Way for Mass Adoption of Crypto-curriencies!" +http://www.bitbean.org +================================================================================== - What Is BitBean? ----------------------------- +What Is BitBean? +---------------------------------------------------------------------------------- -BitBean is a Proof of Stake Cryptocurrency. The first two weeks after release will consist of a two week Proof of Work period. +Bitbeans (Ticker: BITB) is a new crypto currency designed for scale-ability, +speed and lightening fast transactions! It features an innovative Proof of Stake +algorithm that more closely resembles traditional Proof of Work crypto currencies. +BitBean is the first crypto to impliment 20MB blocks, based off Gavin Andersen's +proposals to fix Bitcoin's scale-ability limitations. +BitBean is designed from the ground-up to be transaction-centric and superior form +of currency for on-line and brick-and-mortar businesses. Inovative new implimentations +are planned for BitBean that will set it appart from the rest of the crypto curriencies +and lead in the mass adoption of crypto curriencies in the market place. -Why BitBean? --------------------------- - -It is the goal of the BitBean developers for everyone involved in the Cryptocurrency revolution to have access to the exciting developments that have been taking place. An ASIC-friendly, mixed PoW/PoS coin with eventual anonymous transaction capabilities has been sorely overlooked. -The BitBean developers believe that progress should never be held back. ASICs use much less energy than GPUs and are orders of magnitude more efficient. The energy used mining Scrypt coins for years to prolong the days of GPU mining was a truly enormous waste of resources on a global scale. Why hold back progress? BitBean encourages it. +Why BitBean? +---------------------------------------------------------------------------------- + +It is the goal of the BitBean developers (Bean Core) for everyone involved in the +Cryptocurrency revolution to have access to the exciting developments that have +been taking place. An ASIC-friendly, mixed PoW/PoS bean with eventual anonymous +transaction capabilities has been sorely overlooked. + +The BitBean developers believe that progress should never be held back. +Proof of Stake Crypto-currencies use a considerably smaller amount of energy and +allows everyone to be involved in the network, without prohibitively expensive +propriatary hardware as required to mine Bitcoin. The energy used mining Scrypt +beans for years to prolong the days of GPU mining was a truly enormous waste of +resources on a global scale. Why hold back progress? BitBean encourages it, +allowing everyone with even a small investment in BitBean to participate in the +network and currencies success! BitBean Specifications --------------------------- +---------------------------------------------------------------------------------- -**Coin Generation**: Pure Proof of Stake with Proof of Work period upon release +**Bean Generation**: Pure Proof of Stake with Proof of Work period upon release **Proof of Work Algorithm**: SHA-256 @@ -36,5 +57,24 @@ BitBean Specifications **Proof of Stake Reward**: 1000 BITB per block -**Minimum Coin Stake Age**: 6 hours +**Minimum Bean Stake Age**: 6 hours + + +BitBean Monetary Units +---------------------------------------------------------------------------------- + +Sprout = 1,000 BitBeans +BitB = 1 BitBean +mBitB = .001 BitBean +uBitB = .000001 BitBean +nokat = .00000001 BitBean + +Support +---------------------------------------------------------------------------------- +www.bitbean.org +Twitter: @BitBeanCoin +admin@bitbean.org +#bitbean on the Freenode IRC Network +#teambean on the Freenode IRC Network +Developer support: #beancore on the Freenode IRC Network diff --git a/autom4te.cache/output.0 b/autom4te.cache/output.0 deleted file mode 100644 index eedcfd7..0000000 --- a/autom4te.cache/output.0 +++ /dev/null @@ -1,16528 +0,0 @@ -@%:@! /bin/sh -@%:@ Guess values for system-dependent variables and create Makefiles. -@%:@ Generated by GNU Autoconf 2.69 for Bitcoin Core 0.9.99. -@%:@ -@%:@ Report bugs to . -@%:@ -@%:@ -@%:@ Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. -@%:@ -@%:@ -@%:@ This configure script is free software; the Free Software Foundation -@%:@ gives unlimited permission to copy, distribute and modify it. -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in @%:@( - *posix*) : - set -o posix ;; @%:@( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in @%:@( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -as_myself= -case $0 in @%:@(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -# Use a proper internal environment variable to ensure we don't fall - # into an infinite loop, continuously re-executing ourselves. - if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then - _as_can_reexec=no; export _as_can_reexec; - # We cannot yet assume a decent shell, so we have to provide a -# neutralization value for shells without unset; and this also -# works around shells that cannot unset nonexistent variables. -# Preserve -v and -x to the replacement shell. -BASH_ENV=/dev/null -ENV=/dev/null -(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -case $- in @%:@ (((( - *v*x* | *x*v* ) as_opts=-vx ;; - *v* ) as_opts=-v ;; - *x* ) as_opts=-x ;; - * ) as_opts= ;; -esac -exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -# Admittedly, this is quite paranoid, since all the known shells bail -# out after a failed `exec'. -$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -as_fn_exit 255 - fi - # We don't want this to propagate to other subprocesses. - { _as_can_reexec=; unset _as_can_reexec;} -if test "x$CONFIG_SHELL" = x; then - as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which - # is contrary to our usage. Disable this feature. - alias -g '\${1+\"\$@\"}'='\"\$@\"' - setopt NO_GLOB_SUBST -else - case \`(set -o) 2>/dev/null\` in @%:@( - *posix*) : - set -o posix ;; @%:@( - *) : - ;; -esac -fi -" - as_required="as_fn_return () { (exit \$1); } -as_fn_success () { as_fn_return 0; } -as_fn_failure () { as_fn_return 1; } -as_fn_ret_success () { return 0; } -as_fn_ret_failure () { return 1; } - -exitcode=0 -as_fn_success || { exitcode=1; echo as_fn_success failed.; } -as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } -as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } -as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } -if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : - -else - exitcode=1; echo positional parameters were not saved. -fi -test x\$exitcode = x0 || exit 1 -test -x / || exit 1" - as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO - as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO - eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && - test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 -test \$(( 1 + 1 )) = 2 || exit 1" - if (eval "$as_required") 2>/dev/null; then : - as_have_required=yes -else - as_have_required=no -fi - if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : - -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -as_found=false -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - as_found=: - case $as_dir in @%:@( - /*) - for as_base in sh bash ksh sh5; do - # Try only shells that exist, to save several forks. - as_shell=$as_dir/$as_base - if { test -f "$as_shell" || test -f "$as_shell.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : - CONFIG_SHELL=$as_shell as_have_required=yes - if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : - break 2 -fi -fi - done;; - esac - as_found=false -done -$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : - CONFIG_SHELL=$SHELL as_have_required=yes -fi; } -IFS=$as_save_IFS - - - if test "x$CONFIG_SHELL" != x; then : - export CONFIG_SHELL - # We cannot yet assume a decent shell, so we have to provide a -# neutralization value for shells without unset; and this also -# works around shells that cannot unset nonexistent variables. -# Preserve -v and -x to the replacement shell. -BASH_ENV=/dev/null -ENV=/dev/null -(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -case $- in @%:@ (((( - *v*x* | *x*v* ) as_opts=-vx ;; - *v* ) as_opts=-v ;; - *x* ) as_opts=-x ;; - * ) as_opts= ;; -esac -exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -# Admittedly, this is quite paranoid, since all the known shells bail -# out after a failed `exec'. -$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -exit 255 -fi - - if test x$as_have_required = xno; then : - $as_echo "$0: This script requires a shell more modern than all" - $as_echo "$0: the shells that I found on your system." - if test x${ZSH_VERSION+set} = xset ; then - $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" - $as_echo "$0: be upgraded to zsh 4.3.4 or later." - else - $as_echo "$0: Please tell bug-autoconf@gnu.org and info@bitcoin.org -$0: about your system, including any error possibly output -$0: before this message. Then install a modern shell, or -$0: manually run the script under such a shell if you do -$0: have one." - fi - exit 1 -fi -fi -fi -SHELL=${CONFIG_SHELL-/bin/sh} -export SHELL -# Unset more variables known to interfere with behavior of common tools. -CLICOLOR_FORCE= GREP_OPTIONS= -unset CLICOLOR_FORCE GREP_OPTIONS - -## --------------------- ## -## M4sh Shell Functions. ## -## --------------------- ## -@%:@ as_fn_unset VAR -@%:@ --------------- -@%:@ Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset - -@%:@ as_fn_set_status STATUS -@%:@ ----------------------- -@%:@ Set @S|@? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} @%:@ as_fn_set_status - -@%:@ as_fn_exit STATUS -@%:@ ----------------- -@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} @%:@ as_fn_exit - -@%:@ as_fn_mkdir_p -@%:@ ------------- -@%:@ Create "@S|@as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" - - -} @%:@ as_fn_mkdir_p - -@%:@ as_fn_executable_p FILE -@%:@ ----------------------- -@%:@ Test if FILE is an executable regular file. -as_fn_executable_p () -{ - test -f "$1" && test -x "$1" -} @%:@ as_fn_executable_p -@%:@ as_fn_append VAR VALUE -@%:@ ---------------------- -@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take -@%:@ advantage of any shell optimizations that allow amortized linear growth over -@%:@ repeated appends, instead of the typical quadratic growth present in naive -@%:@ implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -@%:@ as_fn_arith ARG... -@%:@ ------------------ -@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the -@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments -@%:@ must be portable across @S|@(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -@%:@ as_fn_error STATUS ERROR [LINENO LOG_FD] -@%:@ ---------------------------------------- -@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are -@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the -@%:@ script with STATUS, using 1 if that was 0. -as_fn_error () -{ - as_status=$1; test $as_status -eq 0 && as_status=1 - if test "$4"; then - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 - fi - $as_echo "$as_me: error: $2" >&2 - as_fn_exit $as_status -} @%:@ as_fn_error - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - - - as_lineno_1=$LINENO as_lineno_1a=$LINENO - as_lineno_2=$LINENO as_lineno_2a=$LINENO - eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && - test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { - # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) - sed -n ' - p - /[$]LINENO/= - ' <$as_myself | - sed ' - s/[$]LINENO.*/&-/ - t lineno - b - :lineno - N - :loop - s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ - t loop - s/-\n.*// - ' >$as_me.lineno && - chmod +x "$as_me.lineno" || - { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } - - # If we had to re-execute with $CONFIG_SHELL, we're ensured to have - # already done that, so ensure we don't try to do so again and fall - # in an infinite loop. This has already happened in practice. - _as_can_reexec=no; export _as_can_reexec - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). - . "./$as_me.lineno" - # Exit status is that of the last command. - exit -} - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in @%:@((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -pR'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -pR' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -pR' - fi -else - as_ln_s='cp -pR' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -as_test_x='test -x' -as_executable_p=as_fn_executable_p - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -test -n "$DJDIR" || exec 7<&0 &1 - -# Name of the host. -# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, -# so uname gets run too. -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - -# -# Initializations. -# -ac_default_prefix=/usr/local -ac_clean_files= -ac_config_libobj_dir=. -LIB@&t@OBJS= -cross_compiling=no -subdirs= -MFLAGS= -MAKEFLAGS= - -# Identity of this package. -PACKAGE_NAME='Bitcoin Core' -PACKAGE_TARNAME='bitcoin' -PACKAGE_VERSION='0.9.99' -PACKAGE_STRING='Bitcoin Core 0.9.99' -PACKAGE_BUGREPORT='info@bitcoin.org' -PACKAGE_URL='' - -ac_unique_file="src" -# Factoring default headers for most tests. -ac_includes_default="\ -#include -#ifdef HAVE_SYS_TYPES_H -# include -#endif -#ifdef HAVE_SYS_STAT_H -# include -#endif -#ifdef STDC_HEADERS -# include -# include -#else -# ifdef HAVE_STDLIB_H -# include -# endif -#endif -#ifdef HAVE_STRING_H -# if !defined STDC_HEADERS && defined HAVE_MEMORY_H -# include -# endif -# include -#endif -#ifdef HAVE_STRINGS_H -# include -#endif -#ifdef HAVE_INTTYPES_H -# include -#endif -#ifdef HAVE_STDINT_H -# include -#endif -#ifdef HAVE_UNISTD_H -# include -#endif" - -ac_subst_vars='am__EXEEXT_FALSE -am__EXEEXT_TRUE -LTLIBOBJS -LIB@&t@OBJS -BUILD_TEST_QT -BUILD_QT -BUILD_TEST -LEVELDB_TARGET_FLAGS -TESTDEFS -BOOST_LIBS -INCLUDES -USE_QRCODE -USE_UPNP -COPYRIGHT_YEAR -CLIENT_VERSION_IS_RELEASE -CLIENT_VERSION_BUILD -CLIENT_VERSION_REVISION -CLIENT_VERSION_MINOR -CLIENT_VERSION_MAJOR -GLIBC_BACK_COMPAT_FALSE -GLIBC_BACK_COMPAT_TRUE -USE_COMPARISON_TOOL_REORG_TESTS_FALSE -USE_COMPARISON_TOOL_REORG_TESTS_TRUE -USE_COMPARISON_TOOL_FALSE -USE_COMPARISON_TOOL_TRUE -USE_LCOV_FALSE -USE_LCOV_TRUE -USE_QRCODE_FALSE -USE_QRCODE_TRUE -ENABLE_WALLET_FALSE -ENABLE_WALLET_TRUE -TARGET_WINDOWS_FALSE -TARGET_WINDOWS_TRUE -BUILD_DARWIN_FALSE -BUILD_DARWIN_TRUE -TARGET_DARWIN_FALSE -TARGET_DARWIN_TRUE -MOC_DEFS -QT_SELECT -QT_TEST_INCLUDES -QT_DBUS_INCLUDES -QT_LDFLAGS -QT_INCLUDES -LUPDATE -LRELEASE -RCC -UIC -MOC -QT_DBUS_LIBS -QT_DBUS_CFLAGS -QT_TEST_LIBS -QT_TEST_CFLAGS -QT_LIBS -QT_CFLAGS -BUILD_BITCOIN_CLI_FALSE -BUILD_BITCOIN_CLI_TRUE -BUILD_BITCOIND_FALSE -BUILD_BITCOIND_TRUE -PROTOC -QR_LIBS -QR_CFLAGS -PROTOBUF_LIBS -PROTOBUF_CFLAGS -CRYPTO_LIBS -CRYPTO_CFLAGS -SSL_LIBS -SSL_CFLAGS -BOOST_UNIT_TEST_FRAMEWORK_LIB -BOOST_CHRONO_LIB -BOOST_THREAD_LIB -BOOST_PROGRAM_OPTIONS_LIB -BOOST_FILESYSTEM_LIB -BOOST_SYSTEM_LIB -BOOST_LDFLAGS -BOOST_CPPFLAGS -BDB_LIBS -BDB_CPPFLAGS -LIBMEMENV -LIBLEVELDB -LEVELDB_CPPFLAGS -EMBEDDED_LEVELDB_FALSE -EMBEDDED_LEVELDB_TRUE -PTHREAD_CFLAGS -PTHREAD_LIBS -PTHREAD_CC -ax_pthread_config -EGREP -GREP -COMPARISON_TOOL_REORG_TESTS -JAVA_COMPARISON_TOOL -GENISOIMAGE -OTOOL -INSTALLNAMETOOL -BREW -PORT -WINDOWS_BITS -WINDRES -MAKENSIS -PKG_CONFIG_LIBDIR -PKG_CONFIG_PATH -PKG_CONFIG -HEXDUMP -XGETTEXT -CCACHE -GIT -GENHTML -JAVA -LCOV -GCOV -RANLIB -AR -SED -ac_ct_OBJCXX -OBJCXXFLAGS -OBJCXX -LN_S -am__fastdepOBJC_FALSE -am__fastdepOBJC_TRUE -OBJCDEPMODE -ac_ct_OBJC -OBJCFLAGS -OBJC -CXXCPP -CPP -am__fastdepCC_FALSE -am__fastdepCC_TRUE -CCDEPMODE -ac_ct_CC -CFLAGS -CC -am__fastdepCXX_FALSE -am__fastdepCXX_TRUE -CXXDEPMODE -am__nodep -AMDEPBACKSLASH -AMDEP_FALSE -AMDEP_TRUE -am__quote -am__include -DEPDIR -OBJEXT -EXEEXT -ac_ct_CXX -CPPFLAGS -LDFLAGS -CXXFLAGS -CXX -AM_BACKSLASH -AM_DEFAULT_VERBOSITY -AM_DEFAULT_V -AM_V -MAINT -MAINTAINER_MODE_FALSE -MAINTAINER_MODE_TRUE -am__untar -am__tar -AMTAR -am__leading_dot -SET_MAKE -AWK -mkdir_p -MKDIR_P -INSTALL_STRIP_PROGRAM -STRIP -install_sh -MAKEINFO -AUTOHEADER -AUTOMAKE -AUTOCONF -ACLOCAL -VERSION -PACKAGE -CYGPATH_W -am__isrc -INSTALL_DATA -INSTALL_SCRIPT -INSTALL_PROGRAM -host_os -host_vendor -host_cpu -host -build_os -build_vendor -build_cpu -build -target_alias -host_alias -build_alias -LIBS -ECHO_T -ECHO_N -ECHO_C -DEFS -mandir -localedir -libdir -psdir -pdfdir -dvidir -htmldir -infodir -docdir -oldincludedir -includedir -localstatedir -sharedstatedir -sysconfdir -datadir -datarootdir -libexecdir -sbindir -bindir -program_transform_name -prefix -exec_prefix -PACKAGE_URL -PACKAGE_BUGREPORT -PACKAGE_STRING -PACKAGE_VERSION -PACKAGE_TARNAME -PACKAGE_NAME -PATH_SEPARATOR -SHELL' -ac_subst_files='' -ac_user_opts=' -enable_option_checking -enable_maintainer_mode -enable_silent_rules -enable_wallet -with_miniupnpc -enable_upnp_default -enable_tests -with_comparison_tool -enable_comparison_tool_reorg_tests -with_qrencode -enable_hardening -enable_ccache -enable_lcov -enable_glibc_back_compat -with_protoc_bindir -enable_dependency_tracking -enable_debug -enable_largefile -with_incompatible_bdb -with_boost -with_boost_libdir -with_boost_system -with_boost_filesystem -with_boost_program_options -with_boost_thread -with_boost_chrono -with_boost_unit_test_framework -with_cli -with_daemon -with_gui -with_qt_incdir -with_qt_libdir -with_qt_plugindir -with_qt_bindir -with_qtdbus -' - ac_precious_vars='build_alias -host_alias -target_alias -CXX -CXXFLAGS -LDFLAGS -LIBS -CPPFLAGS -CCC -CC -CFLAGS -CPP -CXXCPP -OBJC -OBJCFLAGS -OBJCXX -OBJCXXFLAGS -PKG_CONFIG -PKG_CONFIG_PATH -PKG_CONFIG_LIBDIR -SSL_CFLAGS -SSL_LIBS -CRYPTO_CFLAGS -CRYPTO_LIBS -PROTOBUF_CFLAGS -PROTOBUF_LIBS -QR_CFLAGS -QR_LIBS -QT_CFLAGS -QT_LIBS -QT_TEST_CFLAGS -QT_TEST_LIBS -QT_DBUS_CFLAGS -QT_DBUS_LIBS' - - -# Initialize some variables set by options. -ac_init_help= -ac_init_version=false -ac_unrecognized_opts= -ac_unrecognized_sep= -# The variables have the same names as the options, with -# dashes changed to underlines. -cache_file=/dev/null -exec_prefix=NONE -no_create= -no_recursion= -prefix=NONE -program_prefix=NONE -program_suffix=NONE -program_transform_name=s,x,x, -silent= -site= -srcdir= -verbose= -x_includes=NONE -x_libraries=NONE - -# Installation directory options. -# These are left unexpanded so users can "make install exec_prefix=/foo" -# and all the variables that are supposed to be based on exec_prefix -# by default will actually change. -# Use braces instead of parens because sh, perl, etc. also accept them. -# (The list follows the same order as the GNU Coding Standards.) -bindir='${exec_prefix}/bin' -sbindir='${exec_prefix}/sbin' -libexecdir='${exec_prefix}/libexec' -datarootdir='${prefix}/share' -datadir='${datarootdir}' -sysconfdir='${prefix}/etc' -sharedstatedir='${prefix}/com' -localstatedir='${prefix}/var' -includedir='${prefix}/include' -oldincludedir='/usr/include' -docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' -infodir='${datarootdir}/info' -htmldir='${docdir}' -dvidir='${docdir}' -pdfdir='${docdir}' -psdir='${docdir}' -libdir='${exec_prefix}/lib' -localedir='${datarootdir}/locale' -mandir='${datarootdir}/man' - -ac_prev= -ac_dashdash= -for ac_option -do - # If the previous option needs an argument, assign it. - if test -n "$ac_prev"; then - eval $ac_prev=\$ac_option - ac_prev= - continue - fi - - case $ac_option in - *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; - *=) ac_optarg= ;; - *) ac_optarg=yes ;; - esac - - # Accept the important Cygnus configure options, so we can diagnose typos. - - case $ac_dashdash$ac_option in - --) - ac_dashdash=yes ;; - - -bindir | --bindir | --bindi | --bind | --bin | --bi) - ac_prev=bindir ;; - -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) - bindir=$ac_optarg ;; - - -build | --build | --buil | --bui | --bu) - ac_prev=build_alias ;; - -build=* | --build=* | --buil=* | --bui=* | --bu=*) - build_alias=$ac_optarg ;; - - -cache-file | --cache-file | --cache-fil | --cache-fi \ - | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) - ac_prev=cache_file ;; - -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ - | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) - cache_file=$ac_optarg ;; - - --config-cache | -C) - cache_file=config.cache ;; - - -datadir | --datadir | --datadi | --datad) - ac_prev=datadir ;; - -datadir=* | --datadir=* | --datadi=* | --datad=*) - datadir=$ac_optarg ;; - - -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ - | --dataroo | --dataro | --datar) - ac_prev=datarootdir ;; - -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ - | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) - datarootdir=$ac_optarg ;; - - -disable-* | --disable-*) - ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=no ;; - - -docdir | --docdir | --docdi | --doc | --do) - ac_prev=docdir ;; - -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) - docdir=$ac_optarg ;; - - -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) - ac_prev=dvidir ;; - -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) - dvidir=$ac_optarg ;; - - -enable-* | --enable-*) - ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=\$ac_optarg ;; - - -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ - | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ - | --exec | --exe | --ex) - ac_prev=exec_prefix ;; - -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ - | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ - | --exec=* | --exe=* | --ex=*) - exec_prefix=$ac_optarg ;; - - -gas | --gas | --ga | --g) - # Obsolete; use --with-gas. - with_gas=yes ;; - - -help | --help | --hel | --he | -h) - ac_init_help=long ;; - -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) - ac_init_help=recursive ;; - -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) - ac_init_help=short ;; - - -host | --host | --hos | --ho) - ac_prev=host_alias ;; - -host=* | --host=* | --hos=* | --ho=*) - host_alias=$ac_optarg ;; - - -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) - ac_prev=htmldir ;; - -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ - | --ht=*) - htmldir=$ac_optarg ;; - - -includedir | --includedir | --includedi | --included | --include \ - | --includ | --inclu | --incl | --inc) - ac_prev=includedir ;; - -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ - | --includ=* | --inclu=* | --incl=* | --inc=*) - includedir=$ac_optarg ;; - - -infodir | --infodir | --infodi | --infod | --info | --inf) - ac_prev=infodir ;; - -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) - infodir=$ac_optarg ;; - - -libdir | --libdir | --libdi | --libd) - ac_prev=libdir ;; - -libdir=* | --libdir=* | --libdi=* | --libd=*) - libdir=$ac_optarg ;; - - -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ - | --libexe | --libex | --libe) - ac_prev=libexecdir ;; - -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ - | --libexe=* | --libex=* | --libe=*) - libexecdir=$ac_optarg ;; - - -localedir | --localedir | --localedi | --localed | --locale) - ac_prev=localedir ;; - -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) - localedir=$ac_optarg ;; - - -localstatedir | --localstatedir | --localstatedi | --localstated \ - | --localstate | --localstat | --localsta | --localst | --locals) - ac_prev=localstatedir ;; - -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ - | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) - localstatedir=$ac_optarg ;; - - -mandir | --mandir | --mandi | --mand | --man | --ma | --m) - ac_prev=mandir ;; - -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) - mandir=$ac_optarg ;; - - -nfp | --nfp | --nf) - # Obsolete; use --without-fp. - with_fp=no ;; - - -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c | -n) - no_create=yes ;; - - -no-recursion | --no-recursion | --no-recursio | --no-recursi \ - | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) - no_recursion=yes ;; - - -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ - | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ - | --oldin | --oldi | --old | --ol | --o) - ac_prev=oldincludedir ;; - -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ - | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ - | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) - oldincludedir=$ac_optarg ;; - - -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) - ac_prev=prefix ;; - -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) - prefix=$ac_optarg ;; - - -program-prefix | --program-prefix | --program-prefi | --program-pref \ - | --program-pre | --program-pr | --program-p) - ac_prev=program_prefix ;; - -program-prefix=* | --program-prefix=* | --program-prefi=* \ - | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) - program_prefix=$ac_optarg ;; - - -program-suffix | --program-suffix | --program-suffi | --program-suff \ - | --program-suf | --program-su | --program-s) - ac_prev=program_suffix ;; - -program-suffix=* | --program-suffix=* | --program-suffi=* \ - | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) - program_suffix=$ac_optarg ;; - - -program-transform-name | --program-transform-name \ - | --program-transform-nam | --program-transform-na \ - | --program-transform-n | --program-transform- \ - | --program-transform | --program-transfor \ - | --program-transfo | --program-transf \ - | --program-trans | --program-tran \ - | --progr-tra | --program-tr | --program-t) - ac_prev=program_transform_name ;; - -program-transform-name=* | --program-transform-name=* \ - | --program-transform-nam=* | --program-transform-na=* \ - | --program-transform-n=* | --program-transform-=* \ - | --program-transform=* | --program-transfor=* \ - | --program-transfo=* | --program-transf=* \ - | --program-trans=* | --program-tran=* \ - | --progr-tra=* | --program-tr=* | --program-t=*) - program_transform_name=$ac_optarg ;; - - -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) - ac_prev=pdfdir ;; - -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) - pdfdir=$ac_optarg ;; - - -psdir | --psdir | --psdi | --psd | --ps) - ac_prev=psdir ;; - -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) - psdir=$ac_optarg ;; - - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - silent=yes ;; - - -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) - ac_prev=sbindir ;; - -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ - | --sbi=* | --sb=*) - sbindir=$ac_optarg ;; - - -sharedstatedir | --sharedstatedir | --sharedstatedi \ - | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ - | --sharedst | --shareds | --shared | --share | --shar \ - | --sha | --sh) - ac_prev=sharedstatedir ;; - -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ - | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ - | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ - | --sha=* | --sh=*) - sharedstatedir=$ac_optarg ;; - - -site | --site | --sit) - ac_prev=site ;; - -site=* | --site=* | --sit=*) - site=$ac_optarg ;; - - -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) - ac_prev=srcdir ;; - -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) - srcdir=$ac_optarg ;; - - -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ - | --syscon | --sysco | --sysc | --sys | --sy) - ac_prev=sysconfdir ;; - -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ - | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) - sysconfdir=$ac_optarg ;; - - -target | --target | --targe | --targ | --tar | --ta | --t) - ac_prev=target_alias ;; - -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) - target_alias=$ac_optarg ;; - - -v | -verbose | --verbose | --verbos | --verbo | --verb) - verbose=yes ;; - - -version | --version | --versio | --versi | --vers | -V) - ac_init_version=: ;; - - -with-* | --with-*) - ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=\$ac_optarg ;; - - -without-* | --without-*) - ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=no ;; - - --x) - # Obsolete; use --with-x. - with_x=yes ;; - - -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ - | --x-incl | --x-inc | --x-in | --x-i) - ac_prev=x_includes ;; - -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ - | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) - x_includes=$ac_optarg ;; - - -x-libraries | --x-libraries | --x-librarie | --x-librari \ - | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) - ac_prev=x_libraries ;; - -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ - | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) - x_libraries=$ac_optarg ;; - - -*) as_fn_error $? "unrecognized option: \`$ac_option' -Try \`$0 --help' for more information" - ;; - - *=*) - ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` - # Reject names that are not valid shell variable names. - case $ac_envvar in #( - '' | [0-9]* | *[!_$as_cr_alnum]* ) - as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; - esac - eval $ac_envvar=\$ac_optarg - export $ac_envvar ;; - - *) - # FIXME: should be removed in autoconf 3.0. - $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 - expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" - ;; - - esac -done - -if test -n "$ac_prev"; then - ac_option=--`echo $ac_prev | sed 's/_/-/g'` - as_fn_error $? "missing argument to $ac_option" -fi - -if test -n "$ac_unrecognized_opts"; then - case $enable_option_checking in - no) ;; - fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; - *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; - esac -fi - -# Check all directory arguments for consistency. -for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ - datadir sysconfdir sharedstatedir localstatedir includedir \ - oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir -do - eval ac_val=\$$ac_var - # Remove trailing slashes. - case $ac_val in - */ ) - ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` - eval $ac_var=\$ac_val;; - esac - # Be sure to have absolute directory names. - case $ac_val in - [\\/$]* | ?:[\\/]* ) continue;; - NONE | '' ) case $ac_var in *prefix ) continue;; esac;; - esac - as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" -done - -# There might be people who depend on the old broken behavior: `$host' -# used to hold the argument of --host etc. -# FIXME: To remove some day. -build=$build_alias -host=$host_alias -target=$target_alias - -# FIXME: To remove some day. -if test "x$host_alias" != x; then - if test "x$build_alias" = x; then - cross_compiling=maybe - elif test "x$build_alias" != "x$host_alias"; then - cross_compiling=yes - fi -fi - -ac_tool_prefix= -test -n "$host_alias" && ac_tool_prefix=$host_alias- - -test "$silent" = yes && exec 6>/dev/null - - -ac_pwd=`pwd` && test -n "$ac_pwd" && -ac_ls_di=`ls -di .` && -ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - as_fn_error $? "working directory cannot be determined" -test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - as_fn_error $? "pwd does not report name of working directory" - - -# Find the source files, if location was not specified. -if test -z "$srcdir"; then - ac_srcdir_defaulted=yes - # Try the directory containing this script, then the parent directory. - ac_confdir=`$as_dirname -- "$as_myself" || -$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_myself" : 'X\(//\)[^/]' \| \ - X"$as_myself" : 'X\(//\)$' \| \ - X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_myself" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - srcdir=$ac_confdir - if test ! -r "$srcdir/$ac_unique_file"; then - srcdir=.. - fi -else - ac_srcdir_defaulted=no -fi -if test ! -r "$srcdir/$ac_unique_file"; then - test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" -fi -ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" -ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" - pwd)` -# When building in place, set srcdir=. -if test "$ac_abs_confdir" = "$ac_pwd"; then - srcdir=. -fi -# Remove unnecessary trailing slashes from srcdir. -# Double slashes in file names in object file debugging info -# mess up M-x gdb in Emacs. -case $srcdir in -*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; -esac -for ac_var in $ac_precious_vars; do - eval ac_env_${ac_var}_set=\${${ac_var}+set} - eval ac_env_${ac_var}_value=\$${ac_var} - eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} - eval ac_cv_env_${ac_var}_value=\$${ac_var} -done - -# -# Report the --help message. -# -if test "$ac_init_help" = "long"; then - # Omit some internal or obsolete options to make the list less imposing. - # This message is too long to be a string in the A/UX 3.1 sh. - cat <<_ACEOF -\`configure' configures Bitcoin Core 0.9.99 to adapt to many kinds of systems. - -Usage: $0 [OPTION]... [VAR=VALUE]... - -To assign environment variables (e.g., CC, CFLAGS...), specify them as -VAR=VALUE. See below for descriptions of some of the useful variables. - -Defaults for the options are specified in brackets. - -Configuration: - -h, --help display this help and exit - --help=short display options specific to this package - --help=recursive display the short help of all the included packages - -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking ...' messages - --cache-file=FILE cache test results in FILE [disabled] - -C, --config-cache alias for \`--cache-file=config.cache' - -n, --no-create do not create output files - --srcdir=DIR find the sources in DIR [configure dir or \`..'] - -Installation directories: - --prefix=PREFIX install architecture-independent files in PREFIX - @<:@@S|@ac_default_prefix@:>@ - --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX - @<:@PREFIX@:>@ - -By default, \`make install' will install all the files in -\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify -an installation prefix other than \`$ac_default_prefix' using \`--prefix', -for instance \`--prefix=\$HOME'. - -For better control, use the options below. - -Fine tuning of the installation directories: - --bindir=DIR user executables [EPREFIX/bin] - --sbindir=DIR system admin executables [EPREFIX/sbin] - --libexecdir=DIR program executables [EPREFIX/libexec] - --sysconfdir=DIR read-only single-machine data [PREFIX/etc] - --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] - --localstatedir=DIR modifiable single-machine data [PREFIX/var] - --libdir=DIR object code libraries [EPREFIX/lib] - --includedir=DIR C header files [PREFIX/include] - --oldincludedir=DIR C header files for non-gcc [/usr/include] - --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] - --datadir=DIR read-only architecture-independent data [DATAROOTDIR] - --infodir=DIR info documentation [DATAROOTDIR/info] - --localedir=DIR locale-dependent data [DATAROOTDIR/locale] - --mandir=DIR man documentation [DATAROOTDIR/man] - --docdir=DIR documentation root @<:@DATAROOTDIR/doc/bitcoin@:>@ - --htmldir=DIR html documentation [DOCDIR] - --dvidir=DIR dvi documentation [DOCDIR] - --pdfdir=DIR pdf documentation [DOCDIR] - --psdir=DIR ps documentation [DOCDIR] -_ACEOF - - cat <<\_ACEOF - -Program names: - --program-prefix=PREFIX prepend PREFIX to installed program names - --program-suffix=SUFFIX append SUFFIX to installed program names - --program-transform-name=PROGRAM run sed PROGRAM on installed program names - -System types: - --build=BUILD configure for building on BUILD [guessed] - --host=HOST cross-compile to build programs to run on HOST [BUILD] -_ACEOF -fi - -if test -n "$ac_init_help"; then - case $ac_init_help in - short | recursive ) echo "Configuration of Bitcoin Core 0.9.99:";; - esac - cat <<\_ACEOF - -Optional Features: - --disable-option-checking ignore unrecognized --enable/--with options - --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) - --enable-FEATURE[=ARG] include FEATURE [ARG=yes] - --disable-maintainer-mode disable make rules and dependencies not useful - (and sometimes confusing) to the casual installer - --enable-silent-rules less verbose build output (undo: `make V=1') - --disable-silent-rules verbose build output (undo: `make V=0') - --enable-wallet enable wallet (default is yes) - --enable-upnp-default if UPNP is enabled, turn it on at startup (default - is no) - --enable-tests compile tests (default is yes) - --enable-comparison-tool-reorg-tests - enable expensive reorg tests in the comparison tool - (default no) - --enable-hardening attempt to harden the resulting executables (default - is yes) - --enable-ccache use ccache for building (default is yes if ccache is - found) - --enable-lcov enable lcov testing (default is no) - --enable-glibc-back-compat - enable backwards compatibility with glibc and - libstdc++ - --disable-dependency-tracking speeds up one-time build - --enable-dependency-tracking do not reject slow dependency extractors - --enable-debug use debug compiler flags and macros (default is no) - --disable-largefile omit support for large files - -Optional Packages: - --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] - --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) - --with-miniupnpc enable UPNP (default is yes if libminiupnpc is - found) - --with-comparison-tool path to java comparison tool (requires - --enable-tests) - --with-qrencode enable QR code support (default is yes if qt is - enabled and libqrencode is found) - --with-protoc-bindir=BIN_DIR - specify protoc bin path - --with-incompatible-bdb allow using a bdb version other than 4.8 - --with-boost@<:@=ARG@:>@ use Boost library from a standard location - (ARG=yes), from the specified location (ARG=), - or disable it (ARG=no) @<:@ARG=yes@:>@ - --with-boost-libdir=LIB_DIR - Force given directory for boost libraries. Note that - this will override library path detection, so use - this parameter only if default library detection - fails and you know exactly where your boost - libraries are located. - --with-boost-system@<:@=special-lib@:>@ - use the System library from boost - it is possible - to specify a certain library for the linker e.g. - --with-boost-system=boost_system-gcc-mt - --with-boost-filesystem@<:@=special-lib@:>@ - use the Filesystem library from boost - it is - possible to specify a certain library for the linker - e.g. --with-boost-filesystem=boost_filesystem-gcc-mt - --with-boost-program-options@<:@=special-lib@:>@ - use the program options library from boost - it is - possible to specify a certain library for the linker - e.g. - --with-boost-program-options=boost_program_options-gcc-mt-1_33_1 - --with-boost-thread@<:@=special-lib@:>@ - use the Thread library from boost - it is possible - to specify a certain library for the linker e.g. - --with-boost-thread=boost_thread-gcc-mt - --with-boost-chrono@<:@=special-lib@:>@ - use the Chrono library from boost - it is possible - to specify a certain library for the linker e.g. - --with-boost-chrono=boost_chrono-gcc-mt - --with-boost-unit-test-framework@<:@=special-lib@:>@ - use the Unit_Test_Framework library from boost - it - is possible to specify a certain library for the - linker e.g. - --with-boost-unit-test-framework=boost_unit_test_framework-gcc - --with-cli with CLI (default is yes) - --with-daemon with daemon (default is yes) - --with-gui with GUI (no|qt4|qt5|auto. default is auto, qt4 - tried first.) - --with-qt-incdir=INC_DIR - specify qt include path (overridden by pkgconfig) - --with-qt-libdir=LIB_DIR - specify qt lib path (overridden by pkgconfig) - --with-qt-plugindir=PLUGIN_DIR - specify qt plugin path (overridden by pkgconfig) - --with-qt-bindir=BIN_DIR - specify qt bin path - --with-qtdbus enable DBus support (default is yes if qt is enabled - and QtDBus is found) - -Some influential environment variables: - CXX C++ compiler command - CXXFLAGS C++ compiler flags - LDFLAGS linker flags, e.g. -L if you have libraries in a - nonstandard directory - LIBS libraries to pass to the linker, e.g. -l - CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if - you have headers in a nonstandard directory - CC C compiler command - CFLAGS C compiler flags - CPP C preprocessor - CXXCPP C++ preprocessor - OBJC Objective C compiler command - OBJCFLAGS Objective C compiler flags - OBJCXX Objective C++ compiler command - OBJCXXFLAGS Objective C++ compiler flags - PKG_CONFIG path to pkg-config utility - PKG_CONFIG_PATH - directories to add to pkg-config's search path - PKG_CONFIG_LIBDIR - path overriding pkg-config's built-in search path - SSL_CFLAGS C compiler flags for SSL, overriding pkg-config - SSL_LIBS linker flags for SSL, overriding pkg-config - CRYPTO_CFLAGS - C compiler flags for CRYPTO, overriding pkg-config - CRYPTO_LIBS linker flags for CRYPTO, overriding pkg-config - PROTOBUF_CFLAGS - C compiler flags for PROTOBUF, overriding pkg-config - PROTOBUF_LIBS - linker flags for PROTOBUF, overriding pkg-config - QR_CFLAGS C compiler flags for QR, overriding pkg-config - QR_LIBS linker flags for QR, overriding pkg-config - QT_CFLAGS C compiler flags for QT, overriding pkg-config - QT_LIBS linker flags for QT, overriding pkg-config - QT_TEST_CFLAGS - C compiler flags for QT_TEST, overriding pkg-config - QT_TEST_LIBS - linker flags for QT_TEST, overriding pkg-config - QT_DBUS_CFLAGS - C compiler flags for QT_DBUS, overriding pkg-config - QT_DBUS_LIBS - linker flags for QT_DBUS, overriding pkg-config - -Use these variables to override the choices made by `configure' or to help -it to find libraries and programs with nonstandard names/locations. - -Report bugs to . -_ACEOF -ac_status=$? -fi - -if test "$ac_init_help" = "recursive"; then - # If there are subdirs, report their specific --help. - for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d "$ac_dir" || - { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || - continue - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - cd "$ac_dir" || { ac_status=$?; continue; } - # Check for guested configure. - if test -f "$ac_srcdir/configure.gnu"; then - echo && - $SHELL "$ac_srcdir/configure.gnu" --help=recursive - elif test -f "$ac_srcdir/configure"; then - echo && - $SHELL "$ac_srcdir/configure" --help=recursive - else - $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 - fi || ac_status=$? - cd "$ac_pwd" || { ac_status=$?; break; } - done -fi - -test -n "$ac_init_help" && exit $ac_status -if $ac_init_version; then - cat <<\_ACEOF -Bitcoin Core configure 0.9.99 -generated by GNU Autoconf 2.69 - -Copyright (C) 2012 Free Software Foundation, Inc. -This configure script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it. -_ACEOF - exit -fi - -## ------------------------ ## -## Autoconf initialization. ## -## ------------------------ ## - -@%:@ ac_fn_cxx_try_compile LINENO -@%:@ ---------------------------- -@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_cxx_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_cxx_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_cxx_try_compile - -@%:@ ac_fn_c_try_compile LINENO -@%:@ -------------------------- -@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_c_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_c_try_compile - -@%:@ ac_fn_c_try_cpp LINENO -@%:@ ---------------------- -@%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_c_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } > conftest.i && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_c_try_cpp - -@%:@ ac_fn_cxx_try_cpp LINENO -@%:@ ------------------------ -@%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_cxx_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } > conftest.i && { - test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_cxx_try_cpp - -@%:@ ac_fn_objc_try_compile LINENO -@%:@ ----------------------------- -@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_objc_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_objc_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_objc_try_compile - -@%:@ ac_fn_objcxx_try_compile LINENO -@%:@ ------------------------------- -@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_objcxx_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_objcxx_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_objcxx_try_compile - -@%:@ ac_fn_cxx_try_link LINENO -@%:@ ------------------------- -@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_cxx_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_cxx_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - test -x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_cxx_try_link - -@%:@ ac_fn_cxx_try_run LINENO -@%:@ ------------------------ -@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. Assumes -@%:@ that executables *can* be run. -ac_fn_cxx_try_run () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then : - ac_retval=0 -else - $as_echo "$as_me: program exited with status $ac_status" >&5 - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=$ac_status -fi - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_cxx_try_run - -@%:@ ac_fn_cxx_check_header_compile LINENO HEADER VAR INCLUDES -@%:@ --------------------------------------------------------- -@%:@ Tests whether HEADER exists and can be compiled using the include files in -@%:@ INCLUDES, setting the cache variable VAR accordingly. -ac_fn_cxx_check_header_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -@%:@include <$2> -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} @%:@ ac_fn_cxx_check_header_compile - -@%:@ ac_fn_c_try_link LINENO -@%:@ ----------------------- -@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_c_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - test -x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_c_try_link - -@%:@ ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES -@%:@ --------------------------------------------------------- -@%:@ Tests whether HEADER exists, giving a warning if it cannot be compiled using -@%:@ the include files in INCLUDES and setting the cache variable VAR -@%:@ accordingly. -ac_fn_cxx_check_header_mongrel () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if eval \${$3+:} false; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -else - # Is the header compilable? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 -$as_echo_n "checking $2 usability... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -@%:@include <$2> -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_header_compiler=yes -else - ac_header_compiler=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 -$as_echo "$ac_header_compiler" >&6; } - -# Is the header present? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 -$as_echo_n "checking $2 presence... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include <$2> -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - ac_header_preproc=yes -else - ac_header_preproc=no -fi -rm -f conftest.err conftest.i conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 -$as_echo "$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #(( - yes:no: ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 -$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} - ;; - no:yes:* ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 -$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 -$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 -$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 -$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -( $as_echo "## ------------------------------- ## -## Report this to info@bitcoin.org ## -## ------------------------------- ##" - ) | sed "s/^/$as_me: WARNING: /" >&2 - ;; -esac - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - eval "$3=\$ac_header_compiler" -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} @%:@ ac_fn_cxx_check_header_mongrel -cat >config.log <<_ACEOF -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by Bitcoin Core $as_me 0.9.99, which was -generated by GNU Autoconf 2.69. Invocation command line was - - $ $0 $@ - -_ACEOF -exec 5>>config.log -{ -cat <<_ASUNAME -## --------- ## -## Platform. ## -## --------- ## - -hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` - -/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` -/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` -/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` - -_ASUNAME - -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - $as_echo "PATH: $as_dir" - done -IFS=$as_save_IFS - -} >&5 - -cat >&5 <<_ACEOF - - -## ----------- ## -## Core tests. ## -## ----------- ## - -_ACEOF - - -# Keep a trace of the command line. -# Strip out --no-create and --no-recursion so they do not pile up. -# Strip out --silent because we don't want to record it for future runs. -# Also quote any args containing shell meta-characters. -# Make two passes to allow for proper duplicate-argument suppression. -ac_configure_args= -ac_configure_args0= -ac_configure_args1= -ac_must_keep_next=false -for ac_pass in 1 2 -do - for ac_arg - do - case $ac_arg in - -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - continue ;; - *\'*) - ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - case $ac_pass in - 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; - 2) - as_fn_append ac_configure_args1 " '$ac_arg'" - if test $ac_must_keep_next = true; then - ac_must_keep_next=false # Got value, back to normal. - else - case $ac_arg in - *=* | --config-cache | -C | -disable-* | --disable-* \ - | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ - | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ - | -with-* | --with-* | -without-* | --without-* | --x) - case "$ac_configure_args0 " in - "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; - esac - ;; - -* ) ac_must_keep_next=true ;; - esac - fi - as_fn_append ac_configure_args " '$ac_arg'" - ;; - esac - done -done -{ ac_configure_args0=; unset ac_configure_args0;} -{ ac_configure_args1=; unset ac_configure_args1;} - -# When interrupted or exit'd, cleanup temporary files, and complete -# config.log. We remove comments because anyway the quotes in there -# would cause problems or look ugly. -# WARNING: Use '\'' to represent an apostrophe within the trap. -# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. -trap 'exit_status=$? - # Save into config.log some information that might help in debugging. - { - echo - - $as_echo "## ---------------- ## -## Cache variables. ## -## ---------------- ##" - echo - # The following way of writing the cache mishandles newlines in values, -( - for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - (set) 2>&1 | - case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - sed -n \ - "s/'\''/'\''\\\\'\'''\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" - ;; #( - *) - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) - echo - - $as_echo "## ----------------- ## -## Output variables. ## -## ----------------- ##" - echo - for ac_var in $ac_subst_vars - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - - if test -n "$ac_subst_files"; then - $as_echo "## ------------------- ## -## File substitutions. ## -## ------------------- ##" - echo - for ac_var in $ac_subst_files - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - fi - - if test -s confdefs.h; then - $as_echo "## ----------- ## -## confdefs.h. ## -## ----------- ##" - echo - cat confdefs.h - echo - fi - test "$ac_signal" != 0 && - $as_echo "$as_me: caught signal $ac_signal" - $as_echo "$as_me: exit $exit_status" - } >&5 - rm -f core *.core core.conftest.* && - rm -f -r conftest* confdefs* conf$$* $ac_clean_files && - exit $exit_status -' 0 -for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal -done -ac_signal=0 - -# confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -f -r conftest* confdefs.h - -$as_echo "/* confdefs.h */" > confdefs.h - -# Predefined preprocessor variables. - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_URL "$PACKAGE_URL" -_ACEOF - - -# Let the site file select an alternate cache file if it wants to. -# Prefer an explicitly selected file to automatically selected ones. -ac_site_file1=NONE -ac_site_file2=NONE -if test -n "$CONFIG_SITE"; then - # We do not want a PATH search for config.site. - case $CONFIG_SITE in @%:@(( - -*) ac_site_file1=./$CONFIG_SITE;; - */*) ac_site_file1=$CONFIG_SITE;; - *) ac_site_file1=./$CONFIG_SITE;; - esac -elif test "x$prefix" != xNONE; then - ac_site_file1=$prefix/share/config.site - ac_site_file2=$prefix/etc/config.site -else - ac_site_file1=$ac_default_prefix/share/config.site - ac_site_file2=$ac_default_prefix/etc/config.site -fi -for ac_site_file in "$ac_site_file1" "$ac_site_file2" -do - test "x$ac_site_file" = xNONE && continue - if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 -$as_echo "$as_me: loading site script $ac_site_file" >&6;} - sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" \ - || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "failed to load site script $ac_site_file -See \`config.log' for more details" "$LINENO" 5; } - fi -done - -if test -r "$cache_file"; then - # Some versions of bash will fail to source /dev/null (special files - # actually), so we avoid doing that. DJGPP emulates it as a regular file. - if test /dev/null != "$cache_file" && test -f "$cache_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 -$as_echo "$as_me: loading cache $cache_file" >&6;} - case $cache_file in - [\\/]* | ?:[\\/]* ) . "$cache_file";; - *) . "./$cache_file";; - esac - fi -else - { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 -$as_echo "$as_me: creating cache $cache_file" >&6;} - >$cache_file -fi - -# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in $ac_precious_vars; do - eval ac_old_set=\$ac_cv_env_${ac_var}_set - eval ac_new_set=\$ac_env_${ac_var}_set - eval ac_old_val=\$ac_cv_env_${ac_var}_value - eval ac_new_val=\$ac_env_${ac_var}_value - case $ac_old_set,$ac_new_set in - set,) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,set) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,);; - *) - if test "x$ac_old_val" != "x$ac_new_val"; then - # differences in whitespace do not lead to failure. - ac_old_val_w=`echo x $ac_old_val` - ac_new_val_w=`echo x $ac_new_val` - if test "$ac_old_val_w" != "$ac_new_val_w"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 -$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - ac_cache_corrupted=: - else - { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 -$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} - eval $ac_var=\$ac_old_val - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 -$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 -$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} - fi;; - esac - # Pass precious variables to config.status. - if test "$ac_new_set" = set; then - case $ac_new_val in - *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; - *) ac_arg=$ac_var=$ac_new_val ;; - esac - case " $ac_configure_args " in - *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) as_fn_append ac_configure_args " '$ac_arg'" ;; - esac - fi -done -if $ac_cache_corrupted; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 -$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} - as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 -fi -## -------------------- ## -## Main body of script. ## -## -------------------- ## - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -ac_aux_dir= -for ac_dir in src/build-aux "$srcdir"/src/build-aux; do - if test -f "$ac_dir/install-sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install-sh -c" - break - elif test -f "$ac_dir/install.sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install.sh -c" - break - elif test -f "$ac_dir/shtool"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/shtool install -c" - break - fi -done -if test -z "$ac_aux_dir"; then - as_fn_error $? "cannot find install-sh, install.sh, or shtool in src/build-aux \"$srcdir\"/src/build-aux" "$LINENO" 5 -fi - -# These three variables are undocumented and unsupported, -# and are intended to be withdrawn in a future Autoconf release. -# They can cause serious problems if a builder's source tree is in a directory -# whose full name contains unusual characters. -ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. -ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. -ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. - - - -# Make sure we can run config.sub. -$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || - as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 -$as_echo_n "checking build system type... " >&6; } -if ${ac_cv_build+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_build_alias=$build_alias -test "x$ac_build_alias" = x && - ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` -test "x$ac_build_alias" = x && - as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 -ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 -$as_echo "$ac_cv_build" >&6; } -case $ac_cv_build in -*-*-*) ;; -*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; -esac -build=$ac_cv_build -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_build -shift -build_cpu=$1 -build_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -build_os=$* -IFS=$ac_save_IFS -case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 -$as_echo_n "checking host system type... " >&6; } -if ${ac_cv_host+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test "x$host_alias" = x; then - ac_cv_host=$ac_cv_build -else - ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 -$as_echo "$ac_cv_host" >&6; } -case $ac_cv_host in -*-*-*) ;; -*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; -esac -host=$ac_cv_host -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_host -shift -host_cpu=$1 -host_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -host_os=$* -IFS=$ac_save_IFS -case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac - - - - - - -# This m4 will only be used if a system copy cannot be found. This is helpful -# on systems where autotools are installed but the pkg-config macros are not in -# a default location. It is currently used for building on OSX where autotools -# are preinstalled but pkg-config comes from macports or homebrew. It should -# probably be removed when building on <= 10.6 is no longer supported. -# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -# serial 1 (pkg-config-0.24) -# -# Copyright © 2004 Scott James Remnant . -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program 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 -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# PKG_PROG_PKG_CONFIG([MIN-VERSION]) -# ---------------------------------- -# PKG_PROG_PKG_CONFIG - -# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# -# Check to see whether a particular set of modules exists. Similar -# to PKG_CHECK_MODULES(), but does not set variables or print errors. -# -# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -# only at the first occurence in configure.ac, so if the first place -# it's called might be skipped (such as if it is within an "if", you -# have to call PKG_CHECK_EXISTS manually -# -------------------------------------------------------------- - - -# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) -# --------------------------------------------- -# _PKG_CONFIG - -# _PKG_SHORT_ERRORS_SUPPORTED -# ----------------------------- -# _PKG_SHORT_ERRORS_SUPPORTED - - -# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], -# [ACTION-IF-NOT-FOUND]) -# -# -# Note that if there is a possibility the first call to -# PKG_CHECK_MODULES might not happen, you should be sure to include an -# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac -# -# -# -------------------------------------------------------------- -# PKG_CHECK_MODULES - - -# PKG_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable pkgconfigdir as the location where a module -# should install pkg-config .pc files. By default the directory is -# $libdir/pkgconfig, but the default can be changed by passing -# DIRECTORY. The user can override through the --with-pkgconfigdir -# parameter. - - -# PKG_NOARCH_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable noarch_pkgconfigdir as the location where a -# module should install arch-independent pkg-config .pc files. By -# default the directory is $datadir/pkgconfig, but the default can be -# changed by passing DIRECTORY. The user can override through the -# --with-noarch-pkgconfigdir parameter. - - -# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, -# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# ------------------------------------------- -# Retrieves the value of the pkg-config variable for the given module. -# PKG_CHECK_VAR - - -unset FAKETIME - -if test "x${CXXFLAGS+set}" = "xset"; then - CXXFLAGS_overridden=yes -else - CXXFLAGS_overridden=no -fi - - -am__api_version='1.11' - -# Find a good install program. We prefer a C program (faster), -# so one script is as good as another. But avoid the broken or -# incompatible versions: -# SysV /etc/install, /usr/sbin/install -# SunOS /usr/etc/install -# IRIX /sbin/install -# AIX /bin/install -# AmigaOS /C/install, which installs bootblocks on floppy discs -# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -# AFS /usr/afsws/bin/install, which mishandles nonexistent args -# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -# OS/2's system install, which has a completely different semantic -# ./install, which can be erroneously created by make from ./install.sh. -# Reject install programs that cannot install multiple files. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 -$as_echo_n "checking for a BSD-compatible install... " >&6; } -if test -z "$INSTALL"; then -if ${ac_cv_path_install+:} false; then : - $as_echo_n "(cached) " >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in @%:@(( - ./ | .// | /[cC]/* | \ - /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ - ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ - /usr/ucb/* ) ;; - *) - # OSF1 and SCO ODT 3.0 have their own names for install. - # Don't use installbsd from OSF since it installs stuff as root - # by default. - for ac_prog in ginstall scoinst install; do - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then - if test $ac_prog = install && - grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # AIX install. It has an incompatible calling convention. - : - elif test $ac_prog = install && - grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # program-specific install script used by HP pwplus--don't use. - : - else - rm -rf conftest.one conftest.two conftest.dir - echo one > conftest.one - echo two > conftest.two - mkdir conftest.dir - if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && - test -s conftest.one && test -s conftest.two && - test -s conftest.dir/conftest.one && - test -s conftest.dir/conftest.two - then - ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" - break 3 - fi - fi - fi - done - done - ;; -esac - - done -IFS=$as_save_IFS - -rm -rf conftest.one conftest.two conftest.dir - -fi - if test "${ac_cv_path_install+set}" = set; then - INSTALL=$ac_cv_path_install - else - # As a last resort, use the slow shell script. Don't cache a - # value for INSTALL within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - INSTALL=$ac_install_sh - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 -$as_echo "$INSTALL" >&6; } - -# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -# It thinks the first close brace ends the variable substitution. -test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' - -test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' - -test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 -$as_echo_n "checking whether build environment is sane... " >&6; } -# Just in case -sleep 1 -echo timestamp > conftest.file -# Reject unsafe characters in $srcdir or the absolute working directory -# name. Accept space and tab only in the latter. -am_lf=' -' -case `pwd` in - *[\\\"\#\$\&\'\`$am_lf]*) - as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; -esac -case $srcdir in - *[\\\"\#\$\&\'\`$am_lf\ \ ]*) - as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; -esac - -# Do `set' in a subshell so we don't clobber the current shell's -# arguments. Must try -L first in case configure is actually a -# symlink; some systems play weird games with the mod time of symlinks -# (eg FreeBSD returns the mod time of the symlink's containing -# directory). -if ( - set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` - if test "$*" = "X"; then - # -L didn't work. - set X `ls -t "$srcdir/configure" conftest.file` - fi - rm -f conftest.file - if test "$*" != "X $srcdir/configure conftest.file" \ - && test "$*" != "X conftest.file $srcdir/configure"; then - - # If neither matched, then we have a broken ls. This can happen - # if, for instance, CONFIG_SHELL is bash and it inherits a - # broken ls alias from the environment. This has actually - # happened. Such a system could not be considered "sane". - as_fn_error $? "ls -t appears to fail. Make sure there is not a broken -alias in your environment" "$LINENO" 5 - fi - - test "$2" = conftest.file - ) -then - # Ok. - : -else - as_fn_error $? "newly created file is older than distributed files! -Check your system clock" "$LINENO" 5 -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -test "$program_prefix" != NONE && - program_transform_name="s&^&$program_prefix&;$program_transform_name" -# Use a double $ so make ignores it. -test "$program_suffix" != NONE && - program_transform_name="s&\$&$program_suffix&;$program_transform_name" -# Double any \ or $. -# By default was `s,x,x', remove it if useless. -ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' -program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` - -# expand $ac_aux_dir to an absolute path -am_aux_dir=`cd $ac_aux_dir && pwd` - -if test x"${MISSING+set}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; - *) - MISSING="\${SHELL} $am_aux_dir/missing" ;; - esac -fi -# Use eval to expand $SHELL -if eval "$MISSING --run true"; then - am_missing_run="$MISSING --run " -else - am_missing_run= - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 -$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} -fi - -if test x"${install_sh}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; - *) - install_sh="\${SHELL} $am_aux_dir/install-sh" - esac -fi - -# Installed binaries are usually stripped using `strip' when the user -# run `make install-strip'. However `strip' might not be the right -# tool to use in cross-compilation environments, therefore Automake -# will honor the `STRIP' environment variable to overrule this program. -if test "$cross_compiling" != no; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -set dummy ${ac_tool_prefix}strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$STRIP"; then - ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_STRIP="${ac_tool_prefix}strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -STRIP=$ac_cv_prog_STRIP -if test -n "$STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -$as_echo "$STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_STRIP"; then - ac_ct_STRIP=$STRIP - # Extract the first word of "strip", so it can be a program name with args. -set dummy strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_STRIP"; then - ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_STRIP="strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -if test -n "$ac_ct_STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -$as_echo "$ac_ct_STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_STRIP" = x; then - STRIP=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - STRIP=$ac_ct_STRIP - fi -else - STRIP="$ac_cv_prog_STRIP" -fi - -fi -INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 -$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } -if test -z "$MKDIR_P"; then - if ${ac_cv_path_mkdir+:} false; then : - $as_echo_n "(cached) " >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in mkdir gmkdir; do - for ac_exec_ext in '' $ac_executable_extensions; do - as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue - case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( - 'mkdir (GNU coreutils) '* | \ - 'mkdir (coreutils) '* | \ - 'mkdir (fileutils) '4.1*) - ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext - break 3;; - esac - done - done - done -IFS=$as_save_IFS - -fi - - test -d ./--version && rmdir ./--version - if test "${ac_cv_path_mkdir+set}" = set; then - MKDIR_P="$ac_cv_path_mkdir -p" - else - # As a last resort, use the slow shell script. Don't cache a - # value for MKDIR_P within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - MKDIR_P="$ac_install_sh -d" - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 -$as_echo "$MKDIR_P" >&6; } - -mkdir_p="$MKDIR_P" -case $mkdir_p in - [\\/$]* | ?:[\\/]*) ;; - */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; -esac - -for ac_prog in gawk mawk nawk awk -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AWK+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$AWK"; then - ac_cv_prog_AWK="$AWK" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_AWK="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -AWK=$ac_cv_prog_AWK -if test -n "$AWK"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 -$as_echo "$AWK" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$AWK" && break -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 -$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } -set x ${MAKE-make} -ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat >conftest.make <<\_ACEOF -SHELL = /bin/sh -all: - @echo '@@@%%%=$(MAKE)=@@@%%%' -_ACEOF -# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. -case `${MAKE-make} -f conftest.make 2>/dev/null` in - *@@@%%%=?*=@@@%%%*) - eval ac_cv_prog_make_${ac_make}_set=yes;; - *) - eval ac_cv_prog_make_${ac_make}_set=no;; -esac -rm -f conftest.make -fi -if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - SET_MAKE= -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - SET_MAKE="MAKE=${MAKE-make}" -fi - -rm -rf .tst 2>/dev/null -mkdir .tst 2>/dev/null -if test -d .tst; then - am__leading_dot=. -else - am__leading_dot=_ -fi -rmdir .tst 2>/dev/null - -if test "`cd $srcdir && pwd`" != "`pwd`"; then - # Use -I$(srcdir) only when $(srcdir) != ., so that make's output - # is not polluted with repeated "-I." - am__isrc=' -I$(srcdir)' - # test to see if srcdir already configured - if test -f $srcdir/config.status; then - as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 - fi -fi - -# test whether we have cygpath -if test -z "$CYGPATH_W"; then - if (cygpath --version) >/dev/null 2>/dev/null; then - CYGPATH_W='cygpath -w' - else - CYGPATH_W=echo - fi -fi - - -# Define the identity of the package. - PACKAGE='bitcoin' - VERSION='0.9.99' - - -# Some tools Automake needs. - -ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} - - -AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} - - -AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} - - -AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} - - -MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} - -# We need awk for the "check" target. The system "awk" is bad on -# some platforms. -# Always define AMTAR for backward compatibility. Yes, it's still used -# in the wild :-( We should find a proper way to deprecate it ... -AMTAR='$${TAR-tar}' - -am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 -$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } - @%:@ Check whether --enable-maintainer-mode was given. -if test "${enable_maintainer_mode+set}" = set; then : - enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval -else - USE_MAINTAINER_MODE=yes -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 -$as_echo "$USE_MAINTAINER_MODE" >&6; } - if test $USE_MAINTAINER_MODE = yes; then - MAINTAINER_MODE_TRUE= - MAINTAINER_MODE_FALSE='#' -else - MAINTAINER_MODE_TRUE='#' - MAINTAINER_MODE_FALSE= -fi - - MAINT=$MAINTAINER_MODE_TRUE - - - -@%:@ Check whether --enable-silent-rules was given. -if test "${enable_silent_rules+set}" = set; then : - enableval=$enable_silent_rules; -fi - -case $enable_silent_rules in -yes) AM_DEFAULT_VERBOSITY=0;; -no) AM_DEFAULT_VERBOSITY=1;; -*) AM_DEFAULT_VERBOSITY=0;; -esac -am_make=${MAKE-make} -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 -$as_echo_n "checking whether $am_make supports nested variables... " >&6; } -if ${am_cv_make_support_nested_variables+:} false; then : - $as_echo_n "(cached) " >&6 -else - if $as_echo 'TRUE=$(BAR$(V)) -BAR0=false -BAR1=true -V=1 -am__doit: - @$(TRUE) -.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then - am_cv_make_support_nested_variables=yes -else - am_cv_make_support_nested_variables=no -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 -$as_echo "$am_cv_make_support_nested_variables" >&6; } -if test $am_cv_make_support_nested_variables = yes; then - AM_V='$(V)' - AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -else - AM_V=$AM_DEFAULT_VERBOSITY - AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY -fi -AM_BACKSLASH='\' - - -# Enable wallet -@%:@ Check whether --enable-wallet was given. -if test "${enable_wallet+set}" = set; then : - enableval=$enable_wallet; enable_wallet=$enableval -else - enable_wallet=yes -fi - - - -@%:@ Check whether --with-miniupnpc was given. -if test "${with_miniupnpc+set}" = set; then : - withval=$with_miniupnpc; use_upnp=$withval -else - use_upnp=auto -fi - - -@%:@ Check whether --enable-upnp-default was given. -if test "${enable_upnp_default+set}" = set; then : - enableval=$enable_upnp_default; use_upnp_default=$enableval -else - use_upnp_default=no -fi - - -@%:@ Check whether --enable-tests was given. -if test "${enable_tests+set}" = set; then : - enableval=$enable_tests; use_tests=$enableval -else - use_tests=yes -fi - - - -@%:@ Check whether --with-comparison-tool was given. -if test "${with_comparison_tool+set}" = set; then : - withval=$with_comparison_tool; use_comparison_tool=$withval -else - use_comparison_tool=no -fi - - -@%:@ Check whether --enable-comparison-tool-reorg-tests was given. -if test "${enable_comparison_tool_reorg_tests+set}" = set; then : - enableval=$enable_comparison_tool_reorg_tests; use_comparison_tool_reorg_tests=$enableval -else - use_comparison_tool_reorg_tests=no -fi - - - -@%:@ Check whether --with-qrencode was given. -if test "${with_qrencode+set}" = set; then : - withval=$with_qrencode; use_qr=$withval -else - use_qr=auto -fi - - -@%:@ Check whether --enable-hardening was given. -if test "${enable_hardening+set}" = set; then : - enableval=$enable_hardening; use_hardening=$enableval -else - use_hardening=yes -fi - - -@%:@ Check whether --enable-ccache was given. -if test "${enable_ccache+set}" = set; then : - enableval=$enable_ccache; use_ccache=$enableval -else - use_ccache=auto -fi - - -@%:@ Check whether --enable-lcov was given. -if test "${enable_lcov+set}" = set; then : - enableval=$enable_lcov; use_lcov=yes -else - use_lcov=no -fi - - -@%:@ Check whether --enable-glibc-back-compat was given. -if test "${enable_glibc_back_compat+set}" = set; then : - enableval=$enable_glibc_back_compat; use_glibc_compat=$enableval -else - use_glibc_compat=no -fi - - - -@%:@ Check whether --with-protoc-bindir was given. -if test "${with_protoc_bindir+set}" = set; then : - withval=$with_protoc_bindir; protoc_bin_path=$withval -fi - - - - -ac_config_headers="$ac_config_headers src/bitcoin-config.h" - - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -if test -z "$CXX"; then - if test -n "$CCC"; then - CXX=$CCC - else - if test -n "$ac_tool_prefix"; then - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CXX"; then - ac_cv_prog_CXX="$CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CXX=$ac_cv_prog_CXX -if test -n "$CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 -$as_echo "$CXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CXX" && break - done -fi -if test -z "$CXX"; then - ac_ct_CXX=$CXX - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CXX"; then - ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CXX="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -if test -n "$ac_ct_CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 -$as_echo "$ac_ct_CXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CXX" && break -done - - if test "x$ac_ct_CXX" = x; then - CXX="g++" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CXX=$ac_ct_CXX - fi -fi - - fi -fi -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" -# Try to create an executable without -o first, disregard a.out. -# It will help us diagnose broken compilers, and finding out an intuition -# of exeext. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C++ compiler works" >&5 -$as_echo_n "checking whether the C++ compiler works... " >&6; } -ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` - -# The possible output files: -ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" - -ac_rmfiles= -for ac_file in $ac_files -do - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - * ) ac_rmfiles="$ac_rmfiles $ac_file";; - esac -done -rm -f $ac_rmfiles - -if { { ac_try="$ac_link_default" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link_default") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. -# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' -# in a Makefile. We should not override ac_cv_exeext if it was cached, -# so that the user can short-circuit this test for compilers unknown to -# Autoconf. -for ac_file in $ac_files '' -do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) - ;; - [ab].out ) - # We found the default executable, but exeext='' is most - # certainly right. - break;; - *.* ) - if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; - then :; else - ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - fi - # We set ac_cv_exeext here because the later test for it is not - # safe: cross compilers may not add the suffix if given an `-o' - # argument, so we may need to know it at that point already. - # Even if this section looks crufty: it has the advantage of - # actually working. - break;; - * ) - break;; - esac -done -test "$ac_cv_exeext" = no && ac_cv_exeext= - -else - ac_file='' -fi -if test -z "$ac_file"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -$as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "C++ compiler cannot create executables -See \`config.log' for more details" "$LINENO" 5; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler default output file name" >&5 -$as_echo_n "checking for C++ compiler default output file name... " >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 -$as_echo "$ac_file" >&6; } -ac_exeext=$ac_cv_exeext - -rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out -ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 -$as_echo_n "checking for suffix of executables... " >&6; } -if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # If both `conftest.exe' and `conftest' are `present' (well, observable) -# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -# work properly (i.e., refer to `conftest.exe'), while it won't with -# `rm'. -for ac_file in conftest.exe conftest conftest.*; do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - break;; - * ) break;; - esac -done -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details" "$LINENO" 5; } -fi -rm -f conftest conftest$ac_cv_exeext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 -$as_echo "$ac_cv_exeext" >&6; } - -rm -f conftest.$ac_ext -EXEEXT=$ac_cv_exeext -ac_exeext=$EXEEXT -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -int -main () -{ -FILE *f = fopen ("conftest.out", "w"); - return ferror (f) || fclose (f) != 0; - - ; - return 0; -} -_ACEOF -ac_clean_files="$ac_clean_files conftest.out" -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 -$as_echo_n "checking whether we are cross compiling... " >&6; } -if test "$cross_compiling" != yes; then - { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - if { ac_try='./conftest$ac_cv_exeext' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot run C++ compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details" "$LINENO" 5; } - fi - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 -$as_echo "$cross_compiling" >&6; } - -rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out -ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 -$as_echo_n "checking for suffix of object files... " >&6; } -if ${ac_cv_objext+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.o conftest.obj -if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - for ac_file in conftest.o conftest.obj conftest.*; do - test -f "$ac_file" || continue; - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -done -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot compute suffix of object files: cannot compile -See \`config.log' for more details" "$LINENO" 5; } -fi -rm -f conftest.$ac_cv_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 -$as_echo "$ac_cv_objext" >&6; } -OBJEXT=$ac_cv_objext -ac_objext=$OBJEXT -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 -$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } -if ${ac_cv_cxx_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_cxx_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 -$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GXX=yes -else - GXX= -fi -ac_test_CXXFLAGS=${CXXFLAGS+set} -ac_save_CXXFLAGS=$CXXFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 -$as_echo_n "checking whether $CXX accepts -g... " >&6; } -if ${ac_cv_prog_cxx_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_cxx_werror_flag=$ac_cxx_werror_flag - ac_cxx_werror_flag=yes - ac_cv_prog_cxx_g=no - CXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_prog_cxx_g=yes -else - CXXFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - -else - ac_cxx_werror_flag=$ac_save_cxx_werror_flag - CXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_prog_cxx_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_cxx_werror_flag=$ac_save_cxx_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 -$as_echo "$ac_cv_prog_cxx_g" >&6; } -if test "$ac_test_CXXFLAGS" = set; then - CXXFLAGS=$ac_save_CXXFLAGS -elif test $ac_cv_prog_cxx_g = yes; then - if test "$GXX" = yes; then - CXXFLAGS="-g -O2" - else - CXXFLAGS="-g" - fi -else - if test "$GXX" = yes; then - CXXFLAGS="-O2" - else - CXXFLAGS= - fi -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -DEPDIR="${am__leading_dot}deps" - -ac_config_commands="$ac_config_commands depfiles" - - -am_make=${MAKE-make} -cat > confinc << 'END' -am__doit: - @echo this is the am__doit target -.PHONY: am__doit -END -# If we don't find an include directive, just comment out the code. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 -$as_echo_n "checking for style of include used by $am_make... " >&6; } -am__include="#" -am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# Ignore all kinds of additional output from `make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD - ;; - esac -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 -$as_echo "$_am_result" >&6; } -rm -f confinc confmf - -@%:@ Check whether --enable-dependency-tracking was given. -if test "${enable_dependency_tracking+set}" = set; then : - enableval=$enable_dependency_tracking; -fi - -if test "x$enable_dependency_tracking" != xno; then - am_depcomp="$ac_aux_dir/depcomp" - AMDEPBACKSLASH='\' - am__nodep='_no' -fi - if test "x$enable_dependency_tracking" != xno; then - AMDEP_TRUE= - AMDEP_FALSE='#' -else - AMDEP_TRUE='#' - AMDEP_FALSE= -fi - - - -depcc="$CXX" am_compiler_list= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -$as_echo_n "checking dependency style of $depcc... " >&6; } -if ${am_cv_CXX_dependencies_compiler_type+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - rm -rf conftest.dir - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_CXX_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` - fi - am__universal=false - case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac - - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. Also, some Intel - # versions had trouble with output in subdirs - am__obj=sub/conftest.${OBJEXT-o} - am__minus_obj="-o $am__obj" - case $depmode in - gcc) - # This depmode causes a compiler race in universal mode. - test "$am__universal" = false || continue - ;; - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - msvc7 | msvc7msys | msvisualcpp | msvcmsys) - # This compiler won't grok `-c -o', but also, the minuso test has - # not run yet. These depmodes are late enough in the game, and - # so weak that their functioning should not be impacted. - am__obj=conftest.${OBJEXT-o} - am__minus_obj= - ;; - none) break ;; - esac - if depmode=$depmode \ - source=sub/conftest.c object=$am__obj \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep $am__obj sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_CXX_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_CXX_dependencies_compiler_type=none -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 -$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } -CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type - - if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then - am__fastdepCXX_TRUE= - am__fastdepCXX_FALSE='#' -else - am__fastdepCXX_TRUE='#' - am__fastdepCXX_FALSE= -fi - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - fi -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $@%:@ != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl.exe - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl.exe -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CC" && break -done - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -fi - -fi - - -test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "no acceptable C compiler found in \$PATH -See \`config.log' for more details" "$LINENO" 5; } - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 -$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if ${ac_cv_c_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 -$as_echo "$ac_cv_c_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GCC=yes -else - GCC= -fi -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 -$as_echo_n "checking whether $CC accepts -g... " >&6; } -if ${ac_cv_prog_cc_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_c_werror_flag=$ac_c_werror_flag - ac_c_werror_flag=yes - ac_cv_prog_cc_g=no - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -else - CFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - -else - ac_c_werror_flag=$ac_save_c_werror_flag - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_c_werror_flag=$ac_save_c_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 -$as_echo "$ac_cv_prog_cc_g" >&6; } -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 -$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if ${ac_cv_prog_cc_c89+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_prog_cc_c89=no -ac_save_CC=$CC -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -struct stat; -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters - inside strings and character constants. */ -#define FOO(x) 'x' -int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ - -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_c89=$ac_arg -fi -rm -f core conftest.err conftest.$ac_objext - test "x$ac_cv_prog_cc_c89" != "xno" && break -done -rm -f conftest.$ac_ext -CC=$ac_save_CC - -fi -# AC_CACHE_VAL -case "x$ac_cv_prog_cc_c89" in - x) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 -$as_echo "none needed" >&6; } ;; - xno) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 -$as_echo "unsupported" >&6; } ;; - *) - CC="$CC $ac_cv_prog_cc_c89" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 -$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; -esac -if test "x$ac_cv_prog_cc_c89" != xno; then : - -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -depcc="$CC" am_compiler_list= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -$as_echo_n "checking dependency style of $depcc... " >&6; } -if ${am_cv_CC_dependencies_compiler_type+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - rm -rf conftest.dir - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_CC_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` - fi - am__universal=false - case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac - - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. Also, some Intel - # versions had trouble with output in subdirs - am__obj=sub/conftest.${OBJEXT-o} - am__minus_obj="-o $am__obj" - case $depmode in - gcc) - # This depmode causes a compiler race in universal mode. - test "$am__universal" = false || continue - ;; - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - msvc7 | msvc7msys | msvisualcpp | msvcmsys) - # This compiler won't grok `-c -o', but also, the minuso test has - # not run yet. These depmodes are late enough in the game, and - # so weak that their functioning should not be impacted. - am__obj=conftest.${OBJEXT-o} - am__minus_obj= - ;; - none) break ;; - esac - if depmode=$depmode \ - source=sub/conftest.c object=$am__obj \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep $am__obj sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_CC_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_CC_dependencies_compiler_type=none -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 -$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } -CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type - - if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then - am__fastdepCC_TRUE= - am__fastdepCC_FALSE='#' -else - am__fastdepCC_TRUE='#' - am__fastdepCC_FALSE= -fi - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 -$as_echo_n "checking how to run the C preprocessor... " >&6; } -# On Suns, sometimes $CPP names a directory. -if test -n "$CPP" && test -d "$CPP"; then - CPP= -fi -if test -z "$CPP"; then - if ${ac_cv_prog_CPP+:} false; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because CPP needs to be expanded - for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" - do - ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@ifdef __STDC__ -@%:@ include -@%:@else -@%:@ include -@%:@endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break -fi - - done - ac_cv_prog_CPP=$CPP - -fi - CPP=$ac_cv_prog_CPP -else - ac_cv_prog_CPP=$CPP -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 -$as_echo "$CPP" >&6; } -ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@ifdef __STDC__ -@%:@ include -@%:@else -@%:@ include -@%:@endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 -$as_echo_n "checking how to run the C++ preprocessor... " >&6; } -if test -z "$CXXCPP"; then - if ${ac_cv_prog_CXXCPP+:} false; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because CXXCPP needs to be expanded - for CXXCPP in "$CXX -E" "/lib/cpp" - do - ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@ifdef __STDC__ -@%:@ include -@%:@else -@%:@ include -@%:@endif - Syntax error -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break -fi - - done - ac_cv_prog_CXXCPP=$CXXCPP - -fi - CXXCPP=$ac_cv_prog_CXXCPP -else - ac_cv_prog_CXXCPP=$CXXCPP -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 -$as_echo "$CXXCPP" >&6; } -ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@ifdef __STDC__ -@%:@ include -@%:@else -@%:@ include -@%:@endif - Syntax error -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -ac_ext=m -ac_cpp='$OBJCPP $CPPFLAGS' -ac_compile='$OBJC -c $OBJCFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$OBJC -o conftest$ac_exeext $OBJCFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_objc_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in gcc objcc objc cc CC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_OBJC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$OBJC"; then - ac_cv_prog_OBJC="$OBJC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_OBJC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -OBJC=$ac_cv_prog_OBJC -if test -n "$OBJC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJC" >&5 -$as_echo "$OBJC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$OBJC" && break - done -fi -if test -z "$OBJC"; then - ac_ct_OBJC=$OBJC - for ac_prog in gcc objcc objc cc CC -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_OBJC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_OBJC"; then - ac_cv_prog_ac_ct_OBJC="$ac_ct_OBJC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_OBJC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_OBJC=$ac_cv_prog_ac_ct_OBJC -if test -n "$ac_ct_OBJC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJC" >&5 -$as_echo "$ac_ct_OBJC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_OBJC" && break -done - - if test "x$ac_ct_OBJC" = x; then - OBJC="gcc" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OBJC=$ac_ct_OBJC - fi -fi - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for Objective C compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Objective C compiler" >&5 -$as_echo_n "checking whether we are using the GNU Objective C compiler... " >&6; } -if ${ac_cv_objc_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_objc_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objc_compiler_gnu" >&5 -$as_echo "$ac_cv_objc_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GOBJC=yes -else - GOBJC= -fi -ac_test_OBJCFLAGS=${OBJCFLAGS+set} -ac_save_OBJCFLAGS=$OBJCFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $OBJC accepts -g" >&5 -$as_echo_n "checking whether $OBJC accepts -g... " >&6; } -if ${ac_cv_prog_objc_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_objc_werror_flag=$ac_objc_werror_flag - ac_objc_werror_flag=yes - ac_cv_prog_objc_g=no - OBJCFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : - ac_cv_prog_objc_g=yes -else - OBJCFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : - -else - ac_objc_werror_flag=$ac_save_objc_werror_flag - OBJCFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : - ac_cv_prog_objc_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_objc_werror_flag=$ac_save_objc_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_objc_g" >&5 -$as_echo "$ac_cv_prog_objc_g" >&6; } -if test "$ac_test_OBJCFLAGS" = set; then - OBJCFLAGS=$ac_save_OBJCFLAGS -elif test $ac_cv_prog_objc_g = yes; then - if test "$GOBJC" = yes; then - OBJCFLAGS="-g -O2" - else - OBJCFLAGS="-g" - fi -else - if test "$GOBJC" = yes; then - OBJCFLAGS="-O2" - else - OBJCFLAGS= - fi -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -depcc="$OBJC" am_compiler_list='gcc3 gcc' - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -$as_echo_n "checking dependency style of $depcc... " >&6; } -if ${am_cv_OBJC_dependencies_compiler_type+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - rm -rf conftest.dir - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_OBJC_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` - fi - am__universal=false - - - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. Also, some Intel - # versions had trouble with output in subdirs - am__obj=sub/conftest.${OBJEXT-o} - am__minus_obj="-o $am__obj" - case $depmode in - gcc) - # This depmode causes a compiler race in universal mode. - test "$am__universal" = false || continue - ;; - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - msvc7 | msvc7msys | msvisualcpp | msvcmsys) - # This compiler won't grok `-c -o', but also, the minuso test has - # not run yet. These depmodes are late enough in the game, and - # so weak that their functioning should not be impacted. - am__obj=conftest.${OBJEXT-o} - am__minus_obj= - ;; - none) break ;; - esac - if depmode=$depmode \ - source=sub/conftest.c object=$am__obj \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep $am__obj sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_OBJC_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_OBJC_dependencies_compiler_type=none -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_OBJC_dependencies_compiler_type" >&5 -$as_echo "$am_cv_OBJC_dependencies_compiler_type" >&6; } -OBJCDEPMODE=depmode=$am_cv_OBJC_dependencies_compiler_type - - if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_OBJC_dependencies_compiler_type" = gcc3; then - am__fastdepOBJC_TRUE= - am__fastdepOBJC_FALSE='#' -else - am__fastdepOBJC_TRUE='#' - am__fastdepOBJC_FALSE= -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 -$as_echo_n "checking whether ln -s works... " >&6; } -LN_S=$as_ln_s -if test "$LN_S" = "ln -s"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 -$as_echo "no, using $LN_S" >&6; } -fi - -ac_ext=mm -ac_cpp='$OBJCXXCPP $CPPFLAGS' -ac_compile='$OBJCXX -c $OBJCXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$OBJCXX -o conftest$ac_exeext $OBJCXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_objcxx_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in g++ objc++ objcxx c++ CXX - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_OBJCXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$OBJCXX"; then - ac_cv_prog_OBJCXX="$OBJCXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_OBJCXX="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -OBJCXX=$ac_cv_prog_OBJCXX -if test -n "$OBJCXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJCXX" >&5 -$as_echo "$OBJCXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$OBJCXX" && break - done -fi -if test -z "$OBJCXX"; then - ac_ct_OBJCXX=$OBJCXX - for ac_prog in g++ objc++ objcxx c++ CXX -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_OBJCXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_OBJCXX"; then - ac_cv_prog_ac_ct_OBJCXX="$ac_ct_OBJCXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_OBJCXX="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_OBJCXX=$ac_cv_prog_ac_ct_OBJCXX -if test -n "$ac_ct_OBJCXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJCXX" >&5 -$as_echo "$ac_ct_OBJCXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_OBJCXX" && break -done - - if test "x$ac_ct_OBJCXX" = x; then - OBJCXX="g++" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OBJCXX=$ac_ct_OBJCXX - fi -fi - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for Objective C++ compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Objective C++ compiler" >&5 -$as_echo_n "checking whether we are using the GNU Objective C++ compiler... " >&6; } -if ${ac_cv_objcxx_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_objcxx_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_objcxx_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objcxx_compiler_gnu" >&5 -$as_echo "$ac_cv_objcxx_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GOBJCXX=yes -else - GOBJCXX= -fi -ac_test_OBJCXXFLAGS=${OBJCXXFLAGS+set} -ac_save_OBJCXXFLAGS=$OBJCXXFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $OBJCXX accepts -g" >&5 -$as_echo_n "checking whether $OBJCXX accepts -g... " >&6; } -if ${ac_cv_prog_objcxx_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_objcxx_werror_flag=$ac_objcxx_werror_flag - ac_objcxx_werror_flag=yes - ac_cv_prog_objcxx_g=no - OBJCXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_objcxx_try_compile "$LINENO"; then : - ac_cv_prog_objcxx_g=yes -else - OBJCXXFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_objcxx_try_compile "$LINENO"; then : - -else - ac_objcxx_werror_flag=$ac_save_objcxx_werror_flag - OBJCXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_objcxx_try_compile "$LINENO"; then : - ac_cv_prog_objcxx_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_objcxx_werror_flag=$ac_save_objcx_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_objcxx_g" >&5 -$as_echo "$ac_cv_prog_objcxx_g" >&6; } -if test "$ac_test_OBJCXXFLAGS" = set; then - OBJCXXFLAGS=$ac_save_OBJCXXFLAGS -elif test $ac_cv_prog_objcxx_g = yes; then - if test "$GOBJCXX" = yes; then - OBJCXXFLAGS="-g -O2" - else - OBJCXXFLAGS="-g" - fi -else - if test "$GOBJCXX" = yes; then - OBJCXXFLAGS="-O2" - else - OBJCXXFLAGS= - fi -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 -$as_echo_n "checking for a sed that does not truncate output... " >&6; } -if ${ac_cv_path_SED+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ - for ac_i in 1 2 3 4 5 6 7; do - ac_script="$ac_script$as_nl$ac_script" - done - echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed - { ac_script=; unset ac_script;} - if test -z "$SED"; then - ac_path_SED_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in sed gsed; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" - as_fn_executable_p "$ac_path_SED" || continue -# Check for GNU ac_path_SED and select it if it is found. - # Check for GNU $ac_path_SED -case `"$ac_path_SED" --version 2>&1` in -*GNU*) - ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo '' >> "conftest.nl" - "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_SED_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_SED="$ac_path_SED" - ac_path_SED_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_SED_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_SED"; then - as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 - fi -else - ac_cv_path_SED=$SED -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 -$as_echo "$ac_cv_path_SED" >&6; } - SED="$ac_cv_path_SED" - rm -f conftest.sed - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. -set dummy ${ac_tool_prefix}ar; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_AR+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $AR in - [\\/]* | ?:[\\/]*) - ac_cv_path_AR="$AR" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_AR="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -AR=$ac_cv_path_AR -if test -n "$AR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 -$as_echo "$AR" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_AR"; then - ac_pt_AR=$AR - # Extract the first word of "ar", so it can be a program name with args. -set dummy ar; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_AR+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_AR in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_AR="$ac_pt_AR" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_AR="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_AR=$ac_cv_path_ac_pt_AR -if test -n "$ac_pt_AR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_AR" >&5 -$as_echo "$ac_pt_AR" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_AR" = x; then - AR="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - AR=$ac_pt_AR - fi -else - AR="$ac_cv_path_AR" -fi - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. -set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $RANLIB in - [\\/]* | ?:[\\/]*) - ac_cv_path_RANLIB="$RANLIB" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_RANLIB="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -RANLIB=$ac_cv_path_RANLIB -if test -n "$RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 -$as_echo "$RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_RANLIB"; then - ac_pt_RANLIB=$RANLIB - # Extract the first word of "ranlib", so it can be a program name with args. -set dummy ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_RANLIB in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_RANLIB="$ac_pt_RANLIB" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_RANLIB="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_RANLIB=$ac_cv_path_ac_pt_RANLIB -if test -n "$ac_pt_RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_RANLIB" >&5 -$as_echo "$ac_pt_RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_RANLIB" = x; then - RANLIB="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - RANLIB=$ac_pt_RANLIB - fi -else - RANLIB="$ac_cv_path_RANLIB" -fi - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -set dummy ${ac_tool_prefix}strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $STRIP in - [\\/]* | ?:[\\/]*) - ac_cv_path_STRIP="$STRIP" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_STRIP="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -STRIP=$ac_cv_path_STRIP -if test -n "$STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -$as_echo "$STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_STRIP"; then - ac_pt_STRIP=$STRIP - # Extract the first word of "strip", so it can be a program name with args. -set dummy strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_STRIP in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_STRIP="$ac_pt_STRIP" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_STRIP="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_STRIP=$ac_cv_path_ac_pt_STRIP -if test -n "$ac_pt_STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_STRIP" >&5 -$as_echo "$ac_pt_STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_STRIP" = x; then - STRIP="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - STRIP=$ac_pt_STRIP - fi -else - STRIP="$ac_cv_path_STRIP" -fi - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcov", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcov; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GCOV+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GCOV in - [\\/]* | ?:[\\/]*) - ac_cv_path_GCOV="$GCOV" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GCOV="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -GCOV=$ac_cv_path_GCOV -if test -n "$GCOV"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GCOV" >&5 -$as_echo "$GCOV" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_GCOV"; then - ac_pt_GCOV=$GCOV - # Extract the first word of "gcov", so it can be a program name with args. -set dummy gcov; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_GCOV+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_GCOV in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_GCOV="$ac_pt_GCOV" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_GCOV="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_GCOV=$ac_cv_path_ac_pt_GCOV -if test -n "$ac_pt_GCOV"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_GCOV" >&5 -$as_echo "$ac_pt_GCOV" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_GCOV" = x; then - GCOV="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - GCOV=$ac_pt_GCOV - fi -else - GCOV="$ac_cv_path_GCOV" -fi - -# Extract the first word of "lcov", so it can be a program name with args. -set dummy lcov; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_LCOV+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $LCOV in - [\\/]* | ?:[\\/]*) - ac_cv_path_LCOV="$LCOV" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_LCOV="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -LCOV=$ac_cv_path_LCOV -if test -n "$LCOV"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LCOV" >&5 -$as_echo "$LCOV" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "java", so it can be a program name with args. -set dummy java; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_JAVA+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $JAVA in - [\\/]* | ?:[\\/]*) - ac_cv_path_JAVA="$JAVA" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_JAVA="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -JAVA=$ac_cv_path_JAVA -if test -n "$JAVA"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVA" >&5 -$as_echo "$JAVA" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "genhtml", so it can be a program name with args. -set dummy genhtml; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GENHTML+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GENHTML in - [\\/]* | ?:[\\/]*) - ac_cv_path_GENHTML="$GENHTML" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GENHTML="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -GENHTML=$ac_cv_path_GENHTML -if test -n "$GENHTML"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GENHTML" >&5 -$as_echo "$GENHTML" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "git", so it can be a program name with args. -set dummy git; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GIT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GIT in - [\\/]* | ?:[\\/]*) - ac_cv_path_GIT="$GIT" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GIT="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -GIT=$ac_cv_path_GIT -if test -n "$GIT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GIT" >&5 -$as_echo "$GIT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "ccache", so it can be a program name with args. -set dummy ccache; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_CCACHE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $CCACHE in - [\\/]* | ?:[\\/]*) - ac_cv_path_CCACHE="$CCACHE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_CCACHE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -CCACHE=$ac_cv_path_CCACHE -if test -n "$CCACHE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CCACHE" >&5 -$as_echo "$CCACHE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "xgettext", so it can be a program name with args. -set dummy xgettext; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_XGETTEXT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $XGETTEXT in - [\\/]* | ?:[\\/]*) - ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -XGETTEXT=$ac_cv_path_XGETTEXT -if test -n "$XGETTEXT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 -$as_echo "$XGETTEXT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "hexdump", so it can be a program name with args. -set dummy hexdump; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_HEXDUMP+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $HEXDUMP in - [\\/]* | ?:[\\/]*) - ac_cv_path_HEXDUMP="$HEXDUMP" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_HEXDUMP="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -HEXDUMP=$ac_cv_path_HEXDUMP -if test -n "$HEXDUMP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HEXDUMP" >&5 -$as_echo "$HEXDUMP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - - - - - - - -if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. -set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PKG_CONFIG+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG -if test -n "$PKG_CONFIG"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 -$as_echo "$PKG_CONFIG" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_PKG_CONFIG"; then - ac_pt_PKG_CONFIG=$PKG_CONFIG - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG -if test -n "$ac_pt_PKG_CONFIG"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 -$as_echo "$ac_pt_PKG_CONFIG" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_PKG_CONFIG" = x; then - PKG_CONFIG="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - PKG_CONFIG=$ac_pt_PKG_CONFIG - fi -else - PKG_CONFIG="$ac_cv_path_PKG_CONFIG" -fi - -fi -if test -n "$PKG_CONFIG"; then - _pkg_min_version=0.9.0 - { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 -$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - PKG_CONFIG="" - fi -fi - -# Enable debug -@%:@ Check whether --enable-debug was given. -if test "${enable_debug+set}" = set; then : - enableval=$enable_debug; enable_debug=$enableval -else - enable_debug=no -fi - - -if test "x$enable_debug" = xyes; then - if test "x$GCC" = xyes; then - CFLAGS="-g3 -O0 -DDEBUG" - fi - - if test "x$GXX" = xyes; then - CXXFLAGS="-g3 -O0 -DDEBUG" - fi -fi - -## TODO: Remove these hard-coded paths and flags. They are here for the sake of -## compatibility with the legacy buildsystem. -## -if test "x$CXXFLAGS_overridden" = "xno"; then - CXXFLAGS="$CXXFLAGS -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter" -fi -CPPFLAGS="$CPPFLAGS -DBOOST_SPIRIT_THREADSAFE -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS" - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -use_pkgconfig=yes -case $host in - *mingw*) - - #pkgconfig does more harm than good with MinGW - use_pkgconfig=no - - TARGET_OS=windows - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lmingwthrd" >&5 -$as_echo_n "checking for main in -lmingwthrd... " >&6; } -if ${ac_cv_lib_mingwthrd_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lmingwthrd $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_mingwthrd_main=yes -else - ac_cv_lib_mingwthrd_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mingwthrd_main" >&5 -$as_echo "$ac_cv_lib_mingwthrd_main" >&6; } -if test "x$ac_cv_lib_mingwthrd_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBMINGWTHRD 1 -_ACEOF - - LIBS="-lmingwthrd $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lkernel32" >&5 -$as_echo_n "checking for main in -lkernel32... " >&6; } -if ${ac_cv_lib_kernel32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lkernel32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_kernel32_main=yes -else - ac_cv_lib_kernel32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_kernel32_main" >&5 -$as_echo "$ac_cv_lib_kernel32_main" >&6; } -if test "x$ac_cv_lib_kernel32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBKERNEL32 1 -_ACEOF - - LIBS="-lkernel32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -luser32" >&5 -$as_echo_n "checking for main in -luser32... " >&6; } -if ${ac_cv_lib_user32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-luser32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_user32_main=yes -else - ac_cv_lib_user32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_user32_main" >&5 -$as_echo "$ac_cv_lib_user32_main" >&6; } -if test "x$ac_cv_lib_user32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBUSER32 1 -_ACEOF - - LIBS="-luser32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lgdi32" >&5 -$as_echo_n "checking for main in -lgdi32... " >&6; } -if ${ac_cv_lib_gdi32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lgdi32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_gdi32_main=yes -else - ac_cv_lib_gdi32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gdi32_main" >&5 -$as_echo "$ac_cv_lib_gdi32_main" >&6; } -if test "x$ac_cv_lib_gdi32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBGDI32 1 -_ACEOF - - LIBS="-lgdi32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lcomdlg32" >&5 -$as_echo_n "checking for main in -lcomdlg32... " >&6; } -if ${ac_cv_lib_comdlg32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lcomdlg32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_comdlg32_main=yes -else - ac_cv_lib_comdlg32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_comdlg32_main" >&5 -$as_echo "$ac_cv_lib_comdlg32_main" >&6; } -if test "x$ac_cv_lib_comdlg32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBCOMDLG32 1 -_ACEOF - - LIBS="-lcomdlg32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lwinspool" >&5 -$as_echo_n "checking for main in -lwinspool... " >&6; } -if ${ac_cv_lib_winspool_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lwinspool $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_winspool_main=yes -else - ac_cv_lib_winspool_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_winspool_main" >&5 -$as_echo "$ac_cv_lib_winspool_main" >&6; } -if test "x$ac_cv_lib_winspool_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBWINSPOOL 1 -_ACEOF - - LIBS="-lwinspool $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lwinmm" >&5 -$as_echo_n "checking for main in -lwinmm... " >&6; } -if ${ac_cv_lib_winmm_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lwinmm $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_winmm_main=yes -else - ac_cv_lib_winmm_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_winmm_main" >&5 -$as_echo "$ac_cv_lib_winmm_main" >&6; } -if test "x$ac_cv_lib_winmm_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBWINMM 1 -_ACEOF - - LIBS="-lwinmm $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lshell32" >&5 -$as_echo_n "checking for main in -lshell32... " >&6; } -if ${ac_cv_lib_shell32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lshell32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_shell32_main=yes -else - ac_cv_lib_shell32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_shell32_main" >&5 -$as_echo "$ac_cv_lib_shell32_main" >&6; } -if test "x$ac_cv_lib_shell32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBSHELL32 1 -_ACEOF - - LIBS="-lshell32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lcomctl32" >&5 -$as_echo_n "checking for main in -lcomctl32... " >&6; } -if ${ac_cv_lib_comctl32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lcomctl32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_comctl32_main=yes -else - ac_cv_lib_comctl32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_comctl32_main" >&5 -$as_echo "$ac_cv_lib_comctl32_main" >&6; } -if test "x$ac_cv_lib_comctl32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBCOMCTL32 1 -_ACEOF - - LIBS="-lcomctl32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lole32" >&5 -$as_echo_n "checking for main in -lole32... " >&6; } -if ${ac_cv_lib_ole32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lole32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_ole32_main=yes -else - ac_cv_lib_ole32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ole32_main" >&5 -$as_echo "$ac_cv_lib_ole32_main" >&6; } -if test "x$ac_cv_lib_ole32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBOLE32 1 -_ACEOF - - LIBS="-lole32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -loleaut32" >&5 -$as_echo_n "checking for main in -loleaut32... " >&6; } -if ${ac_cv_lib_oleaut32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-loleaut32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_oleaut32_main=yes -else - ac_cv_lib_oleaut32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_oleaut32_main" >&5 -$as_echo "$ac_cv_lib_oleaut32_main" >&6; } -if test "x$ac_cv_lib_oleaut32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBOLEAUT32 1 -_ACEOF - - LIBS="-loleaut32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -luuid" >&5 -$as_echo_n "checking for main in -luuid... " >&6; } -if ${ac_cv_lib_uuid_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-luuid $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_uuid_main=yes -else - ac_cv_lib_uuid_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_uuid_main" >&5 -$as_echo "$ac_cv_lib_uuid_main" >&6; } -if test "x$ac_cv_lib_uuid_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBUUID 1 -_ACEOF - - LIBS="-luuid $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lrpcrt4" >&5 -$as_echo_n "checking for main in -lrpcrt4... " >&6; } -if ${ac_cv_lib_rpcrt4_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lrpcrt4 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_rpcrt4_main=yes -else - ac_cv_lib_rpcrt4_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rpcrt4_main" >&5 -$as_echo "$ac_cv_lib_rpcrt4_main" >&6; } -if test "x$ac_cv_lib_rpcrt4_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBRPCRT4 1 -_ACEOF - - LIBS="-lrpcrt4 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -ladvapi32" >&5 -$as_echo_n "checking for main in -ladvapi32... " >&6; } -if ${ac_cv_lib_advapi32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ladvapi32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_advapi32_main=yes -else - ac_cv_lib_advapi32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_advapi32_main" >&5 -$as_echo "$ac_cv_lib_advapi32_main" >&6; } -if test "x$ac_cv_lib_advapi32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBADVAPI32 1 -_ACEOF - - LIBS="-ladvapi32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lws2_32" >&5 -$as_echo_n "checking for main in -lws2_32... " >&6; } -if ${ac_cv_lib_ws2_32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lws2_32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_ws2_32_main=yes -else - ac_cv_lib_ws2_32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ws2_32_main" >&5 -$as_echo "$ac_cv_lib_ws2_32_main" >&6; } -if test "x$ac_cv_lib_ws2_32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBWS2_32 1 -_ACEOF - - LIBS="-lws2_32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lmswsock" >&5 -$as_echo_n "checking for main in -lmswsock... " >&6; } -if ${ac_cv_lib_mswsock_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lmswsock $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_mswsock_main=yes -else - ac_cv_lib_mswsock_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mswsock_main" >&5 -$as_echo "$ac_cv_lib_mswsock_main" >&6; } -if test "x$ac_cv_lib_mswsock_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBMSWSOCK 1 -_ACEOF - - LIBS="-lmswsock $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lshlwapi" >&5 -$as_echo_n "checking for main in -lshlwapi... " >&6; } -if ${ac_cv_lib_shlwapi_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lshlwapi $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_shlwapi_main=yes -else - ac_cv_lib_shlwapi_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_shlwapi_main" >&5 -$as_echo "$ac_cv_lib_shlwapi_main" >&6; } -if test "x$ac_cv_lib_shlwapi_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBSHLWAPI 1 -_ACEOF - - LIBS="-lshlwapi $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -liphlpapi" >&5 -$as_echo_n "checking for main in -liphlpapi... " >&6; } -if ${ac_cv_lib_iphlpapi_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-liphlpapi $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_iphlpapi_main=yes -else - ac_cv_lib_iphlpapi_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_iphlpapi_main" >&5 -$as_echo "$ac_cv_lib_iphlpapi_main" >&6; } -if test "x$ac_cv_lib_iphlpapi_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBIPHLPAPI 1 -_ACEOF - - LIBS="-liphlpapi $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lcrypt32" >&5 -$as_echo_n "checking for main in -lcrypt32... " >&6; } -if ${ac_cv_lib_crypt32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lcrypt32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_crypt32_main=yes -else - ac_cv_lib_crypt32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypt32_main" >&5 -$as_echo "$ac_cv_lib_crypt32_main" >&6; } -if test "x$ac_cv_lib_crypt32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBCRYPT32 1 -_ACEOF - - LIBS="-lcrypt32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -static" >&5 -$as_echo_n "checking whether the linker accepts -static... " >&6; } -if ${ax_cv_check_ldflags___static+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -static" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___static=yes -else - ax_cv_check_ldflags___static=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___static" >&5 -$as_echo "$ax_cv_check_ldflags___static" >&6; } -if test x"$ax_cv_check_ldflags___static" = xyes; then : - LDFLAGS="$LDFLAGS -static" -else - : -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -static-libgcc" >&5 -$as_echo_n "checking whether the linker accepts -static-libgcc... " >&6; } -if ${ax_cv_check_ldflags___static_libgcc+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -static-libgcc" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___static_libgcc=yes -else - ax_cv_check_ldflags___static_libgcc=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___static_libgcc" >&5 -$as_echo "$ax_cv_check_ldflags___static_libgcc" >&6; } -if test x"$ax_cv_check_ldflags___static_libgcc" = xyes; then : - LDFLAGS="$LDFLAGS -static-libgcc" -else - : -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -static-libstdc++" >&5 -$as_echo_n "checking whether the linker accepts -static-libstdc++... " >&6; } -if ${ax_cv_check_ldflags___static_libstdcpp+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -static-libstdc++" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___static_libstdcpp=yes -else - ax_cv_check_ldflags___static_libstdcpp=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___static_libstdcpp" >&5 -$as_echo "$ax_cv_check_ldflags___static_libstdcpp" >&6; } -if test x"$ax_cv_check_ldflags___static_libstdcpp" = xyes; then : - LDFLAGS="$LDFLAGS -static-libstdc++" -else - : -fi - - - # Extract the first word of "makensis", so it can be a program name with args. -set dummy makensis; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_MAKENSIS+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $MAKENSIS in - [\\/]* | ?:[\\/]*) - ac_cv_path_MAKENSIS="$MAKENSIS" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_MAKENSIS="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_path_MAKENSIS" && ac_cv_path_MAKENSIS="none" - ;; -esac -fi -MAKENSIS=$ac_cv_path_MAKENSIS -if test -n "$MAKENSIS"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAKENSIS" >&5 -$as_echo "$MAKENSIS" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - if test x$MAKENSIS = xnone; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \"makensis not found. Cannot create installer.\"" >&5 -$as_echo "$as_me: WARNING: \"makensis not found. Cannot create installer.\"" >&2;} - fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}windres", so it can be a program name with args. -set dummy ${ac_tool_prefix}windres; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_WINDRES+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $WINDRES in - [\\/]* | ?:[\\/]*) - ac_cv_path_WINDRES="$WINDRES" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_WINDRES="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -WINDRES=$ac_cv_path_WINDRES -if test -n "$WINDRES"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WINDRES" >&5 -$as_echo "$WINDRES" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_WINDRES"; then - ac_pt_WINDRES=$WINDRES - # Extract the first word of "windres", so it can be a program name with args. -set dummy windres; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_WINDRES+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_WINDRES in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_WINDRES="$ac_pt_WINDRES" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_WINDRES="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_WINDRES=$ac_cv_path_ac_pt_WINDRES -if test -n "$ac_pt_WINDRES"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_WINDRES" >&5 -$as_echo "$ac_pt_WINDRES" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_WINDRES" = x; then - WINDRES="none" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - WINDRES=$ac_pt_WINDRES - fi -else - WINDRES="$ac_cv_path_WINDRES" -fi - - if test x$WINDRES = xnone; then - as_fn_error $? "\"windres not found\"" "$LINENO" 5 - fi - - CPPFLAGS="$CPPFLAGS -D_MT -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB" - LEVELDB_TARGET_FLAGS="TARGET_OS=OS_WINDOWS_CROSSCOMPILE" - if test "x$CXXFLAGS_overridden" = "xno"; then - CXXFLAGS="$CXXFLAGS -w" - fi - case $host in - i?86-*) WINDOWS_BITS=32 ;; - x86_64-*) WINDOWS_BITS=64 ;; - *) as_fn_error $? "\"Could not determine win32/win64 for installer\"" "$LINENO" 5 ;; - esac - - ;; - *darwin*) - TARGET_OS=darwin - LEVELDB_TARGET_FLAGS="TARGET_OS=Darwin" - if test x$cross_compiling != xyes; then - BUILD_OS=darwin - # Extract the first word of "port", so it can be a program name with args. -set dummy port; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_PORT+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$PORT"; then - ac_cv_prog_PORT="$PORT" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_PORT="port" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -PORT=$ac_cv_prog_PORT -if test -n "$PORT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PORT" >&5 -$as_echo "$PORT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - if test x$PORT = xport; then - CPPFLAGS="$CPPFLAGS -isystem /opt/local/include -I/opt/local/include/db48" - LIBS="$LIBS -L/opt/local/lib -L/opt/local/lib/db48" - fi - - # Extract the first word of "brew", so it can be a program name with args. -set dummy brew; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_BREW+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$BREW"; then - ac_cv_prog_BREW="$BREW" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_BREW="brew" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -BREW=$ac_cv_prog_BREW -if test -n "$BREW"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $BREW" >&5 -$as_echo "$BREW" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - if test x$BREW = xbrew; then - openssl_prefix=`$BREW --prefix openssl` - bdb_prefix=`$BREW --prefix berkeley-db4` - export PKG_CONFIG_PATH="$openssl_prefix/lib/pkgconfig:$PKG_CONFIG_PATH" - CPPFLAGS="$CPPFLAGS -I$bdb_prefix/include" - LIBS="$LIBS -L$bdb_prefix/lib" - fi - else - case $build_os in - *darwin*) - BUILD_OS=darwin - ;; - *) - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}install_name_tool", so it can be a program name with args. -set dummy ${ac_tool_prefix}install_name_tool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_INSTALLNAMETOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $INSTALLNAMETOOL in - [\\/]* | ?:[\\/]*) - ac_cv_path_INSTALLNAMETOOL="$INSTALLNAMETOOL" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_INSTALLNAMETOOL="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -INSTALLNAMETOOL=$ac_cv_path_INSTALLNAMETOOL -if test -n "$INSTALLNAMETOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALLNAMETOOL" >&5 -$as_echo "$INSTALLNAMETOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_INSTALLNAMETOOL"; then - ac_pt_INSTALLNAMETOOL=$INSTALLNAMETOOL - # Extract the first word of "install_name_tool", so it can be a program name with args. -set dummy install_name_tool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_INSTALLNAMETOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_INSTALLNAMETOOL in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_INSTALLNAMETOOL="$ac_pt_INSTALLNAMETOOL" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_INSTALLNAMETOOL="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_INSTALLNAMETOOL=$ac_cv_path_ac_pt_INSTALLNAMETOOL -if test -n "$ac_pt_INSTALLNAMETOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_INSTALLNAMETOOL" >&5 -$as_echo "$ac_pt_INSTALLNAMETOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_INSTALLNAMETOOL" = x; then - INSTALLNAMETOOL="install_name_tool" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - INSTALLNAMETOOL=$ac_pt_INSTALLNAMETOOL - fi -else - INSTALLNAMETOOL="$ac_cv_path_INSTALLNAMETOOL" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. -set dummy ${ac_tool_prefix}otool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_OTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $OTOOL in - [\\/]* | ?:[\\/]*) - ac_cv_path_OTOOL="$OTOOL" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_OTOOL="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -OTOOL=$ac_cv_path_OTOOL -if test -n "$OTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 -$as_echo "$OTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_OTOOL"; then - ac_pt_OTOOL=$OTOOL - # Extract the first word of "otool", so it can be a program name with args. -set dummy otool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_OTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_OTOOL in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_OTOOL="$ac_pt_OTOOL" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_OTOOL="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_OTOOL=$ac_cv_path_ac_pt_OTOOL -if test -n "$ac_pt_OTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_OTOOL" >&5 -$as_echo "$ac_pt_OTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_OTOOL" = x; then - OTOOL="otool" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OTOOL=$ac_pt_OTOOL - fi -else - OTOOL="$ac_cv_path_OTOOL" -fi - - for ac_prog in genisoimage mkisofs -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GENISOIMAGE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GENISOIMAGE in - [\\/]* | ?:[\\/]*) - ac_cv_path_GENISOIMAGE="$GENISOIMAGE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GENISOIMAGE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -GENISOIMAGE=$ac_cv_path_GENISOIMAGE -if test -n "$GENISOIMAGE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GENISOIMAGE" >&5 -$as_echo "$GENISOIMAGE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$GENISOIMAGE" && break -done -test -n "$GENISOIMAGE" || GENISOIMAGE="genisoimage" - - ;; - esac - fi - - CPPFLAGS="$CPPFLAGS -DMAC_OSX" - ;; - *) - ;; -esac - -if test x$use_comparison_tool != xno; then - JAVA_COMPARISON_TOOL=$use_comparison_tool - -fi - -if test x$use_comparison_tool_reorg_tests != xno; then - if test x$use_comparison_tool == x; then - as_fn_error $? "\"comparison tool reorg tests but comparison tool was not specified\"" "$LINENO" 5 - fi - COMPARISON_TOOL_REORG_TESTS=1 - -else - COMPARISON_TOOL_REORG_TESTS=0 - -fi - -if test x$use_lcov == xyes; then - if test x$LCOV == x; then - as_fn_error $? "\"lcov testing requested but lcov not found\"" "$LINENO" 5 - fi - if test x$GCOV == x; then - as_fn_error $? "\"lcov testing requested but gcov not found\"" "$LINENO" 5 - fi - if test x$JAVA == x; then - as_fn_error $? "\"lcov testing requested but java not found\"" "$LINENO" 5 - fi - if test x$GENHTML == x; then - as_fn_error $? "\"lcov testing requested but genhtml not found\"" "$LINENO" 5 - fi - if test x$use_comparison_tool == x; then - as_fn_error $? "\"lcov testing requested but comparison tool was not specified\"" "$LINENO" 5 - fi - LCOV="$LCOV --gcov-tool=$GCOV" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts --coverage" >&5 -$as_echo_n "checking whether C++ compiler accepts --coverage... " >&6; } -if ${ax_cv_check_cxxflags____coverage+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$CXXFLAGS - CXXFLAGS="$CXXFLAGS --coverage" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_check_cxxflags____coverage=yes -else - ax_cv_check_cxxflags____coverage=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXXFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags____coverage" >&5 -$as_echo "$ax_cv_check_cxxflags____coverage" >&6; } -if test x"$ax_cv_check_cxxflags____coverage" = xyes; then : - CXXFLAGS="$CXXFLAGS --coverage" -else - as_fn_error $? "\"lcov testing requested but --coverage flag does not work\"" "$LINENO" 5 -fi - -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 -$as_echo_n "checking for grep that handles long lines and -e... " >&6; } -if ${ac_cv_path_GREP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$GREP"; then - ac_path_GREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in grep ggrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" - as_fn_executable_p "$ac_path_GREP" || continue -# Check for GNU ac_path_GREP and select it if it is found. - # Check for GNU $ac_path_GREP -case `"$ac_path_GREP" --version 2>&1` in -*GNU*) - ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'GREP' >> "conftest.nl" - "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_GREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_GREP="$ac_path_GREP" - ac_path_GREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_GREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_GREP"; then - as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_GREP=$GREP -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 -$as_echo "$ac_cv_path_GREP" >&6; } - GREP="$ac_cv_path_GREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 -$as_echo_n "checking for egrep... " >&6; } -if ${ac_cv_path_EGREP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 - then ac_cv_path_EGREP="$GREP -E" - else - if test -z "$EGREP"; then - ac_path_EGREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in egrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" - as_fn_executable_p "$ac_path_EGREP" || continue -# Check for GNU ac_path_EGREP and select it if it is found. - # Check for GNU $ac_path_EGREP -case `"$ac_path_EGREP" --version 2>&1` in -*GNU*) - ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'EGREP' >> "conftest.nl" - "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_EGREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_EGREP="$ac_path_EGREP" - ac_path_EGREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_EGREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_EGREP"; then - as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_EGREP=$EGREP -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 -$as_echo "$ac_cv_path_EGREP" >&6; } - EGREP="$ac_cv_path_EGREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 -$as_echo_n "checking for ANSI C header files... " >&6; } -if ${ac_cv_header_stdc+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include -#include - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_header_stdc=yes -else - ac_cv_header_stdc=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then : - : -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \ - (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif - -#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{ - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - return 2; - return 0; -} -_ACEOF -if ac_fn_cxx_try_run "$LINENO"; then : - -else - ac_cv_header_stdc=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 -$as_echo "$ac_cv_header_stdc" >&6; } -if test $ac_cv_header_stdc = yes; then - -$as_echo "@%:@define STDC_HEADERS 1" >>confdefs.h - -fi - -# On IRIX 5.3, sys/types and inttypes.h are conflicting. -for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ - inttypes.h stdint.h unistd.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_cxx_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default -" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 -$as_echo_n "checking whether byte ordering is bigendian... " >&6; } -if ${ac_cv_c_bigendian+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_c_bigendian=unknown - # See if we're dealing with a universal compiler. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifndef __APPLE_CC__ - not a universal capable compiler - #endif - typedef int dummy; - -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - - # Check for potential -arch flags. It is not universal unless - # there are at least two -arch flags with different values. - ac_arch= - ac_prev= - for ac_word in $CC $CFLAGS $CPPFLAGS $LDFLAGS; do - if test -n "$ac_prev"; then - case $ac_word in - i?86 | x86_64 | ppc | ppc64) - if test -z "$ac_arch" || test "$ac_arch" = "$ac_word"; then - ac_arch=$ac_word - else - ac_cv_c_bigendian=universal - break - fi - ;; - esac - ac_prev= - elif test "x$ac_word" = "x-arch"; then - ac_prev=arch - fi - done -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - if test $ac_cv_c_bigendian = unknown; then - # See if sys/param.h defines the BYTE_ORDER macro. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - #include - -int -main () -{ -#if ! (defined BYTE_ORDER && defined BIG_ENDIAN \ - && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \ - && LITTLE_ENDIAN) - bogus endian macros - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - # It does; now see whether it defined to BIG_ENDIAN or not. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - #include - -int -main () -{ -#if BYTE_ORDER != BIG_ENDIAN - not big endian - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_c_bigendian=yes -else - ac_cv_c_bigendian=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - fi - if test $ac_cv_c_bigendian = unknown; then - # See if defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris). - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -int -main () -{ -#if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN) - bogus endian macros - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - # It does; now see whether it defined to _BIG_ENDIAN or not. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -int -main () -{ -#ifndef _BIG_ENDIAN - not big endian - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_c_bigendian=yes -else - ac_cv_c_bigendian=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - fi - if test $ac_cv_c_bigendian = unknown; then - # Compile a test program. - if test "$cross_compiling" = yes; then : - # Try to guess by grepping values from an object file. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -short int ascii_mm[] = - { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; - short int ascii_ii[] = - { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; - int use_ascii (int i) { - return ascii_mm[i] + ascii_ii[i]; - } - short int ebcdic_ii[] = - { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; - short int ebcdic_mm[] = - { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; - int use_ebcdic (int i) { - return ebcdic_mm[i] + ebcdic_ii[i]; - } - extern int foo; - -int -main () -{ -return use_ascii (foo) == use_ebcdic (foo); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then - ac_cv_c_bigendian=yes - fi - if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then - if test "$ac_cv_c_bigendian" = unknown; then - ac_cv_c_bigendian=no - else - # finding both strings is unlikely to happen, but who knows? - ac_cv_c_bigendian=unknown - fi - fi -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ - - /* Are we little or big endian? From Harbison&Steele. */ - union - { - long int l; - char c[sizeof (long int)]; - } u; - u.l = 1; - return u.c[sizeof (long int) - 1] == 1; - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_run "$LINENO"; then : - ac_cv_c_bigendian=no -else - ac_cv_c_bigendian=yes -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5 -$as_echo "$ac_cv_c_bigendian" >&6; } - case $ac_cv_c_bigendian in #( - yes) - as_fn_error $? "\"Big Endian not supported\"" "$LINENO" 5;; #( - no) - ;; #( - universal) - -$as_echo "@%:@define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h - - ;; #( - *) - as_fn_error $? "unknown endianness - presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;; - esac - - - - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -ax_pthread_ok=no - -# We used to check for pthread.h first, but this fails if pthread.h -# requires special compiler flags (e.g. on True64 or Sequent). -# It gets checked for in the link test anyway. - -# First of all, check if the user has set any of the PTHREAD_LIBS, -# etcetera environment variables, and if threads linking works using -# them: -if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then - save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $PTHREAD_CFLAGS" - save_LIBS="$LIBS" - LIBS="$PTHREAD_LIBS $LIBS" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS" >&5 -$as_echo_n "checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS... " >&6; } - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char pthread_join (); -int -main () -{ -return pthread_join (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ax_pthread_ok=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_ok" >&5 -$as_echo "$ax_pthread_ok" >&6; } - if test x"$ax_pthread_ok" = xno; then - PTHREAD_LIBS="" - PTHREAD_CFLAGS="" - fi - LIBS="$save_LIBS" - CFLAGS="$save_CFLAGS" -fi - -# We must check for the threads library under a number of different -# names; the ordering is very important because some systems -# (e.g. DEC) have both -lpthread and -lpthreads, where one of the -# libraries is broken (non-POSIX). - -# Create a list of thread flags to try. Items starting with a "-" are -# C compiler flags, and other items are library names, except for "none" -# which indicates that we try without any flags at all, and "pthread-config" -# which is a program returning the flags for the Pth emulation library. - -ax_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config" - -# The ordering *is* (sometimes) important. Some notes on the -# individual items follow: - -# pthreads: AIX (must check this before -lpthread) -# none: in case threads are in libc; should be tried before -Kthread and -# other compiler flags to prevent continual compiler warnings -# -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h) -# -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able) -# lthread: LinuxThreads port on FreeBSD (also preferred to -pthread) -# -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads) -# -pthreads: Solaris/gcc -# -mthreads: Mingw32/gcc, Lynx/gcc -# -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it -# doesn't hurt to check since this sometimes defines pthreads too; -# also defines -D_REENTRANT) -# ... -mt is also the pthreads flag for HP/aCC -# pthread: Linux, etcetera -# --thread-safe: KAI C++ -# pthread-config: use pthread-config program (for GNU Pth library) - -case ${host_os} in - solaris*) - - # On Solaris (at least, for some versions), libc contains stubbed - # (non-functional) versions of the pthreads routines, so link-based - # tests will erroneously succeed. (We need to link with -pthreads/-mt/ - # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather - # a function called by this macro, so we could check for that, but - # who knows whether they'll stub that too in a future libc.) So, - # we'll just look for -pthreads and -lpthread first: - - ax_pthread_flags="-pthreads pthread -mt -pthread $ax_pthread_flags" - ;; - - darwin*) - ax_pthread_flags="-pthread $ax_pthread_flags" - ;; -esac - -# Clang doesn't consider unrecognized options an error unless we specify -# -Werror. We throw in some extra Clang-specific options to ensure that -# this doesn't happen for GCC, which also accepts -Werror. - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if compiler needs -Werror to reject unknown flags" >&5 -$as_echo_n "checking if compiler needs -Werror to reject unknown flags... " >&6; } -save_CFLAGS="$CFLAGS" -ax_pthread_extra_flags="-Werror" -CFLAGS="$CFLAGS $ax_pthread_extra_flags -Wunknown-warning-option -Wsizeof-array-argument" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -int foo(void); -int -main () -{ -foo() - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -else - ax_pthread_extra_flags= - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -CFLAGS="$save_CFLAGS" - -if test x"$ax_pthread_ok" = xno; then -for flag in $ax_pthread_flags; do - - case $flag in - none) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work without any flags" >&5 -$as_echo_n "checking whether pthreads work without any flags... " >&6; } - ;; - - -*) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work with $flag" >&5 -$as_echo_n "checking whether pthreads work with $flag... " >&6; } - PTHREAD_CFLAGS="$flag" - ;; - - pthread-config) - # Extract the first word of "pthread-config", so it can be a program name with args. -set dummy pthread-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ax_pthread_config+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ax_pthread_config"; then - ac_cv_prog_ax_pthread_config="$ax_pthread_config" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ax_pthread_config="yes" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_ax_pthread_config" && ac_cv_prog_ax_pthread_config="no" -fi -fi -ax_pthread_config=$ac_cv_prog_ax_pthread_config -if test -n "$ax_pthread_config"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_config" >&5 -$as_echo "$ax_pthread_config" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - if test x"$ax_pthread_config" = xno; then continue; fi - PTHREAD_CFLAGS="`pthread-config --cflags`" - PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`" - ;; - - *) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the pthreads library -l$flag" >&5 -$as_echo_n "checking for the pthreads library -l$flag... " >&6; } - PTHREAD_LIBS="-l$flag" - ;; - esac - - save_LIBS="$LIBS" - save_CFLAGS="$CFLAGS" - LIBS="$PTHREAD_LIBS $LIBS" - CFLAGS="$CFLAGS $PTHREAD_CFLAGS $ax_pthread_extra_flags" - - # Check for various functions. We must include pthread.h, - # since some functions may be macros. (On the Sequent, we - # need a special flag -Kthread to make this header compile.) - # We check for pthread_join because it is in -lpthread on IRIX - # while pthread_create is in libc. We check for pthread_attr_init - # due to DEC craziness with -lpthreads. We check for - # pthread_cleanup_push because it is one of the few pthread - # functions on Solaris that doesn't have a non-functional libc stub. - # We try pthread_create on general principles. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - static void routine(void *a) { a = 0; } - static void *start_routine(void *a) { return a; } -int -main () -{ -pthread_t th; pthread_attr_t attr; - pthread_create(&th, 0, start_routine, 0); - pthread_join(th, 0); - pthread_attr_init(&attr); - pthread_cleanup_push(routine, 0); - pthread_cleanup_pop(0) /* ; */ - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ax_pthread_ok=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - - LIBS="$save_LIBS" - CFLAGS="$save_CFLAGS" - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_ok" >&5 -$as_echo "$ax_pthread_ok" >&6; } - if test "x$ax_pthread_ok" = xyes; then - break; - fi - - PTHREAD_LIBS="" - PTHREAD_CFLAGS="" -done -fi - -# Various other checks: -if test "x$ax_pthread_ok" = xyes; then - save_LIBS="$LIBS" - LIBS="$PTHREAD_LIBS $LIBS" - save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $PTHREAD_CFLAGS" - - # Detect AIX lossage: JOINABLE attribute is called UNDETACHED. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for joinable pthread attribute" >&5 -$as_echo_n "checking for joinable pthread attribute... " >&6; } - attr_name=unknown - for attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -int attr = $attr; return attr /* ; */ - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - attr_name=$attr; break -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - done - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $attr_name" >&5 -$as_echo "$attr_name" >&6; } - if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then - -cat >>confdefs.h <<_ACEOF -@%:@define PTHREAD_CREATE_JOINABLE $attr_name -_ACEOF - - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if more special flags are required for pthreads" >&5 -$as_echo_n "checking if more special flags are required for pthreads... " >&6; } - flag=no - case ${host_os} in - aix* | freebsd* | darwin*) flag="-D_THREAD_SAFE";; - osf* | hpux*) flag="-D_REENTRANT";; - solaris*) - if test "$GCC" = "yes"; then - flag="-D_REENTRANT" - else - # TODO: What about Clang on Solaris? - flag="-mt -D_REENTRANT" - fi - ;; - esac - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $flag" >&5 -$as_echo "$flag" >&6; } - if test "x$flag" != xno; then - PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS" - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PTHREAD_PRIO_INHERIT" >&5 -$as_echo_n "checking for PTHREAD_PRIO_INHERIT... " >&6; } -if ${ax_cv_PTHREAD_PRIO_INHERIT+:} false; then : - $as_echo_n "(cached) " >&6 -else - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -int i = PTHREAD_PRIO_INHERIT; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ax_cv_PTHREAD_PRIO_INHERIT=yes -else - ax_cv_PTHREAD_PRIO_INHERIT=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_PTHREAD_PRIO_INHERIT" >&5 -$as_echo "$ax_cv_PTHREAD_PRIO_INHERIT" >&6; } - if test "x$ax_cv_PTHREAD_PRIO_INHERIT" = "xyes"; then : - -$as_echo "@%:@define HAVE_PTHREAD_PRIO_INHERIT 1" >>confdefs.h - -fi - - LIBS="$save_LIBS" - CFLAGS="$save_CFLAGS" - - # More AIX lossage: compile with *_r variant - if test "x$GCC" != xyes; then - case $host_os in - aix*) - case "x/$CC" in @%:@( - x*/c89|x*/c89_128|x*/c99|x*/c99_128|x*/cc|x*/cc128|x*/xlc|x*/xlc_v6|x*/xlc128|x*/xlc128_v6) : - #handle absolute path differently from PATH based program lookup - case "x$CC" in @%:@( - x/*) : - if as_fn_executable_p ${CC}_r; then : - PTHREAD_CC="${CC}_r" -fi ;; @%:@( - *) : - for ac_prog in ${CC}_r -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_PTHREAD_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$PTHREAD_CC"; then - ac_cv_prog_PTHREAD_CC="$PTHREAD_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_PTHREAD_CC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -PTHREAD_CC=$ac_cv_prog_PTHREAD_CC -if test -n "$PTHREAD_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PTHREAD_CC" >&5 -$as_echo "$PTHREAD_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$PTHREAD_CC" && break -done -test -n "$PTHREAD_CC" || PTHREAD_CC="$CC" - ;; -esac ;; @%:@( - *) : - ;; -esac - ;; - esac - fi -fi - -test -n "$PTHREAD_CC" || PTHREAD_CC="$CC" - - - - - -# Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: -if test x"$ax_pthread_ok" = xyes; then - -$as_echo "@%:@define HAVE_PTHREAD 1" >>confdefs.h - - : -else - ax_pthread_ok=no - -fi -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -INCLUDES="$INCLUDES $PTHREAD_CFLAGS" - -# The following macro will add the necessary defines to bitcoin-config.h, but -# they also need to be passed down to any subprojects. Pull the results out of -# the cache and add them to CPPFLAGS. -@%:@ Check whether --enable-largefile was given. -if test "${enable_largefile+set}" = set; then : - enableval=$enable_largefile; -fi - -if test "$enable_largefile" != no; then - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5 -$as_echo_n "checking for special C compiler options needed for large files... " >&6; } -if ${ac_cv_sys_largefile_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_sys_largefile_CC=no - if test "$GCC" != yes; then - ac_save_CC=$CC - while :; do - # IRIX 6.2 and later do not support large files by default, - # so use the C compiler's -n32 option if that helps. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include - /* Check that off_t can represent 2**63 - 1 correctly. - We can't simply define LARGE_OFF_T to be 9223372036854775807, - since some C++ compilers masquerading as C compilers - incorrectly reject 9223372036854775807. */ -@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 - && LARGE_OFF_T % 2147483647 == 1) - ? 1 : -1]; -int -main () -{ - - ; - return 0; -} -_ACEOF - if ac_fn_cxx_try_compile "$LINENO"; then : - break -fi -rm -f core conftest.err conftest.$ac_objext - CC="$CC -n32" - if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_sys_largefile_CC=' -n32'; break -fi -rm -f core conftest.err conftest.$ac_objext - break - done - CC=$ac_save_CC - rm -f conftest.$ac_ext - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5 -$as_echo "$ac_cv_sys_largefile_CC" >&6; } - if test "$ac_cv_sys_largefile_CC" != no; then - CC=$CC$ac_cv_sys_largefile_CC - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5 -$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } -if ${ac_cv_sys_file_offset_bits+:} false; then : - $as_echo_n "(cached) " >&6 -else - while :; do - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include - /* Check that off_t can represent 2**63 - 1 correctly. - We can't simply define LARGE_OFF_T to be 9223372036854775807, - since some C++ compilers masquerading as C compilers - incorrectly reject 9223372036854775807. */ -@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 - && LARGE_OFF_T % 2147483647 == 1) - ? 1 : -1]; -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_sys_file_offset_bits=no; break -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@define _FILE_OFFSET_BITS 64 -@%:@include - /* Check that off_t can represent 2**63 - 1 correctly. - We can't simply define LARGE_OFF_T to be 9223372036854775807, - since some C++ compilers masquerading as C compilers - incorrectly reject 9223372036854775807. */ -@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 - && LARGE_OFF_T % 2147483647 == 1) - ? 1 : -1]; -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_sys_file_offset_bits=64; break -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_cv_sys_file_offset_bits=unknown - break -done -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5 -$as_echo "$ac_cv_sys_file_offset_bits" >&6; } -case $ac_cv_sys_file_offset_bits in #( - no | unknown) ;; - *) -cat >>confdefs.h <<_ACEOF -@%:@define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits -_ACEOF -;; -esac -rm -rf conftest* - if test $ac_cv_sys_file_offset_bits = unknown; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5 -$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; } -if ${ac_cv_sys_large_files+:} false; then : - $as_echo_n "(cached) " >&6 -else - while :; do - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include - /* Check that off_t can represent 2**63 - 1 correctly. - We can't simply define LARGE_OFF_T to be 9223372036854775807, - since some C++ compilers masquerading as C compilers - incorrectly reject 9223372036854775807. */ -@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 - && LARGE_OFF_T % 2147483647 == 1) - ? 1 : -1]; -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_sys_large_files=no; break -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@define _LARGE_FILES 1 -@%:@include - /* Check that off_t can represent 2**63 - 1 correctly. - We can't simply define LARGE_OFF_T to be 9223372036854775807, - since some C++ compilers masquerading as C compilers - incorrectly reject 9223372036854775807. */ -@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 - && LARGE_OFF_T % 2147483647 == 1) - ? 1 : -1]; -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_sys_large_files=1; break -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_cv_sys_large_files=unknown - break -done -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5 -$as_echo "$ac_cv_sys_large_files" >&6; } -case $ac_cv_sys_large_files in #( - no | unknown) ;; - *) -cat >>confdefs.h <<_ACEOF -@%:@define _LARGE_FILES $ac_cv_sys_large_files -_ACEOF -;; -esac -rm -rf conftest* - fi - - -fi - - -if test x$ac_cv_sys_file_offset_bits != x && - test x$ac_cv_sys_file_offset_bits != xno && - test x$ac_cv_sys_file_offset_bits != xunknown; then - CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits" -fi - -if test x$ac_cv_sys_large_files != x && - test x$ac_cv_sys_large_files != xno && - test x$ac_cv_sys_large_files != xunknown; then - CPPFLAGS="$CPPFLAGS -D_LARGE_FILES=$ac_cv_sys_large_files" -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,--large-address-aware" >&5 -$as_echo_n "checking whether the linker accepts -Wl,--large-address-aware... " >&6; } -if ${ax_cv_check_ldflags___Wl___large_address_aware+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -Wl,--large-address-aware" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___Wl___large_address_aware=yes -else - ax_cv_check_ldflags___Wl___large_address_aware=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl___large_address_aware" >&5 -$as_echo "$ax_cv_check_ldflags___Wl___large_address_aware" >&6; } -if test x"$ax_cv_check_ldflags___Wl___large_address_aware" = xyes; then : - LDFLAGS="$LDFLAGS -Wl,--large-address-aware" -else - : -fi - - -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. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking __fdelt_chk type" >&5 -$as_echo_n "checking __fdelt_chk type... " >&6; } - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#define __USE_FORTIFY_LEVEL 2 - #include - extern "C" long unsigned int __fdelt_warn(long unsigned int); -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - fdelt_type="long unsigned int" -else - fdelt_type="long int" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $fdelt_type" >&5 -$as_echo "$fdelt_type" >&6; } - -cat >>confdefs.h <<_ACEOF -@%:@define FDELT_TYPE $fdelt_type -_ACEOF - - -fi - -if test x$use_hardening != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -Wstack-protector" >&5 -$as_echo_n "checking whether C++ compiler accepts -Wstack-protector... " >&6; } -if ${ax_cv_check_cxxflags___Wstack_protector+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$CXXFLAGS - CXXFLAGS="$CXXFLAGS -Wstack-protector" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_check_cxxflags___Wstack_protector=yes -else - ax_cv_check_cxxflags___Wstack_protector=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXXFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___Wstack_protector" >&5 -$as_echo "$ax_cv_check_cxxflags___Wstack_protector" >&6; } -if test x"$ax_cv_check_cxxflags___Wstack_protector" = xyes; then : - HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -Wstack-protector" -else - : -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -fstack-protector-all" >&5 -$as_echo_n "checking whether C++ compiler accepts -fstack-protector-all... " >&6; } -if ${ax_cv_check_cxxflags___fstack_protector_all+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$CXXFLAGS - CXXFLAGS="$CXXFLAGS -fstack-protector-all" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_check_cxxflags___fstack_protector_all=yes -else - ax_cv_check_cxxflags___fstack_protector_all=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXXFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___fstack_protector_all" >&5 -$as_echo "$ax_cv_check_cxxflags___fstack_protector_all" >&6; } -if test x"$ax_cv_check_cxxflags___fstack_protector_all" = xyes; then : - HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fstack-protector-all" -else - : -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -fPIE" >&5 -$as_echo_n "checking whether C++ compiler accepts -fPIE... " >&6; } -if ${ax_cv_check_cxxflags___fPIE+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$CXXFLAGS - CXXFLAGS="$CXXFLAGS -fPIE" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_check_cxxflags___fPIE=yes -else - ax_cv_check_cxxflags___fPIE=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXXFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___fPIE" >&5 -$as_echo "$ax_cv_check_cxxflags___fPIE" >&6; } -if test x"$ax_cv_check_cxxflags___fPIE" = xyes; then : - HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fPIE" -else - : -fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ preprocessor accepts -D_FORTIFY_SOURCE=2" >&5 -$as_echo_n "checking whether C++ preprocessor accepts -D_FORTIFY_SOURCE=2... " >&6; } -if ${ax_cv_check_cxxcppflags___D_FORTIFY_SOURCE_2+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$CPPFLAGS - CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - ax_cv_check_cxxcppflags___D_FORTIFY_SOURCE_2=yes -else - ax_cv_check_cxxcppflags___D_FORTIFY_SOURCE_2=no -fi -rm -f conftest.err conftest.i conftest.$ac_ext - CPPFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxcppflags___D_FORTIFY_SOURCE_2" >&5 -$as_echo "$ax_cv_check_cxxcppflags___D_FORTIFY_SOURCE_2" >&6; } -if test x"$ax_cv_check_cxxcppflags___D_FORTIFY_SOURCE_2" = xyes; then : - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ preprocessor accepts -U_FORTIFY_SOURCE" >&5 -$as_echo_n "checking whether C++ preprocessor accepts -U_FORTIFY_SOURCE... " >&6; } -if ${ax_cv_check_cxxcppflags___U_FORTIFY_SOURCE+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$CPPFLAGS - CPPFLAGS="$CPPFLAGS -U_FORTIFY_SOURCE" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - ax_cv_check_cxxcppflags___U_FORTIFY_SOURCE=yes -else - ax_cv_check_cxxcppflags___U_FORTIFY_SOURCE=no -fi -rm -f conftest.err conftest.i conftest.$ac_ext - CPPFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxcppflags___U_FORTIFY_SOURCE" >&5 -$as_echo "$ax_cv_check_cxxcppflags___U_FORTIFY_SOURCE" >&6; } -if test x"$ax_cv_check_cxxcppflags___U_FORTIFY_SOURCE" = xyes; then : - - HARDENED_CPPFLAGS="$HARDENED_CPPFLAGS -U_FORTIFY_SOURCE" - -else - : -fi - - HARDENED_CPPFLAGS="$HARDENED_CPPFLAGS -D_FORTIFY_SOURCE=2" - -else - : -fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,--dynamicbase" >&5 -$as_echo_n "checking whether the linker accepts -Wl,--dynamicbase... " >&6; } -if ${ax_cv_check_ldflags___Wl___dynamicbase+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -Wl,--dynamicbase" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___Wl___dynamicbase=yes -else - ax_cv_check_ldflags___Wl___dynamicbase=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl___dynamicbase" >&5 -$as_echo "$ax_cv_check_ldflags___Wl___dynamicbase" >&6; } -if test x"$ax_cv_check_ldflags___Wl___dynamicbase" = xyes; then : - HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,--dynamicbase" -else - : -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,--nxcompat" >&5 -$as_echo_n "checking whether the linker accepts -Wl,--nxcompat... " >&6; } -if ${ax_cv_check_ldflags___Wl___nxcompat+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -Wl,--nxcompat" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___Wl___nxcompat=yes -else - ax_cv_check_ldflags___Wl___nxcompat=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl___nxcompat" >&5 -$as_echo "$ax_cv_check_ldflags___Wl___nxcompat" >&6; } -if test x"$ax_cv_check_ldflags___Wl___nxcompat" = xyes; then : - HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,--nxcompat" -else - : -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,-z,relro" >&5 -$as_echo_n "checking whether the linker accepts -Wl,-z,relro... " >&6; } -if ${ax_cv_check_ldflags___Wl__z_relro+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -Wl,-z,relro" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___Wl__z_relro=yes -else - ax_cv_check_ldflags___Wl__z_relro=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl__z_relro" >&5 -$as_echo "$ax_cv_check_ldflags___Wl__z_relro" >&6; } -if test x"$ax_cv_check_ldflags___Wl__z_relro" = xyes; then : - HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,-z,relro" -else - : -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,-z,now" >&5 -$as_echo_n "checking whether the linker accepts -Wl,-z,now... " >&6; } -if ${ax_cv_check_ldflags___Wl__z_now+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -Wl,-z,now" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___Wl__z_now=yes -else - ax_cv_check_ldflags___Wl__z_now=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl__z_now" >&5 -$as_echo "$ax_cv_check_ldflags___Wl__z_now" >&6; } -if test x"$ax_cv_check_ldflags___Wl__z_now" = xyes; then : - HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,-z,now" -else - : -fi - - - if test x$TARGET_OS != xwindows; then - # -pie will link successfully with MinGW, but it's unsupported and leads to undeterministic binaries - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -pie" >&5 -$as_echo_n "checking whether the linker accepts -pie... " >&6; } -if ${ax_cv_check_ldflags___pie+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -pie" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___pie=yes -else - ax_cv_check_ldflags___pie=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___pie" >&5 -$as_echo "$ax_cv_check_ldflags___pie" >&6; } -if test x"$ax_cv_check_ldflags___pie" = xyes; then : - HARDENED_LDFLAGS="$HARDENED_LDFLAGS -pie" -else - : -fi - - fi - - CXXFLAGS="$CXXFLAGS $HARDENED_CXXFLAGS" - CPPFLAGS="$CPPFLAGS $HARDENED_CPPFLAGS" - LDFLAGS="$LDFLAGS $HARDENED_LDFLAGS" - OBJCXXFLAGS="$CXXFLAGS" -fi - -if test x$TARGET_OS = xdarwin; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,-dead_strip" >&5 -$as_echo_n "checking whether the linker accepts -Wl,-dead_strip... " >&6; } -if ${ax_cv_check_ldflags___Wl__dead_strip+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -Wl,-dead_strip" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___Wl__dead_strip=yes -else - ax_cv_check_ldflags___Wl__dead_strip=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl__dead_strip" >&5 -$as_echo "$ax_cv_check_ldflags___Wl__dead_strip" >&6; } -if test x"$ax_cv_check_ldflags___Wl__dead_strip" = xyes; then : - LDFLAGS="$LDFLAGS -Wl,-dead_strip" -else - : -fi - -fi - -for ac_header in stdio.h stdlib.h unistd.h strings.h sys/types.h sys/stat.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for MSG_NOSIGNAL" >&5 -$as_echo_n "checking for MSG_NOSIGNAL... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ - int f = MSG_NOSIGNAL; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; }; -$as_echo "@%:@define HAVE_MSG_NOSIGNAL 1" >>confdefs.h - -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -LEVELDB_CPPFLAGS= -LIBLEVELDB= -LIBMEMENV= - if true; then - EMBEDDED_LEVELDB_TRUE= - EMBEDDED_LEVELDB_FALSE='#' -else - EMBEDDED_LEVELDB_TRUE='#' - EMBEDDED_LEVELDB_FALSE= -fi - - - - - -if test x$enable_wallet != xno; then - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Berkeley DB C++ headers" >&5 -$as_echo_n "checking for Berkeley DB C++ headers... " >&6; } - BDB_CPPFLAGS= - BDB_LIBS= - bdbpath=X - bdb48path=X - bdbdirlist= - for _vn in 4.8 48 4 5 ''; do - for _pfx in b lib ''; do - bdbdirlist="$bdbdirlist ${_pfx}db${_vn}" - done - done - for searchpath in $bdbdirlist ''; do - test -n "${searchpath}" && searchpath="${searchpath}/" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #include <${searchpath}db_cxx.h> - -int -main () -{ - - #if !((DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 8) || DB_VERSION_MAJOR > 4) - #error "failed to find bdb 4.8+" - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - - if test "x$bdbpath" = "xX"; then - bdbpath="${searchpath}" - fi - -else - - continue - -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #include <${searchpath}db_cxx.h> - -int -main () -{ - - #if !(DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR == 8) - #error "failed to find bdb 4.8" - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - - bdb48path="${searchpath}" - break - -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - done - if test "x$bdbpath" = "xX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - as_fn_error $? "libdb_cxx headers missing" "$LINENO" 5 - elif test "x$bdb48path" = "xX"; then - - if test "x${bdbpath}" = "x"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: default" >&5 -$as_echo "default" >&6; } - else - echo "#include <${bdbpath}db_cxx.h>" >conftest.cpp - newinclpath=`${CXXCPP} ${CPPFLAGS} -M conftest.cpp 2>/dev/null | tr -d '\\n\\r\\\\' | sed -e 's/^.*[[:space:]:]\(\/[^[:space:]]*\)db_cxx\.h[[:space:]].*$/\1/' -e t -e d` - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${newinclpath}" >&5 -$as_echo "${newinclpath}" >&6; } - if test "x${newinclpath}" != "x"; then - eval "BDB_CPPFLAGS=\"\$BDB_CPPFLAGS\"' -I${newinclpath}'" - fi - fi - - -@%:@ Check whether --with-incompatible-bdb was given. -if test "${with_incompatible_bdb+set}" = set; then : - withval=$with_incompatible_bdb; - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Found Berkeley DB other than 4.8; wallets opened by this build will not be portable!" >&5 -$as_echo "$as_me: WARNING: Found Berkeley DB other than 4.8; wallets opened by this build will not be portable!" >&2;} - -else - - as_fn_error $? "Found Berkeley DB other than 4.8, required for portable wallets (--with-incompatible-bdb to ignore)" "$LINENO" 5 - -fi - - else - - if test "x${bdb48path}" = "x"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: default" >&5 -$as_echo "default" >&6; } - else - echo "#include <${bdb48path}db_cxx.h>" >conftest.cpp - newinclpath=`${CXXCPP} ${CPPFLAGS} -M conftest.cpp 2>/dev/null | tr -d '\\n\\r\\\\' | sed -e 's/^.*[[:space:]:]\(\/[^[:space:]]*\)db_cxx\.h[[:space:]].*$/\1/' -e t -e d` - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${newinclpath}" >&5 -$as_echo "${newinclpath}" >&6; } - if test "x${newinclpath}" != "x"; then - eval "BDB_CPPFLAGS=\"\$BDB_CPPFLAGS\"' -I${newinclpath}'" - fi - fi - - bdbpath="${bdb48path}" - fi - - - # TODO: Ideally this could find the library version and make sure it matches the headers being used - for searchlib in db_cxx-4.8 db_cxx; do - as_ac_Lib=`$as_echo "ac_cv_lib_$searchlib''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l$searchlib" >&5 -$as_echo_n "checking for main in -l$searchlib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$searchlib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - - BDB_LIBS="-l${searchlib}" - break - -fi - - done - if test "x$BDB_LIBS" = "x"; then - as_fn_error $? "libdb_cxx missing" "$LINENO" 5 - fi - - -fi - -if test x$use_upnp != xno; then - for ac_header in miniupnpc/miniwget.h miniupnpc/miniupnpc.h miniupnpc/upnpcommands.h miniupnpc/upnperrors.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lminiupnpc" >&5 -$as_echo_n "checking for main in -lminiupnpc... " >&6; } -if ${ac_cv_lib_miniupnpc_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lminiupnpc $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_miniupnpc_main=yes -else - ac_cv_lib_miniupnpc_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_miniupnpc_main" >&5 -$as_echo "$ac_cv_lib_miniupnpc_main" >&6; } -if test "x$ac_cv_lib_miniupnpc_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBMINIUPNPC 1 -_ACEOF - - LIBS="-lminiupnpc $LIBS" - -else - have_miniupnpc=no -fi - -else - have_miniupnpc=no - -fi - -done - -fi - - - -@%:@ Check whether --with-boost was given. -if test "${with_boost+set}" = set; then : - withval=$with_boost; - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ac_boost_path="" - else - want_boost="yes" - ac_boost_path="$withval" - fi - -else - want_boost="yes" -fi - - - - -@%:@ Check whether --with-boost-libdir was given. -if test "${with_boost_libdir+set}" = set; then : - withval=$with_boost_libdir; - if test -d "$withval" - then - ac_boost_lib_path="$withval" - else - as_fn_error $? "--with-boost-libdir expected directory name" "$LINENO" 5 - fi - -else - ac_boost_lib_path="" - -fi - - -if test "x$want_boost" = "xyes"; then - boost_lib_version_req=1.20.0 - boost_lib_version_req_shorten=`expr $boost_lib_version_req : '\([0-9]*\.[0-9]*\)'` - boost_lib_version_req_major=`expr $boost_lib_version_req : '\([0-9]*\)'` - boost_lib_version_req_minor=`expr $boost_lib_version_req : '[0-9]*\.\([0-9]*\)'` - boost_lib_version_req_sub_minor=`expr $boost_lib_version_req : '[0-9]*\.[0-9]*\.\([0-9]*\)'` - if test "x$boost_lib_version_req_sub_minor" = "x" ; then - boost_lib_version_req_sub_minor="0" - fi - WANT_BOOST_VERSION=`expr $boost_lib_version_req_major \* 100000 \+ $boost_lib_version_req_minor \* 100 \+ $boost_lib_version_req_sub_minor` - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for boostlib >= $boost_lib_version_req" >&5 -$as_echo_n "checking for boostlib >= $boost_lib_version_req... " >&6; } - succeeded=no - - libsubdirs="lib" - ax_arch=`uname -m` - case $ax_arch in - x86_64) - libsubdirs="lib64 libx32 lib lib64" - ;; - ppc64|s390x|sparc64|aarch64) - libsubdirs="lib64 lib lib64" - ;; - esac - - - libsubdirs="lib/${host_cpu}-${host_os} $libsubdirs" - - case ${host_cpu} in - i?86) - libsubdirs="lib/i386-${host_os} $libsubdirs" - ;; - esac - - if test "$ac_boost_path" != ""; then - BOOST_CPPFLAGS="-I$ac_boost_path/include" - for ac_boost_path_tmp in $libsubdirs; do - if test -d "$ac_boost_path"/"$ac_boost_path_tmp" ; then - BOOST_LDFLAGS="-L$ac_boost_path/$ac_boost_path_tmp" - break - fi - done - elif test "$cross_compiling" != yes; then - for ac_boost_path_tmp in /usr /usr/local /opt /opt/local ; do - if test -d "$ac_boost_path_tmp/include/boost" && test -r "$ac_boost_path_tmp/include/boost"; then - for libsubdir in $libsubdirs ; do - if ls "$ac_boost_path_tmp/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi - done - BOOST_LDFLAGS="-L$ac_boost_path_tmp/$libsubdir" - BOOST_CPPFLAGS="-I$ac_boost_path_tmp/include" - break; - fi - done - fi - - if test "$ac_boost_lib_path" != ""; then - BOOST_LDFLAGS="-L$ac_boost_lib_path" - fi - - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - @%:@include - -int -main () -{ - - #if BOOST_VERSION >= $WANT_BOOST_VERSION - // Everything is okay - #else - # error Boost version is too old - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - succeeded=yes - found_system=yes - -else - : - -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - - - - if test "x$succeeded" != "xyes"; then - _version=0 - if test "$ac_boost_path" != ""; then - if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then - for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do - _version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` - V_CHECK=`expr $_version_tmp \> $_version` - if test "$V_CHECK" = "1" ; then - _version=$_version_tmp - fi - VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` - BOOST_CPPFLAGS="-I$ac_boost_path/include/boost-$VERSION_UNDERSCORE" - done - fi - else - if test "$cross_compiling" != yes; then - for ac_boost_path in /usr /usr/local /opt /opt/local ; do - if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then - for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do - _version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` - V_CHECK=`expr $_version_tmp \> $_version` - if test "$V_CHECK" = "1" ; then - _version=$_version_tmp - best_path=$ac_boost_path - fi - done - fi - done - - VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` - BOOST_CPPFLAGS="-I$best_path/include/boost-$VERSION_UNDERSCORE" - if test "$ac_boost_lib_path" = ""; then - for libsubdir in $libsubdirs ; do - if ls "$best_path/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi - done - BOOST_LDFLAGS="-L$best_path/$libsubdir" - fi - fi - - if test "x$BOOST_ROOT" != "x"; then - for libsubdir in $libsubdirs ; do - if ls "$BOOST_ROOT/stage/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi - done - if test -d "$BOOST_ROOT" && test -r "$BOOST_ROOT" && test -d "$BOOST_ROOT/stage/$libsubdir" && test -r "$BOOST_ROOT/stage/$libsubdir"; then - version_dir=`expr //$BOOST_ROOT : '.*/\(.*\)'` - stage_version=`echo $version_dir | sed 's/boost_//' | sed 's/_/./g'` - stage_version_shorten=`expr $stage_version : '\([0-9]*\.[0-9]*\)'` - V_CHECK=`expr $stage_version_shorten \>\= $_version` - if test "$V_CHECK" = "1" -a "$ac_boost_lib_path" = "" ; then - { $as_echo "$as_me:${as_lineno-$LINENO}: We will use a staged boost library from $BOOST_ROOT" >&5 -$as_echo "$as_me: We will use a staged boost library from $BOOST_ROOT" >&6;} - BOOST_CPPFLAGS="-I$BOOST_ROOT" - BOOST_LDFLAGS="-L$BOOST_ROOT/stage/$libsubdir" - fi - fi - fi - fi - - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - @%:@include - -int -main () -{ - - #if BOOST_VERSION >= $WANT_BOOST_VERSION - // Everything is okay - #else - # error Boost version is too old - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - succeeded=yes - found_system=yes - -else - : - -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - fi - - if test "$succeeded" != "yes" ; then - if test "$_version" = "0" ; then - { $as_echo "$as_me:${as_lineno-$LINENO}: We could not detect the boost libraries (version $boost_lib_version_req_shorten or higher). If you have a staged boost library (still not installed) please specify \$BOOST_ROOT in your environment and do not give a PATH to --with-boost option. If you are sure you have boost installed, then check your version number looking in . See http://randspringer.de/boost for more documentation." >&5 -$as_echo "$as_me: We could not detect the boost libraries (version $boost_lib_version_req_shorten or higher). If you have a staged boost library (still not installed) please specify \$BOOST_ROOT in your environment and do not give a PATH to --with-boost option. If you are sure you have boost installed, then check your version number looking in . See http://randspringer.de/boost for more documentation." >&6;} - else - { $as_echo "$as_me:${as_lineno-$LINENO}: Your boost libraries seems to old (version $_version)." >&5 -$as_echo "$as_me: Your boost libraries seems to old (version $_version)." >&6;} - fi - # execute ACTION-IF-NOT-FOUND (if present): - : - else - - - -$as_echo "@%:@define HAVE_BOOST /**/" >>confdefs.h - - # execute ACTION-IF-FOUND (if present): - : - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" -fi - - - - -@%:@ Check whether --with-boost-system was given. -if test "${with_boost_system+set}" = set; then : - withval=$with_boost_system; - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_system_lib="" - else - want_boost="yes" - ax_boost_user_system_lib="$withval" - fi - -else - want_boost="yes" - -fi - - - if test "x$want_boost" = "xyes"; then - - - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::System library is available" >&5 -$as_echo_n "checking whether the Boost::System library is available... " >&6; } -if ${ax_cv_boost_system+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - CXXFLAGS_SAVE=$CXXFLAGS - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -int -main () -{ -boost::system::system_category - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_boost_system=yes -else - ax_cv_boost_system=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXXFLAGS=$CXXFLAGS_SAVE - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_system" >&5 -$as_echo "$ax_cv_boost_system" >&6; } - if test "x$ax_cv_boost_system" = "xyes"; then - - - -$as_echo "@%:@define HAVE_BOOST_SYSTEM /**/" >>confdefs.h - - BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` - - 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} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_SYSTEM_LIB="-l$ax_lib"; link_system="yes"; break -else - link_system="no" -fi - - done - if test "x$link_system" != "xyes"; then - for libextension in `ls -r $BOOSTLIBDIR/boost_system* 2>/dev/null | sed 's,.*/,,' | sed -e 's,\..*,,'` ; do - ax_lib=${libextension} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_SYSTEM_LIB="-l$ax_lib"; link_system="yes"; break -else - link_system="no" -fi - - done - fi - - else - for ax_lib in $ax_boost_user_system_lib boost_system-$ax_boost_user_system_lib; do - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_SYSTEM_LIB="-l$ax_lib"; link_system="yes"; break -else - link_system="no" -fi - - done - - fi - if test "x$ax_lib" = "x"; then - as_fn_error $? "Could not find a version of the boost_system library!" "$LINENO" 5 - fi - if test "x$link_system" = "xno"; then - as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5 - fi - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - fi - - - -@%:@ Check whether --with-boost-filesystem was given. -if test "${with_boost_filesystem+set}" = set; then : - withval=$with_boost_filesystem; - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_filesystem_lib="" - else - want_boost="yes" - ax_boost_user_filesystem_lib="$withval" - fi - -else - want_boost="yes" - -fi - - - if test "x$want_boost" = "xyes"; then - - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - LIBS_SAVED=$LIBS - LIBS="$LIBS $BOOST_SYSTEM_LIB" - export LIBS - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Filesystem library is available" >&5 -$as_echo_n "checking whether the Boost::Filesystem library is available... " >&6; } -if ${ax_cv_boost_filesystem+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -int -main () -{ -using namespace boost::filesystem; - path my_path( "foo/bar/data.txt" ); - return 0; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_boost_filesystem=yes -else - ax_cv_boost_filesystem=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_filesystem" >&5 -$as_echo "$ax_cv_boost_filesystem" >&6; } - if test "x$ax_cv_boost_filesystem" = "xyes"; then - -$as_echo "@%:@define HAVE_BOOST_FILESYSTEM /**/" >>confdefs.h - - 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} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_FILESYSTEM_LIB="-l$ax_lib"; link_filesystem="yes"; break -else - link_filesystem="no" -fi - - done - if test "x$link_filesystem" != "xyes"; then - for libextension in `ls -r $BOOSTLIBDIR/boost_filesystem* 2>/dev/null | sed 's,.*/,,' | sed -e 's,\..*,,'` ; do - ax_lib=${libextension} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_FILESYSTEM_LIB="-l$ax_lib"; link_filesystem="yes"; break -else - link_filesystem="no" -fi - - done - fi - else - for ax_lib in $ax_boost_user_filesystem_lib boost_filesystem-$ax_boost_user_filesystem_lib; do - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_FILESYSTEM_LIB="-l$ax_lib"; link_filesystem="yes"; break -else - link_filesystem="no" -fi - - done - - fi - if test "x$ax_lib" = "x"; then - as_fn_error $? "Could not find a version of the boost_filesystem library!" "$LINENO" 5 - fi - if test "x$link_filesystem" != "xyes"; then - as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5 - fi - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - LIBS="$LIBS_SAVED" - fi - - - -@%:@ Check whether --with-boost-program-options was given. -if test "${with_boost_program_options+set}" = set; then : - withval=$with_boost_program_options; - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_program_options_lib="" - else - want_boost="yes" - ax_boost_user_program_options_lib="$withval" - fi - -else - want_boost="yes" - -fi - - - if test "x$want_boost" = "xyes"; then - - export want_boost - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Program_Options library is available" >&5 -$as_echo_n "checking whether the Boost::Program_Options library is available... " >&6; } -if ${ax_cv_boost_program_options+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include - -int -main () -{ -boost::program_options::options_description generic("Generic options"); - return 0; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_boost_program_options=yes -else - ax_cv_boost_program_options=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_program_options" >&5 -$as_echo "$ax_cv_boost_program_options" >&6; } - if test "$ax_cv_boost_program_options" = yes; then - -$as_echo "@%:@define HAVE_BOOST_PROGRAM_OPTIONS /**/" >>confdefs.h - - 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} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib"; link_program_options="yes"; break -else - link_program_options="no" -fi - - done - if test "x$link_program_options" != "xyes"; then - for libextension in `ls $BOOSTLIBDIR/boost_program_options*.dll* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_program_options.*\)\.dll.*$;\1;'` `ls $BOOSTLIBDIR/boost_program_options*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_program_options.*\)\.a.*$;\1;'` ; do - ax_lib=${libextension} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib"; link_program_options="yes"; break -else - link_program_options="no" -fi - - done - fi - else - for ax_lib in $ax_boost_user_program_options_lib boost_program_options-$ax_boost_user_program_options_lib; do - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l$ax_lib" >&5 -$as_echo_n "checking for main in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib"; link_program_options="yes"; break -else - link_program_options="no" -fi - - done - fi - if test "x$ax_lib" = "x"; then - as_fn_error $? "Could not find a version of the boost_program_options library!" "$LINENO" 5 - fi - if test "x$link_program_options" != "xyes"; then - as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5 - fi - fi - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - fi - - - -@%:@ Check whether --with-boost-thread was given. -if test "${with_boost_thread+set}" = set; then : - withval=$with_boost_thread; - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_thread_lib="" - else - want_boost="yes" - ax_boost_user_thread_lib="$withval" - fi - -else - want_boost="yes" - -fi - - - if test "x$want_boost" = "xyes"; then - - - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Thread library is available" >&5 -$as_echo_n "checking whether the Boost::Thread library is available... " >&6; } -if ${ax_cv_boost_thread+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - CXXFLAGS_SAVE=$CXXFLAGS - - if test "x$host_os" = "xsolaris" ; then - CXXFLAGS="-pthreads $CXXFLAGS" - elif test "x$host_os" = "xmingw32" ; then - CXXFLAGS="-mthreads $CXXFLAGS" - else - CXXFLAGS="-pthread $CXXFLAGS" - fi - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -int -main () -{ -boost::thread_group thrds; - return 0; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_boost_thread=yes -else - ax_cv_boost_thread=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXXFLAGS=$CXXFLAGS_SAVE - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_thread" >&5 -$as_echo "$ax_cv_boost_thread" >&6; } - if test "x$ax_cv_boost_thread" = "xyes"; then - if test "x$host_os" = "xsolaris" ; then - BOOST_CPPFLAGS="-pthreads $BOOST_CPPFLAGS" - elif test "x$host_os" = "xmingw32" ; then - BOOST_CPPFLAGS="-mthreads $BOOST_CPPFLAGS" - else - BOOST_CPPFLAGS="-pthread $BOOST_CPPFLAGS" - fi - - - - -$as_echo "@%:@define HAVE_BOOST_THREAD /**/" >>confdefs.h - - BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` - - LDFLAGS_SAVE=$LDFLAGS - case "x$host_os" in - *bsd* ) - LDFLAGS="-pthread $LDFLAGS" - break; - ;; - 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} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_THREAD_LIB="-l$ax_lib"; link_thread="yes"; break -else - link_thread="no" -fi - - done - if test "x$link_thread" != "xyes"; then - for libextension in `ls -r $BOOSTLIBDIR/boost_thread* 2>/dev/null | sed 's,.*/,,' | sed 's,\..*,,'`; do - ax_lib=${libextension} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_THREAD_LIB="-l$ax_lib"; link_thread="yes"; break -else - link_thread="no" -fi - - done - fi - - else - for ax_lib in $ax_boost_user_thread_lib boost_thread-$ax_boost_user_thread_lib; do - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_THREAD_LIB="-l$ax_lib"; link_thread="yes"; break -else - link_thread="no" -fi - - done - - fi - if test "x$ax_lib" = "x"; then - as_fn_error $? "Could not find a version of the boost_thread library!" "$LINENO" 5 - fi - if test "x$link_thread" = "xno"; then - as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5 - else - case "x$host_os" in - *bsd* ) - BOOST_LDFLAGS="-pthread $BOOST_LDFLAGS" - break; - ;; - esac - - fi - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - fi - - - -@%:@ Check whether --with-boost-chrono was given. -if test "${with_boost_chrono+set}" = set; then : - withval=$with_boost_chrono; - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_chrono_lib="" - else - want_boost="yes" - ax_boost_user_chrono_lib="$withval" - fi - -else - want_boost="yes" - -fi - - - if test "x$want_boost" = "xyes"; then - - - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Chrono library is available" >&5 -$as_echo_n "checking whether the Boost::Chrono library is available... " >&6; } -if ${ax_cv_boost_chrono+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - CXXFLAGS_SAVE=$CXXFLAGS - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -int -main () -{ -boost::chrono::system_clock::time_point time; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_boost_chrono=yes -else - ax_cv_boost_chrono=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXXFLAGS=$CXXFLAGS_SAVE - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_chrono" >&5 -$as_echo "$ax_cv_boost_chrono" >&6; } - if test "x$ax_cv_boost_chrono" = "xyes"; then - - - -$as_echo "@%:@define HAVE_BOOST_CHRONO /**/" >>confdefs.h - - BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` - - 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} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_CHRONO_LIB="-l$ax_lib"; link_chrono="yes"; break -else - link_chrono="no" -fi - - done - if test "x$link_chrono" != "xyes"; then - for libextension in `ls $BOOSTLIBDIR/boost_chrono*.dll* $BOOSTLIBDIR/boost_chrono*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_chrono.*\)\.dll.*$;\1;' -e 's;^\(boost_chrono.*\)\.a.*$;\1;'` ; do - ax_lib=${libextension} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_CHRONO_LIB="-l$ax_lib"; link_chrono="yes"; break -else - link_chrono="no" -fi - - done - fi - - else - for ax_lib in $ax_boost_user_chrono_lib boost_chrono-$ax_boost_user_chrono_lib; do - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_CHRONO_LIB="-l$ax_lib"; link_chrono="yes"; break -else - link_chrono="no" -fi - - done - - fi - if test "x$ax_lib" = "x"; then - as_fn_error $? "Could not find a version of the boost_chrono library!" "$LINENO" 5 - fi - if test "x$link_chrono" = "xno"; then - as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5 - fi - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - fi - - -if test x$use_tests = xyes; then - - if test x$HEXDUMP = x; then - as_fn_error $? "hexdump is required for tests" "$LINENO" 5 - fi - - - - -@%:@ Check whether --with-boost-unit-test-framework was given. -if test "${with_boost_unit_test_framework+set}" = set; then : - withval=$with_boost_unit_test_framework; - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_unit_test_framework_lib="" - else - want_boost="yes" - ax_boost_user_unit_test_framework_lib="$withval" - fi - -else - want_boost="yes" - -fi - - - if test "x$want_boost" = "xyes"; then - - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Unit_Test_Framework library is available" >&5 -$as_echo_n "checking whether the Boost::Unit_Test_Framework library is available... " >&6; } -if ${ax_cv_boost_unit_test_framework+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -int -main () -{ -using boost::unit_test::test_suite; - test_suite* test= BOOST_TEST_SUITE( "Unit test example 1" ); return 0; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_boost_unit_test_framework=yes -else - ax_cv_boost_unit_test_framework=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_unit_test_framework" >&5 -$as_echo "$ax_cv_boost_unit_test_framework" >&6; } - if test "x$ax_cv_boost_unit_test_framework" = "xyes"; then - -$as_echo "@%:@define HAVE_BOOST_UNIT_TEST_FRAMEWORK /**/" >>confdefs.h - - BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` - - 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;'` - ax_lib=${libextension} - link_unit_test_framework="yes" - else - link_unit_test_framework="no" - fi - - if test "x$link_unit_test_framework" = "xyes"; then - BOOST_UNIT_TEST_FRAMEWORK_LIB="-l$ax_lib" - - break - fi - done - if test "x$link_unit_test_framework" != "xyes"; then - for libextension in `ls $BOOSTLIBDIR/boost_unit_test_framework*.dll* $BOOSTLIBDIR/boost_unit_test_framework*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_unit_test_framework.*\)\.dll.*$;\1;' -e 's;^\(boost_unit_test_framework.*\)\.a.*$;\1;'` ; do - ax_lib=${libextension} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_UNIT_TEST_FRAMEWORK_LIB="-l$ax_lib"; link_unit_test_framework="yes"; break -else - link_unit_test_framework="no" -fi - - done - fi - else - link_unit_test_framework="no" - saved_ldflags="${LDFLAGS}" - for ax_lib in boost_unit_test_framework-$ax_boost_user_unit_test_framework_lib $ax_boost_user_unit_test_framework_lib ; do - if test "x$link_unit_test_framework" = "xyes"; then - break; - fi - for unittest_library in `ls $BOOSTLIBDIR/lib${ax_lib}.so* $BOOSTLIBDIR/lib${ax_lib}.a* 2>/dev/null` ; do - if test -r $unittest_library ; then - libextension=`echo $unittest_library | sed 's,.*/,,' | sed -e 's;^lib\(boost_unit_test_framework.*\)\.so.*$;\1;' -e 's;^lib\(boost_unit_test_framework.*\)\.a*$;\1;'` - ax_lib=${libextension} - link_unit_test_framework="yes" - else - link_unit_test_framework="no" - fi - - if test "x$link_unit_test_framework" = "xyes"; then - BOOST_UNIT_TEST_FRAMEWORK_LIB="-l$ax_lib" - - break - fi - done - done - fi - if test "x$ax_lib" = "x"; then - as_fn_error $? "Could not find a version of the boost_unit_test_framework library!" "$LINENO" 5 - fi - if test "x$link_unit_test_framework" != "xyes"; then - as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5 - fi - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dynamic linked boost test" >&5 -$as_echo_n "checking for dynamic linked boost test... " >&6; } - TEMP_LIBS="$LIBS" - LIBS="$LIBS $BOOST_UNIT_TEST_FRAMEWORK_LIB" - TEMP_CPPFLAGS="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #define BOOST_TEST_DYN_LINK - #define BOOST_TEST_MAIN - #include - - -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - TESTDEFS="$TESTDEFS -DBOOST_TEST_DYN_LINK" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$TEMP_LIBS" - CPPFLAGS="$TEMP_CPPFLAGS" -fi - -BOOST_LIBS="$BOOST_LDFLAGS $BOOST_SYSTEM_LIB $BOOST_FILESYSTEM_LIB $BOOST_PROGRAM_OPTIONS_LIB $BOOST_THREAD_LIB" -BOOST_INCLUDES="$BOOST_CPPFLAGS" - -if test x$ax_cv_boost_chrono = xyes; then -BOOST_CHRONO_LIB="$BOOST_CHRONO_LIB $BOOST_CHRONO_EXTRALIBS" - -TEMP_LIBS="$LIBS" -LIBS="$LIBS $BOOST_LIBS $BOOST_CHRONO_LIB" -TEMP_CPPFLAGS="$CPPFLAGS" -CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #include - #include - -int -main () -{ - - #if BOOST_VERSION >= 105000 && (!defined(BOOST_HAS_NANOSLEEP) || BOOST_VERSION >= 105200) - boost::this_thread::sleep_for(boost::chrono::milliseconds(0)); - #else - choke me - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - boost_sleep=yes; BOOST_LIBS="$BOOST_LIBS $BOOST_CHRONO_LIB"; - -$as_echo "@%:@define HAVE_WORKING_BOOST_SLEEP_FOR 1" >>confdefs.h - -else - boost_sleep=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS="$TEMP_LIBS" -CPPFLAGS="$TEMP_CPPFLAGS" -fi - -if test x$boost_sleep != xyes; then -TEMP_LIBS="$LIBS" -LIBS="$LIBS $BOOST_LIBS" -TEMP_CPPFLAGS="$CPPFLAGS" -CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #include - #include - #include - -int -main () -{ - - #if BOOST_VERSION <= 105600 - boost::this_thread::sleep(boost::posix_time::milliseconds(0)); - #else - choke me - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - boost_sleep=yes; -$as_echo "@%:@define HAVE_WORKING_BOOST_SLEEP 1" >>confdefs.h - -else - boost_sleep=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS="$TEMP_LIBS" -CPPFLAGS="$TEMP_CPPFLAGS" -fi - -if test x$boost_sleep != xyes; then - as_fn_error $? "No working boost sleep implementation found. If on ubuntu 13.10 with libboost1.54-all-dev remove libboost.1.54-all-dev and use libboost1.53-all-dev" "$LINENO" 5 -fi - - -@%:@ Check whether --with-cli was given. -if test "${with_cli+set}" = set; then : - withval=$with_cli; build_bitcoin_cli=$withval -else - build_bitcoin_cli=yes -fi - - - -@%:@ Check whether --with-daemon was given. -if test "${with_daemon+set}" = set; then : - withval=$with_daemon; build_bitcoind=$withval -else - build_bitcoind=yes -fi - - - - -@%:@ Check whether --with-gui was given. -if test "${with_gui+set}" = set; then : - withval=$with_gui; - bitcoin_qt_want_version=$withval - if test x$bitcoin_qt_want_version = xyes; then - bitcoin_qt_force=yes - bitcoin_qt_want_version=auto - fi - -else - bitcoin_qt_want_version=auto -fi - - - -@%:@ Check whether --with-qt-incdir was given. -if test "${with_qt_incdir+set}" = set; then : - withval=$with_qt_incdir; qt_include_path=$withval -fi - - -@%:@ Check whether --with-qt-libdir was given. -if test "${with_qt_libdir+set}" = set; then : - withval=$with_qt_libdir; qt_lib_path=$withval -fi - - -@%:@ Check whether --with-qt-plugindir was given. -if test "${with_qt_plugindir+set}" = set; then : - withval=$with_qt_plugindir; qt_plugin_path=$withval -fi - - -@%:@ Check whether --with-qt-bindir was given. -if test "${with_qt_bindir+set}" = set; then : - withval=$with_qt_bindir; qt_bin_path=$withval -fi - - - -@%:@ Check whether --with-qtdbus was given. -if test "${with_qtdbus+set}" = set; then : - withval=$with_qtdbus; use_dbus=$withval -else - use_dbus=auto -fi - - - -if test x$use_pkgconfig = xyes; then - - if test x$PKG_CONFIG == x; then - as_fn_error $? "pkg-config not found." "$LINENO" 5 - fi - - : #NOP - - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for SSL" >&5 -$as_echo_n "checking for SSL... " >&6; } - -if test -n "$SSL_CFLAGS"; then - pkg_cv_SSL_CFLAGS="$SSL_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libssl\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libssl") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_SSL_CFLAGS=`$PKG_CONFIG --cflags "libssl" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$SSL_LIBS"; then - pkg_cv_SSL_LIBS="$SSL_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libssl\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libssl") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_SSL_LIBS=`$PKG_CONFIG --libs "libssl" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - SSL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libssl" 2>&1` - else - SSL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libssl" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$SSL_PKG_ERRORS" >&5 - - as_fn_error $? "openssl not found." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - as_fn_error $? "openssl not found." "$LINENO" 5 -else - SSL_CFLAGS=$pkg_cv_SSL_CFLAGS - SSL_LIBS=$pkg_cv_SSL_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - INCLUDES="$INCLUDES $SSL_CFLAGS"; LIBS="$LIBS $SSL_LIBS" -fi - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for CRYPTO" >&5 -$as_echo_n "checking for CRYPTO... " >&6; } - -if test -n "$CRYPTO_CFLAGS"; then - pkg_cv_CRYPTO_CFLAGS="$CRYPTO_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcrypto\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libcrypto") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_CRYPTO_CFLAGS=`$PKG_CONFIG --cflags "libcrypto" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$CRYPTO_LIBS"; then - pkg_cv_CRYPTO_LIBS="$CRYPTO_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcrypto\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libcrypto") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_CRYPTO_LIBS=`$PKG_CONFIG --libs "libcrypto" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - CRYPTO_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libcrypto" 2>&1` - else - CRYPTO_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libcrypto" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$CRYPTO_PKG_ERRORS" >&5 - - as_fn_error $? "libcrypto not found." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - as_fn_error $? "libcrypto not found." "$LINENO" 5 -else - CRYPTO_CFLAGS=$pkg_cv_CRYPTO_CFLAGS - CRYPTO_LIBS=$pkg_cv_CRYPTO_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - INCLUDES="$INCLUDES $CRYPTO_CFLAGS"; LIBS="$LIBS $CRYPTO_LIBS" -fi - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for PROTOBUF" >&5 -$as_echo_n "checking for PROTOBUF... " >&6; } - -if test -n "$PROTOBUF_CFLAGS"; then - pkg_cv_PROTOBUF_CFLAGS="$PROTOBUF_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"protobuf\""; } >&5 - ($PKG_CONFIG --exists --print-errors "protobuf") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_PROTOBUF_CFLAGS=`$PKG_CONFIG --cflags "protobuf" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$PROTOBUF_LIBS"; then - pkg_cv_PROTOBUF_LIBS="$PROTOBUF_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"protobuf\""; } >&5 - ($PKG_CONFIG --exists --print-errors "protobuf") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_PROTOBUF_LIBS=`$PKG_CONFIG --libs "protobuf" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - PROTOBUF_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "protobuf" 2>&1` - else - PROTOBUF_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "protobuf" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$PROTOBUF_PKG_ERRORS" >&5 - - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libprotobuf not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: libprotobuf not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "libprotobuf not found" "$LINENO" 5 - fi - -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libprotobuf not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: libprotobuf not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "libprotobuf not found" "$LINENO" 5 - fi - -else - PROTOBUF_CFLAGS=$pkg_cv_PROTOBUF_CFLAGS - PROTOBUF_LIBS=$pkg_cv_PROTOBUF_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - have_protobuf=yes -fi - else - true - - fi - - if test x$use_qr != xno; then - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for QR" >&5 -$as_echo_n "checking for QR... " >&6; } - -if test -n "$QR_CFLAGS"; then - pkg_cv_QR_CFLAGS="$QR_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libqrencode\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libqrencode") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QR_CFLAGS=`$PKG_CONFIG --cflags "libqrencode" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$QR_LIBS"; then - pkg_cv_QR_LIBS="$QR_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libqrencode\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libqrencode") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QR_LIBS=`$PKG_CONFIG --libs "libqrencode" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - QR_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libqrencode" 2>&1` - else - QR_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libqrencode" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$QR_PKG_ERRORS" >&5 - - have_qrencode=no -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - have_qrencode=no -else - QR_CFLAGS=$pkg_cv_QR_CFLAGS - QR_LIBS=$pkg_cv_QR_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - have_qrencode=yes -fi - else - true - - fi - - fi - - -else - ac_fn_cxx_check_header_mongrel "$LINENO" "openssl/crypto.h" "ac_cv_header_openssl_crypto_h" "$ac_includes_default" -if test "x$ac_cv_header_openssl_crypto_h" = xyes; then : - -else - as_fn_error $? "libcrypto headers missing" "$LINENO" 5 -fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lcrypto" >&5 -$as_echo_n "checking for main in -lcrypto... " >&6; } -if ${ac_cv_lib_crypto_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lcrypto $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_crypto_main=yes -else - ac_cv_lib_crypto_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypto_main" >&5 -$as_echo "$ac_cv_lib_crypto_main" >&6; } -if test "x$ac_cv_lib_crypto_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBCRYPTO 1 -_ACEOF - - LIBS="-lcrypto $LIBS" - -else - as_fn_error $? "libcrypto missing" "$LINENO" 5 -fi - - - ac_fn_cxx_check_header_mongrel "$LINENO" "openssl/ssl.h" "ac_cv_header_openssl_ssl_h" "$ac_includes_default" -if test "x$ac_cv_header_openssl_ssl_h" = xyes; then : - -else - as_fn_error $? "libssl headers missing" "$LINENO" 5 -fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lssl" >&5 -$as_echo_n "checking for main in -lssl... " >&6; } -if ${ac_cv_lib_ssl_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lssl $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_ssl_main=yes -else - ac_cv_lib_ssl_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ssl_main" >&5 -$as_echo "$ac_cv_lib_ssl_main" >&6; } -if test "x$ac_cv_lib_ssl_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBSSL 1 -_ACEOF - - LIBS="-lssl $LIBS" - -else - as_fn_error $? "libssl missing" "$LINENO" 5 -fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - as_ac_Lib=`$as_echo "ac_cv_lib_protobuf ''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lprotobuf " >&5 -$as_echo_n "checking for main in -lprotobuf ... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lprotobuf $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBPROTOBUF_ 1 -_ACEOF - - LIBS="-lprotobuf $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libprotobuf not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: libprotobuf not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "libprotobuf not found" "$LINENO" 5 - fi - -fi - - else - true - - fi - - if test x$use_qr != xno; then - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lqrencode" >&5 -$as_echo_n "checking for main in -lqrencode... " >&6; } -if ${ac_cv_lib_qrencode_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lqrencode $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_qrencode_main=yes -else - ac_cv_lib_qrencode_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_qrencode_main" >&5 -$as_echo "$ac_cv_lib_qrencode_main" >&6; } -if test "x$ac_cv_lib_qrencode_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBQRENCODE 1 -_ACEOF - - LIBS="-lqrencode $LIBS" - -else - have_qrencode=no -fi - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - ac_fn_cxx_check_header_mongrel "$LINENO" "qrencode.h" "ac_cv_header_qrencode_h" "$ac_includes_default" -if test "x$ac_cv_header_qrencode_h" = xyes; then : - -else - have_qrencode=no -fi - - - else - true - - fi - - fi -fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test "x$protoc_bin_path" != "x"; then - for ac_prog in protoc -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PROTOC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $PROTOC in - [\\/]* | ?:[\\/]*) - ac_cv_path_PROTOC="$PROTOC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $protoc_bin_path -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PROTOC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -PROTOC=$ac_cv_path_PROTOC -if test -n "$PROTOC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PROTOC" >&5 -$as_echo "$PROTOC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$PROTOC" && break -done - - else - for ac_prog in protoc -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PROTOC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $PROTOC in - [\\/]* | ?:[\\/]*) - ac_cv_path_PROTOC="$PROTOC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PROTOC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -PROTOC=$ac_cv_path_PROTOC -if test -n "$PROTOC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PROTOC" >&5 -$as_echo "$PROTOC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$PROTOC" && break -done - - fi - if test "x$PROTOC" = "x" && test "x" != "xyes"; then - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: PROTOC not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: PROTOC not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "PROTOC not found" "$LINENO" 5 - fi - - fi - - else - true - - fi - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build bitcoind" >&5 -$as_echo_n "checking whether to build bitcoind... " >&6; } - if test x$build_bitcoind = xyes; then - BUILD_BITCOIND_TRUE= - BUILD_BITCOIND_FALSE='#' -else - BUILD_BITCOIND_TRUE='#' - BUILD_BITCOIND_FALSE= -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $build_bitcoind" >&5 -$as_echo "$build_bitcoind" >&6; } - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build bitcoin-cli" >&5 -$as_echo_n "checking whether to build bitcoin-cli... " >&6; } - if test x$build_bitcoin_cli = xyes; then - BUILD_BITCOIN_CLI_TRUE= - BUILD_BITCOIN_CLI_FALSE='#' -else - BUILD_BITCOIN_CLI_TRUE='#' - BUILD_BITCOIN_CLI_FALSE= -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $build_bitcoin_cli" >&5 -$as_echo "$build_bitcoin_cli" >&6; } - - - use_pkgconfig=$use_pkgconfig - - if test x$use_pkgconfig == x; then - use_pkgconfig=yes - fi - - if test x$use_pkgconfig = xyes; then - if test x$PKG_CONFIG == x; then - as_fn_error $? "pkg-config not found." "$LINENO" 5 - fi - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - - auto_priority_version=qt4 - if test x$auto_priority_version == x; then - auto_priority_version=qt5 - fi - if test x$bitcoin_qt_want_version == xqt5 || ( test x$bitcoin_qt_want_version == xauto && test x$auto_priority_version == xqt5 ); then - QT_LIB_PREFIX=Qt5 - bitcoin_qt_got_major_vers=5 - else - QT_LIB_PREFIX=Qt - bitcoin_qt_got_major_vers=4 - fi - qt5_modules="Qt5Core Qt5Gui Qt5Network Qt5Widgets" - qt4_modules="QtCore QtGui QtNetwork" - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test x$bitcoin_qt_want_version == xqt5 || ( test x$bitcoin_qt_want_version == xauto && test x$auto_priority_version == xqt5 ); then - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for QT" >&5 -$as_echo_n "checking for QT... " >&6; } - -if test -n "$QT_CFLAGS"; then - pkg_cv_QT_CFLAGS="$QT_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt5_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt5_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_CFLAGS=`$PKG_CONFIG --cflags "$qt5_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$QT_LIBS"; then - pkg_cv_QT_LIBS="$QT_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt5_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt5_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_LIBS=`$PKG_CONFIG --libs "$qt5_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - QT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$qt5_modules" 2>&1` - else - QT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$qt5_modules" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$QT_PKG_ERRORS" >&5 - - have_qt=no -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - have_qt=no -else - QT_CFLAGS=$pkg_cv_QT_CFLAGS - QT_LIBS=$pkg_cv_QT_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - QT_INCLUDES="$QT_CFLAGS"; have_qt=yes -fi - elif test x$bitcoin_qt_want_version == xqt4 || ( test x$bitcoin_qt_want_version == xauto && test x$auto_priority_version == xqt4 ); then - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for QT" >&5 -$as_echo_n "checking for QT... " >&6; } - -if test -n "$QT_CFLAGS"; then - pkg_cv_QT_CFLAGS="$QT_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt4_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt4_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_CFLAGS=`$PKG_CONFIG --cflags "$qt4_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$QT_LIBS"; then - pkg_cv_QT_LIBS="$QT_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt4_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt4_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_LIBS=`$PKG_CONFIG --libs "$qt4_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - QT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$qt4_modules" 2>&1` - else - QT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$qt4_modules" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$QT_PKG_ERRORS" >&5 - - have_qt=no -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - have_qt=no -else - QT_CFLAGS=$pkg_cv_QT_CFLAGS - QT_LIBS=$pkg_cv_QT_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - QT_INCLUDES="$QT_CFLAGS"; have_qt=yes -fi - fi - - if test x$have_qt == xno && test x$bitcoin_qt_want_version == xauto; then - if test x$auto_priority_version = x$qt5; then - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for QT" >&5 -$as_echo_n "checking for QT... " >&6; } - -if test -n "$QT_CFLAGS"; then - pkg_cv_QT_CFLAGS="$QT_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt4_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt4_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_CFLAGS=`$PKG_CONFIG --cflags "$qt4_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$QT_LIBS"; then - pkg_cv_QT_LIBS="$QT_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt4_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt4_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_LIBS=`$PKG_CONFIG --libs "$qt4_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - QT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$qt4_modules" 2>&1` - else - QT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$qt4_modules" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$QT_PKG_ERRORS" >&5 - - have_qt=no -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - have_qt=no -else - QT_CFLAGS=$pkg_cv_QT_CFLAGS - QT_LIBS=$pkg_cv_QT_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - QT_INCLUDES="$QT_CFLAGS"; have_qt=yes; QT_LIB_PREFIX=Qt; bitcoin_qt_got_major_vers=4 -fi - else - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for QT" >&5 -$as_echo_n "checking for QT... " >&6; } - -if test -n "$QT_CFLAGS"; then - pkg_cv_QT_CFLAGS="$QT_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt5_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt5_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_CFLAGS=`$PKG_CONFIG --cflags "$qt5_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$QT_LIBS"; then - pkg_cv_QT_LIBS="$QT_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt5_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt5_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_LIBS=`$PKG_CONFIG --libs "$qt5_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - QT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$qt5_modules" 2>&1` - else - QT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$qt5_modules" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$QT_PKG_ERRORS" >&5 - - have_qt=no -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - have_qt=no -else - QT_CFLAGS=$pkg_cv_QT_CFLAGS - QT_LIBS=$pkg_cv_QT_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - QT_INCLUDES="$QT_CFLAGS"; have_qt=yes; QT_LIB_PREFIX=Qt5; bitcoin_qt_got_major_vers=5 -fi - fi - fi - if test x$have_qt != xyes; then - have_qt=no - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Qt dependencies not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: Qt dependencies not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "Qt dependencies not found" "$LINENO" 5 - fi - - fi - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for QT_TEST" >&5 -$as_echo_n "checking for QT_TEST... " >&6; } - -if test -n "$QT_TEST_CFLAGS"; then - pkg_cv_QT_TEST_CFLAGS="$QT_TEST_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\${QT_LIB_PREFIX}Test\""; } >&5 - ($PKG_CONFIG --exists --print-errors "${QT_LIB_PREFIX}Test") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_TEST_CFLAGS=`$PKG_CONFIG --cflags "${QT_LIB_PREFIX}Test" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$QT_TEST_LIBS"; then - pkg_cv_QT_TEST_LIBS="$QT_TEST_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\${QT_LIB_PREFIX}Test\""; } >&5 - ($PKG_CONFIG --exists --print-errors "${QT_LIB_PREFIX}Test") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_TEST_LIBS=`$PKG_CONFIG --libs "${QT_LIB_PREFIX}Test" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - QT_TEST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "${QT_LIB_PREFIX}Test" 2>&1` - else - QT_TEST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "${QT_LIB_PREFIX}Test" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$QT_TEST_PKG_ERRORS" >&5 - - have_qt_test=no -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - have_qt_test=no -else - QT_TEST_CFLAGS=$pkg_cv_QT_TEST_CFLAGS - QT_TEST_LIBS=$pkg_cv_QT_TEST_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - QT_TEST_INCLUDES="$QT_TEST_CFLAGS"; have_qt_test=yes -fi - if test x$use_dbus != xno; then - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for QT_DBUS" >&5 -$as_echo_n "checking for QT_DBUS... " >&6; } - -if test -n "$QT_DBUS_CFLAGS"; then - pkg_cv_QT_DBUS_CFLAGS="$QT_DBUS_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\${QT_LIB_PREFIX}DBus\""; } >&5 - ($PKG_CONFIG --exists --print-errors "${QT_LIB_PREFIX}DBus") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_DBUS_CFLAGS=`$PKG_CONFIG --cflags "${QT_LIB_PREFIX}DBus" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$QT_DBUS_LIBS"; then - pkg_cv_QT_DBUS_LIBS="$QT_DBUS_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\${QT_LIB_PREFIX}DBus\""; } >&5 - ($PKG_CONFIG --exists --print-errors "${QT_LIB_PREFIX}DBus") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_DBUS_LIBS=`$PKG_CONFIG --libs "${QT_LIB_PREFIX}DBus" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - QT_DBUS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "${QT_LIB_PREFIX}DBus" 2>&1` - else - QT_DBUS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "${QT_LIB_PREFIX}DBus" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$QT_DBUS_PKG_ERRORS" >&5 - - have_qt_dbus=no -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - have_qt_dbus=no -else - QT_DBUS_CFLAGS=$pkg_cv_QT_DBUS_CFLAGS - QT_DBUS_LIBS=$pkg_cv_QT_DBUS_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - QT_DBUS_INCLUDES="$QT_DBUS_CFLAGS"; have_qt_dbus=yes -fi - fi - - else - true - - fi - - - true; - else - true - - fi - - else - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - TEMP_CPPFLAGS="$CPPFLAGS" - TEMP_LIBS="$LIBS" - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test x$qt_include_path != x; then - QT_INCLUDES="-I$qt_include_path -I$qt_include_path/QtCore -I$qt_include_path/QtGui -I$qt_include_path/QtWidgets -I$qt_include_path/QtNetwork -I$qt_include_path/QtTest -I$qt_include_path/QtDBus" - CPPFLAGS="$QT_INCLUDES $CPPFLAGS" - fi - - else - true - - fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - ac_fn_cxx_check_header_mongrel "$LINENO" "QtPlugin" "ac_cv_header_QtPlugin" "$ac_includes_default" -if test "x$ac_cv_header_QtPlugin" = xyes; then : - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: QtCore headers missing; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: QtCore headers missing; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "QtCore headers missing" "$LINENO" 5 - fi - -fi - - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - ac_fn_cxx_check_header_mongrel "$LINENO" "QApplication" "ac_cv_header_QApplication" "$ac_includes_default" -if test "x$ac_cv_header_QApplication" = xyes; then : - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: QtGui headers missing; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: QtGui headers missing; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "QtGui headers missing" "$LINENO" 5 - fi - -fi - - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - ac_fn_cxx_check_header_mongrel "$LINENO" "QLocalSocket" "ac_cv_header_QLocalSocket" "$ac_includes_default" -if test "x$ac_cv_header_QLocalSocket" = xyes; then : - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: QtNetwork headers missing; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: QtNetwork headers missing; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "QtNetwork headers missing" "$LINENO" 5 - fi - -fi - - - else - true - - fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test x$bitcoin_qt_want_version = xauto; then - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Qt 5" >&5 -$as_echo_n "checking for Qt 5... " >&6; } -if ${bitcoin_cv_qt5+:} false; then : - $as_echo_n "(cached) " >&6 -else - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ - - #if QT_VERSION < 0x050000 - choke me - #else - return 0; - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - bitcoin_cv_qt5=yes -else - bitcoin_cv_qt5=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $bitcoin_cv_qt5" >&5 -$as_echo "$bitcoin_cv_qt5" >&6; } - fi - if test x$bitcoin_cv_qt5 == xyes || test x$bitcoin_qt_want_version = xqt5; then - QT_LIB_PREFIX=Qt5 - bitcoin_qt_got_major_vers=5 - else - QT_LIB_PREFIX=Qt - bitcoin_qt_got_major_vers=4 - fi - - else - true - - fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - LIBS= - if test x$qt_lib_path != x; then - LIBS="$LIBS -L$qt_lib_path" - fi - if test x$qt_plugin_path != x; then - LIBS="$LIBS -L$qt_plugin_path/accessible" - if test x$bitcoin_qt_got_major_vers == x5; then - LIBS="$LIBS -L$qt_plugin_path/platforms" - else - LIBS="$LIBS -L$qt_plugin_path/codecs" - fi - fi - - if test x$TARGET_OS == xwindows; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -limm32" >&5 -$as_echo_n "checking for main in -limm32... " >&6; } -if ${ac_cv_lib_imm32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-limm32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_imm32_main=yes -else - ac_cv_lib_imm32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_imm32_main" >&5 -$as_echo "$ac_cv_lib_imm32_main" >&6; } -if test "x$ac_cv_lib_imm32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBIMM32 1 -_ACEOF - - LIBS="-limm32 $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libimm32 not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: libimm32 not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "libimm32 not found" "$LINENO" 5 - fi - -fi - - fi - - else - true - - fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - as_ac_Lib=`$as_echo "ac_cv_lib_z ''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lz " >&5 -$as_echo_n "checking for main in -lz ... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lz $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBZ_ 1 -_ACEOF - - LIBS="-lz $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: zlib not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: zlib not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "zlib not found" "$LINENO" 5 - fi - -fi - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - as_ac_Lib=`$as_echo "ac_cv_lib_png ''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lpng " >&5 -$as_echo_n "checking for main in -lpng ... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lpng $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBPNG_ 1 -_ACEOF - - LIBS="-lpng $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: png not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: png not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "png not found" "$LINENO" 5 - fi - -fi - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}Core ''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}Core " >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}Core ... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}Core $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}Core " | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}Core $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lib$QT_LIB_PREFIXCore not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: lib$QT_LIB_PREFIXCore not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "lib$QT_LIB_PREFIXCore not found" "$LINENO" 5 - fi - -fi - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}Gui ''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}Gui " >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}Gui ... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}Gui $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}Gui " | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}Gui $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lib$QT_LIB_PREFIXGui not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: lib$QT_LIB_PREFIXGui not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "lib$QT_LIB_PREFIXGui not found" "$LINENO" 5 - fi - -fi - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}Network''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}Network" >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}Network... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}Network $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}Network" | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}Network $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lib$QT_LIB_PREFIXNetwork not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: lib$QT_LIB_PREFIXNetwork not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "lib$QT_LIB_PREFIXNetwork not found" "$LINENO" 5 - fi - -fi - - else - true - - fi - - if test x$bitcoin_qt_got_major_vers == x5; then - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}Widgets''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}Widgets" >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}Widgets... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}Widgets $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}Widgets" | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}Widgets $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lib$QT_LIB_PREFIXWidgets not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: lib$QT_LIB_PREFIXWidgets not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "lib$QT_LIB_PREFIXWidgets not found" "$LINENO" 5 - fi - -fi - - else - true - - fi - - fi - QT_LIBS="$LIBS" - LIBS="$TEMP_LIBS" - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test x$bitcoin_qt_got_major_vers == x5; then - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for static Qt" >&5 -$as_echo_n "checking for static Qt... " >&6; } -if ${bitcoin_cv_static_qt+:} false; then : - $as_echo_n "(cached) " >&6 -else - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ - - #if defined(QT_STATIC) - return 0; - #else - choke me - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - bitcoin_cv_static_qt=yes -else - bitcoin_cv_static_qt=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $bitcoin_cv_static_qt" >&5 -$as_echo "$bitcoin_cv_static_qt" >&6; } - if test xbitcoin_cv_static_qt = xyes; then - -$as_echo "@%:@define QT_STATICPLUGIN 1" >>confdefs.h - - fi - - if test x$bitcoin_cv_static_qt == xyes; then - -$as_echo "@%:@define QT_STATICPLUGIN 1" >>confdefs.h - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for static Qt plugins: -lqtaccessiblewidgets" >&5 -$as_echo_n "checking for static Qt plugins: -lqtaccessiblewidgets... " >&6; } - CHECK_STATIC_PLUGINS_TEMP_LIBS="$LIBS" - LIBS="-lqtaccessiblewidgets $QT_LIBS $LIBS" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #define QT_STATICPLUGIN - #include - Q_IMPORT_PLUGIN(AccessibleFactory) -int -main () -{ -return 0; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; }; QT_LIBS="-lqtaccessiblewidgets $QT_LIBS" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; }; - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Could not resolve: -lqtaccessiblewidgets; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: Could not resolve: -lqtaccessiblewidgets; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "Could not resolve: -lqtaccessiblewidgets" "$LINENO" 5 - fi - -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$CHECK_STATIC_PLUGINS_TEMP_LIBS" - - if test x$TARGET_OS == xwindows; then - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for static Qt plugins: -lqwindows" >&5 -$as_echo_n "checking for static Qt plugins: -lqwindows... " >&6; } - CHECK_STATIC_PLUGINS_TEMP_LIBS="$LIBS" - LIBS="-lqwindows $QT_LIBS $LIBS" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #define QT_STATICPLUGIN - #include - Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin) -int -main () -{ -return 0; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; }; QT_LIBS="-lqwindows $QT_LIBS" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; }; - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Could not resolve: -lqwindows; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: Could not resolve: -lqwindows; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "Could not resolve: -lqwindows" "$LINENO" 5 - fi - -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$CHECK_STATIC_PLUGINS_TEMP_LIBS" - - fi - fi - else - -$as_echo "@%:@define QT_STATICPLUGIN 1" >>confdefs.h - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for static Qt plugins: -lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets" >&5 -$as_echo_n "checking for static Qt plugins: -lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets... " >&6; } - CHECK_STATIC_PLUGINS_TEMP_LIBS="$LIBS" - LIBS="-lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets $QT_LIBS $LIBS" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #define QT_STATICPLUGIN - #include - - Q_IMPORT_PLUGIN(qcncodecs) - Q_IMPORT_PLUGIN(qjpcodecs) - Q_IMPORT_PLUGIN(qtwcodecs) - Q_IMPORT_PLUGIN(qkrcodecs) - Q_IMPORT_PLUGIN(AccessibleFactory) -int -main () -{ -return 0; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; }; QT_LIBS="-lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets $QT_LIBS" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; }; - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Could not resolve: -lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: Could not resolve: -lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "Could not resolve: -lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets" "$LINENO" 5 - fi - -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$CHECK_STATIC_PLUGINS_TEMP_LIBS" - - fi - - else - true - - fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - LIBS= - if test x$qt_lib_path != x; then - LIBS="-L$qt_lib_path" - fi - as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}Test''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}Test" >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}Test... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}Test $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}Test" | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}Test $LIBS" - -else - have_qt_test=no -fi - - ac_fn_cxx_check_header_mongrel "$LINENO" "QTest" "ac_cv_header_QTest" "$ac_includes_default" -if test "x$ac_cv_header_QTest" = xyes; then : - -else - have_qt_test=no -fi - - - QT_TEST_LIBS="$LIBS" - if test x$use_dbus != xno; then - LIBS= - if test x$qt_lib_path != x; then - LIBS="-L$qt_lib_path" - fi - as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}DBus''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}DBus" >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}DBus... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}DBus $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}DBus" | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}DBus $LIBS" - -else - have_qt_dbus=no -fi - - ac_fn_cxx_check_header_mongrel "$LINENO" "QtDBus" "ac_cv_header_QtDBus" "$ac_includes_default" -if test "x$ac_cv_header_QtDBus" = xyes; then : - -else - have_qt_dbus=no -fi - - - QT_DBUS_LIBS="$LIBS" - fi - - else - true - - fi - - CPPFLAGS="$TEMP_CPPFLAGS" - LIBS="$TEMP_LIBS" - - else - true - - fi - - fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test "x$qt_bin_path" != "x"; then - for ac_prog in moc-qt${bitcoin_qt_got_major_vers} moc${bitcoin_qt_got_major_vers} moc -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_MOC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $MOC in - [\\/]* | ?:[\\/]*) - ac_cv_path_MOC="$MOC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $qt_bin_path -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_MOC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -MOC=$ac_cv_path_MOC -if test -n "$MOC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MOC" >&5 -$as_echo "$MOC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$MOC" && break -done - - else - for ac_prog in moc-qt${bitcoin_qt_got_major_vers} moc${bitcoin_qt_got_major_vers} moc -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_MOC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $MOC in - [\\/]* | ?:[\\/]*) - ac_cv_path_MOC="$MOC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_MOC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -MOC=$ac_cv_path_MOC -if test -n "$MOC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MOC" >&5 -$as_echo "$MOC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$MOC" && break -done - - fi - if test "x$MOC" = "x" && test "x" != "xyes"; then - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: MOC not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: MOC not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "MOC not found" "$LINENO" 5 - fi - - fi - - else - true - - fi - - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test "x$qt_bin_path" != "x"; then - for ac_prog in uic-qt${bitcoin_qt_got_major_vers} uic${bitcoin_qt_got_major_vers} uic -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_UIC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $UIC in - [\\/]* | ?:[\\/]*) - ac_cv_path_UIC="$UIC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $qt_bin_path -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_UIC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -UIC=$ac_cv_path_UIC -if test -n "$UIC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $UIC" >&5 -$as_echo "$UIC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$UIC" && break -done - - else - for ac_prog in uic-qt${bitcoin_qt_got_major_vers} uic${bitcoin_qt_got_major_vers} uic -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_UIC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $UIC in - [\\/]* | ?:[\\/]*) - ac_cv_path_UIC="$UIC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_UIC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -UIC=$ac_cv_path_UIC -if test -n "$UIC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $UIC" >&5 -$as_echo "$UIC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$UIC" && break -done - - fi - if test "x$UIC" = "x" && test "x" != "xyes"; then - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: UIC not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: UIC not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "UIC not found" "$LINENO" 5 - fi - - fi - - else - true - - fi - - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test "x$qt_bin_path" != "x"; then - for ac_prog in rcc-qt${bitcoin_qt_got_major_vers} rcc${bitcoin_qt_got_major_vers} rcc -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_RCC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $RCC in - [\\/]* | ?:[\\/]*) - ac_cv_path_RCC="$RCC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $qt_bin_path -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_RCC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -RCC=$ac_cv_path_RCC -if test -n "$RCC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RCC" >&5 -$as_echo "$RCC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$RCC" && break -done - - else - for ac_prog in rcc-qt${bitcoin_qt_got_major_vers} rcc${bitcoin_qt_got_major_vers} rcc -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_RCC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $RCC in - [\\/]* | ?:[\\/]*) - ac_cv_path_RCC="$RCC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_RCC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -RCC=$ac_cv_path_RCC -if test -n "$RCC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RCC" >&5 -$as_echo "$RCC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$RCC" && break -done - - fi - if test "x$RCC" = "x" && test "x" != "xyes"; then - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: RCC not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: RCC not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "RCC not found" "$LINENO" 5 - fi - - fi - - else - true - - fi - - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test "x$qt_bin_path" != "x"; then - for ac_prog in lrelease-qt${bitcoin_qt_got_major_vers} lrelease${bitcoin_qt_got_major_vers} lrelease -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_LRELEASE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $LRELEASE in - [\\/]* | ?:[\\/]*) - ac_cv_path_LRELEASE="$LRELEASE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $qt_bin_path -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_LRELEASE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -LRELEASE=$ac_cv_path_LRELEASE -if test -n "$LRELEASE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LRELEASE" >&5 -$as_echo "$LRELEASE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$LRELEASE" && break -done - - else - for ac_prog in lrelease-qt${bitcoin_qt_got_major_vers} lrelease${bitcoin_qt_got_major_vers} lrelease -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_LRELEASE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $LRELEASE in - [\\/]* | ?:[\\/]*) - ac_cv_path_LRELEASE="$LRELEASE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_LRELEASE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -LRELEASE=$ac_cv_path_LRELEASE -if test -n "$LRELEASE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LRELEASE" >&5 -$as_echo "$LRELEASE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$LRELEASE" && break -done - - fi - if test "x$LRELEASE" = "x" && test "x" != "xyes"; then - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: LRELEASE not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: LRELEASE not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "LRELEASE not found" "$LINENO" 5 - fi - - fi - - else - true - - fi - - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test "x$qt_bin_path" != "x"; then - for ac_prog in lupdate-qt${bitcoin_qt_got_major_vers} lupdate${bitcoin_qt_got_major_vers} lupdate -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_LUPDATE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $LUPDATE in - [\\/]* | ?:[\\/]*) - ac_cv_path_LUPDATE="$LUPDATE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $qt_bin_path -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_LUPDATE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -LUPDATE=$ac_cv_path_LUPDATE -if test -n "$LUPDATE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LUPDATE" >&5 -$as_echo "$LUPDATE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$LUPDATE" && break -done - - else - for ac_prog in lupdate-qt${bitcoin_qt_got_major_vers} lupdate${bitcoin_qt_got_major_vers} lupdate -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_LUPDATE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $LUPDATE in - [\\/]* | ?:[\\/]*) - ac_cv_path_LUPDATE="$LUPDATE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_LUPDATE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -LUPDATE=$ac_cv_path_LUPDATE -if test -n "$LUPDATE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LUPDATE" >&5 -$as_echo "$LUPDATE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$LUPDATE" && break -done - - fi - if test "x$LUPDATE" = "x" && test "xyes" != "xyes"; then - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: LUPDATE not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: LUPDATE not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "LUPDATE not found" "$LINENO" 5 - fi - - fi - - else - true - - fi - - - - MOC_DEFS='-DHAVE_CONFIG_H -I$(top_srcdir)/src' - case $host in - *darwin*) - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - MOC_DEFS="${MOC_DEFS} -DQ_OS_MAC" - base_frameworks="-framework Foundation -framework ApplicationServices -framework AppKit" - as_CACHEVAR=`$as_echo "ax_cv_check_ldflags__$base_frameworks" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts $base_frameworks" >&5 -$as_echo_n "checking whether the linker accepts $base_frameworks... " >&6; } -if eval \${$as_CACHEVAR+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS $base_frameworks" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_CACHEVAR=yes" -else - eval "$as_CACHEVAR=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -eval ac_res=\$$as_CACHEVAR - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if test x"`eval 'as_val=${'$as_CACHEVAR'};$as_echo "$as_val"'`" = xyes; then : - QT_LIBS="$QT_LIBS $base_frameworks" -else - as_fn_error $? "could not find base frameworks" "$LINENO" 5 -fi - - - else - true - - fi - - ;; - *mingw*) - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -mwindows" >&5 -$as_echo_n "checking whether the linker accepts -mwindows... " >&6; } -if ${ax_cv_check_ldflags___mwindows+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -mwindows" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___mwindows=yes -else - ax_cv_check_ldflags___mwindows=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___mwindows" >&5 -$as_echo "$ax_cv_check_ldflags___mwindows" >&6; } -if test x"$ax_cv_check_ldflags___mwindows" = xyes; then : - QT_LDFLAGS="$QT_LDFLAGS -mwindows" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: -mwindows linker support not detected" >&5 -$as_echo "$as_me: WARNING: -mwindows linker support not detected" >&2;} -fi - - - else - true - - fi - - esac - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build Bitcoin Core GUI" >&5 -$as_echo_n "checking whether to build Bitcoin Core GUI... " >&6; } - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - bitcoin_enable_qt=yes - bitcoin_enable_qt_test=yes - if test x$have_qt_test = xno; then - bitcoin_enable_qt_test=no - fi - bitcoin_enable_qt_dbus=no - if test x$use_dbus != xno && test x$have_qt_dbus = xyes; then - bitcoin_enable_qt_dbus=yes - fi - if test x$use_dbus = xyes && test x$have_qt_dbus = xno; then - as_fn_error $? "\"libQtDBus not found. Install libQtDBus or remove --with-qtdbus.\"" "$LINENO" 5 - fi - if test x$LUPDATE == x; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \"lupdate is required to update qt translations\"" >&5 -$as_echo "$as_me: WARNING: \"lupdate is required to update qt translations\"" >&2;} - fi - - else - true - - bitcoin_enable_qt=no - - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $bitcoin_enable_qt (Qt${bitcoin_qt_got_major_vers})" >&5 -$as_echo "$bitcoin_enable_qt (Qt${bitcoin_qt_got_major_vers})" >&6; } - - - - - - - - - QT_SELECT=qt${bitcoin_qt_got_major_vers} - - - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -if test "x$use_ccache" != "xno"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if ccache should be used" >&5 -$as_echo_n "checking if ccache should be used... " >&6; } - if test x$CCACHE = x; then - if test "x$use_ccache" = "xyes"; then - as_fn_error $? "ccache not found." "$LINENO" 5; - else - use_ccache=no - fi - else - use_ccache=yes - CC="$ac_cv_path_CCACHE $CC" - CXX="$ac_cv_path_CCACHE $CXX" - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $use_ccache" >&5 -$as_echo "$use_ccache" >&6; } -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if wallet should be enabled" >&5 -$as_echo_n "checking if wallet should be enabled... " >&6; } -if test x$enable_wallet != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -cat >>confdefs.h <<_ACEOF -@%:@define ENABLE_WALLET 1 -_ACEOF - - -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build with support for UPnP" >&5 -$as_echo_n "checking whether to build with support for UPnP... " >&6; } -if test x$have_miniupnpc = xno; then - if test x$use_upnp = xyes; then - as_fn_error $? "\"UPnP requested but cannot be built. use --without-miniupnpc\"" "$LINENO" 5 - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -else - if test x$use_upnp != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build with UPnP enabled by default" >&5 -$as_echo_n "checking whether to build with UPnP enabled by default... " >&6; } - use_upnp=yes - upnp_setting=0 - if test x$use_upnp_default != xno; then - use_upnp_default=yes - upnp_setting=1 - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $use_upnp_default" >&5 -$as_echo "$use_upnp_default" >&6; } - -cat >>confdefs.h <<_ACEOF -@%:@define USE_UPNP $upnp_setting -_ACEOF - - if test x$TARGET_OS = xwindows; then - CPPFLAGS="$CPPFLAGS -DSTATICLIB" - fi - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - fi -fi - -if test x$bitcoin_enable_qt != xno; then - BUILD_QT=qt - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build GUI with support for D-Bus" >&5 -$as_echo_n "checking whether to build GUI with support for D-Bus... " >&6; } - if test x$bitcoin_enable_qt_dbus != xno; then - -$as_echo "@%:@define USE_DBUS 1" >>confdefs.h - - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $bitcoin_enable_qt_dbus" >&5 -$as_echo "$bitcoin_enable_qt_dbus" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build GUI with support for QR codes" >&5 -$as_echo_n "checking whether to build GUI with support for QR codes... " >&6; } - if test x$have_qrencode = xno; then - if test x$use_qr == xyes; then - as_fn_error $? "\"QR support requested but cannot be built. use --without-qrencode\"" "$LINENO" 5 - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - else - if test x$use_qr != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -$as_echo "@%:@define USE_QRCODE 1" >>confdefs.h - - use_qr=yes - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - fi - fi - - if test x$XGETTEXT == x; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \"xgettext is required to update qt translations\"" >&5 -$as_echo "$as_me: WARNING: \"xgettext is required to update qt translations\"" >&2;} - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build test_bitcoin-qt" >&5 -$as_echo_n "checking whether to build test_bitcoin-qt... " >&6; } - if test x$use_tests$bitcoin_enable_qt_test = xyesyes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - BUILD_TEST_QT="test" - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - fi -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build test_bitcoin" >&5 -$as_echo_n "checking whether to build test_bitcoin... " >&6; } -if test x$use_tests = xyes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - BUILD_TEST="test" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - -if test "x$use_tests$build_bitcoind$use_qt" = "xnonono"; then - as_fn_error $? "No targets! Please specify at least one of: --enable-cli --enable-daemon --enable-gui or --enable-tests" "$LINENO" 5 -fi - - if test x$TARGET_OS = xdarwin; then - TARGET_DARWIN_TRUE= - TARGET_DARWIN_FALSE='#' -else - TARGET_DARWIN_TRUE='#' - TARGET_DARWIN_FALSE= -fi - - if test x$BUILD_OS = xdarwin; then - BUILD_DARWIN_TRUE= - BUILD_DARWIN_FALSE='#' -else - BUILD_DARWIN_TRUE='#' - BUILD_DARWIN_FALSE= -fi - - if test x$TARGET_OS = xwindows; then - TARGET_WINDOWS_TRUE= - TARGET_WINDOWS_FALSE='#' -else - TARGET_WINDOWS_TRUE='#' - TARGET_WINDOWS_FALSE= -fi - - if test x$enable_wallet == xyes; then - ENABLE_WALLET_TRUE= - ENABLE_WALLET_FALSE='#' -else - ENABLE_WALLET_TRUE='#' - ENABLE_WALLET_FALSE= -fi - - if test x$use_qr = xyes; then - USE_QRCODE_TRUE= - USE_QRCODE_FALSE='#' -else - USE_QRCODE_TRUE='#' - USE_QRCODE_FALSE= -fi - - if test x$use_lcov == xyes; then - USE_LCOV_TRUE= - USE_LCOV_FALSE='#' -else - USE_LCOV_TRUE='#' - USE_LCOV_FALSE= -fi - - if test x$use_comparison_tool != xno; then - USE_COMPARISON_TOOL_TRUE= - USE_COMPARISON_TOOL_FALSE='#' -else - USE_COMPARISON_TOOL_TRUE='#' - USE_COMPARISON_TOOL_FALSE= -fi - - if test x$use_comparison_tool_reorg_test != xno; then - USE_COMPARISON_TOOL_REORG_TESTS_TRUE= - USE_COMPARISON_TOOL_REORG_TESTS_FALSE='#' -else - USE_COMPARISON_TOOL_REORG_TESTS_TRUE='#' - USE_COMPARISON_TOOL_REORG_TESTS_FALSE= -fi - - if test x$use_glibc_compat = xyes; then - GLIBC_BACK_COMPAT_TRUE= - GLIBC_BACK_COMPAT_FALSE='#' -else - GLIBC_BACK_COMPAT_TRUE='#' - GLIBC_BACK_COMPAT_FALSE= -fi - - - -$as_echo "@%:@define CLIENT_VERSION_MAJOR 0" >>confdefs.h - - -$as_echo "@%:@define CLIENT_VERSION_MINOR 9" >>confdefs.h - - -$as_echo "@%:@define CLIENT_VERSION_REVISION 99" >>confdefs.h - - -$as_echo "@%:@define CLIENT_VERSION_BUILD 0" >>confdefs.h - - -$as_echo "@%:@define CLIENT_VERSION_IS_RELEASE false" >>confdefs.h - - -$as_echo "@%:@define COPYRIGHT_YEAR 2014" >>confdefs.h - -CLIENT_VERSION_MAJOR=0 - -CLIENT_VERSION_MINOR=9 - -CLIENT_VERSION_REVISION=99 - -CLIENT_VERSION_BUILD=0 - -CLIENT_VERSION_IS_RELEASE=false - -COPYRIGHT_YEAR=2014 - - - - - - - - - - - - -ac_config_files="$ac_config_files Makefile src/Makefile src/test/Makefile src/qt/Makefile src/qt/test/Makefile share/setup.nsi share/qt/Info.plist" - -ac_config_files="$ac_config_files qa/pull-tester/run-bitcoind-for-test.sh" - -ac_config_files="$ac_config_files qa/pull-tester/build-tests.sh" - -cat >confcache <<\_ACEOF -# This file is a shell script that caches the results of configure -# tests run on this system so they can be shared between configure -# scripts and configure runs, see configure's option --config-cache. -# It is not useful on other systems. If it contains results you don't -# want to keep, you may remove or edit it. -# -# config.status only pays attention to the cache file if you give it -# the --recheck option to rerun configure. -# -# `ac_cv_env_foo' variables (set or unset) will be overridden when -# loading this file, other *unset* `ac_cv_foo' will be assigned the -# following values. - -_ACEOF - -# The following way of writing the cache mishandles newlines in values, -# but we know of no workaround that is simple, portable, and efficient. -# So, we kill variables containing newlines. -# Ultrix sh set writes to stderr and can't be redirected directly, -# and sets the high bit in the cache file unless we assign to the vars. -( - for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - - (set) 2>&1 | - case $as_nl`(ac_space=' '; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - # `set' does not quote correctly, so add quotes: double-quote - # substitution turns \\\\ into \\, and sed turns \\ into \. - sed -n \ - "s/'/'\\\\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" - ;; #( - *) - # `set' quotes correctly as required by POSIX, so do not add quotes. - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) | - sed ' - /^ac_cv_env_/b end - t clear - :clear - s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ - t end - s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ - :end' >>confcache -if diff "$cache_file" confcache >/dev/null 2>&1; then :; else - if test -w "$cache_file"; then - if test "x$cache_file" != "x/dev/null"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 -$as_echo "$as_me: updating cache $cache_file" >&6;} - if test ! -f "$cache_file" || test -h "$cache_file"; then - cat confcache >"$cache_file" - else - case $cache_file in #( - */* | ?:*) - mv -f confcache "$cache_file"$$ && - mv -f "$cache_file"$$ "$cache_file" ;; #( - *) - mv -f confcache "$cache_file" ;; - esac - fi - fi - else - { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 -$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} - fi -fi -rm -f confcache - -test "x$prefix" = xNONE && prefix=$ac_default_prefix -# Let make expand exec_prefix. -test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - -DEFS=-DHAVE_CONFIG_H - -ac_libobjs= -ac_ltlibobjs= -U= -for ac_i in : $LIB@&t@OBJS; do test "x$ac_i" = x: && continue - # 1. Remove the extension, and $U if already installed. - ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' - ac_i=`$as_echo "$ac_i" | sed "$ac_script"` - # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR - # will be set to the directory where LIBOBJS objects are built. - as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" - as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' -done -LIB@&t@OBJS=$ac_libobjs - -LTLIBOBJS=$ac_ltlibobjs - - - if test -n "$EXEEXT"; then - am__EXEEXT_TRUE= - am__EXEEXT_FALSE='#' -else - am__EXEEXT_TRUE='#' - am__EXEEXT_FALSE= -fi - -if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then - as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then - as_fn_error $? "conditional \"AMDEP\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then - as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then - as_fn_error $? "conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${am__fastdepOBJC_TRUE}" && test -z "${am__fastdepOBJC_FALSE}"; then - as_fn_error $? "conditional \"am__fastdepOBJC\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi - -if test -z "${EMBEDDED_LEVELDB_TRUE}" && test -z "${EMBEDDED_LEVELDB_FALSE}"; then - as_fn_error $? "conditional \"EMBEDDED_LEVELDB\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${BUILD_BITCOIND_TRUE}" && test -z "${BUILD_BITCOIND_FALSE}"; then - as_fn_error $? "conditional \"BUILD_BITCOIND\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${BUILD_BITCOIN_CLI_TRUE}" && test -z "${BUILD_BITCOIN_CLI_FALSE}"; then - as_fn_error $? "conditional \"BUILD_BITCOIN_CLI\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${TARGET_DARWIN_TRUE}" && test -z "${TARGET_DARWIN_FALSE}"; then - as_fn_error $? "conditional \"TARGET_DARWIN\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${BUILD_DARWIN_TRUE}" && test -z "${BUILD_DARWIN_FALSE}"; then - as_fn_error $? "conditional \"BUILD_DARWIN\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${TARGET_WINDOWS_TRUE}" && test -z "${TARGET_WINDOWS_FALSE}"; then - as_fn_error $? "conditional \"TARGET_WINDOWS\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${ENABLE_WALLET_TRUE}" && test -z "${ENABLE_WALLET_FALSE}"; then - as_fn_error $? "conditional \"ENABLE_WALLET\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${USE_QRCODE_TRUE}" && test -z "${USE_QRCODE_FALSE}"; then - as_fn_error $? "conditional \"USE_QRCODE\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${USE_LCOV_TRUE}" && test -z "${USE_LCOV_FALSE}"; then - as_fn_error $? "conditional \"USE_LCOV\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${USE_COMPARISON_TOOL_TRUE}" && test -z "${USE_COMPARISON_TOOL_FALSE}"; then - as_fn_error $? "conditional \"USE_COMPARISON_TOOL\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${USE_COMPARISON_TOOL_REORG_TESTS_TRUE}" && test -z "${USE_COMPARISON_TOOL_REORG_TESTS_FALSE}"; then - as_fn_error $? "conditional \"USE_COMPARISON_TOOL_REORG_TESTS\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${GLIBC_BACK_COMPAT_TRUE}" && test -z "${GLIBC_BACK_COMPAT_FALSE}"; then - as_fn_error $? "conditional \"GLIBC_BACK_COMPAT\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi - -: "${CONFIG_STATUS=./config.status}" -ac_write_fail=0 -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 -$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} -as_write_fail=0 -cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 -#! $SHELL -# Generated by $as_me. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false - -SHELL=\${CONFIG_SHELL-$SHELL} -export SHELL -_ASEOF -cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in @%:@( - *posix*) : - set -o posix ;; @%:@( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in @%:@( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -as_myself= -case $0 in @%:@(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - - -@%:@ as_fn_error STATUS ERROR [LINENO LOG_FD] -@%:@ ---------------------------------------- -@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are -@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the -@%:@ script with STATUS, using 1 if that was 0. -as_fn_error () -{ - as_status=$1; test $as_status -eq 0 && as_status=1 - if test "$4"; then - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 - fi - $as_echo "$as_me: error: $2" >&2 - as_fn_exit $as_status -} @%:@ as_fn_error - - -@%:@ as_fn_set_status STATUS -@%:@ ----------------------- -@%:@ Set @S|@? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} @%:@ as_fn_set_status - -@%:@ as_fn_exit STATUS -@%:@ ----------------- -@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} @%:@ as_fn_exit - -@%:@ as_fn_unset VAR -@%:@ --------------- -@%:@ Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset -@%:@ as_fn_append VAR VALUE -@%:@ ---------------------- -@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take -@%:@ advantage of any shell optimizations that allow amortized linear growth over -@%:@ repeated appends, instead of the typical quadratic growth present in naive -@%:@ implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -@%:@ as_fn_arith ARG... -@%:@ ------------------ -@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the -@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments -@%:@ must be portable across @S|@(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in @%:@((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -pR'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -pR' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -pR' - fi -else - as_ln_s='cp -pR' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - - -@%:@ as_fn_mkdir_p -@%:@ ------------- -@%:@ Create "@S|@as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" - - -} @%:@ as_fn_mkdir_p -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - - -@%:@ as_fn_executable_p FILE -@%:@ ----------------------- -@%:@ Test if FILE is an executable regular file. -as_fn_executable_p () -{ - test -f "$1" && test -x "$1" -} @%:@ as_fn_executable_p -as_test_x='test -x' -as_executable_p=as_fn_executable_p - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -exec 6>&1 -## ----------------------------------- ## -## Main body of $CONFIG_STATUS script. ## -## ----------------------------------- ## -_ASEOF -test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# Save the log message, to keep $0 and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. -ac_log=" -This file was extended by Bitcoin Core $as_me 0.9.99, which was -generated by GNU Autoconf 2.69. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -on `(hostname || uname -n) 2>/dev/null | sed 1q` -" - -_ACEOF - -case $ac_config_files in *" -"*) set x $ac_config_files; shift; ac_config_files=$*;; -esac - -case $ac_config_headers in *" -"*) set x $ac_config_headers; shift; ac_config_headers=$*;; -esac - - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -# Files that config.status was made for. -config_files="$ac_config_files" -config_headers="$ac_config_headers" -config_commands="$ac_config_commands" - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -ac_cs_usage="\ -\`$as_me' instantiates files and other configuration actions -from templates according to the current configuration. Unless the files -and actions are specified as TAGs, all are instantiated by default. - -Usage: $0 [OPTION]... [TAG]... - - -h, --help print this help, then exit - -V, --version print version number and configuration settings, then exit - --config print configuration, then exit - -q, --quiet, --silent - do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Configuration commands: -$config_commands - -Report bugs to ." - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" -ac_cs_version="\\ -Bitcoin Core config.status 0.9.99 -configured by $0, generated by GNU Autoconf 2.69, - with options \\"\$ac_cs_config\\" - -Copyright (C) 2012 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." - -ac_pwd='$ac_pwd' -srcdir='$srcdir' -INSTALL='$INSTALL' -MKDIR_P='$MKDIR_P' -AWK='$AWK' -test -n "\$AWK" || AWK=awk -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# The default lists apply if the user does not specify any file. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=?*) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` - ac_shift=: - ;; - --*=) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg= - ac_shift=: - ;; - *) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - esac - - case $ac_option in - # Handling of the options. - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) - $as_echo "$ac_cs_version"; exit ;; - --config | --confi | --conf | --con | --co | --c ) - $as_echo "$ac_cs_config"; exit ;; - --debug | --debu | --deb | --de | --d | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - '') as_fn_error $? "missing file argument" ;; - esac - as_fn_append CONFIG_FILES " '$ac_optarg'" - ac_need_defaults=false;; - --header | --heade | --head | --hea ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - as_fn_append CONFIG_HEADERS " '$ac_optarg'" - ac_need_defaults=false;; - --he | --h) - # Conflict between --help and --header - as_fn_error $? "ambiguous option: \`$1' -Try \`$0 --help' for more information.";; - --help | --hel | -h ) - $as_echo "$ac_cs_usage"; exit ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) as_fn_error $? "unrecognized option: \`$1' -Try \`$0 --help' for more information." ;; - - *) as_fn_append ac_config_targets " $1" - ac_need_defaults=false ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -if \$ac_cs_recheck; then - set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion - shift - \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 - CONFIG_SHELL='$SHELL' - export CONFIG_SHELL - exec "\$@" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../@%:@@%:@ /;s/...$/ @%:@@%:@/;p;x;p;x' <<_ASBOX -@%:@@%:@ Running $as_me. @%:@@%:@ -_ASBOX - $as_echo "$ac_log" -} >&5 - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -# -# INIT-COMMANDS -# -AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - -# Handling of arguments. -for ac_config_target in $ac_config_targets -do - case $ac_config_target in - "src/bitcoin-config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/bitcoin-config.h" ;; - "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; - "src/test/Makefile") CONFIG_FILES="$CONFIG_FILES src/test/Makefile" ;; - "src/qt/Makefile") CONFIG_FILES="$CONFIG_FILES src/qt/Makefile" ;; - "src/qt/test/Makefile") CONFIG_FILES="$CONFIG_FILES src/qt/test/Makefile" ;; - "share/setup.nsi") CONFIG_FILES="$CONFIG_FILES share/setup.nsi" ;; - "share/qt/Info.plist") CONFIG_FILES="$CONFIG_FILES share/qt/Info.plist" ;; - "qa/pull-tester/run-bitcoind-for-test.sh") CONFIG_FILES="$CONFIG_FILES qa/pull-tester/run-bitcoind-for-test.sh" ;; - "qa/pull-tester/build-tests.sh") CONFIG_FILES="$CONFIG_FILES qa/pull-tester/build-tests.sh" ;; - - *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; - esac -done - - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers - test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason against having it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Hook for its removal unless debugging. -# Note that there is a small window in which the directory will not be cleaned: -# after its creation but before its name has been assigned to `$tmp'. -$debug || -{ - tmp= ac_tmp= - trap 'exit_status=$? - : "${ac_tmp:=$tmp}" - { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status -' 0 - trap 'as_fn_exit 1' 1 2 13 15 -} -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && - test -d "$tmp" -} || -{ - tmp=./conf$$-$RANDOM - (umask 077 && mkdir "$tmp") -} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 -ac_tmp=$tmp - -# Set up the scripts for CONFIG_FILES section. -# No need to generate them if there are no CONFIG_FILES. -# This happens for instance with `./config.status config.h'. -if test -n "$CONFIG_FILES"; then - - -ac_cr=`echo X | tr X '\015'` -# On cygwin, bash can eat \r inside `` if the user requested igncr. -# But we know of no other shell where ac_cr would be empty at this -# point, so we can use a bashism as a fallback. -if test "x$ac_cr" = x; then - eval ac_cr=\$\'\\r\' -fi -ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` -if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then - ac_cs_awk_cr='\\r' -else - ac_cs_awk_cr=$ac_cr -fi - -echo 'BEGIN {' >"$ac_tmp/subs1.awk" && -_ACEOF - - -{ - echo "cat >conf$$subs.awk <<_ACEOF" && - echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && - echo "_ACEOF" -} >conf$$subs.sh || - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 -ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` -ac_delim='%!_!# ' -for ac_last_try in false false false false false :; do - . ./conf$$subs.sh || - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 - - ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` - if test $ac_delim_n = $ac_delim_num; then - break - elif $ac_last_try; then - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done -rm -f conf$$subs.sh - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && -_ACEOF -sed -n ' -h -s/^/S["/; s/!.*/"]=/ -p -g -s/^[^!]*!// -:repl -t repl -s/'"$ac_delim"'$// -t delim -:nl -h -s/\(.\{148\}\)..*/\1/ -t more1 -s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ -p -n -b repl -:more1 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t nl -:delim -h -s/\(.\{148\}\)..*/\1/ -t more2 -s/["\\]/\\&/g; s/^/"/; s/$/"/ -p -b -:more2 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t delim -' >$CONFIG_STATUS || ac_write_fail=1 -rm -f conf$$subs.awk -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -_ACAWK -cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && - for (key in S) S_is_set[key] = 1 - FS = "" - -} -{ - line = $ 0 - nfields = split(line, field, "@") - substed = 0 - len = length(field[1]) - for (i = 2; i < nfields; i++) { - key = field[i] - keylen = length(key) - if (S_is_set[key]) { - value = S[key] - line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) - len += length(value) + length(field[++i]) - substed = 1 - } else - len += 1 + keylen - } - - print line -} - -_ACAWK -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then - sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" -else - cat -fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ - || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 -_ACEOF - -# VPATH may cause trouble with some makes, so we remove sole $(srcdir), -# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and -# trailing colons and then remove the whole line if VPATH becomes empty -# (actually we leave an empty line to preserve line numbers). -if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ -h -s/// -s/^/:/ -s/[ ]*$/:/ -s/:\$(srcdir):/:/g -s/:\${srcdir}:/:/g -s/:@srcdir@:/:/g -s/^:*// -s/:*$// -x -s/\(=[ ]*\).*/\1/ -G -s/\n// -s/^[^=]*=[ ]*$// -}' -fi - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -fi # test -n "$CONFIG_FILES" - -# Set up the scripts for CONFIG_HEADERS section. -# No need to generate them if there are no CONFIG_HEADERS. -# This happens for instance with `./config.status Makefile'. -if test -n "$CONFIG_HEADERS"; then -cat >"$ac_tmp/defines.awk" <<\_ACAWK || -BEGIN { -_ACEOF - -# Transform confdefs.h into an awk script `defines.awk', embedded as -# here-document in config.status, that substitutes the proper values into -# config.h.in to produce config.h. - -# Create a delimiter string that does not exist in confdefs.h, to ease -# handling of long lines. -ac_delim='%!_!# ' -for ac_last_try in false false :; do - ac_tt=`sed -n "/$ac_delim/p" confdefs.h` - if test -z "$ac_tt"; then - break - elif $ac_last_try; then - as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done - -# For the awk script, D is an array of macro values keyed by name, -# likewise P contains macro parameters if any. Preserve backslash -# newline sequences. - -ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* -sed -n ' -s/.\{148\}/&'"$ac_delim"'/g -t rset -:rset -s/^[ ]*#[ ]*define[ ][ ]*/ / -t def -d -:def -s/\\$// -t bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3"/p -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p -d -:bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3\\\\\\n"\\/p -t cont -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p -t cont -d -:cont -n -s/.\{148\}/&'"$ac_delim"'/g -t clear -:clear -s/\\$// -t bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/"/p -d -:bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p -b cont -' >$CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - for (key in D) D_is_set[key] = 1 - FS = "" -} -/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { - line = \$ 0 - split(line, arg, " ") - if (arg[1] == "#") { - defundef = arg[2] - mac1 = arg[3] - } else { - defundef = substr(arg[1], 2) - mac1 = arg[2] - } - split(mac1, mac2, "(") #) - macro = mac2[1] - prefix = substr(line, 1, index(line, defundef) - 1) - if (D_is_set[macro]) { - # Preserve the white space surrounding the "#". - print prefix "define", macro P[macro] D[macro] - next - } else { - # Replace #undef with comments. This is necessary, for example, - # in the case of _POSIX_SOURCE, which is predefined and required - # on some systems where configure will not decide to define it. - if (defundef == "undef") { - print "/*", prefix defundef, macro, "*/" - next - } - } -} -{ print } -_ACAWK -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 -fi # test -n "$CONFIG_HEADERS" - - -eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" -shift -for ac_tag -do - case $ac_tag in - :[FHLC]) ac_mode=$ac_tag; continue;; - esac - case $ac_mode$ac_tag in - :[FHL]*:*);; - :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; - :[FH]-) ac_tag=-:-;; - :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; - esac - ac_save_IFS=$IFS - IFS=: - set x $ac_tag - IFS=$ac_save_IFS - shift - ac_file=$1 - shift - - case $ac_mode in - :L) ac_source=$1;; - :[FH]) - ac_file_inputs= - for ac_f - do - case $ac_f in - -) ac_f="$ac_tmp/stdin";; - *) # Look for the file first in the build tree, then in the source tree - # (if the path is not absolute). The absolute path cannot be DOS-style, - # because $ac_f cannot contain `:'. - test -f "$ac_f" || - case $ac_f in - [\\/$]*) false;; - *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; - esac || - as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; - esac - case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac - as_fn_append ac_file_inputs " '$ac_f'" - done - - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - configure_input='Generated from '` - $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' - `' by configure.' - if test x"$ac_file" != x-; then - configure_input="$ac_file. $configure_input" - { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 -$as_echo "$as_me: creating $ac_file" >&6;} - fi - # Neutralize special characters interpreted by sed in replacement strings. - case $configure_input in #( - *\&* | *\|* | *\\* ) - ac_sed_conf_input=`$as_echo "$configure_input" | - sed 's/[\\\\&|]/\\\\&/g'`;; #( - *) ac_sed_conf_input=$configure_input;; - esac - - case $ac_tag in - *:-:* | *:-) cat >"$ac_tmp/stdin" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; - esac - ;; - esac - - ac_dir=`$as_dirname -- "$ac_file" || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - as_dir="$ac_dir"; as_fn_mkdir_p - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - - case $ac_mode in - :F) - # - # CONFIG_FILE - # - - case $INSTALL in - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; - esac - ac_MKDIR_P=$MKDIR_P - case $MKDIR_P in - [\\/$]* | ?:[\\/]* ) ;; - */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; - esac -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# If the template does not know about datarootdir, expand it. -# FIXME: This hack should be removed a few years after 2.60. -ac_datarootdir_hack=; ac_datarootdir_seen= -ac_sed_dataroot=' -/datarootdir/ { - p - q -} -/@datadir@/p -/@docdir@/p -/@infodir@/p -/@localedir@/p -/@mandir@/p' -case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in -*datarootdir*) ac_datarootdir_seen=yes;; -*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - ac_datarootdir_hack=' - s&@datadir@&$datadir&g - s&@docdir@&$docdir&g - s&@infodir@&$infodir&g - s&@localedir@&$localedir&g - s&@mandir@&$mandir&g - s&\\\${datarootdir}&$datarootdir&g' ;; -esac -_ACEOF - -# Neutralize VPATH when `$srcdir' = `.'. -# Shell code in configure.ac might set extrasub. -# FIXME: do we really want to maintain this feature? -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_sed_extra="$ac_vpsub -$extrasub -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s|@configure_input@|$ac_sed_conf_input|;t t -s&@top_builddir@&$ac_top_builddir_sub&;t t -s&@top_build_prefix@&$ac_top_build_prefix&;t t -s&@srcdir@&$ac_srcdir&;t t -s&@abs_srcdir@&$ac_abs_srcdir&;t t -s&@top_srcdir@&$ac_top_srcdir&;t t -s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t -s&@builddir@&$ac_builddir&;t t -s&@abs_builddir@&$ac_abs_builddir&;t t -s&@abs_top_builddir@&$ac_abs_top_builddir&;t t -s&@INSTALL@&$ac_INSTALL&;t t -s&@MKDIR_P@&$ac_MKDIR_P&;t t -$ac_datarootdir_hack -" -eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ - >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - -test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && - { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ - "$ac_tmp/out"`; test -z "$ac_out"; } && - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&5 -$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&2;} - - rm -f "$ac_tmp/stdin" - case $ac_file in - -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; - *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; - esac \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - ;; - :H) - # - # CONFIG_HEADER - # - if test x"$ac_file" != x-; then - { - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" - } >"$ac_tmp/config.h" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then - { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 -$as_echo "$as_me: $ac_file is unchanged" >&6;} - else - rm -f "$ac_file" - mv "$ac_tmp/config.h" "$ac_file" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - fi - else - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ - || as_fn_error $? "could not create -" "$LINENO" 5 - fi -# Compute "$ac_file"'s index in $config_headers. -_am_arg="$ac_file" -_am_stamp_count=1 -for _am_header in $config_headers :; do - case $_am_header in - $_am_arg | $_am_arg:* ) - break ;; - * ) - _am_stamp_count=`expr $_am_stamp_count + 1` ;; - esac -done -echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || -$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$_am_arg" : 'X\(//\)[^/]' \| \ - X"$_am_arg" : 'X\(//\)$' \| \ - X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$_am_arg" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'`/stamp-h$_am_stamp_count - ;; - - :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 -$as_echo "$as_me: executing $ac_file commands" >&6;} - ;; - esac - - - case $ac_file$ac_mode in - "depfiles":C) test x"$AMDEP_TRUE" != x"" || { - # Autoconf 2.62 quotes --file arguments for eval, but not when files - # are listed without --file. Let's play safe and only enable the eval - # if we detect the quoting. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac - shift - for mf - do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named `Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`$as_dirname -- "$mf" || -$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$mf" : 'X\(//\)[^/]' \| \ - X"$mf" : 'X\(//\)$' \| \ - X"$mf" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$mf" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running `make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n 's/^U = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`$as_dirname -- "$file" || -$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$file" : 'X\(//\)[^/]' \| \ - X"$file" : 'X\(//\)$' \| \ - X"$file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - as_dir=$dirpart/$fdir; as_fn_mkdir_p - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done - done -} - ;; - "qa/pull-tester/run-bitcoind-for-test.sh":F) chmod +x qa/pull-tester/run-bitcoind-for-test.sh ;; - "qa/pull-tester/build-tests.sh":F) chmod +x qa/pull-tester/build-tests.sh ;; - - esac -done # for ac_tag - - -as_fn_exit 0 -_ACEOF -ac_clean_files=$ac_clean_files_save - -test $ac_write_fail = 0 || - as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 - - -# configure is writing to config.log, and then calls config.status. -# config.status does its own redirection, appending to config.log. -# Unfortunately, on DOS this fails, as config.log is still kept open -# by configure, so config.status won't be able to write to it; its -# output is simply discarded. So we exec the FD to /dev/null, -# effectively closing config.log, so it can be properly (re)opened and -# appended to by config.status. When coming back to configure, we -# need to make the FD available again. -if test "$no_create" != yes; then - ac_cs_success=: - ac_config_status_args= - test "$silent" = yes && - ac_config_status_args="$ac_config_status_args --quiet" - exec 5>/dev/null - $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false - exec 5>>config.log - # Use ||, not &&, to avoid exiting from the if with $? = 1, which - # would make configure fail if this is the last instruction. - $ac_cs_success || as_fn_exit 1 -fi -if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 -$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} -fi - diff --git a/autom4te.cache/output.1 b/autom4te.cache/output.1 deleted file mode 100644 index eedcfd7..0000000 --- a/autom4te.cache/output.1 +++ /dev/null @@ -1,16528 +0,0 @@ -@%:@! /bin/sh -@%:@ Guess values for system-dependent variables and create Makefiles. -@%:@ Generated by GNU Autoconf 2.69 for Bitcoin Core 0.9.99. -@%:@ -@%:@ Report bugs to . -@%:@ -@%:@ -@%:@ Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. -@%:@ -@%:@ -@%:@ This configure script is free software; the Free Software Foundation -@%:@ gives unlimited permission to copy, distribute and modify it. -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in @%:@( - *posix*) : - set -o posix ;; @%:@( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in @%:@( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -as_myself= -case $0 in @%:@(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -# Use a proper internal environment variable to ensure we don't fall - # into an infinite loop, continuously re-executing ourselves. - if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then - _as_can_reexec=no; export _as_can_reexec; - # We cannot yet assume a decent shell, so we have to provide a -# neutralization value for shells without unset; and this also -# works around shells that cannot unset nonexistent variables. -# Preserve -v and -x to the replacement shell. -BASH_ENV=/dev/null -ENV=/dev/null -(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -case $- in @%:@ (((( - *v*x* | *x*v* ) as_opts=-vx ;; - *v* ) as_opts=-v ;; - *x* ) as_opts=-x ;; - * ) as_opts= ;; -esac -exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -# Admittedly, this is quite paranoid, since all the known shells bail -# out after a failed `exec'. -$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -as_fn_exit 255 - fi - # We don't want this to propagate to other subprocesses. - { _as_can_reexec=; unset _as_can_reexec;} -if test "x$CONFIG_SHELL" = x; then - as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which - # is contrary to our usage. Disable this feature. - alias -g '\${1+\"\$@\"}'='\"\$@\"' - setopt NO_GLOB_SUBST -else - case \`(set -o) 2>/dev/null\` in @%:@( - *posix*) : - set -o posix ;; @%:@( - *) : - ;; -esac -fi -" - as_required="as_fn_return () { (exit \$1); } -as_fn_success () { as_fn_return 0; } -as_fn_failure () { as_fn_return 1; } -as_fn_ret_success () { return 0; } -as_fn_ret_failure () { return 1; } - -exitcode=0 -as_fn_success || { exitcode=1; echo as_fn_success failed.; } -as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } -as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } -as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } -if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : - -else - exitcode=1; echo positional parameters were not saved. -fi -test x\$exitcode = x0 || exit 1 -test -x / || exit 1" - as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO - as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO - eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && - test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 -test \$(( 1 + 1 )) = 2 || exit 1" - if (eval "$as_required") 2>/dev/null; then : - as_have_required=yes -else - as_have_required=no -fi - if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : - -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -as_found=false -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - as_found=: - case $as_dir in @%:@( - /*) - for as_base in sh bash ksh sh5; do - # Try only shells that exist, to save several forks. - as_shell=$as_dir/$as_base - if { test -f "$as_shell" || test -f "$as_shell.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : - CONFIG_SHELL=$as_shell as_have_required=yes - if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : - break 2 -fi -fi - done;; - esac - as_found=false -done -$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : - CONFIG_SHELL=$SHELL as_have_required=yes -fi; } -IFS=$as_save_IFS - - - if test "x$CONFIG_SHELL" != x; then : - export CONFIG_SHELL - # We cannot yet assume a decent shell, so we have to provide a -# neutralization value for shells without unset; and this also -# works around shells that cannot unset nonexistent variables. -# Preserve -v and -x to the replacement shell. -BASH_ENV=/dev/null -ENV=/dev/null -(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -case $- in @%:@ (((( - *v*x* | *x*v* ) as_opts=-vx ;; - *v* ) as_opts=-v ;; - *x* ) as_opts=-x ;; - * ) as_opts= ;; -esac -exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -# Admittedly, this is quite paranoid, since all the known shells bail -# out after a failed `exec'. -$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -exit 255 -fi - - if test x$as_have_required = xno; then : - $as_echo "$0: This script requires a shell more modern than all" - $as_echo "$0: the shells that I found on your system." - if test x${ZSH_VERSION+set} = xset ; then - $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" - $as_echo "$0: be upgraded to zsh 4.3.4 or later." - else - $as_echo "$0: Please tell bug-autoconf@gnu.org and info@bitcoin.org -$0: about your system, including any error possibly output -$0: before this message. Then install a modern shell, or -$0: manually run the script under such a shell if you do -$0: have one." - fi - exit 1 -fi -fi -fi -SHELL=${CONFIG_SHELL-/bin/sh} -export SHELL -# Unset more variables known to interfere with behavior of common tools. -CLICOLOR_FORCE= GREP_OPTIONS= -unset CLICOLOR_FORCE GREP_OPTIONS - -## --------------------- ## -## M4sh Shell Functions. ## -## --------------------- ## -@%:@ as_fn_unset VAR -@%:@ --------------- -@%:@ Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset - -@%:@ as_fn_set_status STATUS -@%:@ ----------------------- -@%:@ Set @S|@? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} @%:@ as_fn_set_status - -@%:@ as_fn_exit STATUS -@%:@ ----------------- -@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} @%:@ as_fn_exit - -@%:@ as_fn_mkdir_p -@%:@ ------------- -@%:@ Create "@S|@as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" - - -} @%:@ as_fn_mkdir_p - -@%:@ as_fn_executable_p FILE -@%:@ ----------------------- -@%:@ Test if FILE is an executable regular file. -as_fn_executable_p () -{ - test -f "$1" && test -x "$1" -} @%:@ as_fn_executable_p -@%:@ as_fn_append VAR VALUE -@%:@ ---------------------- -@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take -@%:@ advantage of any shell optimizations that allow amortized linear growth over -@%:@ repeated appends, instead of the typical quadratic growth present in naive -@%:@ implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -@%:@ as_fn_arith ARG... -@%:@ ------------------ -@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the -@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments -@%:@ must be portable across @S|@(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -@%:@ as_fn_error STATUS ERROR [LINENO LOG_FD] -@%:@ ---------------------------------------- -@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are -@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the -@%:@ script with STATUS, using 1 if that was 0. -as_fn_error () -{ - as_status=$1; test $as_status -eq 0 && as_status=1 - if test "$4"; then - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 - fi - $as_echo "$as_me: error: $2" >&2 - as_fn_exit $as_status -} @%:@ as_fn_error - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - - - as_lineno_1=$LINENO as_lineno_1a=$LINENO - as_lineno_2=$LINENO as_lineno_2a=$LINENO - eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && - test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { - # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) - sed -n ' - p - /[$]LINENO/= - ' <$as_myself | - sed ' - s/[$]LINENO.*/&-/ - t lineno - b - :lineno - N - :loop - s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ - t loop - s/-\n.*// - ' >$as_me.lineno && - chmod +x "$as_me.lineno" || - { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } - - # If we had to re-execute with $CONFIG_SHELL, we're ensured to have - # already done that, so ensure we don't try to do so again and fall - # in an infinite loop. This has already happened in practice. - _as_can_reexec=no; export _as_can_reexec - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). - . "./$as_me.lineno" - # Exit status is that of the last command. - exit -} - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in @%:@((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -pR'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -pR' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -pR' - fi -else - as_ln_s='cp -pR' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -as_test_x='test -x' -as_executable_p=as_fn_executable_p - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -test -n "$DJDIR" || exec 7<&0 &1 - -# Name of the host. -# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, -# so uname gets run too. -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - -# -# Initializations. -# -ac_default_prefix=/usr/local -ac_clean_files= -ac_config_libobj_dir=. -LIB@&t@OBJS= -cross_compiling=no -subdirs= -MFLAGS= -MAKEFLAGS= - -# Identity of this package. -PACKAGE_NAME='Bitcoin Core' -PACKAGE_TARNAME='bitcoin' -PACKAGE_VERSION='0.9.99' -PACKAGE_STRING='Bitcoin Core 0.9.99' -PACKAGE_BUGREPORT='info@bitcoin.org' -PACKAGE_URL='' - -ac_unique_file="src" -# Factoring default headers for most tests. -ac_includes_default="\ -#include -#ifdef HAVE_SYS_TYPES_H -# include -#endif -#ifdef HAVE_SYS_STAT_H -# include -#endif -#ifdef STDC_HEADERS -# include -# include -#else -# ifdef HAVE_STDLIB_H -# include -# endif -#endif -#ifdef HAVE_STRING_H -# if !defined STDC_HEADERS && defined HAVE_MEMORY_H -# include -# endif -# include -#endif -#ifdef HAVE_STRINGS_H -# include -#endif -#ifdef HAVE_INTTYPES_H -# include -#endif -#ifdef HAVE_STDINT_H -# include -#endif -#ifdef HAVE_UNISTD_H -# include -#endif" - -ac_subst_vars='am__EXEEXT_FALSE -am__EXEEXT_TRUE -LTLIBOBJS -LIB@&t@OBJS -BUILD_TEST_QT -BUILD_QT -BUILD_TEST -LEVELDB_TARGET_FLAGS -TESTDEFS -BOOST_LIBS -INCLUDES -USE_QRCODE -USE_UPNP -COPYRIGHT_YEAR -CLIENT_VERSION_IS_RELEASE -CLIENT_VERSION_BUILD -CLIENT_VERSION_REVISION -CLIENT_VERSION_MINOR -CLIENT_VERSION_MAJOR -GLIBC_BACK_COMPAT_FALSE -GLIBC_BACK_COMPAT_TRUE -USE_COMPARISON_TOOL_REORG_TESTS_FALSE -USE_COMPARISON_TOOL_REORG_TESTS_TRUE -USE_COMPARISON_TOOL_FALSE -USE_COMPARISON_TOOL_TRUE -USE_LCOV_FALSE -USE_LCOV_TRUE -USE_QRCODE_FALSE -USE_QRCODE_TRUE -ENABLE_WALLET_FALSE -ENABLE_WALLET_TRUE -TARGET_WINDOWS_FALSE -TARGET_WINDOWS_TRUE -BUILD_DARWIN_FALSE -BUILD_DARWIN_TRUE -TARGET_DARWIN_FALSE -TARGET_DARWIN_TRUE -MOC_DEFS -QT_SELECT -QT_TEST_INCLUDES -QT_DBUS_INCLUDES -QT_LDFLAGS -QT_INCLUDES -LUPDATE -LRELEASE -RCC -UIC -MOC -QT_DBUS_LIBS -QT_DBUS_CFLAGS -QT_TEST_LIBS -QT_TEST_CFLAGS -QT_LIBS -QT_CFLAGS -BUILD_BITCOIN_CLI_FALSE -BUILD_BITCOIN_CLI_TRUE -BUILD_BITCOIND_FALSE -BUILD_BITCOIND_TRUE -PROTOC -QR_LIBS -QR_CFLAGS -PROTOBUF_LIBS -PROTOBUF_CFLAGS -CRYPTO_LIBS -CRYPTO_CFLAGS -SSL_LIBS -SSL_CFLAGS -BOOST_UNIT_TEST_FRAMEWORK_LIB -BOOST_CHRONO_LIB -BOOST_THREAD_LIB -BOOST_PROGRAM_OPTIONS_LIB -BOOST_FILESYSTEM_LIB -BOOST_SYSTEM_LIB -BOOST_LDFLAGS -BOOST_CPPFLAGS -BDB_LIBS -BDB_CPPFLAGS -LIBMEMENV -LIBLEVELDB -LEVELDB_CPPFLAGS -EMBEDDED_LEVELDB_FALSE -EMBEDDED_LEVELDB_TRUE -PTHREAD_CFLAGS -PTHREAD_LIBS -PTHREAD_CC -ax_pthread_config -EGREP -GREP -COMPARISON_TOOL_REORG_TESTS -JAVA_COMPARISON_TOOL -GENISOIMAGE -OTOOL -INSTALLNAMETOOL -BREW -PORT -WINDOWS_BITS -WINDRES -MAKENSIS -PKG_CONFIG_LIBDIR -PKG_CONFIG_PATH -PKG_CONFIG -HEXDUMP -XGETTEXT -CCACHE -GIT -GENHTML -JAVA -LCOV -GCOV -RANLIB -AR -SED -ac_ct_OBJCXX -OBJCXXFLAGS -OBJCXX -LN_S -am__fastdepOBJC_FALSE -am__fastdepOBJC_TRUE -OBJCDEPMODE -ac_ct_OBJC -OBJCFLAGS -OBJC -CXXCPP -CPP -am__fastdepCC_FALSE -am__fastdepCC_TRUE -CCDEPMODE -ac_ct_CC -CFLAGS -CC -am__fastdepCXX_FALSE -am__fastdepCXX_TRUE -CXXDEPMODE -am__nodep -AMDEPBACKSLASH -AMDEP_FALSE -AMDEP_TRUE -am__quote -am__include -DEPDIR -OBJEXT -EXEEXT -ac_ct_CXX -CPPFLAGS -LDFLAGS -CXXFLAGS -CXX -AM_BACKSLASH -AM_DEFAULT_VERBOSITY -AM_DEFAULT_V -AM_V -MAINT -MAINTAINER_MODE_FALSE -MAINTAINER_MODE_TRUE -am__untar -am__tar -AMTAR -am__leading_dot -SET_MAKE -AWK -mkdir_p -MKDIR_P -INSTALL_STRIP_PROGRAM -STRIP -install_sh -MAKEINFO -AUTOHEADER -AUTOMAKE -AUTOCONF -ACLOCAL -VERSION -PACKAGE -CYGPATH_W -am__isrc -INSTALL_DATA -INSTALL_SCRIPT -INSTALL_PROGRAM -host_os -host_vendor -host_cpu -host -build_os -build_vendor -build_cpu -build -target_alias -host_alias -build_alias -LIBS -ECHO_T -ECHO_N -ECHO_C -DEFS -mandir -localedir -libdir -psdir -pdfdir -dvidir -htmldir -infodir -docdir -oldincludedir -includedir -localstatedir -sharedstatedir -sysconfdir -datadir -datarootdir -libexecdir -sbindir -bindir -program_transform_name -prefix -exec_prefix -PACKAGE_URL -PACKAGE_BUGREPORT -PACKAGE_STRING -PACKAGE_VERSION -PACKAGE_TARNAME -PACKAGE_NAME -PATH_SEPARATOR -SHELL' -ac_subst_files='' -ac_user_opts=' -enable_option_checking -enable_maintainer_mode -enable_silent_rules -enable_wallet -with_miniupnpc -enable_upnp_default -enable_tests -with_comparison_tool -enable_comparison_tool_reorg_tests -with_qrencode -enable_hardening -enable_ccache -enable_lcov -enable_glibc_back_compat -with_protoc_bindir -enable_dependency_tracking -enable_debug -enable_largefile -with_incompatible_bdb -with_boost -with_boost_libdir -with_boost_system -with_boost_filesystem -with_boost_program_options -with_boost_thread -with_boost_chrono -with_boost_unit_test_framework -with_cli -with_daemon -with_gui -with_qt_incdir -with_qt_libdir -with_qt_plugindir -with_qt_bindir -with_qtdbus -' - ac_precious_vars='build_alias -host_alias -target_alias -CXX -CXXFLAGS -LDFLAGS -LIBS -CPPFLAGS -CCC -CC -CFLAGS -CPP -CXXCPP -OBJC -OBJCFLAGS -OBJCXX -OBJCXXFLAGS -PKG_CONFIG -PKG_CONFIG_PATH -PKG_CONFIG_LIBDIR -SSL_CFLAGS -SSL_LIBS -CRYPTO_CFLAGS -CRYPTO_LIBS -PROTOBUF_CFLAGS -PROTOBUF_LIBS -QR_CFLAGS -QR_LIBS -QT_CFLAGS -QT_LIBS -QT_TEST_CFLAGS -QT_TEST_LIBS -QT_DBUS_CFLAGS -QT_DBUS_LIBS' - - -# Initialize some variables set by options. -ac_init_help= -ac_init_version=false -ac_unrecognized_opts= -ac_unrecognized_sep= -# The variables have the same names as the options, with -# dashes changed to underlines. -cache_file=/dev/null -exec_prefix=NONE -no_create= -no_recursion= -prefix=NONE -program_prefix=NONE -program_suffix=NONE -program_transform_name=s,x,x, -silent= -site= -srcdir= -verbose= -x_includes=NONE -x_libraries=NONE - -# Installation directory options. -# These are left unexpanded so users can "make install exec_prefix=/foo" -# and all the variables that are supposed to be based on exec_prefix -# by default will actually change. -# Use braces instead of parens because sh, perl, etc. also accept them. -# (The list follows the same order as the GNU Coding Standards.) -bindir='${exec_prefix}/bin' -sbindir='${exec_prefix}/sbin' -libexecdir='${exec_prefix}/libexec' -datarootdir='${prefix}/share' -datadir='${datarootdir}' -sysconfdir='${prefix}/etc' -sharedstatedir='${prefix}/com' -localstatedir='${prefix}/var' -includedir='${prefix}/include' -oldincludedir='/usr/include' -docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' -infodir='${datarootdir}/info' -htmldir='${docdir}' -dvidir='${docdir}' -pdfdir='${docdir}' -psdir='${docdir}' -libdir='${exec_prefix}/lib' -localedir='${datarootdir}/locale' -mandir='${datarootdir}/man' - -ac_prev= -ac_dashdash= -for ac_option -do - # If the previous option needs an argument, assign it. - if test -n "$ac_prev"; then - eval $ac_prev=\$ac_option - ac_prev= - continue - fi - - case $ac_option in - *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; - *=) ac_optarg= ;; - *) ac_optarg=yes ;; - esac - - # Accept the important Cygnus configure options, so we can diagnose typos. - - case $ac_dashdash$ac_option in - --) - ac_dashdash=yes ;; - - -bindir | --bindir | --bindi | --bind | --bin | --bi) - ac_prev=bindir ;; - -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) - bindir=$ac_optarg ;; - - -build | --build | --buil | --bui | --bu) - ac_prev=build_alias ;; - -build=* | --build=* | --buil=* | --bui=* | --bu=*) - build_alias=$ac_optarg ;; - - -cache-file | --cache-file | --cache-fil | --cache-fi \ - | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) - ac_prev=cache_file ;; - -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ - | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) - cache_file=$ac_optarg ;; - - --config-cache | -C) - cache_file=config.cache ;; - - -datadir | --datadir | --datadi | --datad) - ac_prev=datadir ;; - -datadir=* | --datadir=* | --datadi=* | --datad=*) - datadir=$ac_optarg ;; - - -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ - | --dataroo | --dataro | --datar) - ac_prev=datarootdir ;; - -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ - | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) - datarootdir=$ac_optarg ;; - - -disable-* | --disable-*) - ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=no ;; - - -docdir | --docdir | --docdi | --doc | --do) - ac_prev=docdir ;; - -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) - docdir=$ac_optarg ;; - - -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) - ac_prev=dvidir ;; - -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) - dvidir=$ac_optarg ;; - - -enable-* | --enable-*) - ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=\$ac_optarg ;; - - -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ - | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ - | --exec | --exe | --ex) - ac_prev=exec_prefix ;; - -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ - | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ - | --exec=* | --exe=* | --ex=*) - exec_prefix=$ac_optarg ;; - - -gas | --gas | --ga | --g) - # Obsolete; use --with-gas. - with_gas=yes ;; - - -help | --help | --hel | --he | -h) - ac_init_help=long ;; - -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) - ac_init_help=recursive ;; - -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) - ac_init_help=short ;; - - -host | --host | --hos | --ho) - ac_prev=host_alias ;; - -host=* | --host=* | --hos=* | --ho=*) - host_alias=$ac_optarg ;; - - -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) - ac_prev=htmldir ;; - -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ - | --ht=*) - htmldir=$ac_optarg ;; - - -includedir | --includedir | --includedi | --included | --include \ - | --includ | --inclu | --incl | --inc) - ac_prev=includedir ;; - -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ - | --includ=* | --inclu=* | --incl=* | --inc=*) - includedir=$ac_optarg ;; - - -infodir | --infodir | --infodi | --infod | --info | --inf) - ac_prev=infodir ;; - -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) - infodir=$ac_optarg ;; - - -libdir | --libdir | --libdi | --libd) - ac_prev=libdir ;; - -libdir=* | --libdir=* | --libdi=* | --libd=*) - libdir=$ac_optarg ;; - - -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ - | --libexe | --libex | --libe) - ac_prev=libexecdir ;; - -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ - | --libexe=* | --libex=* | --libe=*) - libexecdir=$ac_optarg ;; - - -localedir | --localedir | --localedi | --localed | --locale) - ac_prev=localedir ;; - -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) - localedir=$ac_optarg ;; - - -localstatedir | --localstatedir | --localstatedi | --localstated \ - | --localstate | --localstat | --localsta | --localst | --locals) - ac_prev=localstatedir ;; - -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ - | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) - localstatedir=$ac_optarg ;; - - -mandir | --mandir | --mandi | --mand | --man | --ma | --m) - ac_prev=mandir ;; - -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) - mandir=$ac_optarg ;; - - -nfp | --nfp | --nf) - # Obsolete; use --without-fp. - with_fp=no ;; - - -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c | -n) - no_create=yes ;; - - -no-recursion | --no-recursion | --no-recursio | --no-recursi \ - | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) - no_recursion=yes ;; - - -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ - | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ - | --oldin | --oldi | --old | --ol | --o) - ac_prev=oldincludedir ;; - -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ - | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ - | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) - oldincludedir=$ac_optarg ;; - - -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) - ac_prev=prefix ;; - -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) - prefix=$ac_optarg ;; - - -program-prefix | --program-prefix | --program-prefi | --program-pref \ - | --program-pre | --program-pr | --program-p) - ac_prev=program_prefix ;; - -program-prefix=* | --program-prefix=* | --program-prefi=* \ - | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) - program_prefix=$ac_optarg ;; - - -program-suffix | --program-suffix | --program-suffi | --program-suff \ - | --program-suf | --program-su | --program-s) - ac_prev=program_suffix ;; - -program-suffix=* | --program-suffix=* | --program-suffi=* \ - | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) - program_suffix=$ac_optarg ;; - - -program-transform-name | --program-transform-name \ - | --program-transform-nam | --program-transform-na \ - | --program-transform-n | --program-transform- \ - | --program-transform | --program-transfor \ - | --program-transfo | --program-transf \ - | --program-trans | --program-tran \ - | --progr-tra | --program-tr | --program-t) - ac_prev=program_transform_name ;; - -program-transform-name=* | --program-transform-name=* \ - | --program-transform-nam=* | --program-transform-na=* \ - | --program-transform-n=* | --program-transform-=* \ - | --program-transform=* | --program-transfor=* \ - | --program-transfo=* | --program-transf=* \ - | --program-trans=* | --program-tran=* \ - | --progr-tra=* | --program-tr=* | --program-t=*) - program_transform_name=$ac_optarg ;; - - -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) - ac_prev=pdfdir ;; - -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) - pdfdir=$ac_optarg ;; - - -psdir | --psdir | --psdi | --psd | --ps) - ac_prev=psdir ;; - -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) - psdir=$ac_optarg ;; - - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - silent=yes ;; - - -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) - ac_prev=sbindir ;; - -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ - | --sbi=* | --sb=*) - sbindir=$ac_optarg ;; - - -sharedstatedir | --sharedstatedir | --sharedstatedi \ - | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ - | --sharedst | --shareds | --shared | --share | --shar \ - | --sha | --sh) - ac_prev=sharedstatedir ;; - -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ - | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ - | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ - | --sha=* | --sh=*) - sharedstatedir=$ac_optarg ;; - - -site | --site | --sit) - ac_prev=site ;; - -site=* | --site=* | --sit=*) - site=$ac_optarg ;; - - -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) - ac_prev=srcdir ;; - -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) - srcdir=$ac_optarg ;; - - -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ - | --syscon | --sysco | --sysc | --sys | --sy) - ac_prev=sysconfdir ;; - -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ - | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) - sysconfdir=$ac_optarg ;; - - -target | --target | --targe | --targ | --tar | --ta | --t) - ac_prev=target_alias ;; - -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) - target_alias=$ac_optarg ;; - - -v | -verbose | --verbose | --verbos | --verbo | --verb) - verbose=yes ;; - - -version | --version | --versio | --versi | --vers | -V) - ac_init_version=: ;; - - -with-* | --with-*) - ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=\$ac_optarg ;; - - -without-* | --without-*) - ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=no ;; - - --x) - # Obsolete; use --with-x. - with_x=yes ;; - - -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ - | --x-incl | --x-inc | --x-in | --x-i) - ac_prev=x_includes ;; - -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ - | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) - x_includes=$ac_optarg ;; - - -x-libraries | --x-libraries | --x-librarie | --x-librari \ - | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) - ac_prev=x_libraries ;; - -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ - | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) - x_libraries=$ac_optarg ;; - - -*) as_fn_error $? "unrecognized option: \`$ac_option' -Try \`$0 --help' for more information" - ;; - - *=*) - ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` - # Reject names that are not valid shell variable names. - case $ac_envvar in #( - '' | [0-9]* | *[!_$as_cr_alnum]* ) - as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; - esac - eval $ac_envvar=\$ac_optarg - export $ac_envvar ;; - - *) - # FIXME: should be removed in autoconf 3.0. - $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 - expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" - ;; - - esac -done - -if test -n "$ac_prev"; then - ac_option=--`echo $ac_prev | sed 's/_/-/g'` - as_fn_error $? "missing argument to $ac_option" -fi - -if test -n "$ac_unrecognized_opts"; then - case $enable_option_checking in - no) ;; - fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; - *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; - esac -fi - -# Check all directory arguments for consistency. -for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ - datadir sysconfdir sharedstatedir localstatedir includedir \ - oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir -do - eval ac_val=\$$ac_var - # Remove trailing slashes. - case $ac_val in - */ ) - ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` - eval $ac_var=\$ac_val;; - esac - # Be sure to have absolute directory names. - case $ac_val in - [\\/$]* | ?:[\\/]* ) continue;; - NONE | '' ) case $ac_var in *prefix ) continue;; esac;; - esac - as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" -done - -# There might be people who depend on the old broken behavior: `$host' -# used to hold the argument of --host etc. -# FIXME: To remove some day. -build=$build_alias -host=$host_alias -target=$target_alias - -# FIXME: To remove some day. -if test "x$host_alias" != x; then - if test "x$build_alias" = x; then - cross_compiling=maybe - elif test "x$build_alias" != "x$host_alias"; then - cross_compiling=yes - fi -fi - -ac_tool_prefix= -test -n "$host_alias" && ac_tool_prefix=$host_alias- - -test "$silent" = yes && exec 6>/dev/null - - -ac_pwd=`pwd` && test -n "$ac_pwd" && -ac_ls_di=`ls -di .` && -ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - as_fn_error $? "working directory cannot be determined" -test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - as_fn_error $? "pwd does not report name of working directory" - - -# Find the source files, if location was not specified. -if test -z "$srcdir"; then - ac_srcdir_defaulted=yes - # Try the directory containing this script, then the parent directory. - ac_confdir=`$as_dirname -- "$as_myself" || -$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_myself" : 'X\(//\)[^/]' \| \ - X"$as_myself" : 'X\(//\)$' \| \ - X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_myself" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - srcdir=$ac_confdir - if test ! -r "$srcdir/$ac_unique_file"; then - srcdir=.. - fi -else - ac_srcdir_defaulted=no -fi -if test ! -r "$srcdir/$ac_unique_file"; then - test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" -fi -ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" -ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" - pwd)` -# When building in place, set srcdir=. -if test "$ac_abs_confdir" = "$ac_pwd"; then - srcdir=. -fi -# Remove unnecessary trailing slashes from srcdir. -# Double slashes in file names in object file debugging info -# mess up M-x gdb in Emacs. -case $srcdir in -*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; -esac -for ac_var in $ac_precious_vars; do - eval ac_env_${ac_var}_set=\${${ac_var}+set} - eval ac_env_${ac_var}_value=\$${ac_var} - eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} - eval ac_cv_env_${ac_var}_value=\$${ac_var} -done - -# -# Report the --help message. -# -if test "$ac_init_help" = "long"; then - # Omit some internal or obsolete options to make the list less imposing. - # This message is too long to be a string in the A/UX 3.1 sh. - cat <<_ACEOF -\`configure' configures Bitcoin Core 0.9.99 to adapt to many kinds of systems. - -Usage: $0 [OPTION]... [VAR=VALUE]... - -To assign environment variables (e.g., CC, CFLAGS...), specify them as -VAR=VALUE. See below for descriptions of some of the useful variables. - -Defaults for the options are specified in brackets. - -Configuration: - -h, --help display this help and exit - --help=short display options specific to this package - --help=recursive display the short help of all the included packages - -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking ...' messages - --cache-file=FILE cache test results in FILE [disabled] - -C, --config-cache alias for \`--cache-file=config.cache' - -n, --no-create do not create output files - --srcdir=DIR find the sources in DIR [configure dir or \`..'] - -Installation directories: - --prefix=PREFIX install architecture-independent files in PREFIX - @<:@@S|@ac_default_prefix@:>@ - --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX - @<:@PREFIX@:>@ - -By default, \`make install' will install all the files in -\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify -an installation prefix other than \`$ac_default_prefix' using \`--prefix', -for instance \`--prefix=\$HOME'. - -For better control, use the options below. - -Fine tuning of the installation directories: - --bindir=DIR user executables [EPREFIX/bin] - --sbindir=DIR system admin executables [EPREFIX/sbin] - --libexecdir=DIR program executables [EPREFIX/libexec] - --sysconfdir=DIR read-only single-machine data [PREFIX/etc] - --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] - --localstatedir=DIR modifiable single-machine data [PREFIX/var] - --libdir=DIR object code libraries [EPREFIX/lib] - --includedir=DIR C header files [PREFIX/include] - --oldincludedir=DIR C header files for non-gcc [/usr/include] - --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] - --datadir=DIR read-only architecture-independent data [DATAROOTDIR] - --infodir=DIR info documentation [DATAROOTDIR/info] - --localedir=DIR locale-dependent data [DATAROOTDIR/locale] - --mandir=DIR man documentation [DATAROOTDIR/man] - --docdir=DIR documentation root @<:@DATAROOTDIR/doc/bitcoin@:>@ - --htmldir=DIR html documentation [DOCDIR] - --dvidir=DIR dvi documentation [DOCDIR] - --pdfdir=DIR pdf documentation [DOCDIR] - --psdir=DIR ps documentation [DOCDIR] -_ACEOF - - cat <<\_ACEOF - -Program names: - --program-prefix=PREFIX prepend PREFIX to installed program names - --program-suffix=SUFFIX append SUFFIX to installed program names - --program-transform-name=PROGRAM run sed PROGRAM on installed program names - -System types: - --build=BUILD configure for building on BUILD [guessed] - --host=HOST cross-compile to build programs to run on HOST [BUILD] -_ACEOF -fi - -if test -n "$ac_init_help"; then - case $ac_init_help in - short | recursive ) echo "Configuration of Bitcoin Core 0.9.99:";; - esac - cat <<\_ACEOF - -Optional Features: - --disable-option-checking ignore unrecognized --enable/--with options - --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) - --enable-FEATURE[=ARG] include FEATURE [ARG=yes] - --disable-maintainer-mode disable make rules and dependencies not useful - (and sometimes confusing) to the casual installer - --enable-silent-rules less verbose build output (undo: `make V=1') - --disable-silent-rules verbose build output (undo: `make V=0') - --enable-wallet enable wallet (default is yes) - --enable-upnp-default if UPNP is enabled, turn it on at startup (default - is no) - --enable-tests compile tests (default is yes) - --enable-comparison-tool-reorg-tests - enable expensive reorg tests in the comparison tool - (default no) - --enable-hardening attempt to harden the resulting executables (default - is yes) - --enable-ccache use ccache for building (default is yes if ccache is - found) - --enable-lcov enable lcov testing (default is no) - --enable-glibc-back-compat - enable backwards compatibility with glibc and - libstdc++ - --disable-dependency-tracking speeds up one-time build - --enable-dependency-tracking do not reject slow dependency extractors - --enable-debug use debug compiler flags and macros (default is no) - --disable-largefile omit support for large files - -Optional Packages: - --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] - --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) - --with-miniupnpc enable UPNP (default is yes if libminiupnpc is - found) - --with-comparison-tool path to java comparison tool (requires - --enable-tests) - --with-qrencode enable QR code support (default is yes if qt is - enabled and libqrencode is found) - --with-protoc-bindir=BIN_DIR - specify protoc bin path - --with-incompatible-bdb allow using a bdb version other than 4.8 - --with-boost@<:@=ARG@:>@ use Boost library from a standard location - (ARG=yes), from the specified location (ARG=), - or disable it (ARG=no) @<:@ARG=yes@:>@ - --with-boost-libdir=LIB_DIR - Force given directory for boost libraries. Note that - this will override library path detection, so use - this parameter only if default library detection - fails and you know exactly where your boost - libraries are located. - --with-boost-system@<:@=special-lib@:>@ - use the System library from boost - it is possible - to specify a certain library for the linker e.g. - --with-boost-system=boost_system-gcc-mt - --with-boost-filesystem@<:@=special-lib@:>@ - use the Filesystem library from boost - it is - possible to specify a certain library for the linker - e.g. --with-boost-filesystem=boost_filesystem-gcc-mt - --with-boost-program-options@<:@=special-lib@:>@ - use the program options library from boost - it is - possible to specify a certain library for the linker - e.g. - --with-boost-program-options=boost_program_options-gcc-mt-1_33_1 - --with-boost-thread@<:@=special-lib@:>@ - use the Thread library from boost - it is possible - to specify a certain library for the linker e.g. - --with-boost-thread=boost_thread-gcc-mt - --with-boost-chrono@<:@=special-lib@:>@ - use the Chrono library from boost - it is possible - to specify a certain library for the linker e.g. - --with-boost-chrono=boost_chrono-gcc-mt - --with-boost-unit-test-framework@<:@=special-lib@:>@ - use the Unit_Test_Framework library from boost - it - is possible to specify a certain library for the - linker e.g. - --with-boost-unit-test-framework=boost_unit_test_framework-gcc - --with-cli with CLI (default is yes) - --with-daemon with daemon (default is yes) - --with-gui with GUI (no|qt4|qt5|auto. default is auto, qt4 - tried first.) - --with-qt-incdir=INC_DIR - specify qt include path (overridden by pkgconfig) - --with-qt-libdir=LIB_DIR - specify qt lib path (overridden by pkgconfig) - --with-qt-plugindir=PLUGIN_DIR - specify qt plugin path (overridden by pkgconfig) - --with-qt-bindir=BIN_DIR - specify qt bin path - --with-qtdbus enable DBus support (default is yes if qt is enabled - and QtDBus is found) - -Some influential environment variables: - CXX C++ compiler command - CXXFLAGS C++ compiler flags - LDFLAGS linker flags, e.g. -L if you have libraries in a - nonstandard directory - LIBS libraries to pass to the linker, e.g. -l - CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if - you have headers in a nonstandard directory - CC C compiler command - CFLAGS C compiler flags - CPP C preprocessor - CXXCPP C++ preprocessor - OBJC Objective C compiler command - OBJCFLAGS Objective C compiler flags - OBJCXX Objective C++ compiler command - OBJCXXFLAGS Objective C++ compiler flags - PKG_CONFIG path to pkg-config utility - PKG_CONFIG_PATH - directories to add to pkg-config's search path - PKG_CONFIG_LIBDIR - path overriding pkg-config's built-in search path - SSL_CFLAGS C compiler flags for SSL, overriding pkg-config - SSL_LIBS linker flags for SSL, overriding pkg-config - CRYPTO_CFLAGS - C compiler flags for CRYPTO, overriding pkg-config - CRYPTO_LIBS linker flags for CRYPTO, overriding pkg-config - PROTOBUF_CFLAGS - C compiler flags for PROTOBUF, overriding pkg-config - PROTOBUF_LIBS - linker flags for PROTOBUF, overriding pkg-config - QR_CFLAGS C compiler flags for QR, overriding pkg-config - QR_LIBS linker flags for QR, overriding pkg-config - QT_CFLAGS C compiler flags for QT, overriding pkg-config - QT_LIBS linker flags for QT, overriding pkg-config - QT_TEST_CFLAGS - C compiler flags for QT_TEST, overriding pkg-config - QT_TEST_LIBS - linker flags for QT_TEST, overriding pkg-config - QT_DBUS_CFLAGS - C compiler flags for QT_DBUS, overriding pkg-config - QT_DBUS_LIBS - linker flags for QT_DBUS, overriding pkg-config - -Use these variables to override the choices made by `configure' or to help -it to find libraries and programs with nonstandard names/locations. - -Report bugs to . -_ACEOF -ac_status=$? -fi - -if test "$ac_init_help" = "recursive"; then - # If there are subdirs, report their specific --help. - for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d "$ac_dir" || - { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || - continue - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - cd "$ac_dir" || { ac_status=$?; continue; } - # Check for guested configure. - if test -f "$ac_srcdir/configure.gnu"; then - echo && - $SHELL "$ac_srcdir/configure.gnu" --help=recursive - elif test -f "$ac_srcdir/configure"; then - echo && - $SHELL "$ac_srcdir/configure" --help=recursive - else - $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 - fi || ac_status=$? - cd "$ac_pwd" || { ac_status=$?; break; } - done -fi - -test -n "$ac_init_help" && exit $ac_status -if $ac_init_version; then - cat <<\_ACEOF -Bitcoin Core configure 0.9.99 -generated by GNU Autoconf 2.69 - -Copyright (C) 2012 Free Software Foundation, Inc. -This configure script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it. -_ACEOF - exit -fi - -## ------------------------ ## -## Autoconf initialization. ## -## ------------------------ ## - -@%:@ ac_fn_cxx_try_compile LINENO -@%:@ ---------------------------- -@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_cxx_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_cxx_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_cxx_try_compile - -@%:@ ac_fn_c_try_compile LINENO -@%:@ -------------------------- -@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_c_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_c_try_compile - -@%:@ ac_fn_c_try_cpp LINENO -@%:@ ---------------------- -@%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_c_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } > conftest.i && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_c_try_cpp - -@%:@ ac_fn_cxx_try_cpp LINENO -@%:@ ------------------------ -@%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_cxx_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } > conftest.i && { - test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_cxx_try_cpp - -@%:@ ac_fn_objc_try_compile LINENO -@%:@ ----------------------------- -@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_objc_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_objc_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_objc_try_compile - -@%:@ ac_fn_objcxx_try_compile LINENO -@%:@ ------------------------------- -@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_objcxx_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_objcxx_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_objcxx_try_compile - -@%:@ ac_fn_cxx_try_link LINENO -@%:@ ------------------------- -@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_cxx_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_cxx_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - test -x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_cxx_try_link - -@%:@ ac_fn_cxx_try_run LINENO -@%:@ ------------------------ -@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. Assumes -@%:@ that executables *can* be run. -ac_fn_cxx_try_run () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then : - ac_retval=0 -else - $as_echo "$as_me: program exited with status $ac_status" >&5 - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=$ac_status -fi - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_cxx_try_run - -@%:@ ac_fn_cxx_check_header_compile LINENO HEADER VAR INCLUDES -@%:@ --------------------------------------------------------- -@%:@ Tests whether HEADER exists and can be compiled using the include files in -@%:@ INCLUDES, setting the cache variable VAR accordingly. -ac_fn_cxx_check_header_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -@%:@include <$2> -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} @%:@ ac_fn_cxx_check_header_compile - -@%:@ ac_fn_c_try_link LINENO -@%:@ ----------------------- -@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. -ac_fn_c_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - test -x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} @%:@ ac_fn_c_try_link - -@%:@ ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES -@%:@ --------------------------------------------------------- -@%:@ Tests whether HEADER exists, giving a warning if it cannot be compiled using -@%:@ the include files in INCLUDES and setting the cache variable VAR -@%:@ accordingly. -ac_fn_cxx_check_header_mongrel () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if eval \${$3+:} false; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -else - # Is the header compilable? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 -$as_echo_n "checking $2 usability... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -@%:@include <$2> -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_header_compiler=yes -else - ac_header_compiler=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 -$as_echo "$ac_header_compiler" >&6; } - -# Is the header present? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 -$as_echo_n "checking $2 presence... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include <$2> -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - ac_header_preproc=yes -else - ac_header_preproc=no -fi -rm -f conftest.err conftest.i conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 -$as_echo "$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #(( - yes:no: ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 -$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} - ;; - no:yes:* ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 -$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 -$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 -$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 -$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -( $as_echo "## ------------------------------- ## -## Report this to info@bitcoin.org ## -## ------------------------------- ##" - ) | sed "s/^/$as_me: WARNING: /" >&2 - ;; -esac - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - eval "$3=\$ac_header_compiler" -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} @%:@ ac_fn_cxx_check_header_mongrel -cat >config.log <<_ACEOF -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by Bitcoin Core $as_me 0.9.99, which was -generated by GNU Autoconf 2.69. Invocation command line was - - $ $0 $@ - -_ACEOF -exec 5>>config.log -{ -cat <<_ASUNAME -## --------- ## -## Platform. ## -## --------- ## - -hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` - -/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` -/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` -/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` - -_ASUNAME - -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - $as_echo "PATH: $as_dir" - done -IFS=$as_save_IFS - -} >&5 - -cat >&5 <<_ACEOF - - -## ----------- ## -## Core tests. ## -## ----------- ## - -_ACEOF - - -# Keep a trace of the command line. -# Strip out --no-create and --no-recursion so they do not pile up. -# Strip out --silent because we don't want to record it for future runs. -# Also quote any args containing shell meta-characters. -# Make two passes to allow for proper duplicate-argument suppression. -ac_configure_args= -ac_configure_args0= -ac_configure_args1= -ac_must_keep_next=false -for ac_pass in 1 2 -do - for ac_arg - do - case $ac_arg in - -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - continue ;; - *\'*) - ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - case $ac_pass in - 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; - 2) - as_fn_append ac_configure_args1 " '$ac_arg'" - if test $ac_must_keep_next = true; then - ac_must_keep_next=false # Got value, back to normal. - else - case $ac_arg in - *=* | --config-cache | -C | -disable-* | --disable-* \ - | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ - | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ - | -with-* | --with-* | -without-* | --without-* | --x) - case "$ac_configure_args0 " in - "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; - esac - ;; - -* ) ac_must_keep_next=true ;; - esac - fi - as_fn_append ac_configure_args " '$ac_arg'" - ;; - esac - done -done -{ ac_configure_args0=; unset ac_configure_args0;} -{ ac_configure_args1=; unset ac_configure_args1;} - -# When interrupted or exit'd, cleanup temporary files, and complete -# config.log. We remove comments because anyway the quotes in there -# would cause problems or look ugly. -# WARNING: Use '\'' to represent an apostrophe within the trap. -# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. -trap 'exit_status=$? - # Save into config.log some information that might help in debugging. - { - echo - - $as_echo "## ---------------- ## -## Cache variables. ## -## ---------------- ##" - echo - # The following way of writing the cache mishandles newlines in values, -( - for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - (set) 2>&1 | - case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - sed -n \ - "s/'\''/'\''\\\\'\'''\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" - ;; #( - *) - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) - echo - - $as_echo "## ----------------- ## -## Output variables. ## -## ----------------- ##" - echo - for ac_var in $ac_subst_vars - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - - if test -n "$ac_subst_files"; then - $as_echo "## ------------------- ## -## File substitutions. ## -## ------------------- ##" - echo - for ac_var in $ac_subst_files - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - fi - - if test -s confdefs.h; then - $as_echo "## ----------- ## -## confdefs.h. ## -## ----------- ##" - echo - cat confdefs.h - echo - fi - test "$ac_signal" != 0 && - $as_echo "$as_me: caught signal $ac_signal" - $as_echo "$as_me: exit $exit_status" - } >&5 - rm -f core *.core core.conftest.* && - rm -f -r conftest* confdefs* conf$$* $ac_clean_files && - exit $exit_status -' 0 -for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal -done -ac_signal=0 - -# confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -f -r conftest* confdefs.h - -$as_echo "/* confdefs.h */" > confdefs.h - -# Predefined preprocessor variables. - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF - -cat >>confdefs.h <<_ACEOF -@%:@define PACKAGE_URL "$PACKAGE_URL" -_ACEOF - - -# Let the site file select an alternate cache file if it wants to. -# Prefer an explicitly selected file to automatically selected ones. -ac_site_file1=NONE -ac_site_file2=NONE -if test -n "$CONFIG_SITE"; then - # We do not want a PATH search for config.site. - case $CONFIG_SITE in @%:@(( - -*) ac_site_file1=./$CONFIG_SITE;; - */*) ac_site_file1=$CONFIG_SITE;; - *) ac_site_file1=./$CONFIG_SITE;; - esac -elif test "x$prefix" != xNONE; then - ac_site_file1=$prefix/share/config.site - ac_site_file2=$prefix/etc/config.site -else - ac_site_file1=$ac_default_prefix/share/config.site - ac_site_file2=$ac_default_prefix/etc/config.site -fi -for ac_site_file in "$ac_site_file1" "$ac_site_file2" -do - test "x$ac_site_file" = xNONE && continue - if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 -$as_echo "$as_me: loading site script $ac_site_file" >&6;} - sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" \ - || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "failed to load site script $ac_site_file -See \`config.log' for more details" "$LINENO" 5; } - fi -done - -if test -r "$cache_file"; then - # Some versions of bash will fail to source /dev/null (special files - # actually), so we avoid doing that. DJGPP emulates it as a regular file. - if test /dev/null != "$cache_file" && test -f "$cache_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 -$as_echo "$as_me: loading cache $cache_file" >&6;} - case $cache_file in - [\\/]* | ?:[\\/]* ) . "$cache_file";; - *) . "./$cache_file";; - esac - fi -else - { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 -$as_echo "$as_me: creating cache $cache_file" >&6;} - >$cache_file -fi - -# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in $ac_precious_vars; do - eval ac_old_set=\$ac_cv_env_${ac_var}_set - eval ac_new_set=\$ac_env_${ac_var}_set - eval ac_old_val=\$ac_cv_env_${ac_var}_value - eval ac_new_val=\$ac_env_${ac_var}_value - case $ac_old_set,$ac_new_set in - set,) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,set) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,);; - *) - if test "x$ac_old_val" != "x$ac_new_val"; then - # differences in whitespace do not lead to failure. - ac_old_val_w=`echo x $ac_old_val` - ac_new_val_w=`echo x $ac_new_val` - if test "$ac_old_val_w" != "$ac_new_val_w"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 -$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - ac_cache_corrupted=: - else - { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 -$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} - eval $ac_var=\$ac_old_val - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 -$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 -$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} - fi;; - esac - # Pass precious variables to config.status. - if test "$ac_new_set" = set; then - case $ac_new_val in - *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; - *) ac_arg=$ac_var=$ac_new_val ;; - esac - case " $ac_configure_args " in - *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) as_fn_append ac_configure_args " '$ac_arg'" ;; - esac - fi -done -if $ac_cache_corrupted; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 -$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} - as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 -fi -## -------------------- ## -## Main body of script. ## -## -------------------- ## - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -ac_aux_dir= -for ac_dir in src/build-aux "$srcdir"/src/build-aux; do - if test -f "$ac_dir/install-sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install-sh -c" - break - elif test -f "$ac_dir/install.sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install.sh -c" - break - elif test -f "$ac_dir/shtool"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/shtool install -c" - break - fi -done -if test -z "$ac_aux_dir"; then - as_fn_error $? "cannot find install-sh, install.sh, or shtool in src/build-aux \"$srcdir\"/src/build-aux" "$LINENO" 5 -fi - -# These three variables are undocumented and unsupported, -# and are intended to be withdrawn in a future Autoconf release. -# They can cause serious problems if a builder's source tree is in a directory -# whose full name contains unusual characters. -ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. -ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. -ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. - - - -# Make sure we can run config.sub. -$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || - as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 -$as_echo_n "checking build system type... " >&6; } -if ${ac_cv_build+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_build_alias=$build_alias -test "x$ac_build_alias" = x && - ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` -test "x$ac_build_alias" = x && - as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 -ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 -$as_echo "$ac_cv_build" >&6; } -case $ac_cv_build in -*-*-*) ;; -*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; -esac -build=$ac_cv_build -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_build -shift -build_cpu=$1 -build_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -build_os=$* -IFS=$ac_save_IFS -case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 -$as_echo_n "checking host system type... " >&6; } -if ${ac_cv_host+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test "x$host_alias" = x; then - ac_cv_host=$ac_cv_build -else - ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 -$as_echo "$ac_cv_host" >&6; } -case $ac_cv_host in -*-*-*) ;; -*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; -esac -host=$ac_cv_host -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_host -shift -host_cpu=$1 -host_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -host_os=$* -IFS=$ac_save_IFS -case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac - - - - - - -# This m4 will only be used if a system copy cannot be found. This is helpful -# on systems where autotools are installed but the pkg-config macros are not in -# a default location. It is currently used for building on OSX where autotools -# are preinstalled but pkg-config comes from macports or homebrew. It should -# probably be removed when building on <= 10.6 is no longer supported. -# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -# serial 1 (pkg-config-0.24) -# -# Copyright © 2004 Scott James Remnant . -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program 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 -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# PKG_PROG_PKG_CONFIG([MIN-VERSION]) -# ---------------------------------- -# PKG_PROG_PKG_CONFIG - -# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# -# Check to see whether a particular set of modules exists. Similar -# to PKG_CHECK_MODULES(), but does not set variables or print errors. -# -# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -# only at the first occurence in configure.ac, so if the first place -# it's called might be skipped (such as if it is within an "if", you -# have to call PKG_CHECK_EXISTS manually -# -------------------------------------------------------------- - - -# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) -# --------------------------------------------- -# _PKG_CONFIG - -# _PKG_SHORT_ERRORS_SUPPORTED -# ----------------------------- -# _PKG_SHORT_ERRORS_SUPPORTED - - -# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], -# [ACTION-IF-NOT-FOUND]) -# -# -# Note that if there is a possibility the first call to -# PKG_CHECK_MODULES might not happen, you should be sure to include an -# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac -# -# -# -------------------------------------------------------------- -# PKG_CHECK_MODULES - - -# PKG_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable pkgconfigdir as the location where a module -# should install pkg-config .pc files. By default the directory is -# $libdir/pkgconfig, but the default can be changed by passing -# DIRECTORY. The user can override through the --with-pkgconfigdir -# parameter. - - -# PKG_NOARCH_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable noarch_pkgconfigdir as the location where a -# module should install arch-independent pkg-config .pc files. By -# default the directory is $datadir/pkgconfig, but the default can be -# changed by passing DIRECTORY. The user can override through the -# --with-noarch-pkgconfigdir parameter. - - -# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, -# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# ------------------------------------------- -# Retrieves the value of the pkg-config variable for the given module. -# PKG_CHECK_VAR - - -unset FAKETIME - -if test "x${CXXFLAGS+set}" = "xset"; then - CXXFLAGS_overridden=yes -else - CXXFLAGS_overridden=no -fi - - -am__api_version='1.11' - -# Find a good install program. We prefer a C program (faster), -# so one script is as good as another. But avoid the broken or -# incompatible versions: -# SysV /etc/install, /usr/sbin/install -# SunOS /usr/etc/install -# IRIX /sbin/install -# AIX /bin/install -# AmigaOS /C/install, which installs bootblocks on floppy discs -# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -# AFS /usr/afsws/bin/install, which mishandles nonexistent args -# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -# OS/2's system install, which has a completely different semantic -# ./install, which can be erroneously created by make from ./install.sh. -# Reject install programs that cannot install multiple files. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 -$as_echo_n "checking for a BSD-compatible install... " >&6; } -if test -z "$INSTALL"; then -if ${ac_cv_path_install+:} false; then : - $as_echo_n "(cached) " >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in @%:@(( - ./ | .// | /[cC]/* | \ - /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ - ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ - /usr/ucb/* ) ;; - *) - # OSF1 and SCO ODT 3.0 have their own names for install. - # Don't use installbsd from OSF since it installs stuff as root - # by default. - for ac_prog in ginstall scoinst install; do - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then - if test $ac_prog = install && - grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # AIX install. It has an incompatible calling convention. - : - elif test $ac_prog = install && - grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # program-specific install script used by HP pwplus--don't use. - : - else - rm -rf conftest.one conftest.two conftest.dir - echo one > conftest.one - echo two > conftest.two - mkdir conftest.dir - if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && - test -s conftest.one && test -s conftest.two && - test -s conftest.dir/conftest.one && - test -s conftest.dir/conftest.two - then - ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" - break 3 - fi - fi - fi - done - done - ;; -esac - - done -IFS=$as_save_IFS - -rm -rf conftest.one conftest.two conftest.dir - -fi - if test "${ac_cv_path_install+set}" = set; then - INSTALL=$ac_cv_path_install - else - # As a last resort, use the slow shell script. Don't cache a - # value for INSTALL within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - INSTALL=$ac_install_sh - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 -$as_echo "$INSTALL" >&6; } - -# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -# It thinks the first close brace ends the variable substitution. -test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' - -test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' - -test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 -$as_echo_n "checking whether build environment is sane... " >&6; } -# Just in case -sleep 1 -echo timestamp > conftest.file -# Reject unsafe characters in $srcdir or the absolute working directory -# name. Accept space and tab only in the latter. -am_lf=' -' -case `pwd` in - *[\\\"\#\$\&\'\`$am_lf]*) - as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; -esac -case $srcdir in - *[\\\"\#\$\&\'\`$am_lf\ \ ]*) - as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; -esac - -# Do `set' in a subshell so we don't clobber the current shell's -# arguments. Must try -L first in case configure is actually a -# symlink; some systems play weird games with the mod time of symlinks -# (eg FreeBSD returns the mod time of the symlink's containing -# directory). -if ( - set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` - if test "$*" = "X"; then - # -L didn't work. - set X `ls -t "$srcdir/configure" conftest.file` - fi - rm -f conftest.file - if test "$*" != "X $srcdir/configure conftest.file" \ - && test "$*" != "X conftest.file $srcdir/configure"; then - - # If neither matched, then we have a broken ls. This can happen - # if, for instance, CONFIG_SHELL is bash and it inherits a - # broken ls alias from the environment. This has actually - # happened. Such a system could not be considered "sane". - as_fn_error $? "ls -t appears to fail. Make sure there is not a broken -alias in your environment" "$LINENO" 5 - fi - - test "$2" = conftest.file - ) -then - # Ok. - : -else - as_fn_error $? "newly created file is older than distributed files! -Check your system clock" "$LINENO" 5 -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -test "$program_prefix" != NONE && - program_transform_name="s&^&$program_prefix&;$program_transform_name" -# Use a double $ so make ignores it. -test "$program_suffix" != NONE && - program_transform_name="s&\$&$program_suffix&;$program_transform_name" -# Double any \ or $. -# By default was `s,x,x', remove it if useless. -ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' -program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` - -# expand $ac_aux_dir to an absolute path -am_aux_dir=`cd $ac_aux_dir && pwd` - -if test x"${MISSING+set}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; - *) - MISSING="\${SHELL} $am_aux_dir/missing" ;; - esac -fi -# Use eval to expand $SHELL -if eval "$MISSING --run true"; then - am_missing_run="$MISSING --run " -else - am_missing_run= - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 -$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} -fi - -if test x"${install_sh}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; - *) - install_sh="\${SHELL} $am_aux_dir/install-sh" - esac -fi - -# Installed binaries are usually stripped using `strip' when the user -# run `make install-strip'. However `strip' might not be the right -# tool to use in cross-compilation environments, therefore Automake -# will honor the `STRIP' environment variable to overrule this program. -if test "$cross_compiling" != no; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -set dummy ${ac_tool_prefix}strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$STRIP"; then - ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_STRIP="${ac_tool_prefix}strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -STRIP=$ac_cv_prog_STRIP -if test -n "$STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -$as_echo "$STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_STRIP"; then - ac_ct_STRIP=$STRIP - # Extract the first word of "strip", so it can be a program name with args. -set dummy strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_STRIP"; then - ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_STRIP="strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -if test -n "$ac_ct_STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -$as_echo "$ac_ct_STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_STRIP" = x; then - STRIP=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - STRIP=$ac_ct_STRIP - fi -else - STRIP="$ac_cv_prog_STRIP" -fi - -fi -INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 -$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } -if test -z "$MKDIR_P"; then - if ${ac_cv_path_mkdir+:} false; then : - $as_echo_n "(cached) " >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in mkdir gmkdir; do - for ac_exec_ext in '' $ac_executable_extensions; do - as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue - case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( - 'mkdir (GNU coreutils) '* | \ - 'mkdir (coreutils) '* | \ - 'mkdir (fileutils) '4.1*) - ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext - break 3;; - esac - done - done - done -IFS=$as_save_IFS - -fi - - test -d ./--version && rmdir ./--version - if test "${ac_cv_path_mkdir+set}" = set; then - MKDIR_P="$ac_cv_path_mkdir -p" - else - # As a last resort, use the slow shell script. Don't cache a - # value for MKDIR_P within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - MKDIR_P="$ac_install_sh -d" - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 -$as_echo "$MKDIR_P" >&6; } - -mkdir_p="$MKDIR_P" -case $mkdir_p in - [\\/$]* | ?:[\\/]*) ;; - */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; -esac - -for ac_prog in gawk mawk nawk awk -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AWK+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$AWK"; then - ac_cv_prog_AWK="$AWK" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_AWK="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -AWK=$ac_cv_prog_AWK -if test -n "$AWK"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 -$as_echo "$AWK" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$AWK" && break -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 -$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } -set x ${MAKE-make} -ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat >conftest.make <<\_ACEOF -SHELL = /bin/sh -all: - @echo '@@@%%%=$(MAKE)=@@@%%%' -_ACEOF -# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. -case `${MAKE-make} -f conftest.make 2>/dev/null` in - *@@@%%%=?*=@@@%%%*) - eval ac_cv_prog_make_${ac_make}_set=yes;; - *) - eval ac_cv_prog_make_${ac_make}_set=no;; -esac -rm -f conftest.make -fi -if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - SET_MAKE= -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - SET_MAKE="MAKE=${MAKE-make}" -fi - -rm -rf .tst 2>/dev/null -mkdir .tst 2>/dev/null -if test -d .tst; then - am__leading_dot=. -else - am__leading_dot=_ -fi -rmdir .tst 2>/dev/null - -if test "`cd $srcdir && pwd`" != "`pwd`"; then - # Use -I$(srcdir) only when $(srcdir) != ., so that make's output - # is not polluted with repeated "-I." - am__isrc=' -I$(srcdir)' - # test to see if srcdir already configured - if test -f $srcdir/config.status; then - as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 - fi -fi - -# test whether we have cygpath -if test -z "$CYGPATH_W"; then - if (cygpath --version) >/dev/null 2>/dev/null; then - CYGPATH_W='cygpath -w' - else - CYGPATH_W=echo - fi -fi - - -# Define the identity of the package. - PACKAGE='bitcoin' - VERSION='0.9.99' - - -# Some tools Automake needs. - -ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} - - -AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} - - -AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} - - -AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} - - -MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} - -# We need awk for the "check" target. The system "awk" is bad on -# some platforms. -# Always define AMTAR for backward compatibility. Yes, it's still used -# in the wild :-( We should find a proper way to deprecate it ... -AMTAR='$${TAR-tar}' - -am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 -$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } - @%:@ Check whether --enable-maintainer-mode was given. -if test "${enable_maintainer_mode+set}" = set; then : - enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval -else - USE_MAINTAINER_MODE=yes -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 -$as_echo "$USE_MAINTAINER_MODE" >&6; } - if test $USE_MAINTAINER_MODE = yes; then - MAINTAINER_MODE_TRUE= - MAINTAINER_MODE_FALSE='#' -else - MAINTAINER_MODE_TRUE='#' - MAINTAINER_MODE_FALSE= -fi - - MAINT=$MAINTAINER_MODE_TRUE - - - -@%:@ Check whether --enable-silent-rules was given. -if test "${enable_silent_rules+set}" = set; then : - enableval=$enable_silent_rules; -fi - -case $enable_silent_rules in -yes) AM_DEFAULT_VERBOSITY=0;; -no) AM_DEFAULT_VERBOSITY=1;; -*) AM_DEFAULT_VERBOSITY=0;; -esac -am_make=${MAKE-make} -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 -$as_echo_n "checking whether $am_make supports nested variables... " >&6; } -if ${am_cv_make_support_nested_variables+:} false; then : - $as_echo_n "(cached) " >&6 -else - if $as_echo 'TRUE=$(BAR$(V)) -BAR0=false -BAR1=true -V=1 -am__doit: - @$(TRUE) -.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then - am_cv_make_support_nested_variables=yes -else - am_cv_make_support_nested_variables=no -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 -$as_echo "$am_cv_make_support_nested_variables" >&6; } -if test $am_cv_make_support_nested_variables = yes; then - AM_V='$(V)' - AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -else - AM_V=$AM_DEFAULT_VERBOSITY - AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY -fi -AM_BACKSLASH='\' - - -# Enable wallet -@%:@ Check whether --enable-wallet was given. -if test "${enable_wallet+set}" = set; then : - enableval=$enable_wallet; enable_wallet=$enableval -else - enable_wallet=yes -fi - - - -@%:@ Check whether --with-miniupnpc was given. -if test "${with_miniupnpc+set}" = set; then : - withval=$with_miniupnpc; use_upnp=$withval -else - use_upnp=auto -fi - - -@%:@ Check whether --enable-upnp-default was given. -if test "${enable_upnp_default+set}" = set; then : - enableval=$enable_upnp_default; use_upnp_default=$enableval -else - use_upnp_default=no -fi - - -@%:@ Check whether --enable-tests was given. -if test "${enable_tests+set}" = set; then : - enableval=$enable_tests; use_tests=$enableval -else - use_tests=yes -fi - - - -@%:@ Check whether --with-comparison-tool was given. -if test "${with_comparison_tool+set}" = set; then : - withval=$with_comparison_tool; use_comparison_tool=$withval -else - use_comparison_tool=no -fi - - -@%:@ Check whether --enable-comparison-tool-reorg-tests was given. -if test "${enable_comparison_tool_reorg_tests+set}" = set; then : - enableval=$enable_comparison_tool_reorg_tests; use_comparison_tool_reorg_tests=$enableval -else - use_comparison_tool_reorg_tests=no -fi - - - -@%:@ Check whether --with-qrencode was given. -if test "${with_qrencode+set}" = set; then : - withval=$with_qrencode; use_qr=$withval -else - use_qr=auto -fi - - -@%:@ Check whether --enable-hardening was given. -if test "${enable_hardening+set}" = set; then : - enableval=$enable_hardening; use_hardening=$enableval -else - use_hardening=yes -fi - - -@%:@ Check whether --enable-ccache was given. -if test "${enable_ccache+set}" = set; then : - enableval=$enable_ccache; use_ccache=$enableval -else - use_ccache=auto -fi - - -@%:@ Check whether --enable-lcov was given. -if test "${enable_lcov+set}" = set; then : - enableval=$enable_lcov; use_lcov=yes -else - use_lcov=no -fi - - -@%:@ Check whether --enable-glibc-back-compat was given. -if test "${enable_glibc_back_compat+set}" = set; then : - enableval=$enable_glibc_back_compat; use_glibc_compat=$enableval -else - use_glibc_compat=no -fi - - - -@%:@ Check whether --with-protoc-bindir was given. -if test "${with_protoc_bindir+set}" = set; then : - withval=$with_protoc_bindir; protoc_bin_path=$withval -fi - - - - -ac_config_headers="$ac_config_headers src/bitcoin-config.h" - - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -if test -z "$CXX"; then - if test -n "$CCC"; then - CXX=$CCC - else - if test -n "$ac_tool_prefix"; then - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CXX"; then - ac_cv_prog_CXX="$CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CXX=$ac_cv_prog_CXX -if test -n "$CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 -$as_echo "$CXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CXX" && break - done -fi -if test -z "$CXX"; then - ac_ct_CXX=$CXX - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CXX"; then - ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CXX="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -if test -n "$ac_ct_CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 -$as_echo "$ac_ct_CXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CXX" && break -done - - if test "x$ac_ct_CXX" = x; then - CXX="g++" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CXX=$ac_ct_CXX - fi -fi - - fi -fi -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" -# Try to create an executable without -o first, disregard a.out. -# It will help us diagnose broken compilers, and finding out an intuition -# of exeext. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C++ compiler works" >&5 -$as_echo_n "checking whether the C++ compiler works... " >&6; } -ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` - -# The possible output files: -ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" - -ac_rmfiles= -for ac_file in $ac_files -do - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - * ) ac_rmfiles="$ac_rmfiles $ac_file";; - esac -done -rm -f $ac_rmfiles - -if { { ac_try="$ac_link_default" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link_default") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. -# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' -# in a Makefile. We should not override ac_cv_exeext if it was cached, -# so that the user can short-circuit this test for compilers unknown to -# Autoconf. -for ac_file in $ac_files '' -do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) - ;; - [ab].out ) - # We found the default executable, but exeext='' is most - # certainly right. - break;; - *.* ) - if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; - then :; else - ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - fi - # We set ac_cv_exeext here because the later test for it is not - # safe: cross compilers may not add the suffix if given an `-o' - # argument, so we may need to know it at that point already. - # Even if this section looks crufty: it has the advantage of - # actually working. - break;; - * ) - break;; - esac -done -test "$ac_cv_exeext" = no && ac_cv_exeext= - -else - ac_file='' -fi -if test -z "$ac_file"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -$as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "C++ compiler cannot create executables -See \`config.log' for more details" "$LINENO" 5; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler default output file name" >&5 -$as_echo_n "checking for C++ compiler default output file name... " >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 -$as_echo "$ac_file" >&6; } -ac_exeext=$ac_cv_exeext - -rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out -ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 -$as_echo_n "checking for suffix of executables... " >&6; } -if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # If both `conftest.exe' and `conftest' are `present' (well, observable) -# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -# work properly (i.e., refer to `conftest.exe'), while it won't with -# `rm'. -for ac_file in conftest.exe conftest conftest.*; do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - break;; - * ) break;; - esac -done -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details" "$LINENO" 5; } -fi -rm -f conftest conftest$ac_cv_exeext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 -$as_echo "$ac_cv_exeext" >&6; } - -rm -f conftest.$ac_ext -EXEEXT=$ac_cv_exeext -ac_exeext=$EXEEXT -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -int -main () -{ -FILE *f = fopen ("conftest.out", "w"); - return ferror (f) || fclose (f) != 0; - - ; - return 0; -} -_ACEOF -ac_clean_files="$ac_clean_files conftest.out" -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 -$as_echo_n "checking whether we are cross compiling... " >&6; } -if test "$cross_compiling" != yes; then - { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - if { ac_try='./conftest$ac_cv_exeext' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot run C++ compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details" "$LINENO" 5; } - fi - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 -$as_echo "$cross_compiling" >&6; } - -rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out -ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 -$as_echo_n "checking for suffix of object files... " >&6; } -if ${ac_cv_objext+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.o conftest.obj -if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - for ac_file in conftest.o conftest.obj conftest.*; do - test -f "$ac_file" || continue; - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -done -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot compute suffix of object files: cannot compile -See \`config.log' for more details" "$LINENO" 5; } -fi -rm -f conftest.$ac_cv_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 -$as_echo "$ac_cv_objext" >&6; } -OBJEXT=$ac_cv_objext -ac_objext=$OBJEXT -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 -$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } -if ${ac_cv_cxx_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_cxx_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 -$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GXX=yes -else - GXX= -fi -ac_test_CXXFLAGS=${CXXFLAGS+set} -ac_save_CXXFLAGS=$CXXFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 -$as_echo_n "checking whether $CXX accepts -g... " >&6; } -if ${ac_cv_prog_cxx_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_cxx_werror_flag=$ac_cxx_werror_flag - ac_cxx_werror_flag=yes - ac_cv_prog_cxx_g=no - CXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_prog_cxx_g=yes -else - CXXFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - -else - ac_cxx_werror_flag=$ac_save_cxx_werror_flag - CXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_prog_cxx_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_cxx_werror_flag=$ac_save_cxx_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 -$as_echo "$ac_cv_prog_cxx_g" >&6; } -if test "$ac_test_CXXFLAGS" = set; then - CXXFLAGS=$ac_save_CXXFLAGS -elif test $ac_cv_prog_cxx_g = yes; then - if test "$GXX" = yes; then - CXXFLAGS="-g -O2" - else - CXXFLAGS="-g" - fi -else - if test "$GXX" = yes; then - CXXFLAGS="-O2" - else - CXXFLAGS= - fi -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -DEPDIR="${am__leading_dot}deps" - -ac_config_commands="$ac_config_commands depfiles" - - -am_make=${MAKE-make} -cat > confinc << 'END' -am__doit: - @echo this is the am__doit target -.PHONY: am__doit -END -# If we don't find an include directive, just comment out the code. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 -$as_echo_n "checking for style of include used by $am_make... " >&6; } -am__include="#" -am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# Ignore all kinds of additional output from `make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD - ;; - esac -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 -$as_echo "$_am_result" >&6; } -rm -f confinc confmf - -@%:@ Check whether --enable-dependency-tracking was given. -if test "${enable_dependency_tracking+set}" = set; then : - enableval=$enable_dependency_tracking; -fi - -if test "x$enable_dependency_tracking" != xno; then - am_depcomp="$ac_aux_dir/depcomp" - AMDEPBACKSLASH='\' - am__nodep='_no' -fi - if test "x$enable_dependency_tracking" != xno; then - AMDEP_TRUE= - AMDEP_FALSE='#' -else - AMDEP_TRUE='#' - AMDEP_FALSE= -fi - - - -depcc="$CXX" am_compiler_list= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -$as_echo_n "checking dependency style of $depcc... " >&6; } -if ${am_cv_CXX_dependencies_compiler_type+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - rm -rf conftest.dir - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_CXX_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` - fi - am__universal=false - case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac - - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. Also, some Intel - # versions had trouble with output in subdirs - am__obj=sub/conftest.${OBJEXT-o} - am__minus_obj="-o $am__obj" - case $depmode in - gcc) - # This depmode causes a compiler race in universal mode. - test "$am__universal" = false || continue - ;; - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - msvc7 | msvc7msys | msvisualcpp | msvcmsys) - # This compiler won't grok `-c -o', but also, the minuso test has - # not run yet. These depmodes are late enough in the game, and - # so weak that their functioning should not be impacted. - am__obj=conftest.${OBJEXT-o} - am__minus_obj= - ;; - none) break ;; - esac - if depmode=$depmode \ - source=sub/conftest.c object=$am__obj \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep $am__obj sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_CXX_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_CXX_dependencies_compiler_type=none -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 -$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } -CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type - - if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then - am__fastdepCXX_TRUE= - am__fastdepCXX_FALSE='#' -else - am__fastdepCXX_TRUE='#' - am__fastdepCXX_FALSE= -fi - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - fi -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $@%:@ != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl.exe - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl.exe -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CC" && break -done - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -fi - -fi - - -test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "no acceptable C compiler found in \$PATH -See \`config.log' for more details" "$LINENO" 5; } - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 -$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if ${ac_cv_c_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 -$as_echo "$ac_cv_c_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GCC=yes -else - GCC= -fi -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 -$as_echo_n "checking whether $CC accepts -g... " >&6; } -if ${ac_cv_prog_cc_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_c_werror_flag=$ac_c_werror_flag - ac_c_werror_flag=yes - ac_cv_prog_cc_g=no - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -else - CFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - -else - ac_c_werror_flag=$ac_save_c_werror_flag - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_c_werror_flag=$ac_save_c_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 -$as_echo "$ac_cv_prog_cc_g" >&6; } -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 -$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if ${ac_cv_prog_cc_c89+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_prog_cc_c89=no -ac_save_CC=$CC -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -struct stat; -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters - inside strings and character constants. */ -#define FOO(x) 'x' -int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ - -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_c89=$ac_arg -fi -rm -f core conftest.err conftest.$ac_objext - test "x$ac_cv_prog_cc_c89" != "xno" && break -done -rm -f conftest.$ac_ext -CC=$ac_save_CC - -fi -# AC_CACHE_VAL -case "x$ac_cv_prog_cc_c89" in - x) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 -$as_echo "none needed" >&6; } ;; - xno) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 -$as_echo "unsupported" >&6; } ;; - *) - CC="$CC $ac_cv_prog_cc_c89" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 -$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; -esac -if test "x$ac_cv_prog_cc_c89" != xno; then : - -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -depcc="$CC" am_compiler_list= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -$as_echo_n "checking dependency style of $depcc... " >&6; } -if ${am_cv_CC_dependencies_compiler_type+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - rm -rf conftest.dir - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_CC_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` - fi - am__universal=false - case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac - - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. Also, some Intel - # versions had trouble with output in subdirs - am__obj=sub/conftest.${OBJEXT-o} - am__minus_obj="-o $am__obj" - case $depmode in - gcc) - # This depmode causes a compiler race in universal mode. - test "$am__universal" = false || continue - ;; - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - msvc7 | msvc7msys | msvisualcpp | msvcmsys) - # This compiler won't grok `-c -o', but also, the minuso test has - # not run yet. These depmodes are late enough in the game, and - # so weak that their functioning should not be impacted. - am__obj=conftest.${OBJEXT-o} - am__minus_obj= - ;; - none) break ;; - esac - if depmode=$depmode \ - source=sub/conftest.c object=$am__obj \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep $am__obj sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_CC_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_CC_dependencies_compiler_type=none -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 -$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } -CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type - - if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then - am__fastdepCC_TRUE= - am__fastdepCC_FALSE='#' -else - am__fastdepCC_TRUE='#' - am__fastdepCC_FALSE= -fi - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 -$as_echo_n "checking how to run the C preprocessor... " >&6; } -# On Suns, sometimes $CPP names a directory. -if test -n "$CPP" && test -d "$CPP"; then - CPP= -fi -if test -z "$CPP"; then - if ${ac_cv_prog_CPP+:} false; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because CPP needs to be expanded - for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" - do - ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@ifdef __STDC__ -@%:@ include -@%:@else -@%:@ include -@%:@endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break -fi - - done - ac_cv_prog_CPP=$CPP - -fi - CPP=$ac_cv_prog_CPP -else - ac_cv_prog_CPP=$CPP -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 -$as_echo "$CPP" >&6; } -ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@ifdef __STDC__ -@%:@ include -@%:@else -@%:@ include -@%:@endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 -$as_echo_n "checking how to run the C++ preprocessor... " >&6; } -if test -z "$CXXCPP"; then - if ${ac_cv_prog_CXXCPP+:} false; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because CXXCPP needs to be expanded - for CXXCPP in "$CXX -E" "/lib/cpp" - do - ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@ifdef __STDC__ -@%:@ include -@%:@else -@%:@ include -@%:@endif - Syntax error -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break -fi - - done - ac_cv_prog_CXXCPP=$CXXCPP - -fi - CXXCPP=$ac_cv_prog_CXXCPP -else - ac_cv_prog_CXXCPP=$CXXCPP -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 -$as_echo "$CXXCPP" >&6; } -ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@ifdef __STDC__ -@%:@ include -@%:@else -@%:@ include -@%:@endif - Syntax error -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -ac_ext=m -ac_cpp='$OBJCPP $CPPFLAGS' -ac_compile='$OBJC -c $OBJCFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$OBJC -o conftest$ac_exeext $OBJCFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_objc_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in gcc objcc objc cc CC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_OBJC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$OBJC"; then - ac_cv_prog_OBJC="$OBJC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_OBJC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -OBJC=$ac_cv_prog_OBJC -if test -n "$OBJC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJC" >&5 -$as_echo "$OBJC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$OBJC" && break - done -fi -if test -z "$OBJC"; then - ac_ct_OBJC=$OBJC - for ac_prog in gcc objcc objc cc CC -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_OBJC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_OBJC"; then - ac_cv_prog_ac_ct_OBJC="$ac_ct_OBJC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_OBJC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_OBJC=$ac_cv_prog_ac_ct_OBJC -if test -n "$ac_ct_OBJC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJC" >&5 -$as_echo "$ac_ct_OBJC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_OBJC" && break -done - - if test "x$ac_ct_OBJC" = x; then - OBJC="gcc" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OBJC=$ac_ct_OBJC - fi -fi - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for Objective C compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Objective C compiler" >&5 -$as_echo_n "checking whether we are using the GNU Objective C compiler... " >&6; } -if ${ac_cv_objc_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_objc_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objc_compiler_gnu" >&5 -$as_echo "$ac_cv_objc_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GOBJC=yes -else - GOBJC= -fi -ac_test_OBJCFLAGS=${OBJCFLAGS+set} -ac_save_OBJCFLAGS=$OBJCFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $OBJC accepts -g" >&5 -$as_echo_n "checking whether $OBJC accepts -g... " >&6; } -if ${ac_cv_prog_objc_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_objc_werror_flag=$ac_objc_werror_flag - ac_objc_werror_flag=yes - ac_cv_prog_objc_g=no - OBJCFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : - ac_cv_prog_objc_g=yes -else - OBJCFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : - -else - ac_objc_werror_flag=$ac_save_objc_werror_flag - OBJCFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : - ac_cv_prog_objc_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_objc_werror_flag=$ac_save_objc_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_objc_g" >&5 -$as_echo "$ac_cv_prog_objc_g" >&6; } -if test "$ac_test_OBJCFLAGS" = set; then - OBJCFLAGS=$ac_save_OBJCFLAGS -elif test $ac_cv_prog_objc_g = yes; then - if test "$GOBJC" = yes; then - OBJCFLAGS="-g -O2" - else - OBJCFLAGS="-g" - fi -else - if test "$GOBJC" = yes; then - OBJCFLAGS="-O2" - else - OBJCFLAGS= - fi -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -depcc="$OBJC" am_compiler_list='gcc3 gcc' - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -$as_echo_n "checking dependency style of $depcc... " >&6; } -if ${am_cv_OBJC_dependencies_compiler_type+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - rm -rf conftest.dir - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_OBJC_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` - fi - am__universal=false - - - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. Also, some Intel - # versions had trouble with output in subdirs - am__obj=sub/conftest.${OBJEXT-o} - am__minus_obj="-o $am__obj" - case $depmode in - gcc) - # This depmode causes a compiler race in universal mode. - test "$am__universal" = false || continue - ;; - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - msvc7 | msvc7msys | msvisualcpp | msvcmsys) - # This compiler won't grok `-c -o', but also, the minuso test has - # not run yet. These depmodes are late enough in the game, and - # so weak that their functioning should not be impacted. - am__obj=conftest.${OBJEXT-o} - am__minus_obj= - ;; - none) break ;; - esac - if depmode=$depmode \ - source=sub/conftest.c object=$am__obj \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep $am__obj sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_OBJC_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_OBJC_dependencies_compiler_type=none -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_OBJC_dependencies_compiler_type" >&5 -$as_echo "$am_cv_OBJC_dependencies_compiler_type" >&6; } -OBJCDEPMODE=depmode=$am_cv_OBJC_dependencies_compiler_type - - if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_OBJC_dependencies_compiler_type" = gcc3; then - am__fastdepOBJC_TRUE= - am__fastdepOBJC_FALSE='#' -else - am__fastdepOBJC_TRUE='#' - am__fastdepOBJC_FALSE= -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 -$as_echo_n "checking whether ln -s works... " >&6; } -LN_S=$as_ln_s -if test "$LN_S" = "ln -s"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 -$as_echo "no, using $LN_S" >&6; } -fi - -ac_ext=mm -ac_cpp='$OBJCXXCPP $CPPFLAGS' -ac_compile='$OBJCXX -c $OBJCXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$OBJCXX -o conftest$ac_exeext $OBJCXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_objcxx_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in g++ objc++ objcxx c++ CXX - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_OBJCXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$OBJCXX"; then - ac_cv_prog_OBJCXX="$OBJCXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_OBJCXX="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -OBJCXX=$ac_cv_prog_OBJCXX -if test -n "$OBJCXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJCXX" >&5 -$as_echo "$OBJCXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$OBJCXX" && break - done -fi -if test -z "$OBJCXX"; then - ac_ct_OBJCXX=$OBJCXX - for ac_prog in g++ objc++ objcxx c++ CXX -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_OBJCXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_OBJCXX"; then - ac_cv_prog_ac_ct_OBJCXX="$ac_ct_OBJCXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_OBJCXX="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_OBJCXX=$ac_cv_prog_ac_ct_OBJCXX -if test -n "$ac_ct_OBJCXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJCXX" >&5 -$as_echo "$ac_ct_OBJCXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_OBJCXX" && break -done - - if test "x$ac_ct_OBJCXX" = x; then - OBJCXX="g++" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OBJCXX=$ac_ct_OBJCXX - fi -fi - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for Objective C++ compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Objective C++ compiler" >&5 -$as_echo_n "checking whether we are using the GNU Objective C++ compiler... " >&6; } -if ${ac_cv_objcxx_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_objcxx_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_objcxx_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objcxx_compiler_gnu" >&5 -$as_echo "$ac_cv_objcxx_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GOBJCXX=yes -else - GOBJCXX= -fi -ac_test_OBJCXXFLAGS=${OBJCXXFLAGS+set} -ac_save_OBJCXXFLAGS=$OBJCXXFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $OBJCXX accepts -g" >&5 -$as_echo_n "checking whether $OBJCXX accepts -g... " >&6; } -if ${ac_cv_prog_objcxx_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_objcxx_werror_flag=$ac_objcxx_werror_flag - ac_objcxx_werror_flag=yes - ac_cv_prog_objcxx_g=no - OBJCXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_objcxx_try_compile "$LINENO"; then : - ac_cv_prog_objcxx_g=yes -else - OBJCXXFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_objcxx_try_compile "$LINENO"; then : - -else - ac_objcxx_werror_flag=$ac_save_objcxx_werror_flag - OBJCXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_objcxx_try_compile "$LINENO"; then : - ac_cv_prog_objcxx_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_objcxx_werror_flag=$ac_save_objcx_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_objcxx_g" >&5 -$as_echo "$ac_cv_prog_objcxx_g" >&6; } -if test "$ac_test_OBJCXXFLAGS" = set; then - OBJCXXFLAGS=$ac_save_OBJCXXFLAGS -elif test $ac_cv_prog_objcxx_g = yes; then - if test "$GOBJCXX" = yes; then - OBJCXXFLAGS="-g -O2" - else - OBJCXXFLAGS="-g" - fi -else - if test "$GOBJCXX" = yes; then - OBJCXXFLAGS="-O2" - else - OBJCXXFLAGS= - fi -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 -$as_echo_n "checking for a sed that does not truncate output... " >&6; } -if ${ac_cv_path_SED+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ - for ac_i in 1 2 3 4 5 6 7; do - ac_script="$ac_script$as_nl$ac_script" - done - echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed - { ac_script=; unset ac_script;} - if test -z "$SED"; then - ac_path_SED_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in sed gsed; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" - as_fn_executable_p "$ac_path_SED" || continue -# Check for GNU ac_path_SED and select it if it is found. - # Check for GNU $ac_path_SED -case `"$ac_path_SED" --version 2>&1` in -*GNU*) - ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo '' >> "conftest.nl" - "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_SED_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_SED="$ac_path_SED" - ac_path_SED_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_SED_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_SED"; then - as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 - fi -else - ac_cv_path_SED=$SED -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 -$as_echo "$ac_cv_path_SED" >&6; } - SED="$ac_cv_path_SED" - rm -f conftest.sed - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. -set dummy ${ac_tool_prefix}ar; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_AR+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $AR in - [\\/]* | ?:[\\/]*) - ac_cv_path_AR="$AR" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_AR="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -AR=$ac_cv_path_AR -if test -n "$AR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 -$as_echo "$AR" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_AR"; then - ac_pt_AR=$AR - # Extract the first word of "ar", so it can be a program name with args. -set dummy ar; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_AR+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_AR in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_AR="$ac_pt_AR" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_AR="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_AR=$ac_cv_path_ac_pt_AR -if test -n "$ac_pt_AR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_AR" >&5 -$as_echo "$ac_pt_AR" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_AR" = x; then - AR="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - AR=$ac_pt_AR - fi -else - AR="$ac_cv_path_AR" -fi - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. -set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $RANLIB in - [\\/]* | ?:[\\/]*) - ac_cv_path_RANLIB="$RANLIB" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_RANLIB="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -RANLIB=$ac_cv_path_RANLIB -if test -n "$RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 -$as_echo "$RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_RANLIB"; then - ac_pt_RANLIB=$RANLIB - # Extract the first word of "ranlib", so it can be a program name with args. -set dummy ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_RANLIB in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_RANLIB="$ac_pt_RANLIB" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_RANLIB="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_RANLIB=$ac_cv_path_ac_pt_RANLIB -if test -n "$ac_pt_RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_RANLIB" >&5 -$as_echo "$ac_pt_RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_RANLIB" = x; then - RANLIB="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - RANLIB=$ac_pt_RANLIB - fi -else - RANLIB="$ac_cv_path_RANLIB" -fi - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -set dummy ${ac_tool_prefix}strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $STRIP in - [\\/]* | ?:[\\/]*) - ac_cv_path_STRIP="$STRIP" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_STRIP="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -STRIP=$ac_cv_path_STRIP -if test -n "$STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -$as_echo "$STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_STRIP"; then - ac_pt_STRIP=$STRIP - # Extract the first word of "strip", so it can be a program name with args. -set dummy strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_STRIP in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_STRIP="$ac_pt_STRIP" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_STRIP="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_STRIP=$ac_cv_path_ac_pt_STRIP -if test -n "$ac_pt_STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_STRIP" >&5 -$as_echo "$ac_pt_STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_STRIP" = x; then - STRIP="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - STRIP=$ac_pt_STRIP - fi -else - STRIP="$ac_cv_path_STRIP" -fi - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcov", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcov; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GCOV+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GCOV in - [\\/]* | ?:[\\/]*) - ac_cv_path_GCOV="$GCOV" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GCOV="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -GCOV=$ac_cv_path_GCOV -if test -n "$GCOV"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GCOV" >&5 -$as_echo "$GCOV" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_GCOV"; then - ac_pt_GCOV=$GCOV - # Extract the first word of "gcov", so it can be a program name with args. -set dummy gcov; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_GCOV+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_GCOV in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_GCOV="$ac_pt_GCOV" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_GCOV="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_GCOV=$ac_cv_path_ac_pt_GCOV -if test -n "$ac_pt_GCOV"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_GCOV" >&5 -$as_echo "$ac_pt_GCOV" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_GCOV" = x; then - GCOV="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - GCOV=$ac_pt_GCOV - fi -else - GCOV="$ac_cv_path_GCOV" -fi - -# Extract the first word of "lcov", so it can be a program name with args. -set dummy lcov; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_LCOV+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $LCOV in - [\\/]* | ?:[\\/]*) - ac_cv_path_LCOV="$LCOV" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_LCOV="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -LCOV=$ac_cv_path_LCOV -if test -n "$LCOV"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LCOV" >&5 -$as_echo "$LCOV" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "java", so it can be a program name with args. -set dummy java; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_JAVA+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $JAVA in - [\\/]* | ?:[\\/]*) - ac_cv_path_JAVA="$JAVA" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_JAVA="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -JAVA=$ac_cv_path_JAVA -if test -n "$JAVA"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVA" >&5 -$as_echo "$JAVA" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "genhtml", so it can be a program name with args. -set dummy genhtml; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GENHTML+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GENHTML in - [\\/]* | ?:[\\/]*) - ac_cv_path_GENHTML="$GENHTML" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GENHTML="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -GENHTML=$ac_cv_path_GENHTML -if test -n "$GENHTML"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GENHTML" >&5 -$as_echo "$GENHTML" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "git", so it can be a program name with args. -set dummy git; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GIT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GIT in - [\\/]* | ?:[\\/]*) - ac_cv_path_GIT="$GIT" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GIT="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -GIT=$ac_cv_path_GIT -if test -n "$GIT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GIT" >&5 -$as_echo "$GIT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "ccache", so it can be a program name with args. -set dummy ccache; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_CCACHE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $CCACHE in - [\\/]* | ?:[\\/]*) - ac_cv_path_CCACHE="$CCACHE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_CCACHE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -CCACHE=$ac_cv_path_CCACHE -if test -n "$CCACHE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CCACHE" >&5 -$as_echo "$CCACHE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "xgettext", so it can be a program name with args. -set dummy xgettext; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_XGETTEXT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $XGETTEXT in - [\\/]* | ?:[\\/]*) - ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -XGETTEXT=$ac_cv_path_XGETTEXT -if test -n "$XGETTEXT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 -$as_echo "$XGETTEXT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "hexdump", so it can be a program name with args. -set dummy hexdump; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_HEXDUMP+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $HEXDUMP in - [\\/]* | ?:[\\/]*) - ac_cv_path_HEXDUMP="$HEXDUMP" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_HEXDUMP="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -HEXDUMP=$ac_cv_path_HEXDUMP -if test -n "$HEXDUMP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HEXDUMP" >&5 -$as_echo "$HEXDUMP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - - - - - - - -if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. -set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PKG_CONFIG+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG -if test -n "$PKG_CONFIG"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 -$as_echo "$PKG_CONFIG" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_PKG_CONFIG"; then - ac_pt_PKG_CONFIG=$PKG_CONFIG - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG -if test -n "$ac_pt_PKG_CONFIG"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 -$as_echo "$ac_pt_PKG_CONFIG" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_PKG_CONFIG" = x; then - PKG_CONFIG="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - PKG_CONFIG=$ac_pt_PKG_CONFIG - fi -else - PKG_CONFIG="$ac_cv_path_PKG_CONFIG" -fi - -fi -if test -n "$PKG_CONFIG"; then - _pkg_min_version=0.9.0 - { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 -$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - PKG_CONFIG="" - fi -fi - -# Enable debug -@%:@ Check whether --enable-debug was given. -if test "${enable_debug+set}" = set; then : - enableval=$enable_debug; enable_debug=$enableval -else - enable_debug=no -fi - - -if test "x$enable_debug" = xyes; then - if test "x$GCC" = xyes; then - CFLAGS="-g3 -O0 -DDEBUG" - fi - - if test "x$GXX" = xyes; then - CXXFLAGS="-g3 -O0 -DDEBUG" - fi -fi - -## TODO: Remove these hard-coded paths and flags. They are here for the sake of -## compatibility with the legacy buildsystem. -## -if test "x$CXXFLAGS_overridden" = "xno"; then - CXXFLAGS="$CXXFLAGS -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter" -fi -CPPFLAGS="$CPPFLAGS -DBOOST_SPIRIT_THREADSAFE -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS" - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -use_pkgconfig=yes -case $host in - *mingw*) - - #pkgconfig does more harm than good with MinGW - use_pkgconfig=no - - TARGET_OS=windows - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lmingwthrd" >&5 -$as_echo_n "checking for main in -lmingwthrd... " >&6; } -if ${ac_cv_lib_mingwthrd_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lmingwthrd $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_mingwthrd_main=yes -else - ac_cv_lib_mingwthrd_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mingwthrd_main" >&5 -$as_echo "$ac_cv_lib_mingwthrd_main" >&6; } -if test "x$ac_cv_lib_mingwthrd_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBMINGWTHRD 1 -_ACEOF - - LIBS="-lmingwthrd $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lkernel32" >&5 -$as_echo_n "checking for main in -lkernel32... " >&6; } -if ${ac_cv_lib_kernel32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lkernel32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_kernel32_main=yes -else - ac_cv_lib_kernel32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_kernel32_main" >&5 -$as_echo "$ac_cv_lib_kernel32_main" >&6; } -if test "x$ac_cv_lib_kernel32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBKERNEL32 1 -_ACEOF - - LIBS="-lkernel32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -luser32" >&5 -$as_echo_n "checking for main in -luser32... " >&6; } -if ${ac_cv_lib_user32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-luser32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_user32_main=yes -else - ac_cv_lib_user32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_user32_main" >&5 -$as_echo "$ac_cv_lib_user32_main" >&6; } -if test "x$ac_cv_lib_user32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBUSER32 1 -_ACEOF - - LIBS="-luser32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lgdi32" >&5 -$as_echo_n "checking for main in -lgdi32... " >&6; } -if ${ac_cv_lib_gdi32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lgdi32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_gdi32_main=yes -else - ac_cv_lib_gdi32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gdi32_main" >&5 -$as_echo "$ac_cv_lib_gdi32_main" >&6; } -if test "x$ac_cv_lib_gdi32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBGDI32 1 -_ACEOF - - LIBS="-lgdi32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lcomdlg32" >&5 -$as_echo_n "checking for main in -lcomdlg32... " >&6; } -if ${ac_cv_lib_comdlg32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lcomdlg32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_comdlg32_main=yes -else - ac_cv_lib_comdlg32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_comdlg32_main" >&5 -$as_echo "$ac_cv_lib_comdlg32_main" >&6; } -if test "x$ac_cv_lib_comdlg32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBCOMDLG32 1 -_ACEOF - - LIBS="-lcomdlg32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lwinspool" >&5 -$as_echo_n "checking for main in -lwinspool... " >&6; } -if ${ac_cv_lib_winspool_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lwinspool $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_winspool_main=yes -else - ac_cv_lib_winspool_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_winspool_main" >&5 -$as_echo "$ac_cv_lib_winspool_main" >&6; } -if test "x$ac_cv_lib_winspool_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBWINSPOOL 1 -_ACEOF - - LIBS="-lwinspool $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lwinmm" >&5 -$as_echo_n "checking for main in -lwinmm... " >&6; } -if ${ac_cv_lib_winmm_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lwinmm $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_winmm_main=yes -else - ac_cv_lib_winmm_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_winmm_main" >&5 -$as_echo "$ac_cv_lib_winmm_main" >&6; } -if test "x$ac_cv_lib_winmm_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBWINMM 1 -_ACEOF - - LIBS="-lwinmm $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lshell32" >&5 -$as_echo_n "checking for main in -lshell32... " >&6; } -if ${ac_cv_lib_shell32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lshell32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_shell32_main=yes -else - ac_cv_lib_shell32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_shell32_main" >&5 -$as_echo "$ac_cv_lib_shell32_main" >&6; } -if test "x$ac_cv_lib_shell32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBSHELL32 1 -_ACEOF - - LIBS="-lshell32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lcomctl32" >&5 -$as_echo_n "checking for main in -lcomctl32... " >&6; } -if ${ac_cv_lib_comctl32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lcomctl32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_comctl32_main=yes -else - ac_cv_lib_comctl32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_comctl32_main" >&5 -$as_echo "$ac_cv_lib_comctl32_main" >&6; } -if test "x$ac_cv_lib_comctl32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBCOMCTL32 1 -_ACEOF - - LIBS="-lcomctl32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lole32" >&5 -$as_echo_n "checking for main in -lole32... " >&6; } -if ${ac_cv_lib_ole32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lole32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_ole32_main=yes -else - ac_cv_lib_ole32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ole32_main" >&5 -$as_echo "$ac_cv_lib_ole32_main" >&6; } -if test "x$ac_cv_lib_ole32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBOLE32 1 -_ACEOF - - LIBS="-lole32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -loleaut32" >&5 -$as_echo_n "checking for main in -loleaut32... " >&6; } -if ${ac_cv_lib_oleaut32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-loleaut32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_oleaut32_main=yes -else - ac_cv_lib_oleaut32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_oleaut32_main" >&5 -$as_echo "$ac_cv_lib_oleaut32_main" >&6; } -if test "x$ac_cv_lib_oleaut32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBOLEAUT32 1 -_ACEOF - - LIBS="-loleaut32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -luuid" >&5 -$as_echo_n "checking for main in -luuid... " >&6; } -if ${ac_cv_lib_uuid_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-luuid $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_uuid_main=yes -else - ac_cv_lib_uuid_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_uuid_main" >&5 -$as_echo "$ac_cv_lib_uuid_main" >&6; } -if test "x$ac_cv_lib_uuid_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBUUID 1 -_ACEOF - - LIBS="-luuid $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lrpcrt4" >&5 -$as_echo_n "checking for main in -lrpcrt4... " >&6; } -if ${ac_cv_lib_rpcrt4_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lrpcrt4 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_rpcrt4_main=yes -else - ac_cv_lib_rpcrt4_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rpcrt4_main" >&5 -$as_echo "$ac_cv_lib_rpcrt4_main" >&6; } -if test "x$ac_cv_lib_rpcrt4_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBRPCRT4 1 -_ACEOF - - LIBS="-lrpcrt4 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -ladvapi32" >&5 -$as_echo_n "checking for main in -ladvapi32... " >&6; } -if ${ac_cv_lib_advapi32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ladvapi32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_advapi32_main=yes -else - ac_cv_lib_advapi32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_advapi32_main" >&5 -$as_echo "$ac_cv_lib_advapi32_main" >&6; } -if test "x$ac_cv_lib_advapi32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBADVAPI32 1 -_ACEOF - - LIBS="-ladvapi32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lws2_32" >&5 -$as_echo_n "checking for main in -lws2_32... " >&6; } -if ${ac_cv_lib_ws2_32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lws2_32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_ws2_32_main=yes -else - ac_cv_lib_ws2_32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ws2_32_main" >&5 -$as_echo "$ac_cv_lib_ws2_32_main" >&6; } -if test "x$ac_cv_lib_ws2_32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBWS2_32 1 -_ACEOF - - LIBS="-lws2_32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lmswsock" >&5 -$as_echo_n "checking for main in -lmswsock... " >&6; } -if ${ac_cv_lib_mswsock_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lmswsock $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_mswsock_main=yes -else - ac_cv_lib_mswsock_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mswsock_main" >&5 -$as_echo "$ac_cv_lib_mswsock_main" >&6; } -if test "x$ac_cv_lib_mswsock_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBMSWSOCK 1 -_ACEOF - - LIBS="-lmswsock $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lshlwapi" >&5 -$as_echo_n "checking for main in -lshlwapi... " >&6; } -if ${ac_cv_lib_shlwapi_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lshlwapi $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_shlwapi_main=yes -else - ac_cv_lib_shlwapi_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_shlwapi_main" >&5 -$as_echo "$ac_cv_lib_shlwapi_main" >&6; } -if test "x$ac_cv_lib_shlwapi_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBSHLWAPI 1 -_ACEOF - - LIBS="-lshlwapi $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -liphlpapi" >&5 -$as_echo_n "checking for main in -liphlpapi... " >&6; } -if ${ac_cv_lib_iphlpapi_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-liphlpapi $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_iphlpapi_main=yes -else - ac_cv_lib_iphlpapi_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_iphlpapi_main" >&5 -$as_echo "$ac_cv_lib_iphlpapi_main" >&6; } -if test "x$ac_cv_lib_iphlpapi_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBIPHLPAPI 1 -_ACEOF - - LIBS="-liphlpapi $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lcrypt32" >&5 -$as_echo_n "checking for main in -lcrypt32... " >&6; } -if ${ac_cv_lib_crypt32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lcrypt32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_crypt32_main=yes -else - ac_cv_lib_crypt32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypt32_main" >&5 -$as_echo "$ac_cv_lib_crypt32_main" >&6; } -if test "x$ac_cv_lib_crypt32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBCRYPT32 1 -_ACEOF - - LIBS="-lcrypt32 $LIBS" - -else - as_fn_error $? "lib missing" "$LINENO" 5 -fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -static" >&5 -$as_echo_n "checking whether the linker accepts -static... " >&6; } -if ${ax_cv_check_ldflags___static+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -static" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___static=yes -else - ax_cv_check_ldflags___static=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___static" >&5 -$as_echo "$ax_cv_check_ldflags___static" >&6; } -if test x"$ax_cv_check_ldflags___static" = xyes; then : - LDFLAGS="$LDFLAGS -static" -else - : -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -static-libgcc" >&5 -$as_echo_n "checking whether the linker accepts -static-libgcc... " >&6; } -if ${ax_cv_check_ldflags___static_libgcc+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -static-libgcc" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___static_libgcc=yes -else - ax_cv_check_ldflags___static_libgcc=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___static_libgcc" >&5 -$as_echo "$ax_cv_check_ldflags___static_libgcc" >&6; } -if test x"$ax_cv_check_ldflags___static_libgcc" = xyes; then : - LDFLAGS="$LDFLAGS -static-libgcc" -else - : -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -static-libstdc++" >&5 -$as_echo_n "checking whether the linker accepts -static-libstdc++... " >&6; } -if ${ax_cv_check_ldflags___static_libstdcpp+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -static-libstdc++" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___static_libstdcpp=yes -else - ax_cv_check_ldflags___static_libstdcpp=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___static_libstdcpp" >&5 -$as_echo "$ax_cv_check_ldflags___static_libstdcpp" >&6; } -if test x"$ax_cv_check_ldflags___static_libstdcpp" = xyes; then : - LDFLAGS="$LDFLAGS -static-libstdc++" -else - : -fi - - - # Extract the first word of "makensis", so it can be a program name with args. -set dummy makensis; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_MAKENSIS+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $MAKENSIS in - [\\/]* | ?:[\\/]*) - ac_cv_path_MAKENSIS="$MAKENSIS" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_MAKENSIS="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_path_MAKENSIS" && ac_cv_path_MAKENSIS="none" - ;; -esac -fi -MAKENSIS=$ac_cv_path_MAKENSIS -if test -n "$MAKENSIS"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAKENSIS" >&5 -$as_echo "$MAKENSIS" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - if test x$MAKENSIS = xnone; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \"makensis not found. Cannot create installer.\"" >&5 -$as_echo "$as_me: WARNING: \"makensis not found. Cannot create installer.\"" >&2;} - fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}windres", so it can be a program name with args. -set dummy ${ac_tool_prefix}windres; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_WINDRES+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $WINDRES in - [\\/]* | ?:[\\/]*) - ac_cv_path_WINDRES="$WINDRES" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_WINDRES="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -WINDRES=$ac_cv_path_WINDRES -if test -n "$WINDRES"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WINDRES" >&5 -$as_echo "$WINDRES" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_WINDRES"; then - ac_pt_WINDRES=$WINDRES - # Extract the first word of "windres", so it can be a program name with args. -set dummy windres; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_WINDRES+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_WINDRES in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_WINDRES="$ac_pt_WINDRES" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_WINDRES="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_WINDRES=$ac_cv_path_ac_pt_WINDRES -if test -n "$ac_pt_WINDRES"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_WINDRES" >&5 -$as_echo "$ac_pt_WINDRES" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_WINDRES" = x; then - WINDRES="none" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - WINDRES=$ac_pt_WINDRES - fi -else - WINDRES="$ac_cv_path_WINDRES" -fi - - if test x$WINDRES = xnone; then - as_fn_error $? "\"windres not found\"" "$LINENO" 5 - fi - - CPPFLAGS="$CPPFLAGS -D_MT -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB" - LEVELDB_TARGET_FLAGS="TARGET_OS=OS_WINDOWS_CROSSCOMPILE" - if test "x$CXXFLAGS_overridden" = "xno"; then - CXXFLAGS="$CXXFLAGS -w" - fi - case $host in - i?86-*) WINDOWS_BITS=32 ;; - x86_64-*) WINDOWS_BITS=64 ;; - *) as_fn_error $? "\"Could not determine win32/win64 for installer\"" "$LINENO" 5 ;; - esac - - ;; - *darwin*) - TARGET_OS=darwin - LEVELDB_TARGET_FLAGS="TARGET_OS=Darwin" - if test x$cross_compiling != xyes; then - BUILD_OS=darwin - # Extract the first word of "port", so it can be a program name with args. -set dummy port; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_PORT+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$PORT"; then - ac_cv_prog_PORT="$PORT" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_PORT="port" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -PORT=$ac_cv_prog_PORT -if test -n "$PORT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PORT" >&5 -$as_echo "$PORT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - if test x$PORT = xport; then - CPPFLAGS="$CPPFLAGS -isystem /opt/local/include -I/opt/local/include/db48" - LIBS="$LIBS -L/opt/local/lib -L/opt/local/lib/db48" - fi - - # Extract the first word of "brew", so it can be a program name with args. -set dummy brew; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_BREW+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$BREW"; then - ac_cv_prog_BREW="$BREW" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_BREW="brew" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -BREW=$ac_cv_prog_BREW -if test -n "$BREW"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $BREW" >&5 -$as_echo "$BREW" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - if test x$BREW = xbrew; then - openssl_prefix=`$BREW --prefix openssl` - bdb_prefix=`$BREW --prefix berkeley-db4` - export PKG_CONFIG_PATH="$openssl_prefix/lib/pkgconfig:$PKG_CONFIG_PATH" - CPPFLAGS="$CPPFLAGS -I$bdb_prefix/include" - LIBS="$LIBS -L$bdb_prefix/lib" - fi - else - case $build_os in - *darwin*) - BUILD_OS=darwin - ;; - *) - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}install_name_tool", so it can be a program name with args. -set dummy ${ac_tool_prefix}install_name_tool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_INSTALLNAMETOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $INSTALLNAMETOOL in - [\\/]* | ?:[\\/]*) - ac_cv_path_INSTALLNAMETOOL="$INSTALLNAMETOOL" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_INSTALLNAMETOOL="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -INSTALLNAMETOOL=$ac_cv_path_INSTALLNAMETOOL -if test -n "$INSTALLNAMETOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALLNAMETOOL" >&5 -$as_echo "$INSTALLNAMETOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_INSTALLNAMETOOL"; then - ac_pt_INSTALLNAMETOOL=$INSTALLNAMETOOL - # Extract the first word of "install_name_tool", so it can be a program name with args. -set dummy install_name_tool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_INSTALLNAMETOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_INSTALLNAMETOOL in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_INSTALLNAMETOOL="$ac_pt_INSTALLNAMETOOL" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_INSTALLNAMETOOL="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_INSTALLNAMETOOL=$ac_cv_path_ac_pt_INSTALLNAMETOOL -if test -n "$ac_pt_INSTALLNAMETOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_INSTALLNAMETOOL" >&5 -$as_echo "$ac_pt_INSTALLNAMETOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_INSTALLNAMETOOL" = x; then - INSTALLNAMETOOL="install_name_tool" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - INSTALLNAMETOOL=$ac_pt_INSTALLNAMETOOL - fi -else - INSTALLNAMETOOL="$ac_cv_path_INSTALLNAMETOOL" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. -set dummy ${ac_tool_prefix}otool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_OTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $OTOOL in - [\\/]* | ?:[\\/]*) - ac_cv_path_OTOOL="$OTOOL" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_OTOOL="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -OTOOL=$ac_cv_path_OTOOL -if test -n "$OTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 -$as_echo "$OTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_OTOOL"; then - ac_pt_OTOOL=$OTOOL - # Extract the first word of "otool", so it can be a program name with args. -set dummy otool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_OTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_OTOOL in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_OTOOL="$ac_pt_OTOOL" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_ac_pt_OTOOL="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_OTOOL=$ac_cv_path_ac_pt_OTOOL -if test -n "$ac_pt_OTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_OTOOL" >&5 -$as_echo "$ac_pt_OTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_OTOOL" = x; then - OTOOL="otool" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OTOOL=$ac_pt_OTOOL - fi -else - OTOOL="$ac_cv_path_OTOOL" -fi - - for ac_prog in genisoimage mkisofs -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GENISOIMAGE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GENISOIMAGE in - [\\/]* | ?:[\\/]*) - ac_cv_path_GENISOIMAGE="$GENISOIMAGE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_GENISOIMAGE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -GENISOIMAGE=$ac_cv_path_GENISOIMAGE -if test -n "$GENISOIMAGE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GENISOIMAGE" >&5 -$as_echo "$GENISOIMAGE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$GENISOIMAGE" && break -done -test -n "$GENISOIMAGE" || GENISOIMAGE="genisoimage" - - ;; - esac - fi - - CPPFLAGS="$CPPFLAGS -DMAC_OSX" - ;; - *) - ;; -esac - -if test x$use_comparison_tool != xno; then - JAVA_COMPARISON_TOOL=$use_comparison_tool - -fi - -if test x$use_comparison_tool_reorg_tests != xno; then - if test x$use_comparison_tool == x; then - as_fn_error $? "\"comparison tool reorg tests but comparison tool was not specified\"" "$LINENO" 5 - fi - COMPARISON_TOOL_REORG_TESTS=1 - -else - COMPARISON_TOOL_REORG_TESTS=0 - -fi - -if test x$use_lcov == xyes; then - if test x$LCOV == x; then - as_fn_error $? "\"lcov testing requested but lcov not found\"" "$LINENO" 5 - fi - if test x$GCOV == x; then - as_fn_error $? "\"lcov testing requested but gcov not found\"" "$LINENO" 5 - fi - if test x$JAVA == x; then - as_fn_error $? "\"lcov testing requested but java not found\"" "$LINENO" 5 - fi - if test x$GENHTML == x; then - as_fn_error $? "\"lcov testing requested but genhtml not found\"" "$LINENO" 5 - fi - if test x$use_comparison_tool == x; then - as_fn_error $? "\"lcov testing requested but comparison tool was not specified\"" "$LINENO" 5 - fi - LCOV="$LCOV --gcov-tool=$GCOV" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts --coverage" >&5 -$as_echo_n "checking whether C++ compiler accepts --coverage... " >&6; } -if ${ax_cv_check_cxxflags____coverage+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$CXXFLAGS - CXXFLAGS="$CXXFLAGS --coverage" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_check_cxxflags____coverage=yes -else - ax_cv_check_cxxflags____coverage=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXXFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags____coverage" >&5 -$as_echo "$ax_cv_check_cxxflags____coverage" >&6; } -if test x"$ax_cv_check_cxxflags____coverage" = xyes; then : - CXXFLAGS="$CXXFLAGS --coverage" -else - as_fn_error $? "\"lcov testing requested but --coverage flag does not work\"" "$LINENO" 5 -fi - -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 -$as_echo_n "checking for grep that handles long lines and -e... " >&6; } -if ${ac_cv_path_GREP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$GREP"; then - ac_path_GREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in grep ggrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" - as_fn_executable_p "$ac_path_GREP" || continue -# Check for GNU ac_path_GREP and select it if it is found. - # Check for GNU $ac_path_GREP -case `"$ac_path_GREP" --version 2>&1` in -*GNU*) - ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'GREP' >> "conftest.nl" - "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_GREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_GREP="$ac_path_GREP" - ac_path_GREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_GREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_GREP"; then - as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_GREP=$GREP -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 -$as_echo "$ac_cv_path_GREP" >&6; } - GREP="$ac_cv_path_GREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 -$as_echo_n "checking for egrep... " >&6; } -if ${ac_cv_path_EGREP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 - then ac_cv_path_EGREP="$GREP -E" - else - if test -z "$EGREP"; then - ac_path_EGREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in egrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" - as_fn_executable_p "$ac_path_EGREP" || continue -# Check for GNU ac_path_EGREP and select it if it is found. - # Check for GNU $ac_path_EGREP -case `"$ac_path_EGREP" --version 2>&1` in -*GNU*) - ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'EGREP' >> "conftest.nl" - "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_EGREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_EGREP="$ac_path_EGREP" - ac_path_EGREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_EGREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_EGREP"; then - as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_EGREP=$EGREP -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 -$as_echo "$ac_cv_path_EGREP" >&6; } - EGREP="$ac_cv_path_EGREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 -$as_echo_n "checking for ANSI C header files... " >&6; } -if ${ac_cv_header_stdc+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include -#include - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_header_stdc=yes -else - ac_cv_header_stdc=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then : - : -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \ - (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif - -#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{ - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - return 2; - return 0; -} -_ACEOF -if ac_fn_cxx_try_run "$LINENO"; then : - -else - ac_cv_header_stdc=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 -$as_echo "$ac_cv_header_stdc" >&6; } -if test $ac_cv_header_stdc = yes; then - -$as_echo "@%:@define STDC_HEADERS 1" >>confdefs.h - -fi - -# On IRIX 5.3, sys/types and inttypes.h are conflicting. -for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ - inttypes.h stdint.h unistd.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_cxx_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default -" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 -$as_echo_n "checking whether byte ordering is bigendian... " >&6; } -if ${ac_cv_c_bigendian+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_c_bigendian=unknown - # See if we're dealing with a universal compiler. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifndef __APPLE_CC__ - not a universal capable compiler - #endif - typedef int dummy; - -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - - # Check for potential -arch flags. It is not universal unless - # there are at least two -arch flags with different values. - ac_arch= - ac_prev= - for ac_word in $CC $CFLAGS $CPPFLAGS $LDFLAGS; do - if test -n "$ac_prev"; then - case $ac_word in - i?86 | x86_64 | ppc | ppc64) - if test -z "$ac_arch" || test "$ac_arch" = "$ac_word"; then - ac_arch=$ac_word - else - ac_cv_c_bigendian=universal - break - fi - ;; - esac - ac_prev= - elif test "x$ac_word" = "x-arch"; then - ac_prev=arch - fi - done -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - if test $ac_cv_c_bigendian = unknown; then - # See if sys/param.h defines the BYTE_ORDER macro. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - #include - -int -main () -{ -#if ! (defined BYTE_ORDER && defined BIG_ENDIAN \ - && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \ - && LITTLE_ENDIAN) - bogus endian macros - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - # It does; now see whether it defined to BIG_ENDIAN or not. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - #include - -int -main () -{ -#if BYTE_ORDER != BIG_ENDIAN - not big endian - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_c_bigendian=yes -else - ac_cv_c_bigendian=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - fi - if test $ac_cv_c_bigendian = unknown; then - # See if defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris). - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -int -main () -{ -#if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN) - bogus endian macros - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - # It does; now see whether it defined to _BIG_ENDIAN or not. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -int -main () -{ -#ifndef _BIG_ENDIAN - not big endian - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_c_bigendian=yes -else - ac_cv_c_bigendian=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - fi - if test $ac_cv_c_bigendian = unknown; then - # Compile a test program. - if test "$cross_compiling" = yes; then : - # Try to guess by grepping values from an object file. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -short int ascii_mm[] = - { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; - short int ascii_ii[] = - { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; - int use_ascii (int i) { - return ascii_mm[i] + ascii_ii[i]; - } - short int ebcdic_ii[] = - { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; - short int ebcdic_mm[] = - { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; - int use_ebcdic (int i) { - return ebcdic_mm[i] + ebcdic_ii[i]; - } - extern int foo; - -int -main () -{ -return use_ascii (foo) == use_ebcdic (foo); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then - ac_cv_c_bigendian=yes - fi - if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then - if test "$ac_cv_c_bigendian" = unknown; then - ac_cv_c_bigendian=no - else - # finding both strings is unlikely to happen, but who knows? - ac_cv_c_bigendian=unknown - fi - fi -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ - - /* Are we little or big endian? From Harbison&Steele. */ - union - { - long int l; - char c[sizeof (long int)]; - } u; - u.l = 1; - return u.c[sizeof (long int) - 1] == 1; - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_run "$LINENO"; then : - ac_cv_c_bigendian=no -else - ac_cv_c_bigendian=yes -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5 -$as_echo "$ac_cv_c_bigendian" >&6; } - case $ac_cv_c_bigendian in #( - yes) - as_fn_error $? "\"Big Endian not supported\"" "$LINENO" 5;; #( - no) - ;; #( - universal) - -$as_echo "@%:@define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h - - ;; #( - *) - as_fn_error $? "unknown endianness - presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;; - esac - - - - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -ax_pthread_ok=no - -# We used to check for pthread.h first, but this fails if pthread.h -# requires special compiler flags (e.g. on True64 or Sequent). -# It gets checked for in the link test anyway. - -# First of all, check if the user has set any of the PTHREAD_LIBS, -# etcetera environment variables, and if threads linking works using -# them: -if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then - save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $PTHREAD_CFLAGS" - save_LIBS="$LIBS" - LIBS="$PTHREAD_LIBS $LIBS" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS" >&5 -$as_echo_n "checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS... " >&6; } - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char pthread_join (); -int -main () -{ -return pthread_join (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ax_pthread_ok=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_ok" >&5 -$as_echo "$ax_pthread_ok" >&6; } - if test x"$ax_pthread_ok" = xno; then - PTHREAD_LIBS="" - PTHREAD_CFLAGS="" - fi - LIBS="$save_LIBS" - CFLAGS="$save_CFLAGS" -fi - -# We must check for the threads library under a number of different -# names; the ordering is very important because some systems -# (e.g. DEC) have both -lpthread and -lpthreads, where one of the -# libraries is broken (non-POSIX). - -# Create a list of thread flags to try. Items starting with a "-" are -# C compiler flags, and other items are library names, except for "none" -# which indicates that we try without any flags at all, and "pthread-config" -# which is a program returning the flags for the Pth emulation library. - -ax_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config" - -# The ordering *is* (sometimes) important. Some notes on the -# individual items follow: - -# pthreads: AIX (must check this before -lpthread) -# none: in case threads are in libc; should be tried before -Kthread and -# other compiler flags to prevent continual compiler warnings -# -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h) -# -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able) -# lthread: LinuxThreads port on FreeBSD (also preferred to -pthread) -# -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads) -# -pthreads: Solaris/gcc -# -mthreads: Mingw32/gcc, Lynx/gcc -# -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it -# doesn't hurt to check since this sometimes defines pthreads too; -# also defines -D_REENTRANT) -# ... -mt is also the pthreads flag for HP/aCC -# pthread: Linux, etcetera -# --thread-safe: KAI C++ -# pthread-config: use pthread-config program (for GNU Pth library) - -case ${host_os} in - solaris*) - - # On Solaris (at least, for some versions), libc contains stubbed - # (non-functional) versions of the pthreads routines, so link-based - # tests will erroneously succeed. (We need to link with -pthreads/-mt/ - # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather - # a function called by this macro, so we could check for that, but - # who knows whether they'll stub that too in a future libc.) So, - # we'll just look for -pthreads and -lpthread first: - - ax_pthread_flags="-pthreads pthread -mt -pthread $ax_pthread_flags" - ;; - - darwin*) - ax_pthread_flags="-pthread $ax_pthread_flags" - ;; -esac - -# Clang doesn't consider unrecognized options an error unless we specify -# -Werror. We throw in some extra Clang-specific options to ensure that -# this doesn't happen for GCC, which also accepts -Werror. - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if compiler needs -Werror to reject unknown flags" >&5 -$as_echo_n "checking if compiler needs -Werror to reject unknown flags... " >&6; } -save_CFLAGS="$CFLAGS" -ax_pthread_extra_flags="-Werror" -CFLAGS="$CFLAGS $ax_pthread_extra_flags -Wunknown-warning-option -Wsizeof-array-argument" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -int foo(void); -int -main () -{ -foo() - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -else - ax_pthread_extra_flags= - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -CFLAGS="$save_CFLAGS" - -if test x"$ax_pthread_ok" = xno; then -for flag in $ax_pthread_flags; do - - case $flag in - none) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work without any flags" >&5 -$as_echo_n "checking whether pthreads work without any flags... " >&6; } - ;; - - -*) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work with $flag" >&5 -$as_echo_n "checking whether pthreads work with $flag... " >&6; } - PTHREAD_CFLAGS="$flag" - ;; - - pthread-config) - # Extract the first word of "pthread-config", so it can be a program name with args. -set dummy pthread-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ax_pthread_config+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ax_pthread_config"; then - ac_cv_prog_ax_pthread_config="$ax_pthread_config" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ax_pthread_config="yes" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_ax_pthread_config" && ac_cv_prog_ax_pthread_config="no" -fi -fi -ax_pthread_config=$ac_cv_prog_ax_pthread_config -if test -n "$ax_pthread_config"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_config" >&5 -$as_echo "$ax_pthread_config" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - if test x"$ax_pthread_config" = xno; then continue; fi - PTHREAD_CFLAGS="`pthread-config --cflags`" - PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`" - ;; - - *) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the pthreads library -l$flag" >&5 -$as_echo_n "checking for the pthreads library -l$flag... " >&6; } - PTHREAD_LIBS="-l$flag" - ;; - esac - - save_LIBS="$LIBS" - save_CFLAGS="$CFLAGS" - LIBS="$PTHREAD_LIBS $LIBS" - CFLAGS="$CFLAGS $PTHREAD_CFLAGS $ax_pthread_extra_flags" - - # Check for various functions. We must include pthread.h, - # since some functions may be macros. (On the Sequent, we - # need a special flag -Kthread to make this header compile.) - # We check for pthread_join because it is in -lpthread on IRIX - # while pthread_create is in libc. We check for pthread_attr_init - # due to DEC craziness with -lpthreads. We check for - # pthread_cleanup_push because it is one of the few pthread - # functions on Solaris that doesn't have a non-functional libc stub. - # We try pthread_create on general principles. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - static void routine(void *a) { a = 0; } - static void *start_routine(void *a) { return a; } -int -main () -{ -pthread_t th; pthread_attr_t attr; - pthread_create(&th, 0, start_routine, 0); - pthread_join(th, 0); - pthread_attr_init(&attr); - pthread_cleanup_push(routine, 0); - pthread_cleanup_pop(0) /* ; */ - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ax_pthread_ok=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - - LIBS="$save_LIBS" - CFLAGS="$save_CFLAGS" - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_ok" >&5 -$as_echo "$ax_pthread_ok" >&6; } - if test "x$ax_pthread_ok" = xyes; then - break; - fi - - PTHREAD_LIBS="" - PTHREAD_CFLAGS="" -done -fi - -# Various other checks: -if test "x$ax_pthread_ok" = xyes; then - save_LIBS="$LIBS" - LIBS="$PTHREAD_LIBS $LIBS" - save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $PTHREAD_CFLAGS" - - # Detect AIX lossage: JOINABLE attribute is called UNDETACHED. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for joinable pthread attribute" >&5 -$as_echo_n "checking for joinable pthread attribute... " >&6; } - attr_name=unknown - for attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -int attr = $attr; return attr /* ; */ - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - attr_name=$attr; break -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - done - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $attr_name" >&5 -$as_echo "$attr_name" >&6; } - if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then - -cat >>confdefs.h <<_ACEOF -@%:@define PTHREAD_CREATE_JOINABLE $attr_name -_ACEOF - - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if more special flags are required for pthreads" >&5 -$as_echo_n "checking if more special flags are required for pthreads... " >&6; } - flag=no - case ${host_os} in - aix* | freebsd* | darwin*) flag="-D_THREAD_SAFE";; - osf* | hpux*) flag="-D_REENTRANT";; - solaris*) - if test "$GCC" = "yes"; then - flag="-D_REENTRANT" - else - # TODO: What about Clang on Solaris? - flag="-mt -D_REENTRANT" - fi - ;; - esac - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $flag" >&5 -$as_echo "$flag" >&6; } - if test "x$flag" != xno; then - PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS" - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PTHREAD_PRIO_INHERIT" >&5 -$as_echo_n "checking for PTHREAD_PRIO_INHERIT... " >&6; } -if ${ax_cv_PTHREAD_PRIO_INHERIT+:} false; then : - $as_echo_n "(cached) " >&6 -else - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -int i = PTHREAD_PRIO_INHERIT; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ax_cv_PTHREAD_PRIO_INHERIT=yes -else - ax_cv_PTHREAD_PRIO_INHERIT=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_PTHREAD_PRIO_INHERIT" >&5 -$as_echo "$ax_cv_PTHREAD_PRIO_INHERIT" >&6; } - if test "x$ax_cv_PTHREAD_PRIO_INHERIT" = "xyes"; then : - -$as_echo "@%:@define HAVE_PTHREAD_PRIO_INHERIT 1" >>confdefs.h - -fi - - LIBS="$save_LIBS" - CFLAGS="$save_CFLAGS" - - # More AIX lossage: compile with *_r variant - if test "x$GCC" != xyes; then - case $host_os in - aix*) - case "x/$CC" in @%:@( - x*/c89|x*/c89_128|x*/c99|x*/c99_128|x*/cc|x*/cc128|x*/xlc|x*/xlc_v6|x*/xlc128|x*/xlc128_v6) : - #handle absolute path differently from PATH based program lookup - case "x$CC" in @%:@( - x/*) : - if as_fn_executable_p ${CC}_r; then : - PTHREAD_CC="${CC}_r" -fi ;; @%:@( - *) : - for ac_prog in ${CC}_r -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_PTHREAD_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$PTHREAD_CC"; then - ac_cv_prog_PTHREAD_CC="$PTHREAD_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_PTHREAD_CC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -PTHREAD_CC=$ac_cv_prog_PTHREAD_CC -if test -n "$PTHREAD_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PTHREAD_CC" >&5 -$as_echo "$PTHREAD_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$PTHREAD_CC" && break -done -test -n "$PTHREAD_CC" || PTHREAD_CC="$CC" - ;; -esac ;; @%:@( - *) : - ;; -esac - ;; - esac - fi -fi - -test -n "$PTHREAD_CC" || PTHREAD_CC="$CC" - - - - - -# Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: -if test x"$ax_pthread_ok" = xyes; then - -$as_echo "@%:@define HAVE_PTHREAD 1" >>confdefs.h - - : -else - ax_pthread_ok=no - -fi -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -INCLUDES="$INCLUDES $PTHREAD_CFLAGS" - -# The following macro will add the necessary defines to bitcoin-config.h, but -# they also need to be passed down to any subprojects. Pull the results out of -# the cache and add them to CPPFLAGS. -@%:@ Check whether --enable-largefile was given. -if test "${enable_largefile+set}" = set; then : - enableval=$enable_largefile; -fi - -if test "$enable_largefile" != no; then - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5 -$as_echo_n "checking for special C compiler options needed for large files... " >&6; } -if ${ac_cv_sys_largefile_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_sys_largefile_CC=no - if test "$GCC" != yes; then - ac_save_CC=$CC - while :; do - # IRIX 6.2 and later do not support large files by default, - # so use the C compiler's -n32 option if that helps. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include - /* Check that off_t can represent 2**63 - 1 correctly. - We can't simply define LARGE_OFF_T to be 9223372036854775807, - since some C++ compilers masquerading as C compilers - incorrectly reject 9223372036854775807. */ -@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 - && LARGE_OFF_T % 2147483647 == 1) - ? 1 : -1]; -int -main () -{ - - ; - return 0; -} -_ACEOF - if ac_fn_cxx_try_compile "$LINENO"; then : - break -fi -rm -f core conftest.err conftest.$ac_objext - CC="$CC -n32" - if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_sys_largefile_CC=' -n32'; break -fi -rm -f core conftest.err conftest.$ac_objext - break - done - CC=$ac_save_CC - rm -f conftest.$ac_ext - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5 -$as_echo "$ac_cv_sys_largefile_CC" >&6; } - if test "$ac_cv_sys_largefile_CC" != no; then - CC=$CC$ac_cv_sys_largefile_CC - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5 -$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } -if ${ac_cv_sys_file_offset_bits+:} false; then : - $as_echo_n "(cached) " >&6 -else - while :; do - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include - /* Check that off_t can represent 2**63 - 1 correctly. - We can't simply define LARGE_OFF_T to be 9223372036854775807, - since some C++ compilers masquerading as C compilers - incorrectly reject 9223372036854775807. */ -@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 - && LARGE_OFF_T % 2147483647 == 1) - ? 1 : -1]; -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_sys_file_offset_bits=no; break -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@define _FILE_OFFSET_BITS 64 -@%:@include - /* Check that off_t can represent 2**63 - 1 correctly. - We can't simply define LARGE_OFF_T to be 9223372036854775807, - since some C++ compilers masquerading as C compilers - incorrectly reject 9223372036854775807. */ -@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 - && LARGE_OFF_T % 2147483647 == 1) - ? 1 : -1]; -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_sys_file_offset_bits=64; break -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_cv_sys_file_offset_bits=unknown - break -done -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5 -$as_echo "$ac_cv_sys_file_offset_bits" >&6; } -case $ac_cv_sys_file_offset_bits in #( - no | unknown) ;; - *) -cat >>confdefs.h <<_ACEOF -@%:@define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits -_ACEOF -;; -esac -rm -rf conftest* - if test $ac_cv_sys_file_offset_bits = unknown; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5 -$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; } -if ${ac_cv_sys_large_files+:} false; then : - $as_echo_n "(cached) " >&6 -else - while :; do - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include - /* Check that off_t can represent 2**63 - 1 correctly. - We can't simply define LARGE_OFF_T to be 9223372036854775807, - since some C++ compilers masquerading as C compilers - incorrectly reject 9223372036854775807. */ -@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 - && LARGE_OFF_T % 2147483647 == 1) - ? 1 : -1]; -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_sys_large_files=no; break -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@define _LARGE_FILES 1 -@%:@include - /* Check that off_t can represent 2**63 - 1 correctly. - We can't simply define LARGE_OFF_T to be 9223372036854775807, - since some C++ compilers masquerading as C compilers - incorrectly reject 9223372036854775807. */ -@%:@define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 - && LARGE_OFF_T % 2147483647 == 1) - ? 1 : -1]; -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_sys_large_files=1; break -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_cv_sys_large_files=unknown - break -done -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5 -$as_echo "$ac_cv_sys_large_files" >&6; } -case $ac_cv_sys_large_files in #( - no | unknown) ;; - *) -cat >>confdefs.h <<_ACEOF -@%:@define _LARGE_FILES $ac_cv_sys_large_files -_ACEOF -;; -esac -rm -rf conftest* - fi - - -fi - - -if test x$ac_cv_sys_file_offset_bits != x && - test x$ac_cv_sys_file_offset_bits != xno && - test x$ac_cv_sys_file_offset_bits != xunknown; then - CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits" -fi - -if test x$ac_cv_sys_large_files != x && - test x$ac_cv_sys_large_files != xno && - test x$ac_cv_sys_large_files != xunknown; then - CPPFLAGS="$CPPFLAGS -D_LARGE_FILES=$ac_cv_sys_large_files" -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,--large-address-aware" >&5 -$as_echo_n "checking whether the linker accepts -Wl,--large-address-aware... " >&6; } -if ${ax_cv_check_ldflags___Wl___large_address_aware+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -Wl,--large-address-aware" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___Wl___large_address_aware=yes -else - ax_cv_check_ldflags___Wl___large_address_aware=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl___large_address_aware" >&5 -$as_echo "$ax_cv_check_ldflags___Wl___large_address_aware" >&6; } -if test x"$ax_cv_check_ldflags___Wl___large_address_aware" = xyes; then : - LDFLAGS="$LDFLAGS -Wl,--large-address-aware" -else - : -fi - - -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. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking __fdelt_chk type" >&5 -$as_echo_n "checking __fdelt_chk type... " >&6; } - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#define __USE_FORTIFY_LEVEL 2 - #include - extern "C" long unsigned int __fdelt_warn(long unsigned int); -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - fdelt_type="long unsigned int" -else - fdelt_type="long int" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $fdelt_type" >&5 -$as_echo "$fdelt_type" >&6; } - -cat >>confdefs.h <<_ACEOF -@%:@define FDELT_TYPE $fdelt_type -_ACEOF - - -fi - -if test x$use_hardening != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -Wstack-protector" >&5 -$as_echo_n "checking whether C++ compiler accepts -Wstack-protector... " >&6; } -if ${ax_cv_check_cxxflags___Wstack_protector+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$CXXFLAGS - CXXFLAGS="$CXXFLAGS -Wstack-protector" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_check_cxxflags___Wstack_protector=yes -else - ax_cv_check_cxxflags___Wstack_protector=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXXFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___Wstack_protector" >&5 -$as_echo "$ax_cv_check_cxxflags___Wstack_protector" >&6; } -if test x"$ax_cv_check_cxxflags___Wstack_protector" = xyes; then : - HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -Wstack-protector" -else - : -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -fstack-protector-all" >&5 -$as_echo_n "checking whether C++ compiler accepts -fstack-protector-all... " >&6; } -if ${ax_cv_check_cxxflags___fstack_protector_all+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$CXXFLAGS - CXXFLAGS="$CXXFLAGS -fstack-protector-all" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_check_cxxflags___fstack_protector_all=yes -else - ax_cv_check_cxxflags___fstack_protector_all=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXXFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___fstack_protector_all" >&5 -$as_echo "$ax_cv_check_cxxflags___fstack_protector_all" >&6; } -if test x"$ax_cv_check_cxxflags___fstack_protector_all" = xyes; then : - HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fstack-protector-all" -else - : -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ compiler accepts -fPIE" >&5 -$as_echo_n "checking whether C++ compiler accepts -fPIE... " >&6; } -if ${ax_cv_check_cxxflags___fPIE+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$CXXFLAGS - CXXFLAGS="$CXXFLAGS -fPIE" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_check_cxxflags___fPIE=yes -else - ax_cv_check_cxxflags___fPIE=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXXFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxflags___fPIE" >&5 -$as_echo "$ax_cv_check_cxxflags___fPIE" >&6; } -if test x"$ax_cv_check_cxxflags___fPIE" = xyes; then : - HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fPIE" -else - : -fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ preprocessor accepts -D_FORTIFY_SOURCE=2" >&5 -$as_echo_n "checking whether C++ preprocessor accepts -D_FORTIFY_SOURCE=2... " >&6; } -if ${ax_cv_check_cxxcppflags___D_FORTIFY_SOURCE_2+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$CPPFLAGS - CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - ax_cv_check_cxxcppflags___D_FORTIFY_SOURCE_2=yes -else - ax_cv_check_cxxcppflags___D_FORTIFY_SOURCE_2=no -fi -rm -f conftest.err conftest.i conftest.$ac_ext - CPPFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxcppflags___D_FORTIFY_SOURCE_2" >&5 -$as_echo "$ax_cv_check_cxxcppflags___D_FORTIFY_SOURCE_2" >&6; } -if test x"$ax_cv_check_cxxcppflags___D_FORTIFY_SOURCE_2" = xyes; then : - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C++ preprocessor accepts -U_FORTIFY_SOURCE" >&5 -$as_echo_n "checking whether C++ preprocessor accepts -U_FORTIFY_SOURCE... " >&6; } -if ${ax_cv_check_cxxcppflags___U_FORTIFY_SOURCE+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$CPPFLAGS - CPPFLAGS="$CPPFLAGS -U_FORTIFY_SOURCE" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - ax_cv_check_cxxcppflags___U_FORTIFY_SOURCE=yes -else - ax_cv_check_cxxcppflags___U_FORTIFY_SOURCE=no -fi -rm -f conftest.err conftest.i conftest.$ac_ext - CPPFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cxxcppflags___U_FORTIFY_SOURCE" >&5 -$as_echo "$ax_cv_check_cxxcppflags___U_FORTIFY_SOURCE" >&6; } -if test x"$ax_cv_check_cxxcppflags___U_FORTIFY_SOURCE" = xyes; then : - - HARDENED_CPPFLAGS="$HARDENED_CPPFLAGS -U_FORTIFY_SOURCE" - -else - : -fi - - HARDENED_CPPFLAGS="$HARDENED_CPPFLAGS -D_FORTIFY_SOURCE=2" - -else - : -fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,--dynamicbase" >&5 -$as_echo_n "checking whether the linker accepts -Wl,--dynamicbase... " >&6; } -if ${ax_cv_check_ldflags___Wl___dynamicbase+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -Wl,--dynamicbase" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___Wl___dynamicbase=yes -else - ax_cv_check_ldflags___Wl___dynamicbase=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl___dynamicbase" >&5 -$as_echo "$ax_cv_check_ldflags___Wl___dynamicbase" >&6; } -if test x"$ax_cv_check_ldflags___Wl___dynamicbase" = xyes; then : - HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,--dynamicbase" -else - : -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,--nxcompat" >&5 -$as_echo_n "checking whether the linker accepts -Wl,--nxcompat... " >&6; } -if ${ax_cv_check_ldflags___Wl___nxcompat+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -Wl,--nxcompat" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___Wl___nxcompat=yes -else - ax_cv_check_ldflags___Wl___nxcompat=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl___nxcompat" >&5 -$as_echo "$ax_cv_check_ldflags___Wl___nxcompat" >&6; } -if test x"$ax_cv_check_ldflags___Wl___nxcompat" = xyes; then : - HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,--nxcompat" -else - : -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,-z,relro" >&5 -$as_echo_n "checking whether the linker accepts -Wl,-z,relro... " >&6; } -if ${ax_cv_check_ldflags___Wl__z_relro+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -Wl,-z,relro" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___Wl__z_relro=yes -else - ax_cv_check_ldflags___Wl__z_relro=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl__z_relro" >&5 -$as_echo "$ax_cv_check_ldflags___Wl__z_relro" >&6; } -if test x"$ax_cv_check_ldflags___Wl__z_relro" = xyes; then : - HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,-z,relro" -else - : -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,-z,now" >&5 -$as_echo_n "checking whether the linker accepts -Wl,-z,now... " >&6; } -if ${ax_cv_check_ldflags___Wl__z_now+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -Wl,-z,now" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___Wl__z_now=yes -else - ax_cv_check_ldflags___Wl__z_now=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl__z_now" >&5 -$as_echo "$ax_cv_check_ldflags___Wl__z_now" >&6; } -if test x"$ax_cv_check_ldflags___Wl__z_now" = xyes; then : - HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,-z,now" -else - : -fi - - - if test x$TARGET_OS != xwindows; then - # -pie will link successfully with MinGW, but it's unsupported and leads to undeterministic binaries - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -pie" >&5 -$as_echo_n "checking whether the linker accepts -pie... " >&6; } -if ${ax_cv_check_ldflags___pie+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -pie" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___pie=yes -else - ax_cv_check_ldflags___pie=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___pie" >&5 -$as_echo "$ax_cv_check_ldflags___pie" >&6; } -if test x"$ax_cv_check_ldflags___pie" = xyes; then : - HARDENED_LDFLAGS="$HARDENED_LDFLAGS -pie" -else - : -fi - - fi - - CXXFLAGS="$CXXFLAGS $HARDENED_CXXFLAGS" - CPPFLAGS="$CPPFLAGS $HARDENED_CPPFLAGS" - LDFLAGS="$LDFLAGS $HARDENED_LDFLAGS" - OBJCXXFLAGS="$CXXFLAGS" -fi - -if test x$TARGET_OS = xdarwin; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,-dead_strip" >&5 -$as_echo_n "checking whether the linker accepts -Wl,-dead_strip... " >&6; } -if ${ax_cv_check_ldflags___Wl__dead_strip+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -Wl,-dead_strip" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___Wl__dead_strip=yes -else - ax_cv_check_ldflags___Wl__dead_strip=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl__dead_strip" >&5 -$as_echo "$ax_cv_check_ldflags___Wl__dead_strip" >&6; } -if test x"$ax_cv_check_ldflags___Wl__dead_strip" = xyes; then : - LDFLAGS="$LDFLAGS -Wl,-dead_strip" -else - : -fi - -fi - -for ac_header in stdio.h stdlib.h unistd.h strings.h sys/types.h sys/stat.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for MSG_NOSIGNAL" >&5 -$as_echo_n "checking for MSG_NOSIGNAL... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ - int f = MSG_NOSIGNAL; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; }; -$as_echo "@%:@define HAVE_MSG_NOSIGNAL 1" >>confdefs.h - -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -LEVELDB_CPPFLAGS= -LIBLEVELDB= -LIBMEMENV= - if true; then - EMBEDDED_LEVELDB_TRUE= - EMBEDDED_LEVELDB_FALSE='#' -else - EMBEDDED_LEVELDB_TRUE='#' - EMBEDDED_LEVELDB_FALSE= -fi - - - - - -if test x$enable_wallet != xno; then - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Berkeley DB C++ headers" >&5 -$as_echo_n "checking for Berkeley DB C++ headers... " >&6; } - BDB_CPPFLAGS= - BDB_LIBS= - bdbpath=X - bdb48path=X - bdbdirlist= - for _vn in 4.8 48 4 5 ''; do - for _pfx in b lib ''; do - bdbdirlist="$bdbdirlist ${_pfx}db${_vn}" - done - done - for searchpath in $bdbdirlist ''; do - test -n "${searchpath}" && searchpath="${searchpath}/" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #include <${searchpath}db_cxx.h> - -int -main () -{ - - #if !((DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 8) || DB_VERSION_MAJOR > 4) - #error "failed to find bdb 4.8+" - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - - if test "x$bdbpath" = "xX"; then - bdbpath="${searchpath}" - fi - -else - - continue - -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #include <${searchpath}db_cxx.h> - -int -main () -{ - - #if !(DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR == 8) - #error "failed to find bdb 4.8" - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - - bdb48path="${searchpath}" - break - -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - done - if test "x$bdbpath" = "xX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - as_fn_error $? "libdb_cxx headers missing" "$LINENO" 5 - elif test "x$bdb48path" = "xX"; then - - if test "x${bdbpath}" = "x"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: default" >&5 -$as_echo "default" >&6; } - else - echo "#include <${bdbpath}db_cxx.h>" >conftest.cpp - newinclpath=`${CXXCPP} ${CPPFLAGS} -M conftest.cpp 2>/dev/null | tr -d '\\n\\r\\\\' | sed -e 's/^.*[[:space:]:]\(\/[^[:space:]]*\)db_cxx\.h[[:space:]].*$/\1/' -e t -e d` - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${newinclpath}" >&5 -$as_echo "${newinclpath}" >&6; } - if test "x${newinclpath}" != "x"; then - eval "BDB_CPPFLAGS=\"\$BDB_CPPFLAGS\"' -I${newinclpath}'" - fi - fi - - -@%:@ Check whether --with-incompatible-bdb was given. -if test "${with_incompatible_bdb+set}" = set; then : - withval=$with_incompatible_bdb; - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Found Berkeley DB other than 4.8; wallets opened by this build will not be portable!" >&5 -$as_echo "$as_me: WARNING: Found Berkeley DB other than 4.8; wallets opened by this build will not be portable!" >&2;} - -else - - as_fn_error $? "Found Berkeley DB other than 4.8, required for portable wallets (--with-incompatible-bdb to ignore)" "$LINENO" 5 - -fi - - else - - if test "x${bdb48path}" = "x"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: default" >&5 -$as_echo "default" >&6; } - else - echo "#include <${bdb48path}db_cxx.h>" >conftest.cpp - newinclpath=`${CXXCPP} ${CPPFLAGS} -M conftest.cpp 2>/dev/null | tr -d '\\n\\r\\\\' | sed -e 's/^.*[[:space:]:]\(\/[^[:space:]]*\)db_cxx\.h[[:space:]].*$/\1/' -e t -e d` - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${newinclpath}" >&5 -$as_echo "${newinclpath}" >&6; } - if test "x${newinclpath}" != "x"; then - eval "BDB_CPPFLAGS=\"\$BDB_CPPFLAGS\"' -I${newinclpath}'" - fi - fi - - bdbpath="${bdb48path}" - fi - - - # TODO: Ideally this could find the library version and make sure it matches the headers being used - for searchlib in db_cxx-4.8 db_cxx; do - as_ac_Lib=`$as_echo "ac_cv_lib_$searchlib''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l$searchlib" >&5 -$as_echo_n "checking for main in -l$searchlib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$searchlib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - - BDB_LIBS="-l${searchlib}" - break - -fi - - done - if test "x$BDB_LIBS" = "x"; then - as_fn_error $? "libdb_cxx missing" "$LINENO" 5 - fi - - -fi - -if test x$use_upnp != xno; then - for ac_header in miniupnpc/miniwget.h miniupnpc/miniupnpc.h miniupnpc/upnpcommands.h miniupnpc/upnperrors.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lminiupnpc" >&5 -$as_echo_n "checking for main in -lminiupnpc... " >&6; } -if ${ac_cv_lib_miniupnpc_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lminiupnpc $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_miniupnpc_main=yes -else - ac_cv_lib_miniupnpc_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_miniupnpc_main" >&5 -$as_echo "$ac_cv_lib_miniupnpc_main" >&6; } -if test "x$ac_cv_lib_miniupnpc_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBMINIUPNPC 1 -_ACEOF - - LIBS="-lminiupnpc $LIBS" - -else - have_miniupnpc=no -fi - -else - have_miniupnpc=no - -fi - -done - -fi - - - -@%:@ Check whether --with-boost was given. -if test "${with_boost+set}" = set; then : - withval=$with_boost; - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ac_boost_path="" - else - want_boost="yes" - ac_boost_path="$withval" - fi - -else - want_boost="yes" -fi - - - - -@%:@ Check whether --with-boost-libdir was given. -if test "${with_boost_libdir+set}" = set; then : - withval=$with_boost_libdir; - if test -d "$withval" - then - ac_boost_lib_path="$withval" - else - as_fn_error $? "--with-boost-libdir expected directory name" "$LINENO" 5 - fi - -else - ac_boost_lib_path="" - -fi - - -if test "x$want_boost" = "xyes"; then - boost_lib_version_req=1.20.0 - boost_lib_version_req_shorten=`expr $boost_lib_version_req : '\([0-9]*\.[0-9]*\)'` - boost_lib_version_req_major=`expr $boost_lib_version_req : '\([0-9]*\)'` - boost_lib_version_req_minor=`expr $boost_lib_version_req : '[0-9]*\.\([0-9]*\)'` - boost_lib_version_req_sub_minor=`expr $boost_lib_version_req : '[0-9]*\.[0-9]*\.\([0-9]*\)'` - if test "x$boost_lib_version_req_sub_minor" = "x" ; then - boost_lib_version_req_sub_minor="0" - fi - WANT_BOOST_VERSION=`expr $boost_lib_version_req_major \* 100000 \+ $boost_lib_version_req_minor \* 100 \+ $boost_lib_version_req_sub_minor` - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for boostlib >= $boost_lib_version_req" >&5 -$as_echo_n "checking for boostlib >= $boost_lib_version_req... " >&6; } - succeeded=no - - libsubdirs="lib" - ax_arch=`uname -m` - case $ax_arch in - x86_64) - libsubdirs="lib64 libx32 lib lib64" - ;; - ppc64|s390x|sparc64|aarch64) - libsubdirs="lib64 lib lib64" - ;; - esac - - - libsubdirs="lib/${host_cpu}-${host_os} $libsubdirs" - - case ${host_cpu} in - i?86) - libsubdirs="lib/i386-${host_os} $libsubdirs" - ;; - esac - - if test "$ac_boost_path" != ""; then - BOOST_CPPFLAGS="-I$ac_boost_path/include" - for ac_boost_path_tmp in $libsubdirs; do - if test -d "$ac_boost_path"/"$ac_boost_path_tmp" ; then - BOOST_LDFLAGS="-L$ac_boost_path/$ac_boost_path_tmp" - break - fi - done - elif test "$cross_compiling" != yes; then - for ac_boost_path_tmp in /usr /usr/local /opt /opt/local ; do - if test -d "$ac_boost_path_tmp/include/boost" && test -r "$ac_boost_path_tmp/include/boost"; then - for libsubdir in $libsubdirs ; do - if ls "$ac_boost_path_tmp/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi - done - BOOST_LDFLAGS="-L$ac_boost_path_tmp/$libsubdir" - BOOST_CPPFLAGS="-I$ac_boost_path_tmp/include" - break; - fi - done - fi - - if test "$ac_boost_lib_path" != ""; then - BOOST_LDFLAGS="-L$ac_boost_lib_path" - fi - - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - @%:@include - -int -main () -{ - - #if BOOST_VERSION >= $WANT_BOOST_VERSION - // Everything is okay - #else - # error Boost version is too old - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - succeeded=yes - found_system=yes - -else - : - -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - - - - if test "x$succeeded" != "xyes"; then - _version=0 - if test "$ac_boost_path" != ""; then - if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then - for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do - _version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` - V_CHECK=`expr $_version_tmp \> $_version` - if test "$V_CHECK" = "1" ; then - _version=$_version_tmp - fi - VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` - BOOST_CPPFLAGS="-I$ac_boost_path/include/boost-$VERSION_UNDERSCORE" - done - fi - else - if test "$cross_compiling" != yes; then - for ac_boost_path in /usr /usr/local /opt /opt/local ; do - if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then - for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do - _version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` - V_CHECK=`expr $_version_tmp \> $_version` - if test "$V_CHECK" = "1" ; then - _version=$_version_tmp - best_path=$ac_boost_path - fi - done - fi - done - - VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` - BOOST_CPPFLAGS="-I$best_path/include/boost-$VERSION_UNDERSCORE" - if test "$ac_boost_lib_path" = ""; then - for libsubdir in $libsubdirs ; do - if ls "$best_path/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi - done - BOOST_LDFLAGS="-L$best_path/$libsubdir" - fi - fi - - if test "x$BOOST_ROOT" != "x"; then - for libsubdir in $libsubdirs ; do - if ls "$BOOST_ROOT/stage/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi - done - if test -d "$BOOST_ROOT" && test -r "$BOOST_ROOT" && test -d "$BOOST_ROOT/stage/$libsubdir" && test -r "$BOOST_ROOT/stage/$libsubdir"; then - version_dir=`expr //$BOOST_ROOT : '.*/\(.*\)'` - stage_version=`echo $version_dir | sed 's/boost_//' | sed 's/_/./g'` - stage_version_shorten=`expr $stage_version : '\([0-9]*\.[0-9]*\)'` - V_CHECK=`expr $stage_version_shorten \>\= $_version` - if test "$V_CHECK" = "1" -a "$ac_boost_lib_path" = "" ; then - { $as_echo "$as_me:${as_lineno-$LINENO}: We will use a staged boost library from $BOOST_ROOT" >&5 -$as_echo "$as_me: We will use a staged boost library from $BOOST_ROOT" >&6;} - BOOST_CPPFLAGS="-I$BOOST_ROOT" - BOOST_LDFLAGS="-L$BOOST_ROOT/stage/$libsubdir" - fi - fi - fi - fi - - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - @%:@include - -int -main () -{ - - #if BOOST_VERSION >= $WANT_BOOST_VERSION - // Everything is okay - #else - # error Boost version is too old - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - succeeded=yes - found_system=yes - -else - : - -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - fi - - if test "$succeeded" != "yes" ; then - if test "$_version" = "0" ; then - { $as_echo "$as_me:${as_lineno-$LINENO}: We could not detect the boost libraries (version $boost_lib_version_req_shorten or higher). If you have a staged boost library (still not installed) please specify \$BOOST_ROOT in your environment and do not give a PATH to --with-boost option. If you are sure you have boost installed, then check your version number looking in . See http://randspringer.de/boost for more documentation." >&5 -$as_echo "$as_me: We could not detect the boost libraries (version $boost_lib_version_req_shorten or higher). If you have a staged boost library (still not installed) please specify \$BOOST_ROOT in your environment and do not give a PATH to --with-boost option. If you are sure you have boost installed, then check your version number looking in . See http://randspringer.de/boost for more documentation." >&6;} - else - { $as_echo "$as_me:${as_lineno-$LINENO}: Your boost libraries seems to old (version $_version)." >&5 -$as_echo "$as_me: Your boost libraries seems to old (version $_version)." >&6;} - fi - # execute ACTION-IF-NOT-FOUND (if present): - : - else - - - -$as_echo "@%:@define HAVE_BOOST /**/" >>confdefs.h - - # execute ACTION-IF-FOUND (if present): - : - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" -fi - - - - -@%:@ Check whether --with-boost-system was given. -if test "${with_boost_system+set}" = set; then : - withval=$with_boost_system; - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_system_lib="" - else - want_boost="yes" - ax_boost_user_system_lib="$withval" - fi - -else - want_boost="yes" - -fi - - - if test "x$want_boost" = "xyes"; then - - - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::System library is available" >&5 -$as_echo_n "checking whether the Boost::System library is available... " >&6; } -if ${ax_cv_boost_system+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - CXXFLAGS_SAVE=$CXXFLAGS - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -int -main () -{ -boost::system::system_category - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_boost_system=yes -else - ax_cv_boost_system=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXXFLAGS=$CXXFLAGS_SAVE - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_system" >&5 -$as_echo "$ax_cv_boost_system" >&6; } - if test "x$ax_cv_boost_system" = "xyes"; then - - - -$as_echo "@%:@define HAVE_BOOST_SYSTEM /**/" >>confdefs.h - - BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` - - 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} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_SYSTEM_LIB="-l$ax_lib"; link_system="yes"; break -else - link_system="no" -fi - - done - if test "x$link_system" != "xyes"; then - for libextension in `ls -r $BOOSTLIBDIR/boost_system* 2>/dev/null | sed 's,.*/,,' | sed -e 's,\..*,,'` ; do - ax_lib=${libextension} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_SYSTEM_LIB="-l$ax_lib"; link_system="yes"; break -else - link_system="no" -fi - - done - fi - - else - for ax_lib in $ax_boost_user_system_lib boost_system-$ax_boost_user_system_lib; do - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_SYSTEM_LIB="-l$ax_lib"; link_system="yes"; break -else - link_system="no" -fi - - done - - fi - if test "x$ax_lib" = "x"; then - as_fn_error $? "Could not find a version of the boost_system library!" "$LINENO" 5 - fi - if test "x$link_system" = "xno"; then - as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5 - fi - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - fi - - - -@%:@ Check whether --with-boost-filesystem was given. -if test "${with_boost_filesystem+set}" = set; then : - withval=$with_boost_filesystem; - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_filesystem_lib="" - else - want_boost="yes" - ax_boost_user_filesystem_lib="$withval" - fi - -else - want_boost="yes" - -fi - - - if test "x$want_boost" = "xyes"; then - - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - LIBS_SAVED=$LIBS - LIBS="$LIBS $BOOST_SYSTEM_LIB" - export LIBS - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Filesystem library is available" >&5 -$as_echo_n "checking whether the Boost::Filesystem library is available... " >&6; } -if ${ax_cv_boost_filesystem+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -int -main () -{ -using namespace boost::filesystem; - path my_path( "foo/bar/data.txt" ); - return 0; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_boost_filesystem=yes -else - ax_cv_boost_filesystem=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_filesystem" >&5 -$as_echo "$ax_cv_boost_filesystem" >&6; } - if test "x$ax_cv_boost_filesystem" = "xyes"; then - -$as_echo "@%:@define HAVE_BOOST_FILESYSTEM /**/" >>confdefs.h - - 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} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_FILESYSTEM_LIB="-l$ax_lib"; link_filesystem="yes"; break -else - link_filesystem="no" -fi - - done - if test "x$link_filesystem" != "xyes"; then - for libextension in `ls -r $BOOSTLIBDIR/boost_filesystem* 2>/dev/null | sed 's,.*/,,' | sed -e 's,\..*,,'` ; do - ax_lib=${libextension} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_FILESYSTEM_LIB="-l$ax_lib"; link_filesystem="yes"; break -else - link_filesystem="no" -fi - - done - fi - else - for ax_lib in $ax_boost_user_filesystem_lib boost_filesystem-$ax_boost_user_filesystem_lib; do - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_FILESYSTEM_LIB="-l$ax_lib"; link_filesystem="yes"; break -else - link_filesystem="no" -fi - - done - - fi - if test "x$ax_lib" = "x"; then - as_fn_error $? "Could not find a version of the boost_filesystem library!" "$LINENO" 5 - fi - if test "x$link_filesystem" != "xyes"; then - as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5 - fi - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - LIBS="$LIBS_SAVED" - fi - - - -@%:@ Check whether --with-boost-program-options was given. -if test "${with_boost_program_options+set}" = set; then : - withval=$with_boost_program_options; - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_program_options_lib="" - else - want_boost="yes" - ax_boost_user_program_options_lib="$withval" - fi - -else - want_boost="yes" - -fi - - - if test "x$want_boost" = "xyes"; then - - export want_boost - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Program_Options library is available" >&5 -$as_echo_n "checking whether the Boost::Program_Options library is available... " >&6; } -if ${ax_cv_boost_program_options+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include - -int -main () -{ -boost::program_options::options_description generic("Generic options"); - return 0; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_boost_program_options=yes -else - ax_cv_boost_program_options=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_program_options" >&5 -$as_echo "$ax_cv_boost_program_options" >&6; } - if test "$ax_cv_boost_program_options" = yes; then - -$as_echo "@%:@define HAVE_BOOST_PROGRAM_OPTIONS /**/" >>confdefs.h - - 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} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib"; link_program_options="yes"; break -else - link_program_options="no" -fi - - done - if test "x$link_program_options" != "xyes"; then - for libextension in `ls $BOOSTLIBDIR/boost_program_options*.dll* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_program_options.*\)\.dll.*$;\1;'` `ls $BOOSTLIBDIR/boost_program_options*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_program_options.*\)\.a.*$;\1;'` ; do - ax_lib=${libextension} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib"; link_program_options="yes"; break -else - link_program_options="no" -fi - - done - fi - else - for ax_lib in $ax_boost_user_program_options_lib boost_program_options-$ax_boost_user_program_options_lib; do - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l$ax_lib" >&5 -$as_echo_n "checking for main in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib"; link_program_options="yes"; break -else - link_program_options="no" -fi - - done - fi - if test "x$ax_lib" = "x"; then - as_fn_error $? "Could not find a version of the boost_program_options library!" "$LINENO" 5 - fi - if test "x$link_program_options" != "xyes"; then - as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5 - fi - fi - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - fi - - - -@%:@ Check whether --with-boost-thread was given. -if test "${with_boost_thread+set}" = set; then : - withval=$with_boost_thread; - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_thread_lib="" - else - want_boost="yes" - ax_boost_user_thread_lib="$withval" - fi - -else - want_boost="yes" - -fi - - - if test "x$want_boost" = "xyes"; then - - - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Thread library is available" >&5 -$as_echo_n "checking whether the Boost::Thread library is available... " >&6; } -if ${ax_cv_boost_thread+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - CXXFLAGS_SAVE=$CXXFLAGS - - if test "x$host_os" = "xsolaris" ; then - CXXFLAGS="-pthreads $CXXFLAGS" - elif test "x$host_os" = "xmingw32" ; then - CXXFLAGS="-mthreads $CXXFLAGS" - else - CXXFLAGS="-pthread $CXXFLAGS" - fi - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -int -main () -{ -boost::thread_group thrds; - return 0; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_boost_thread=yes -else - ax_cv_boost_thread=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXXFLAGS=$CXXFLAGS_SAVE - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_thread" >&5 -$as_echo "$ax_cv_boost_thread" >&6; } - if test "x$ax_cv_boost_thread" = "xyes"; then - if test "x$host_os" = "xsolaris" ; then - BOOST_CPPFLAGS="-pthreads $BOOST_CPPFLAGS" - elif test "x$host_os" = "xmingw32" ; then - BOOST_CPPFLAGS="-mthreads $BOOST_CPPFLAGS" - else - BOOST_CPPFLAGS="-pthread $BOOST_CPPFLAGS" - fi - - - - -$as_echo "@%:@define HAVE_BOOST_THREAD /**/" >>confdefs.h - - BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` - - LDFLAGS_SAVE=$LDFLAGS - case "x$host_os" in - *bsd* ) - LDFLAGS="-pthread $LDFLAGS" - break; - ;; - 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} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_THREAD_LIB="-l$ax_lib"; link_thread="yes"; break -else - link_thread="no" -fi - - done - if test "x$link_thread" != "xyes"; then - for libextension in `ls -r $BOOSTLIBDIR/boost_thread* 2>/dev/null | sed 's,.*/,,' | sed 's,\..*,,'`; do - ax_lib=${libextension} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_THREAD_LIB="-l$ax_lib"; link_thread="yes"; break -else - link_thread="no" -fi - - done - fi - - else - for ax_lib in $ax_boost_user_thread_lib boost_thread-$ax_boost_user_thread_lib; do - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_THREAD_LIB="-l$ax_lib"; link_thread="yes"; break -else - link_thread="no" -fi - - done - - fi - if test "x$ax_lib" = "x"; then - as_fn_error $? "Could not find a version of the boost_thread library!" "$LINENO" 5 - fi - if test "x$link_thread" = "xno"; then - as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5 - else - case "x$host_os" in - *bsd* ) - BOOST_LDFLAGS="-pthread $BOOST_LDFLAGS" - break; - ;; - esac - - fi - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - fi - - - -@%:@ Check whether --with-boost-chrono was given. -if test "${with_boost_chrono+set}" = set; then : - withval=$with_boost_chrono; - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_chrono_lib="" - else - want_boost="yes" - ax_boost_user_chrono_lib="$withval" - fi - -else - want_boost="yes" - -fi - - - if test "x$want_boost" = "xyes"; then - - - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Chrono library is available" >&5 -$as_echo_n "checking whether the Boost::Chrono library is available... " >&6; } -if ${ax_cv_boost_chrono+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - CXXFLAGS_SAVE=$CXXFLAGS - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -int -main () -{ -boost::chrono::system_clock::time_point time; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_boost_chrono=yes -else - ax_cv_boost_chrono=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CXXFLAGS=$CXXFLAGS_SAVE - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_chrono" >&5 -$as_echo "$ax_cv_boost_chrono" >&6; } - if test "x$ax_cv_boost_chrono" = "xyes"; then - - - -$as_echo "@%:@define HAVE_BOOST_CHRONO /**/" >>confdefs.h - - BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` - - 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} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_CHRONO_LIB="-l$ax_lib"; link_chrono="yes"; break -else - link_chrono="no" -fi - - done - if test "x$link_chrono" != "xyes"; then - for libextension in `ls $BOOSTLIBDIR/boost_chrono*.dll* $BOOSTLIBDIR/boost_chrono*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_chrono.*\)\.dll.*$;\1;' -e 's;^\(boost_chrono.*\)\.a.*$;\1;'` ; do - ax_lib=${libextension} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_CHRONO_LIB="-l$ax_lib"; link_chrono="yes"; break -else - link_chrono="no" -fi - - done - fi - - else - for ax_lib in $ax_boost_user_chrono_lib boost_chrono-$ax_boost_user_chrono_lib; do - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_CHRONO_LIB="-l$ax_lib"; link_chrono="yes"; break -else - link_chrono="no" -fi - - done - - fi - if test "x$ax_lib" = "x"; then - as_fn_error $? "Could not find a version of the boost_chrono library!" "$LINENO" 5 - fi - if test "x$link_chrono" = "xno"; then - as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5 - fi - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - fi - - -if test x$use_tests = xyes; then - - if test x$HEXDUMP = x; then - as_fn_error $? "hexdump is required for tests" "$LINENO" 5 - fi - - - - -@%:@ Check whether --with-boost-unit-test-framework was given. -if test "${with_boost_unit_test_framework+set}" = set; then : - withval=$with_boost_unit_test_framework; - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_unit_test_framework_lib="" - else - want_boost="yes" - ax_boost_user_unit_test_framework_lib="$withval" - fi - -else - want_boost="yes" - -fi - - - if test "x$want_boost" = "xyes"; then - - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Unit_Test_Framework library is available" >&5 -$as_echo_n "checking whether the Boost::Unit_Test_Framework library is available... " >&6; } -if ${ax_cv_boost_unit_test_framework+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -@%:@include -int -main () -{ -using boost::unit_test::test_suite; - test_suite* test= BOOST_TEST_SUITE( "Unit test example 1" ); return 0; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ax_cv_boost_unit_test_framework=yes -else - ax_cv_boost_unit_test_framework=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_unit_test_framework" >&5 -$as_echo "$ax_cv_boost_unit_test_framework" >&6; } - if test "x$ax_cv_boost_unit_test_framework" = "xyes"; then - -$as_echo "@%:@define HAVE_BOOST_UNIT_TEST_FRAMEWORK /**/" >>confdefs.h - - BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` - - 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;'` - ax_lib=${libextension} - link_unit_test_framework="yes" - else - link_unit_test_framework="no" - fi - - if test "x$link_unit_test_framework" = "xyes"; then - BOOST_UNIT_TEST_FRAMEWORK_LIB="-l$ax_lib" - - break - fi - done - if test "x$link_unit_test_framework" != "xyes"; then - for libextension in `ls $BOOSTLIBDIR/boost_unit_test_framework*.dll* $BOOSTLIBDIR/boost_unit_test_framework*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_unit_test_framework.*\)\.dll.*$;\1;' -e 's;^\(boost_unit_test_framework.*\)\.a.*$;\1;'` ; do - ax_lib=${libextension} - as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5 -$as_echo_n "checking for exit in -l$ax_lib... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l$ax_lib $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char exit (); -int -main () -{ -return exit (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - BOOST_UNIT_TEST_FRAMEWORK_LIB="-l$ax_lib"; link_unit_test_framework="yes"; break -else - link_unit_test_framework="no" -fi - - done - fi - else - link_unit_test_framework="no" - saved_ldflags="${LDFLAGS}" - for ax_lib in boost_unit_test_framework-$ax_boost_user_unit_test_framework_lib $ax_boost_user_unit_test_framework_lib ; do - if test "x$link_unit_test_framework" = "xyes"; then - break; - fi - for unittest_library in `ls $BOOSTLIBDIR/lib${ax_lib}.so* $BOOSTLIBDIR/lib${ax_lib}.a* 2>/dev/null` ; do - if test -r $unittest_library ; then - libextension=`echo $unittest_library | sed 's,.*/,,' | sed -e 's;^lib\(boost_unit_test_framework.*\)\.so.*$;\1;' -e 's;^lib\(boost_unit_test_framework.*\)\.a*$;\1;'` - ax_lib=${libextension} - link_unit_test_framework="yes" - else - link_unit_test_framework="no" - fi - - if test "x$link_unit_test_framework" = "xyes"; then - BOOST_UNIT_TEST_FRAMEWORK_LIB="-l$ax_lib" - - break - fi - done - done - fi - if test "x$ax_lib" = "x"; then - as_fn_error $? "Could not find a version of the boost_unit_test_framework library!" "$LINENO" 5 - fi - if test "x$link_unit_test_framework" != "xyes"; then - as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5 - fi - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dynamic linked boost test" >&5 -$as_echo_n "checking for dynamic linked boost test... " >&6; } - TEMP_LIBS="$LIBS" - LIBS="$LIBS $BOOST_UNIT_TEST_FRAMEWORK_LIB" - TEMP_CPPFLAGS="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #define BOOST_TEST_DYN_LINK - #define BOOST_TEST_MAIN - #include - - -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - TESTDEFS="$TESTDEFS -DBOOST_TEST_DYN_LINK" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$TEMP_LIBS" - CPPFLAGS="$TEMP_CPPFLAGS" -fi - -BOOST_LIBS="$BOOST_LDFLAGS $BOOST_SYSTEM_LIB $BOOST_FILESYSTEM_LIB $BOOST_PROGRAM_OPTIONS_LIB $BOOST_THREAD_LIB" -BOOST_INCLUDES="$BOOST_CPPFLAGS" - -if test x$ax_cv_boost_chrono = xyes; then -BOOST_CHRONO_LIB="$BOOST_CHRONO_LIB $BOOST_CHRONO_EXTRALIBS" - -TEMP_LIBS="$LIBS" -LIBS="$LIBS $BOOST_LIBS $BOOST_CHRONO_LIB" -TEMP_CPPFLAGS="$CPPFLAGS" -CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #include - #include - -int -main () -{ - - #if BOOST_VERSION >= 105000 && (!defined(BOOST_HAS_NANOSLEEP) || BOOST_VERSION >= 105200) - boost::this_thread::sleep_for(boost::chrono::milliseconds(0)); - #else - choke me - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - boost_sleep=yes; BOOST_LIBS="$BOOST_LIBS $BOOST_CHRONO_LIB"; - -$as_echo "@%:@define HAVE_WORKING_BOOST_SLEEP_FOR 1" >>confdefs.h - -else - boost_sleep=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS="$TEMP_LIBS" -CPPFLAGS="$TEMP_CPPFLAGS" -fi - -if test x$boost_sleep != xyes; then -TEMP_LIBS="$LIBS" -LIBS="$LIBS $BOOST_LIBS" -TEMP_CPPFLAGS="$CPPFLAGS" -CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #include - #include - #include - -int -main () -{ - - #if BOOST_VERSION <= 105600 - boost::this_thread::sleep(boost::posix_time::milliseconds(0)); - #else - choke me - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - boost_sleep=yes; -$as_echo "@%:@define HAVE_WORKING_BOOST_SLEEP 1" >>confdefs.h - -else - boost_sleep=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS="$TEMP_LIBS" -CPPFLAGS="$TEMP_CPPFLAGS" -fi - -if test x$boost_sleep != xyes; then - as_fn_error $? "No working boost sleep implementation found. If on ubuntu 13.10 with libboost1.54-all-dev remove libboost.1.54-all-dev and use libboost1.53-all-dev" "$LINENO" 5 -fi - - -@%:@ Check whether --with-cli was given. -if test "${with_cli+set}" = set; then : - withval=$with_cli; build_bitcoin_cli=$withval -else - build_bitcoin_cli=yes -fi - - - -@%:@ Check whether --with-daemon was given. -if test "${with_daemon+set}" = set; then : - withval=$with_daemon; build_bitcoind=$withval -else - build_bitcoind=yes -fi - - - - -@%:@ Check whether --with-gui was given. -if test "${with_gui+set}" = set; then : - withval=$with_gui; - bitcoin_qt_want_version=$withval - if test x$bitcoin_qt_want_version = xyes; then - bitcoin_qt_force=yes - bitcoin_qt_want_version=auto - fi - -else - bitcoin_qt_want_version=auto -fi - - - -@%:@ Check whether --with-qt-incdir was given. -if test "${with_qt_incdir+set}" = set; then : - withval=$with_qt_incdir; qt_include_path=$withval -fi - - -@%:@ Check whether --with-qt-libdir was given. -if test "${with_qt_libdir+set}" = set; then : - withval=$with_qt_libdir; qt_lib_path=$withval -fi - - -@%:@ Check whether --with-qt-plugindir was given. -if test "${with_qt_plugindir+set}" = set; then : - withval=$with_qt_plugindir; qt_plugin_path=$withval -fi - - -@%:@ Check whether --with-qt-bindir was given. -if test "${with_qt_bindir+set}" = set; then : - withval=$with_qt_bindir; qt_bin_path=$withval -fi - - - -@%:@ Check whether --with-qtdbus was given. -if test "${with_qtdbus+set}" = set; then : - withval=$with_qtdbus; use_dbus=$withval -else - use_dbus=auto -fi - - - -if test x$use_pkgconfig = xyes; then - - if test x$PKG_CONFIG == x; then - as_fn_error $? "pkg-config not found." "$LINENO" 5 - fi - - : #NOP - - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for SSL" >&5 -$as_echo_n "checking for SSL... " >&6; } - -if test -n "$SSL_CFLAGS"; then - pkg_cv_SSL_CFLAGS="$SSL_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libssl\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libssl") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_SSL_CFLAGS=`$PKG_CONFIG --cflags "libssl" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$SSL_LIBS"; then - pkg_cv_SSL_LIBS="$SSL_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libssl\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libssl") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_SSL_LIBS=`$PKG_CONFIG --libs "libssl" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - SSL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libssl" 2>&1` - else - SSL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libssl" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$SSL_PKG_ERRORS" >&5 - - as_fn_error $? "openssl not found." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - as_fn_error $? "openssl not found." "$LINENO" 5 -else - SSL_CFLAGS=$pkg_cv_SSL_CFLAGS - SSL_LIBS=$pkg_cv_SSL_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - INCLUDES="$INCLUDES $SSL_CFLAGS"; LIBS="$LIBS $SSL_LIBS" -fi - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for CRYPTO" >&5 -$as_echo_n "checking for CRYPTO... " >&6; } - -if test -n "$CRYPTO_CFLAGS"; then - pkg_cv_CRYPTO_CFLAGS="$CRYPTO_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcrypto\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libcrypto") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_CRYPTO_CFLAGS=`$PKG_CONFIG --cflags "libcrypto" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$CRYPTO_LIBS"; then - pkg_cv_CRYPTO_LIBS="$CRYPTO_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcrypto\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libcrypto") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_CRYPTO_LIBS=`$PKG_CONFIG --libs "libcrypto" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - CRYPTO_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libcrypto" 2>&1` - else - CRYPTO_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libcrypto" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$CRYPTO_PKG_ERRORS" >&5 - - as_fn_error $? "libcrypto not found." "$LINENO" 5 -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - as_fn_error $? "libcrypto not found." "$LINENO" 5 -else - CRYPTO_CFLAGS=$pkg_cv_CRYPTO_CFLAGS - CRYPTO_LIBS=$pkg_cv_CRYPTO_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - INCLUDES="$INCLUDES $CRYPTO_CFLAGS"; LIBS="$LIBS $CRYPTO_LIBS" -fi - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for PROTOBUF" >&5 -$as_echo_n "checking for PROTOBUF... " >&6; } - -if test -n "$PROTOBUF_CFLAGS"; then - pkg_cv_PROTOBUF_CFLAGS="$PROTOBUF_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"protobuf\""; } >&5 - ($PKG_CONFIG --exists --print-errors "protobuf") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_PROTOBUF_CFLAGS=`$PKG_CONFIG --cflags "protobuf" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$PROTOBUF_LIBS"; then - pkg_cv_PROTOBUF_LIBS="$PROTOBUF_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"protobuf\""; } >&5 - ($PKG_CONFIG --exists --print-errors "protobuf") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_PROTOBUF_LIBS=`$PKG_CONFIG --libs "protobuf" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - PROTOBUF_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "protobuf" 2>&1` - else - PROTOBUF_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "protobuf" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$PROTOBUF_PKG_ERRORS" >&5 - - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libprotobuf not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: libprotobuf not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "libprotobuf not found" "$LINENO" 5 - fi - -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libprotobuf not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: libprotobuf not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "libprotobuf not found" "$LINENO" 5 - fi - -else - PROTOBUF_CFLAGS=$pkg_cv_PROTOBUF_CFLAGS - PROTOBUF_LIBS=$pkg_cv_PROTOBUF_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - have_protobuf=yes -fi - else - true - - fi - - if test x$use_qr != xno; then - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for QR" >&5 -$as_echo_n "checking for QR... " >&6; } - -if test -n "$QR_CFLAGS"; then - pkg_cv_QR_CFLAGS="$QR_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libqrencode\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libqrencode") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QR_CFLAGS=`$PKG_CONFIG --cflags "libqrencode" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$QR_LIBS"; then - pkg_cv_QR_LIBS="$QR_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libqrencode\""; } >&5 - ($PKG_CONFIG --exists --print-errors "libqrencode") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QR_LIBS=`$PKG_CONFIG --libs "libqrencode" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - QR_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libqrencode" 2>&1` - else - QR_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libqrencode" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$QR_PKG_ERRORS" >&5 - - have_qrencode=no -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - have_qrencode=no -else - QR_CFLAGS=$pkg_cv_QR_CFLAGS - QR_LIBS=$pkg_cv_QR_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - have_qrencode=yes -fi - else - true - - fi - - fi - - -else - ac_fn_cxx_check_header_mongrel "$LINENO" "openssl/crypto.h" "ac_cv_header_openssl_crypto_h" "$ac_includes_default" -if test "x$ac_cv_header_openssl_crypto_h" = xyes; then : - -else - as_fn_error $? "libcrypto headers missing" "$LINENO" 5 -fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lcrypto" >&5 -$as_echo_n "checking for main in -lcrypto... " >&6; } -if ${ac_cv_lib_crypto_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lcrypto $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_crypto_main=yes -else - ac_cv_lib_crypto_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypto_main" >&5 -$as_echo "$ac_cv_lib_crypto_main" >&6; } -if test "x$ac_cv_lib_crypto_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBCRYPTO 1 -_ACEOF - - LIBS="-lcrypto $LIBS" - -else - as_fn_error $? "libcrypto missing" "$LINENO" 5 -fi - - - ac_fn_cxx_check_header_mongrel "$LINENO" "openssl/ssl.h" "ac_cv_header_openssl_ssl_h" "$ac_includes_default" -if test "x$ac_cv_header_openssl_ssl_h" = xyes; then : - -else - as_fn_error $? "libssl headers missing" "$LINENO" 5 -fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lssl" >&5 -$as_echo_n "checking for main in -lssl... " >&6; } -if ${ac_cv_lib_ssl_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lssl $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_ssl_main=yes -else - ac_cv_lib_ssl_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ssl_main" >&5 -$as_echo "$ac_cv_lib_ssl_main" >&6; } -if test "x$ac_cv_lib_ssl_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBSSL 1 -_ACEOF - - LIBS="-lssl $LIBS" - -else - as_fn_error $? "libssl missing" "$LINENO" 5 -fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - as_ac_Lib=`$as_echo "ac_cv_lib_protobuf ''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lprotobuf " >&5 -$as_echo_n "checking for main in -lprotobuf ... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lprotobuf $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBPROTOBUF_ 1 -_ACEOF - - LIBS="-lprotobuf $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libprotobuf not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: libprotobuf not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "libprotobuf not found" "$LINENO" 5 - fi - -fi - - else - true - - fi - - if test x$use_qr != xno; then - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lqrencode" >&5 -$as_echo_n "checking for main in -lqrencode... " >&6; } -if ${ac_cv_lib_qrencode_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lqrencode $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_qrencode_main=yes -else - ac_cv_lib_qrencode_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_qrencode_main" >&5 -$as_echo "$ac_cv_lib_qrencode_main" >&6; } -if test "x$ac_cv_lib_qrencode_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBQRENCODE 1 -_ACEOF - - LIBS="-lqrencode $LIBS" - -else - have_qrencode=no -fi - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - ac_fn_cxx_check_header_mongrel "$LINENO" "qrencode.h" "ac_cv_header_qrencode_h" "$ac_includes_default" -if test "x$ac_cv_header_qrencode_h" = xyes; then : - -else - have_qrencode=no -fi - - - else - true - - fi - - fi -fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test "x$protoc_bin_path" != "x"; then - for ac_prog in protoc -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PROTOC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $PROTOC in - [\\/]* | ?:[\\/]*) - ac_cv_path_PROTOC="$PROTOC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $protoc_bin_path -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PROTOC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -PROTOC=$ac_cv_path_PROTOC -if test -n "$PROTOC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PROTOC" >&5 -$as_echo "$PROTOC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$PROTOC" && break -done - - else - for ac_prog in protoc -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PROTOC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $PROTOC in - [\\/]* | ?:[\\/]*) - ac_cv_path_PROTOC="$PROTOC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PROTOC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -PROTOC=$ac_cv_path_PROTOC -if test -n "$PROTOC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PROTOC" >&5 -$as_echo "$PROTOC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$PROTOC" && break -done - - fi - if test "x$PROTOC" = "x" && test "x" != "xyes"; then - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: PROTOC not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: PROTOC not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "PROTOC not found" "$LINENO" 5 - fi - - fi - - else - true - - fi - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build bitcoind" >&5 -$as_echo_n "checking whether to build bitcoind... " >&6; } - if test x$build_bitcoind = xyes; then - BUILD_BITCOIND_TRUE= - BUILD_BITCOIND_FALSE='#' -else - BUILD_BITCOIND_TRUE='#' - BUILD_BITCOIND_FALSE= -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $build_bitcoind" >&5 -$as_echo "$build_bitcoind" >&6; } - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build bitcoin-cli" >&5 -$as_echo_n "checking whether to build bitcoin-cli... " >&6; } - if test x$build_bitcoin_cli = xyes; then - BUILD_BITCOIN_CLI_TRUE= - BUILD_BITCOIN_CLI_FALSE='#' -else - BUILD_BITCOIN_CLI_TRUE='#' - BUILD_BITCOIN_CLI_FALSE= -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $build_bitcoin_cli" >&5 -$as_echo "$build_bitcoin_cli" >&6; } - - - use_pkgconfig=$use_pkgconfig - - if test x$use_pkgconfig == x; then - use_pkgconfig=yes - fi - - if test x$use_pkgconfig = xyes; then - if test x$PKG_CONFIG == x; then - as_fn_error $? "pkg-config not found." "$LINENO" 5 - fi - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - - auto_priority_version=qt4 - if test x$auto_priority_version == x; then - auto_priority_version=qt5 - fi - if test x$bitcoin_qt_want_version == xqt5 || ( test x$bitcoin_qt_want_version == xauto && test x$auto_priority_version == xqt5 ); then - QT_LIB_PREFIX=Qt5 - bitcoin_qt_got_major_vers=5 - else - QT_LIB_PREFIX=Qt - bitcoin_qt_got_major_vers=4 - fi - qt5_modules="Qt5Core Qt5Gui Qt5Network Qt5Widgets" - qt4_modules="QtCore QtGui QtNetwork" - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test x$bitcoin_qt_want_version == xqt5 || ( test x$bitcoin_qt_want_version == xauto && test x$auto_priority_version == xqt5 ); then - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for QT" >&5 -$as_echo_n "checking for QT... " >&6; } - -if test -n "$QT_CFLAGS"; then - pkg_cv_QT_CFLAGS="$QT_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt5_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt5_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_CFLAGS=`$PKG_CONFIG --cflags "$qt5_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$QT_LIBS"; then - pkg_cv_QT_LIBS="$QT_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt5_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt5_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_LIBS=`$PKG_CONFIG --libs "$qt5_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - QT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$qt5_modules" 2>&1` - else - QT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$qt5_modules" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$QT_PKG_ERRORS" >&5 - - have_qt=no -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - have_qt=no -else - QT_CFLAGS=$pkg_cv_QT_CFLAGS - QT_LIBS=$pkg_cv_QT_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - QT_INCLUDES="$QT_CFLAGS"; have_qt=yes -fi - elif test x$bitcoin_qt_want_version == xqt4 || ( test x$bitcoin_qt_want_version == xauto && test x$auto_priority_version == xqt4 ); then - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for QT" >&5 -$as_echo_n "checking for QT... " >&6; } - -if test -n "$QT_CFLAGS"; then - pkg_cv_QT_CFLAGS="$QT_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt4_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt4_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_CFLAGS=`$PKG_CONFIG --cflags "$qt4_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$QT_LIBS"; then - pkg_cv_QT_LIBS="$QT_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt4_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt4_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_LIBS=`$PKG_CONFIG --libs "$qt4_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - QT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$qt4_modules" 2>&1` - else - QT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$qt4_modules" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$QT_PKG_ERRORS" >&5 - - have_qt=no -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - have_qt=no -else - QT_CFLAGS=$pkg_cv_QT_CFLAGS - QT_LIBS=$pkg_cv_QT_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - QT_INCLUDES="$QT_CFLAGS"; have_qt=yes -fi - fi - - if test x$have_qt == xno && test x$bitcoin_qt_want_version == xauto; then - if test x$auto_priority_version = x$qt5; then - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for QT" >&5 -$as_echo_n "checking for QT... " >&6; } - -if test -n "$QT_CFLAGS"; then - pkg_cv_QT_CFLAGS="$QT_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt4_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt4_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_CFLAGS=`$PKG_CONFIG --cflags "$qt4_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$QT_LIBS"; then - pkg_cv_QT_LIBS="$QT_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt4_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt4_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_LIBS=`$PKG_CONFIG --libs "$qt4_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - QT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$qt4_modules" 2>&1` - else - QT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$qt4_modules" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$QT_PKG_ERRORS" >&5 - - have_qt=no -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - have_qt=no -else - QT_CFLAGS=$pkg_cv_QT_CFLAGS - QT_LIBS=$pkg_cv_QT_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - QT_INCLUDES="$QT_CFLAGS"; have_qt=yes; QT_LIB_PREFIX=Qt; bitcoin_qt_got_major_vers=4 -fi - else - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for QT" >&5 -$as_echo_n "checking for QT... " >&6; } - -if test -n "$QT_CFLAGS"; then - pkg_cv_QT_CFLAGS="$QT_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt5_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt5_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_CFLAGS=`$PKG_CONFIG --cflags "$qt5_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$QT_LIBS"; then - pkg_cv_QT_LIBS="$QT_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$qt5_modules\""; } >&5 - ($PKG_CONFIG --exists --print-errors "$qt5_modules") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_LIBS=`$PKG_CONFIG --libs "$qt5_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - QT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$qt5_modules" 2>&1` - else - QT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$qt5_modules" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$QT_PKG_ERRORS" >&5 - - have_qt=no -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - have_qt=no -else - QT_CFLAGS=$pkg_cv_QT_CFLAGS - QT_LIBS=$pkg_cv_QT_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - QT_INCLUDES="$QT_CFLAGS"; have_qt=yes; QT_LIB_PREFIX=Qt5; bitcoin_qt_got_major_vers=5 -fi - fi - fi - if test x$have_qt != xyes; then - have_qt=no - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Qt dependencies not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: Qt dependencies not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "Qt dependencies not found" "$LINENO" 5 - fi - - fi - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for QT_TEST" >&5 -$as_echo_n "checking for QT_TEST... " >&6; } - -if test -n "$QT_TEST_CFLAGS"; then - pkg_cv_QT_TEST_CFLAGS="$QT_TEST_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\${QT_LIB_PREFIX}Test\""; } >&5 - ($PKG_CONFIG --exists --print-errors "${QT_LIB_PREFIX}Test") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_TEST_CFLAGS=`$PKG_CONFIG --cflags "${QT_LIB_PREFIX}Test" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$QT_TEST_LIBS"; then - pkg_cv_QT_TEST_LIBS="$QT_TEST_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\${QT_LIB_PREFIX}Test\""; } >&5 - ($PKG_CONFIG --exists --print-errors "${QT_LIB_PREFIX}Test") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_TEST_LIBS=`$PKG_CONFIG --libs "${QT_LIB_PREFIX}Test" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - QT_TEST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "${QT_LIB_PREFIX}Test" 2>&1` - else - QT_TEST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "${QT_LIB_PREFIX}Test" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$QT_TEST_PKG_ERRORS" >&5 - - have_qt_test=no -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - have_qt_test=no -else - QT_TEST_CFLAGS=$pkg_cv_QT_TEST_CFLAGS - QT_TEST_LIBS=$pkg_cv_QT_TEST_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - QT_TEST_INCLUDES="$QT_TEST_CFLAGS"; have_qt_test=yes -fi - if test x$use_dbus != xno; then - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for QT_DBUS" >&5 -$as_echo_n "checking for QT_DBUS... " >&6; } - -if test -n "$QT_DBUS_CFLAGS"; then - pkg_cv_QT_DBUS_CFLAGS="$QT_DBUS_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\${QT_LIB_PREFIX}DBus\""; } >&5 - ($PKG_CONFIG --exists --print-errors "${QT_LIB_PREFIX}DBus") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_DBUS_CFLAGS=`$PKG_CONFIG --cflags "${QT_LIB_PREFIX}DBus" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$QT_DBUS_LIBS"; then - pkg_cv_QT_DBUS_LIBS="$QT_DBUS_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\${QT_LIB_PREFIX}DBus\""; } >&5 - ($PKG_CONFIG --exists --print-errors "${QT_LIB_PREFIX}DBus") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_QT_DBUS_LIBS=`$PKG_CONFIG --libs "${QT_LIB_PREFIX}DBus" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - QT_DBUS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "${QT_LIB_PREFIX}DBus" 2>&1` - else - QT_DBUS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "${QT_LIB_PREFIX}DBus" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$QT_DBUS_PKG_ERRORS" >&5 - - have_qt_dbus=no -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - have_qt_dbus=no -else - QT_DBUS_CFLAGS=$pkg_cv_QT_DBUS_CFLAGS - QT_DBUS_LIBS=$pkg_cv_QT_DBUS_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - QT_DBUS_INCLUDES="$QT_DBUS_CFLAGS"; have_qt_dbus=yes -fi - fi - - else - true - - fi - - - true; - else - true - - fi - - else - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - TEMP_CPPFLAGS="$CPPFLAGS" - TEMP_LIBS="$LIBS" - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test x$qt_include_path != x; then - QT_INCLUDES="-I$qt_include_path -I$qt_include_path/QtCore -I$qt_include_path/QtGui -I$qt_include_path/QtWidgets -I$qt_include_path/QtNetwork -I$qt_include_path/QtTest -I$qt_include_path/QtDBus" - CPPFLAGS="$QT_INCLUDES $CPPFLAGS" - fi - - else - true - - fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - ac_fn_cxx_check_header_mongrel "$LINENO" "QtPlugin" "ac_cv_header_QtPlugin" "$ac_includes_default" -if test "x$ac_cv_header_QtPlugin" = xyes; then : - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: QtCore headers missing; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: QtCore headers missing; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "QtCore headers missing" "$LINENO" 5 - fi - -fi - - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - ac_fn_cxx_check_header_mongrel "$LINENO" "QApplication" "ac_cv_header_QApplication" "$ac_includes_default" -if test "x$ac_cv_header_QApplication" = xyes; then : - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: QtGui headers missing; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: QtGui headers missing; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "QtGui headers missing" "$LINENO" 5 - fi - -fi - - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - ac_fn_cxx_check_header_mongrel "$LINENO" "QLocalSocket" "ac_cv_header_QLocalSocket" "$ac_includes_default" -if test "x$ac_cv_header_QLocalSocket" = xyes; then : - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: QtNetwork headers missing; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: QtNetwork headers missing; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "QtNetwork headers missing" "$LINENO" 5 - fi - -fi - - - else - true - - fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test x$bitcoin_qt_want_version = xauto; then - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Qt 5" >&5 -$as_echo_n "checking for Qt 5... " >&6; } -if ${bitcoin_cv_qt5+:} false; then : - $as_echo_n "(cached) " >&6 -else - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ - - #if QT_VERSION < 0x050000 - choke me - #else - return 0; - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - bitcoin_cv_qt5=yes -else - bitcoin_cv_qt5=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $bitcoin_cv_qt5" >&5 -$as_echo "$bitcoin_cv_qt5" >&6; } - fi - if test x$bitcoin_cv_qt5 == xyes || test x$bitcoin_qt_want_version = xqt5; then - QT_LIB_PREFIX=Qt5 - bitcoin_qt_got_major_vers=5 - else - QT_LIB_PREFIX=Qt - bitcoin_qt_got_major_vers=4 - fi - - else - true - - fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - LIBS= - if test x$qt_lib_path != x; then - LIBS="$LIBS -L$qt_lib_path" - fi - if test x$qt_plugin_path != x; then - LIBS="$LIBS -L$qt_plugin_path/accessible" - if test x$bitcoin_qt_got_major_vers == x5; then - LIBS="$LIBS -L$qt_plugin_path/platforms" - else - LIBS="$LIBS -L$qt_plugin_path/codecs" - fi - fi - - if test x$TARGET_OS == xwindows; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -limm32" >&5 -$as_echo_n "checking for main in -limm32... " >&6; } -if ${ac_cv_lib_imm32_main+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-limm32 $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ac_cv_lib_imm32_main=yes -else - ac_cv_lib_imm32_main=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_imm32_main" >&5 -$as_echo "$ac_cv_lib_imm32_main" >&6; } -if test "x$ac_cv_lib_imm32_main" = xyes; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBIMM32 1 -_ACEOF - - LIBS="-limm32 $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libimm32 not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: libimm32 not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "libimm32 not found" "$LINENO" 5 - fi - -fi - - fi - - else - true - - fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - as_ac_Lib=`$as_echo "ac_cv_lib_z ''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lz " >&5 -$as_echo_n "checking for main in -lz ... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lz $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBZ_ 1 -_ACEOF - - LIBS="-lz $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: zlib not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: zlib not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "zlib not found" "$LINENO" 5 - fi - -fi - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - as_ac_Lib=`$as_echo "ac_cv_lib_png ''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lpng " >&5 -$as_echo_n "checking for main in -lpng ... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lpng $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBPNG_ 1 -_ACEOF - - LIBS="-lpng $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: png not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: png not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "png not found" "$LINENO" 5 - fi - -fi - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}Core ''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}Core " >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}Core ... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}Core $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}Core " | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}Core $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lib$QT_LIB_PREFIXCore not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: lib$QT_LIB_PREFIXCore not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "lib$QT_LIB_PREFIXCore not found" "$LINENO" 5 - fi - -fi - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}Gui ''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}Gui " >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}Gui ... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}Gui $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}Gui " | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}Gui $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lib$QT_LIB_PREFIXGui not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: lib$QT_LIB_PREFIXGui not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "lib$QT_LIB_PREFIXGui not found" "$LINENO" 5 - fi - -fi - - else - true - - fi - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}Network''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}Network" >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}Network... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}Network $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}Network" | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}Network $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lib$QT_LIB_PREFIXNetwork not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: lib$QT_LIB_PREFIXNetwork not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "lib$QT_LIB_PREFIXNetwork not found" "$LINENO" 5 - fi - -fi - - else - true - - fi - - if test x$bitcoin_qt_got_major_vers == x5; then - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}Widgets''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}Widgets" >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}Widgets... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}Widgets $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}Widgets" | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}Widgets $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lib$QT_LIB_PREFIXWidgets not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: lib$QT_LIB_PREFIXWidgets not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "lib$QT_LIB_PREFIXWidgets not found" "$LINENO" 5 - fi - -fi - - else - true - - fi - - fi - QT_LIBS="$LIBS" - LIBS="$TEMP_LIBS" - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test x$bitcoin_qt_got_major_vers == x5; then - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for static Qt" >&5 -$as_echo_n "checking for static Qt... " >&6; } -if ${bitcoin_cv_static_qt+:} false; then : - $as_echo_n "(cached) " >&6 -else - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ - - #if defined(QT_STATIC) - return 0; - #else - choke me - #endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - bitcoin_cv_static_qt=yes -else - bitcoin_cv_static_qt=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $bitcoin_cv_static_qt" >&5 -$as_echo "$bitcoin_cv_static_qt" >&6; } - if test xbitcoin_cv_static_qt = xyes; then - -$as_echo "@%:@define QT_STATICPLUGIN 1" >>confdefs.h - - fi - - if test x$bitcoin_cv_static_qt == xyes; then - -$as_echo "@%:@define QT_STATICPLUGIN 1" >>confdefs.h - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for static Qt plugins: -lqtaccessiblewidgets" >&5 -$as_echo_n "checking for static Qt plugins: -lqtaccessiblewidgets... " >&6; } - CHECK_STATIC_PLUGINS_TEMP_LIBS="$LIBS" - LIBS="-lqtaccessiblewidgets $QT_LIBS $LIBS" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #define QT_STATICPLUGIN - #include - Q_IMPORT_PLUGIN(AccessibleFactory) -int -main () -{ -return 0; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; }; QT_LIBS="-lqtaccessiblewidgets $QT_LIBS" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; }; - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Could not resolve: -lqtaccessiblewidgets; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: Could not resolve: -lqtaccessiblewidgets; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "Could not resolve: -lqtaccessiblewidgets" "$LINENO" 5 - fi - -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$CHECK_STATIC_PLUGINS_TEMP_LIBS" - - if test x$TARGET_OS == xwindows; then - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for static Qt plugins: -lqwindows" >&5 -$as_echo_n "checking for static Qt plugins: -lqwindows... " >&6; } - CHECK_STATIC_PLUGINS_TEMP_LIBS="$LIBS" - LIBS="-lqwindows $QT_LIBS $LIBS" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #define QT_STATICPLUGIN - #include - Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin) -int -main () -{ -return 0; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; }; QT_LIBS="-lqwindows $QT_LIBS" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; }; - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Could not resolve: -lqwindows; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: Could not resolve: -lqwindows; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "Could not resolve: -lqwindows" "$LINENO" 5 - fi - -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$CHECK_STATIC_PLUGINS_TEMP_LIBS" - - fi - fi - else - -$as_echo "@%:@define QT_STATICPLUGIN 1" >>confdefs.h - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for static Qt plugins: -lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets" >&5 -$as_echo_n "checking for static Qt plugins: -lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets... " >&6; } - CHECK_STATIC_PLUGINS_TEMP_LIBS="$LIBS" - LIBS="-lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets $QT_LIBS $LIBS" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #define QT_STATICPLUGIN - #include - - Q_IMPORT_PLUGIN(qcncodecs) - Q_IMPORT_PLUGIN(qjpcodecs) - Q_IMPORT_PLUGIN(qtwcodecs) - Q_IMPORT_PLUGIN(qkrcodecs) - Q_IMPORT_PLUGIN(AccessibleFactory) -int -main () -{ -return 0; - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; }; QT_LIBS="-lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets $QT_LIBS" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; }; - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Could not resolve: -lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: Could not resolve: -lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "Could not resolve: -lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets" "$LINENO" 5 - fi - -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$CHECK_STATIC_PLUGINS_TEMP_LIBS" - - fi - - else - true - - fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - LIBS= - if test x$qt_lib_path != x; then - LIBS="-L$qt_lib_path" - fi - as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}Test''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}Test" >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}Test... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}Test $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}Test" | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}Test $LIBS" - -else - have_qt_test=no -fi - - ac_fn_cxx_check_header_mongrel "$LINENO" "QTest" "ac_cv_header_QTest" "$ac_includes_default" -if test "x$ac_cv_header_QTest" = xyes; then : - -else - have_qt_test=no -fi - - - QT_TEST_LIBS="$LIBS" - if test x$use_dbus != xno; then - LIBS= - if test x$qt_lib_path != x; then - LIBS="-L$qt_lib_path" - fi - as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}DBus''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}DBus" >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}DBus... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}DBus $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}DBus" | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}DBus $LIBS" - -else - have_qt_dbus=no -fi - - ac_fn_cxx_check_header_mongrel "$LINENO" "QtDBus" "ac_cv_header_QtDBus" "$ac_includes_default" -if test "x$ac_cv_header_QtDBus" = xyes; then : - -else - have_qt_dbus=no -fi - - - QT_DBUS_LIBS="$LIBS" - fi - - else - true - - fi - - CPPFLAGS="$TEMP_CPPFLAGS" - LIBS="$TEMP_LIBS" - - else - true - - fi - - fi - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test "x$qt_bin_path" != "x"; then - for ac_prog in moc-qt${bitcoin_qt_got_major_vers} moc${bitcoin_qt_got_major_vers} moc -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_MOC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $MOC in - [\\/]* | ?:[\\/]*) - ac_cv_path_MOC="$MOC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $qt_bin_path -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_MOC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -MOC=$ac_cv_path_MOC -if test -n "$MOC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MOC" >&5 -$as_echo "$MOC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$MOC" && break -done - - else - for ac_prog in moc-qt${bitcoin_qt_got_major_vers} moc${bitcoin_qt_got_major_vers} moc -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_MOC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $MOC in - [\\/]* | ?:[\\/]*) - ac_cv_path_MOC="$MOC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_MOC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -MOC=$ac_cv_path_MOC -if test -n "$MOC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MOC" >&5 -$as_echo "$MOC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$MOC" && break -done - - fi - if test "x$MOC" = "x" && test "x" != "xyes"; then - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: MOC not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: MOC not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "MOC not found" "$LINENO" 5 - fi - - fi - - else - true - - fi - - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test "x$qt_bin_path" != "x"; then - for ac_prog in uic-qt${bitcoin_qt_got_major_vers} uic${bitcoin_qt_got_major_vers} uic -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_UIC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $UIC in - [\\/]* | ?:[\\/]*) - ac_cv_path_UIC="$UIC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $qt_bin_path -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_UIC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -UIC=$ac_cv_path_UIC -if test -n "$UIC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $UIC" >&5 -$as_echo "$UIC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$UIC" && break -done - - else - for ac_prog in uic-qt${bitcoin_qt_got_major_vers} uic${bitcoin_qt_got_major_vers} uic -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_UIC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $UIC in - [\\/]* | ?:[\\/]*) - ac_cv_path_UIC="$UIC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_UIC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -UIC=$ac_cv_path_UIC -if test -n "$UIC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $UIC" >&5 -$as_echo "$UIC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$UIC" && break -done - - fi - if test "x$UIC" = "x" && test "x" != "xyes"; then - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: UIC not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: UIC not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "UIC not found" "$LINENO" 5 - fi - - fi - - else - true - - fi - - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test "x$qt_bin_path" != "x"; then - for ac_prog in rcc-qt${bitcoin_qt_got_major_vers} rcc${bitcoin_qt_got_major_vers} rcc -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_RCC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $RCC in - [\\/]* | ?:[\\/]*) - ac_cv_path_RCC="$RCC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $qt_bin_path -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_RCC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -RCC=$ac_cv_path_RCC -if test -n "$RCC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RCC" >&5 -$as_echo "$RCC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$RCC" && break -done - - else - for ac_prog in rcc-qt${bitcoin_qt_got_major_vers} rcc${bitcoin_qt_got_major_vers} rcc -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_RCC+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $RCC in - [\\/]* | ?:[\\/]*) - ac_cv_path_RCC="$RCC" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_RCC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -RCC=$ac_cv_path_RCC -if test -n "$RCC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RCC" >&5 -$as_echo "$RCC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$RCC" && break -done - - fi - if test "x$RCC" = "x" && test "x" != "xyes"; then - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: RCC not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: RCC not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "RCC not found" "$LINENO" 5 - fi - - fi - - else - true - - fi - - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test "x$qt_bin_path" != "x"; then - for ac_prog in lrelease-qt${bitcoin_qt_got_major_vers} lrelease${bitcoin_qt_got_major_vers} lrelease -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_LRELEASE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $LRELEASE in - [\\/]* | ?:[\\/]*) - ac_cv_path_LRELEASE="$LRELEASE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $qt_bin_path -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_LRELEASE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -LRELEASE=$ac_cv_path_LRELEASE -if test -n "$LRELEASE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LRELEASE" >&5 -$as_echo "$LRELEASE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$LRELEASE" && break -done - - else - for ac_prog in lrelease-qt${bitcoin_qt_got_major_vers} lrelease${bitcoin_qt_got_major_vers} lrelease -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_LRELEASE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $LRELEASE in - [\\/]* | ?:[\\/]*) - ac_cv_path_LRELEASE="$LRELEASE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_LRELEASE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -LRELEASE=$ac_cv_path_LRELEASE -if test -n "$LRELEASE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LRELEASE" >&5 -$as_echo "$LRELEASE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$LRELEASE" && break -done - - fi - if test "x$LRELEASE" = "x" && test "x" != "xyes"; then - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: LRELEASE not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: LRELEASE not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "LRELEASE not found" "$LINENO" 5 - fi - - fi - - else - true - - fi - - - - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - if test "x$qt_bin_path" != "x"; then - for ac_prog in lupdate-qt${bitcoin_qt_got_major_vers} lupdate${bitcoin_qt_got_major_vers} lupdate -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_LUPDATE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $LUPDATE in - [\\/]* | ?:[\\/]*) - ac_cv_path_LUPDATE="$LUPDATE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $qt_bin_path -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_LUPDATE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -LUPDATE=$ac_cv_path_LUPDATE -if test -n "$LUPDATE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LUPDATE" >&5 -$as_echo "$LUPDATE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$LUPDATE" && break -done - - else - for ac_prog in lupdate-qt${bitcoin_qt_got_major_vers} lupdate${bitcoin_qt_got_major_vers} lupdate -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_LUPDATE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $LUPDATE in - [\\/]* | ?:[\\/]*) - ac_cv_path_LUPDATE="$LUPDATE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_LUPDATE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -LUPDATE=$ac_cv_path_LUPDATE -if test -n "$LUPDATE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LUPDATE" >&5 -$as_echo "$LUPDATE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$LUPDATE" && break -done - - fi - if test "x$LUPDATE" = "x" && test "xyes" != "xyes"; then - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: LUPDATE not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: LUPDATE not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "LUPDATE not found" "$LINENO" 5 - fi - - fi - - else - true - - fi - - - - MOC_DEFS='-DHAVE_CONFIG_H -I$(top_srcdir)/src' - case $host in - *darwin*) - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - MOC_DEFS="${MOC_DEFS} -DQ_OS_MAC" - base_frameworks="-framework Foundation -framework ApplicationServices -framework AppKit" - as_CACHEVAR=`$as_echo "ax_cv_check_ldflags__$base_frameworks" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts $base_frameworks" >&5 -$as_echo_n "checking whether the linker accepts $base_frameworks... " >&6; } -if eval \${$as_CACHEVAR+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS $base_frameworks" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_CACHEVAR=yes" -else - eval "$as_CACHEVAR=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -eval ac_res=\$$as_CACHEVAR - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if test x"`eval 'as_val=${'$as_CACHEVAR'};$as_echo "$as_val"'`" = xyes; then : - QT_LIBS="$QT_LIBS $base_frameworks" -else - as_fn_error $? "could not find base frameworks" "$LINENO" 5 -fi - - - else - true - - fi - - ;; - *mingw*) - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -mwindows" >&5 -$as_echo_n "checking whether the linker accepts -mwindows... " >&6; } -if ${ax_cv_check_ldflags___mwindows+:} false; then : - $as_echo_n "(cached) " >&6 -else - - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS -mwindows" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - ax_cv_check_ldflags___mwindows=yes -else - ax_cv_check_ldflags___mwindows=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$ax_check_save_flags -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___mwindows" >&5 -$as_echo "$ax_cv_check_ldflags___mwindows" >&6; } -if test x"$ax_cv_check_ldflags___mwindows" = xyes; then : - QT_LDFLAGS="$QT_LDFLAGS -mwindows" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: -mwindows linker support not detected" >&5 -$as_echo "$as_me: WARNING: -mwindows linker support not detected" >&2;} -fi - - - else - true - - fi - - esac - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build Bitcoin Core GUI" >&5 -$as_echo_n "checking whether to build Bitcoin Core GUI... " >&6; } - - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - - bitcoin_enable_qt=yes - bitcoin_enable_qt_test=yes - if test x$have_qt_test = xno; then - bitcoin_enable_qt_test=no - fi - bitcoin_enable_qt_dbus=no - if test x$use_dbus != xno && test x$have_qt_dbus = xyes; then - bitcoin_enable_qt_dbus=yes - fi - if test x$use_dbus = xyes && test x$have_qt_dbus = xno; then - as_fn_error $? "\"libQtDBus not found. Install libQtDBus or remove --with-qtdbus.\"" "$LINENO" 5 - fi - if test x$LUPDATE == x; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \"lupdate is required to update qt translations\"" >&5 -$as_echo "$as_me: WARNING: \"lupdate is required to update qt translations\"" >&2;} - fi - - else - true - - bitcoin_enable_qt=no - - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $bitcoin_enable_qt (Qt${bitcoin_qt_got_major_vers})" >&5 -$as_echo "$bitcoin_enable_qt (Qt${bitcoin_qt_got_major_vers})" >&6; } - - - - - - - - - QT_SELECT=qt${bitcoin_qt_got_major_vers} - - - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -if test "x$use_ccache" != "xno"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if ccache should be used" >&5 -$as_echo_n "checking if ccache should be used... " >&6; } - if test x$CCACHE = x; then - if test "x$use_ccache" = "xyes"; then - as_fn_error $? "ccache not found." "$LINENO" 5; - else - use_ccache=no - fi - else - use_ccache=yes - CC="$ac_cv_path_CCACHE $CC" - CXX="$ac_cv_path_CCACHE $CXX" - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $use_ccache" >&5 -$as_echo "$use_ccache" >&6; } -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if wallet should be enabled" >&5 -$as_echo_n "checking if wallet should be enabled... " >&6; } -if test x$enable_wallet != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -cat >>confdefs.h <<_ACEOF -@%:@define ENABLE_WALLET 1 -_ACEOF - - -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build with support for UPnP" >&5 -$as_echo_n "checking whether to build with support for UPnP... " >&6; } -if test x$have_miniupnpc = xno; then - if test x$use_upnp = xyes; then - as_fn_error $? "\"UPnP requested but cannot be built. use --without-miniupnpc\"" "$LINENO" 5 - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -else - if test x$use_upnp != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build with UPnP enabled by default" >&5 -$as_echo_n "checking whether to build with UPnP enabled by default... " >&6; } - use_upnp=yes - upnp_setting=0 - if test x$use_upnp_default != xno; then - use_upnp_default=yes - upnp_setting=1 - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $use_upnp_default" >&5 -$as_echo "$use_upnp_default" >&6; } - -cat >>confdefs.h <<_ACEOF -@%:@define USE_UPNP $upnp_setting -_ACEOF - - if test x$TARGET_OS = xwindows; then - CPPFLAGS="$CPPFLAGS -DSTATICLIB" - fi - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - fi -fi - -if test x$bitcoin_enable_qt != xno; then - BUILD_QT=qt - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build GUI with support for D-Bus" >&5 -$as_echo_n "checking whether to build GUI with support for D-Bus... " >&6; } - if test x$bitcoin_enable_qt_dbus != xno; then - -$as_echo "@%:@define USE_DBUS 1" >>confdefs.h - - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $bitcoin_enable_qt_dbus" >&5 -$as_echo "$bitcoin_enable_qt_dbus" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build GUI with support for QR codes" >&5 -$as_echo_n "checking whether to build GUI with support for QR codes... " >&6; } - if test x$have_qrencode = xno; then - if test x$use_qr == xyes; then - as_fn_error $? "\"QR support requested but cannot be built. use --without-qrencode\"" "$LINENO" 5 - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - else - if test x$use_qr != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - -$as_echo "@%:@define USE_QRCODE 1" >>confdefs.h - - use_qr=yes - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - fi - fi - - if test x$XGETTEXT == x; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \"xgettext is required to update qt translations\"" >&5 -$as_echo "$as_me: WARNING: \"xgettext is required to update qt translations\"" >&2;} - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build test_bitcoin-qt" >&5 -$as_echo_n "checking whether to build test_bitcoin-qt... " >&6; } - if test x$use_tests$bitcoin_enable_qt_test = xyesyes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - BUILD_TEST_QT="test" - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - fi -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build test_bitcoin" >&5 -$as_echo_n "checking whether to build test_bitcoin... " >&6; } -if test x$use_tests = xyes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - BUILD_TEST="test" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - -if test "x$use_tests$build_bitcoind$use_qt" = "xnonono"; then - as_fn_error $? "No targets! Please specify at least one of: --enable-cli --enable-daemon --enable-gui or --enable-tests" "$LINENO" 5 -fi - - if test x$TARGET_OS = xdarwin; then - TARGET_DARWIN_TRUE= - TARGET_DARWIN_FALSE='#' -else - TARGET_DARWIN_TRUE='#' - TARGET_DARWIN_FALSE= -fi - - if test x$BUILD_OS = xdarwin; then - BUILD_DARWIN_TRUE= - BUILD_DARWIN_FALSE='#' -else - BUILD_DARWIN_TRUE='#' - BUILD_DARWIN_FALSE= -fi - - if test x$TARGET_OS = xwindows; then - TARGET_WINDOWS_TRUE= - TARGET_WINDOWS_FALSE='#' -else - TARGET_WINDOWS_TRUE='#' - TARGET_WINDOWS_FALSE= -fi - - if test x$enable_wallet == xyes; then - ENABLE_WALLET_TRUE= - ENABLE_WALLET_FALSE='#' -else - ENABLE_WALLET_TRUE='#' - ENABLE_WALLET_FALSE= -fi - - if test x$use_qr = xyes; then - USE_QRCODE_TRUE= - USE_QRCODE_FALSE='#' -else - USE_QRCODE_TRUE='#' - USE_QRCODE_FALSE= -fi - - if test x$use_lcov == xyes; then - USE_LCOV_TRUE= - USE_LCOV_FALSE='#' -else - USE_LCOV_TRUE='#' - USE_LCOV_FALSE= -fi - - if test x$use_comparison_tool != xno; then - USE_COMPARISON_TOOL_TRUE= - USE_COMPARISON_TOOL_FALSE='#' -else - USE_COMPARISON_TOOL_TRUE='#' - USE_COMPARISON_TOOL_FALSE= -fi - - if test x$use_comparison_tool_reorg_test != xno; then - USE_COMPARISON_TOOL_REORG_TESTS_TRUE= - USE_COMPARISON_TOOL_REORG_TESTS_FALSE='#' -else - USE_COMPARISON_TOOL_REORG_TESTS_TRUE='#' - USE_COMPARISON_TOOL_REORG_TESTS_FALSE= -fi - - if test x$use_glibc_compat = xyes; then - GLIBC_BACK_COMPAT_TRUE= - GLIBC_BACK_COMPAT_FALSE='#' -else - GLIBC_BACK_COMPAT_TRUE='#' - GLIBC_BACK_COMPAT_FALSE= -fi - - - -$as_echo "@%:@define CLIENT_VERSION_MAJOR 0" >>confdefs.h - - -$as_echo "@%:@define CLIENT_VERSION_MINOR 9" >>confdefs.h - - -$as_echo "@%:@define CLIENT_VERSION_REVISION 99" >>confdefs.h - - -$as_echo "@%:@define CLIENT_VERSION_BUILD 0" >>confdefs.h - - -$as_echo "@%:@define CLIENT_VERSION_IS_RELEASE false" >>confdefs.h - - -$as_echo "@%:@define COPYRIGHT_YEAR 2014" >>confdefs.h - -CLIENT_VERSION_MAJOR=0 - -CLIENT_VERSION_MINOR=9 - -CLIENT_VERSION_REVISION=99 - -CLIENT_VERSION_BUILD=0 - -CLIENT_VERSION_IS_RELEASE=false - -COPYRIGHT_YEAR=2014 - - - - - - - - - - - - -ac_config_files="$ac_config_files Makefile src/Makefile src/test/Makefile src/qt/Makefile src/qt/test/Makefile share/setup.nsi share/qt/Info.plist" - -ac_config_files="$ac_config_files qa/pull-tester/run-bitcoind-for-test.sh" - -ac_config_files="$ac_config_files qa/pull-tester/build-tests.sh" - -cat >confcache <<\_ACEOF -# This file is a shell script that caches the results of configure -# tests run on this system so they can be shared between configure -# scripts and configure runs, see configure's option --config-cache. -# It is not useful on other systems. If it contains results you don't -# want to keep, you may remove or edit it. -# -# config.status only pays attention to the cache file if you give it -# the --recheck option to rerun configure. -# -# `ac_cv_env_foo' variables (set or unset) will be overridden when -# loading this file, other *unset* `ac_cv_foo' will be assigned the -# following values. - -_ACEOF - -# The following way of writing the cache mishandles newlines in values, -# but we know of no workaround that is simple, portable, and efficient. -# So, we kill variables containing newlines. -# Ultrix sh set writes to stderr and can't be redirected directly, -# and sets the high bit in the cache file unless we assign to the vars. -( - for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - - (set) 2>&1 | - case $as_nl`(ac_space=' '; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - # `set' does not quote correctly, so add quotes: double-quote - # substitution turns \\\\ into \\, and sed turns \\ into \. - sed -n \ - "s/'/'\\\\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" - ;; #( - *) - # `set' quotes correctly as required by POSIX, so do not add quotes. - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) | - sed ' - /^ac_cv_env_/b end - t clear - :clear - s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ - t end - s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ - :end' >>confcache -if diff "$cache_file" confcache >/dev/null 2>&1; then :; else - if test -w "$cache_file"; then - if test "x$cache_file" != "x/dev/null"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 -$as_echo "$as_me: updating cache $cache_file" >&6;} - if test ! -f "$cache_file" || test -h "$cache_file"; then - cat confcache >"$cache_file" - else - case $cache_file in #( - */* | ?:*) - mv -f confcache "$cache_file"$$ && - mv -f "$cache_file"$$ "$cache_file" ;; #( - *) - mv -f confcache "$cache_file" ;; - esac - fi - fi - else - { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 -$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} - fi -fi -rm -f confcache - -test "x$prefix" = xNONE && prefix=$ac_default_prefix -# Let make expand exec_prefix. -test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - -DEFS=-DHAVE_CONFIG_H - -ac_libobjs= -ac_ltlibobjs= -U= -for ac_i in : $LIB@&t@OBJS; do test "x$ac_i" = x: && continue - # 1. Remove the extension, and $U if already installed. - ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' - ac_i=`$as_echo "$ac_i" | sed "$ac_script"` - # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR - # will be set to the directory where LIBOBJS objects are built. - as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" - as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' -done -LIB@&t@OBJS=$ac_libobjs - -LTLIBOBJS=$ac_ltlibobjs - - - if test -n "$EXEEXT"; then - am__EXEEXT_TRUE= - am__EXEEXT_FALSE='#' -else - am__EXEEXT_TRUE='#' - am__EXEEXT_FALSE= -fi - -if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then - as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then - as_fn_error $? "conditional \"AMDEP\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then - as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then - as_fn_error $? "conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${am__fastdepOBJC_TRUE}" && test -z "${am__fastdepOBJC_FALSE}"; then - as_fn_error $? "conditional \"am__fastdepOBJC\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi - -if test -z "${EMBEDDED_LEVELDB_TRUE}" && test -z "${EMBEDDED_LEVELDB_FALSE}"; then - as_fn_error $? "conditional \"EMBEDDED_LEVELDB\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${BUILD_BITCOIND_TRUE}" && test -z "${BUILD_BITCOIND_FALSE}"; then - as_fn_error $? "conditional \"BUILD_BITCOIND\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${BUILD_BITCOIN_CLI_TRUE}" && test -z "${BUILD_BITCOIN_CLI_FALSE}"; then - as_fn_error $? "conditional \"BUILD_BITCOIN_CLI\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${TARGET_DARWIN_TRUE}" && test -z "${TARGET_DARWIN_FALSE}"; then - as_fn_error $? "conditional \"TARGET_DARWIN\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${BUILD_DARWIN_TRUE}" && test -z "${BUILD_DARWIN_FALSE}"; then - as_fn_error $? "conditional \"BUILD_DARWIN\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${TARGET_WINDOWS_TRUE}" && test -z "${TARGET_WINDOWS_FALSE}"; then - as_fn_error $? "conditional \"TARGET_WINDOWS\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${ENABLE_WALLET_TRUE}" && test -z "${ENABLE_WALLET_FALSE}"; then - as_fn_error $? "conditional \"ENABLE_WALLET\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${USE_QRCODE_TRUE}" && test -z "${USE_QRCODE_FALSE}"; then - as_fn_error $? "conditional \"USE_QRCODE\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${USE_LCOV_TRUE}" && test -z "${USE_LCOV_FALSE}"; then - as_fn_error $? "conditional \"USE_LCOV\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${USE_COMPARISON_TOOL_TRUE}" && test -z "${USE_COMPARISON_TOOL_FALSE}"; then - as_fn_error $? "conditional \"USE_COMPARISON_TOOL\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${USE_COMPARISON_TOOL_REORG_TESTS_TRUE}" && test -z "${USE_COMPARISON_TOOL_REORG_TESTS_FALSE}"; then - as_fn_error $? "conditional \"USE_COMPARISON_TOOL_REORG_TESTS\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${GLIBC_BACK_COMPAT_TRUE}" && test -z "${GLIBC_BACK_COMPAT_FALSE}"; then - as_fn_error $? "conditional \"GLIBC_BACK_COMPAT\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi - -: "${CONFIG_STATUS=./config.status}" -ac_write_fail=0 -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 -$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} -as_write_fail=0 -cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 -#! $SHELL -# Generated by $as_me. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false - -SHELL=\${CONFIG_SHELL-$SHELL} -export SHELL -_ASEOF -cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in @%:@( - *posix*) : - set -o posix ;; @%:@( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in @%:@( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -as_myself= -case $0 in @%:@(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - - -@%:@ as_fn_error STATUS ERROR [LINENO LOG_FD] -@%:@ ---------------------------------------- -@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are -@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the -@%:@ script with STATUS, using 1 if that was 0. -as_fn_error () -{ - as_status=$1; test $as_status -eq 0 && as_status=1 - if test "$4"; then - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 - fi - $as_echo "$as_me: error: $2" >&2 - as_fn_exit $as_status -} @%:@ as_fn_error - - -@%:@ as_fn_set_status STATUS -@%:@ ----------------------- -@%:@ Set @S|@? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} @%:@ as_fn_set_status - -@%:@ as_fn_exit STATUS -@%:@ ----------------- -@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} @%:@ as_fn_exit - -@%:@ as_fn_unset VAR -@%:@ --------------- -@%:@ Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset -@%:@ as_fn_append VAR VALUE -@%:@ ---------------------- -@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take -@%:@ advantage of any shell optimizations that allow amortized linear growth over -@%:@ repeated appends, instead of the typical quadratic growth present in naive -@%:@ implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -@%:@ as_fn_arith ARG... -@%:@ ------------------ -@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the -@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments -@%:@ must be portable across @S|@(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in @%:@((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -pR'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -pR' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -pR' - fi -else - as_ln_s='cp -pR' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - - -@%:@ as_fn_mkdir_p -@%:@ ------------- -@%:@ Create "@S|@as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" - - -} @%:@ as_fn_mkdir_p -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - - -@%:@ as_fn_executable_p FILE -@%:@ ----------------------- -@%:@ Test if FILE is an executable regular file. -as_fn_executable_p () -{ - test -f "$1" && test -x "$1" -} @%:@ as_fn_executable_p -as_test_x='test -x' -as_executable_p=as_fn_executable_p - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -exec 6>&1 -## ----------------------------------- ## -## Main body of $CONFIG_STATUS script. ## -## ----------------------------------- ## -_ASEOF -test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# Save the log message, to keep $0 and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. -ac_log=" -This file was extended by Bitcoin Core $as_me 0.9.99, which was -generated by GNU Autoconf 2.69. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -on `(hostname || uname -n) 2>/dev/null | sed 1q` -" - -_ACEOF - -case $ac_config_files in *" -"*) set x $ac_config_files; shift; ac_config_files=$*;; -esac - -case $ac_config_headers in *" -"*) set x $ac_config_headers; shift; ac_config_headers=$*;; -esac - - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -# Files that config.status was made for. -config_files="$ac_config_files" -config_headers="$ac_config_headers" -config_commands="$ac_config_commands" - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -ac_cs_usage="\ -\`$as_me' instantiates files and other configuration actions -from templates according to the current configuration. Unless the files -and actions are specified as TAGs, all are instantiated by default. - -Usage: $0 [OPTION]... [TAG]... - - -h, --help print this help, then exit - -V, --version print version number and configuration settings, then exit - --config print configuration, then exit - -q, --quiet, --silent - do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Configuration commands: -$config_commands - -Report bugs to ." - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" -ac_cs_version="\\ -Bitcoin Core config.status 0.9.99 -configured by $0, generated by GNU Autoconf 2.69, - with options \\"\$ac_cs_config\\" - -Copyright (C) 2012 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." - -ac_pwd='$ac_pwd' -srcdir='$srcdir' -INSTALL='$INSTALL' -MKDIR_P='$MKDIR_P' -AWK='$AWK' -test -n "\$AWK" || AWK=awk -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# The default lists apply if the user does not specify any file. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=?*) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` - ac_shift=: - ;; - --*=) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg= - ac_shift=: - ;; - *) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - esac - - case $ac_option in - # Handling of the options. - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) - $as_echo "$ac_cs_version"; exit ;; - --config | --confi | --conf | --con | --co | --c ) - $as_echo "$ac_cs_config"; exit ;; - --debug | --debu | --deb | --de | --d | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - '') as_fn_error $? "missing file argument" ;; - esac - as_fn_append CONFIG_FILES " '$ac_optarg'" - ac_need_defaults=false;; - --header | --heade | --head | --hea ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - as_fn_append CONFIG_HEADERS " '$ac_optarg'" - ac_need_defaults=false;; - --he | --h) - # Conflict between --help and --header - as_fn_error $? "ambiguous option: \`$1' -Try \`$0 --help' for more information.";; - --help | --hel | -h ) - $as_echo "$ac_cs_usage"; exit ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) as_fn_error $? "unrecognized option: \`$1' -Try \`$0 --help' for more information." ;; - - *) as_fn_append ac_config_targets " $1" - ac_need_defaults=false ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -if \$ac_cs_recheck; then - set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion - shift - \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 - CONFIG_SHELL='$SHELL' - export CONFIG_SHELL - exec "\$@" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../@%:@@%:@ /;s/...$/ @%:@@%:@/;p;x;p;x' <<_ASBOX -@%:@@%:@ Running $as_me. @%:@@%:@ -_ASBOX - $as_echo "$ac_log" -} >&5 - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -# -# INIT-COMMANDS -# -AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - -# Handling of arguments. -for ac_config_target in $ac_config_targets -do - case $ac_config_target in - "src/bitcoin-config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/bitcoin-config.h" ;; - "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; - "src/test/Makefile") CONFIG_FILES="$CONFIG_FILES src/test/Makefile" ;; - "src/qt/Makefile") CONFIG_FILES="$CONFIG_FILES src/qt/Makefile" ;; - "src/qt/test/Makefile") CONFIG_FILES="$CONFIG_FILES src/qt/test/Makefile" ;; - "share/setup.nsi") CONFIG_FILES="$CONFIG_FILES share/setup.nsi" ;; - "share/qt/Info.plist") CONFIG_FILES="$CONFIG_FILES share/qt/Info.plist" ;; - "qa/pull-tester/run-bitcoind-for-test.sh") CONFIG_FILES="$CONFIG_FILES qa/pull-tester/run-bitcoind-for-test.sh" ;; - "qa/pull-tester/build-tests.sh") CONFIG_FILES="$CONFIG_FILES qa/pull-tester/build-tests.sh" ;; - - *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; - esac -done - - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers - test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason against having it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Hook for its removal unless debugging. -# Note that there is a small window in which the directory will not be cleaned: -# after its creation but before its name has been assigned to `$tmp'. -$debug || -{ - tmp= ac_tmp= - trap 'exit_status=$? - : "${ac_tmp:=$tmp}" - { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status -' 0 - trap 'as_fn_exit 1' 1 2 13 15 -} -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && - test -d "$tmp" -} || -{ - tmp=./conf$$-$RANDOM - (umask 077 && mkdir "$tmp") -} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 -ac_tmp=$tmp - -# Set up the scripts for CONFIG_FILES section. -# No need to generate them if there are no CONFIG_FILES. -# This happens for instance with `./config.status config.h'. -if test -n "$CONFIG_FILES"; then - - -ac_cr=`echo X | tr X '\015'` -# On cygwin, bash can eat \r inside `` if the user requested igncr. -# But we know of no other shell where ac_cr would be empty at this -# point, so we can use a bashism as a fallback. -if test "x$ac_cr" = x; then - eval ac_cr=\$\'\\r\' -fi -ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` -if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then - ac_cs_awk_cr='\\r' -else - ac_cs_awk_cr=$ac_cr -fi - -echo 'BEGIN {' >"$ac_tmp/subs1.awk" && -_ACEOF - - -{ - echo "cat >conf$$subs.awk <<_ACEOF" && - echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && - echo "_ACEOF" -} >conf$$subs.sh || - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 -ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` -ac_delim='%!_!# ' -for ac_last_try in false false false false false :; do - . ./conf$$subs.sh || - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 - - ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` - if test $ac_delim_n = $ac_delim_num; then - break - elif $ac_last_try; then - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done -rm -f conf$$subs.sh - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && -_ACEOF -sed -n ' -h -s/^/S["/; s/!.*/"]=/ -p -g -s/^[^!]*!// -:repl -t repl -s/'"$ac_delim"'$// -t delim -:nl -h -s/\(.\{148\}\)..*/\1/ -t more1 -s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ -p -n -b repl -:more1 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t nl -:delim -h -s/\(.\{148\}\)..*/\1/ -t more2 -s/["\\]/\\&/g; s/^/"/; s/$/"/ -p -b -:more2 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t delim -' >$CONFIG_STATUS || ac_write_fail=1 -rm -f conf$$subs.awk -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -_ACAWK -cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && - for (key in S) S_is_set[key] = 1 - FS = "" - -} -{ - line = $ 0 - nfields = split(line, field, "@") - substed = 0 - len = length(field[1]) - for (i = 2; i < nfields; i++) { - key = field[i] - keylen = length(key) - if (S_is_set[key]) { - value = S[key] - line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) - len += length(value) + length(field[++i]) - substed = 1 - } else - len += 1 + keylen - } - - print line -} - -_ACAWK -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then - sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" -else - cat -fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ - || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 -_ACEOF - -# VPATH may cause trouble with some makes, so we remove sole $(srcdir), -# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and -# trailing colons and then remove the whole line if VPATH becomes empty -# (actually we leave an empty line to preserve line numbers). -if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ -h -s/// -s/^/:/ -s/[ ]*$/:/ -s/:\$(srcdir):/:/g -s/:\${srcdir}:/:/g -s/:@srcdir@:/:/g -s/^:*// -s/:*$// -x -s/\(=[ ]*\).*/\1/ -G -s/\n// -s/^[^=]*=[ ]*$// -}' -fi - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -fi # test -n "$CONFIG_FILES" - -# Set up the scripts for CONFIG_HEADERS section. -# No need to generate them if there are no CONFIG_HEADERS. -# This happens for instance with `./config.status Makefile'. -if test -n "$CONFIG_HEADERS"; then -cat >"$ac_tmp/defines.awk" <<\_ACAWK || -BEGIN { -_ACEOF - -# Transform confdefs.h into an awk script `defines.awk', embedded as -# here-document in config.status, that substitutes the proper values into -# config.h.in to produce config.h. - -# Create a delimiter string that does not exist in confdefs.h, to ease -# handling of long lines. -ac_delim='%!_!# ' -for ac_last_try in false false :; do - ac_tt=`sed -n "/$ac_delim/p" confdefs.h` - if test -z "$ac_tt"; then - break - elif $ac_last_try; then - as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done - -# For the awk script, D is an array of macro values keyed by name, -# likewise P contains macro parameters if any. Preserve backslash -# newline sequences. - -ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* -sed -n ' -s/.\{148\}/&'"$ac_delim"'/g -t rset -:rset -s/^[ ]*#[ ]*define[ ][ ]*/ / -t def -d -:def -s/\\$// -t bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3"/p -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p -d -:bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3\\\\\\n"\\/p -t cont -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p -t cont -d -:cont -n -s/.\{148\}/&'"$ac_delim"'/g -t clear -:clear -s/\\$// -t bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/"/p -d -:bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p -b cont -' >$CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - for (key in D) D_is_set[key] = 1 - FS = "" -} -/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { - line = \$ 0 - split(line, arg, " ") - if (arg[1] == "#") { - defundef = arg[2] - mac1 = arg[3] - } else { - defundef = substr(arg[1], 2) - mac1 = arg[2] - } - split(mac1, mac2, "(") #) - macro = mac2[1] - prefix = substr(line, 1, index(line, defundef) - 1) - if (D_is_set[macro]) { - # Preserve the white space surrounding the "#". - print prefix "define", macro P[macro] D[macro] - next - } else { - # Replace #undef with comments. This is necessary, for example, - # in the case of _POSIX_SOURCE, which is predefined and required - # on some systems where configure will not decide to define it. - if (defundef == "undef") { - print "/*", prefix defundef, macro, "*/" - next - } - } -} -{ print } -_ACAWK -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 -fi # test -n "$CONFIG_HEADERS" - - -eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" -shift -for ac_tag -do - case $ac_tag in - :[FHLC]) ac_mode=$ac_tag; continue;; - esac - case $ac_mode$ac_tag in - :[FHL]*:*);; - :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; - :[FH]-) ac_tag=-:-;; - :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; - esac - ac_save_IFS=$IFS - IFS=: - set x $ac_tag - IFS=$ac_save_IFS - shift - ac_file=$1 - shift - - case $ac_mode in - :L) ac_source=$1;; - :[FH]) - ac_file_inputs= - for ac_f - do - case $ac_f in - -) ac_f="$ac_tmp/stdin";; - *) # Look for the file first in the build tree, then in the source tree - # (if the path is not absolute). The absolute path cannot be DOS-style, - # because $ac_f cannot contain `:'. - test -f "$ac_f" || - case $ac_f in - [\\/$]*) false;; - *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; - esac || - as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; - esac - case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac - as_fn_append ac_file_inputs " '$ac_f'" - done - - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - configure_input='Generated from '` - $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' - `' by configure.' - if test x"$ac_file" != x-; then - configure_input="$ac_file. $configure_input" - { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 -$as_echo "$as_me: creating $ac_file" >&6;} - fi - # Neutralize special characters interpreted by sed in replacement strings. - case $configure_input in #( - *\&* | *\|* | *\\* ) - ac_sed_conf_input=`$as_echo "$configure_input" | - sed 's/[\\\\&|]/\\\\&/g'`;; #( - *) ac_sed_conf_input=$configure_input;; - esac - - case $ac_tag in - *:-:* | *:-) cat >"$ac_tmp/stdin" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; - esac - ;; - esac - - ac_dir=`$as_dirname -- "$ac_file" || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - as_dir="$ac_dir"; as_fn_mkdir_p - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - - case $ac_mode in - :F) - # - # CONFIG_FILE - # - - case $INSTALL in - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; - esac - ac_MKDIR_P=$MKDIR_P - case $MKDIR_P in - [\\/$]* | ?:[\\/]* ) ;; - */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; - esac -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# If the template does not know about datarootdir, expand it. -# FIXME: This hack should be removed a few years after 2.60. -ac_datarootdir_hack=; ac_datarootdir_seen= -ac_sed_dataroot=' -/datarootdir/ { - p - q -} -/@datadir@/p -/@docdir@/p -/@infodir@/p -/@localedir@/p -/@mandir@/p' -case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in -*datarootdir*) ac_datarootdir_seen=yes;; -*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - ac_datarootdir_hack=' - s&@datadir@&$datadir&g - s&@docdir@&$docdir&g - s&@infodir@&$infodir&g - s&@localedir@&$localedir&g - s&@mandir@&$mandir&g - s&\\\${datarootdir}&$datarootdir&g' ;; -esac -_ACEOF - -# Neutralize VPATH when `$srcdir' = `.'. -# Shell code in configure.ac might set extrasub. -# FIXME: do we really want to maintain this feature? -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_sed_extra="$ac_vpsub -$extrasub -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s|@configure_input@|$ac_sed_conf_input|;t t -s&@top_builddir@&$ac_top_builddir_sub&;t t -s&@top_build_prefix@&$ac_top_build_prefix&;t t -s&@srcdir@&$ac_srcdir&;t t -s&@abs_srcdir@&$ac_abs_srcdir&;t t -s&@top_srcdir@&$ac_top_srcdir&;t t -s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t -s&@builddir@&$ac_builddir&;t t -s&@abs_builddir@&$ac_abs_builddir&;t t -s&@abs_top_builddir@&$ac_abs_top_builddir&;t t -s&@INSTALL@&$ac_INSTALL&;t t -s&@MKDIR_P@&$ac_MKDIR_P&;t t -$ac_datarootdir_hack -" -eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ - >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - -test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && - { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ - "$ac_tmp/out"`; test -z "$ac_out"; } && - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&5 -$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&2;} - - rm -f "$ac_tmp/stdin" - case $ac_file in - -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; - *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; - esac \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - ;; - :H) - # - # CONFIG_HEADER - # - if test x"$ac_file" != x-; then - { - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" - } >"$ac_tmp/config.h" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then - { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 -$as_echo "$as_me: $ac_file is unchanged" >&6;} - else - rm -f "$ac_file" - mv "$ac_tmp/config.h" "$ac_file" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - fi - else - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ - || as_fn_error $? "could not create -" "$LINENO" 5 - fi -# Compute "$ac_file"'s index in $config_headers. -_am_arg="$ac_file" -_am_stamp_count=1 -for _am_header in $config_headers :; do - case $_am_header in - $_am_arg | $_am_arg:* ) - break ;; - * ) - _am_stamp_count=`expr $_am_stamp_count + 1` ;; - esac -done -echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || -$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$_am_arg" : 'X\(//\)[^/]' \| \ - X"$_am_arg" : 'X\(//\)$' \| \ - X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$_am_arg" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'`/stamp-h$_am_stamp_count - ;; - - :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 -$as_echo "$as_me: executing $ac_file commands" >&6;} - ;; - esac - - - case $ac_file$ac_mode in - "depfiles":C) test x"$AMDEP_TRUE" != x"" || { - # Autoconf 2.62 quotes --file arguments for eval, but not when files - # are listed without --file. Let's play safe and only enable the eval - # if we detect the quoting. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac - shift - for mf - do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named `Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`$as_dirname -- "$mf" || -$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$mf" : 'X\(//\)[^/]' \| \ - X"$mf" : 'X\(//\)$' \| \ - X"$mf" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$mf" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running `make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n 's/^U = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`$as_dirname -- "$file" || -$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$file" : 'X\(//\)[^/]' \| \ - X"$file" : 'X\(//\)$' \| \ - X"$file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - as_dir=$dirpart/$fdir; as_fn_mkdir_p - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done - done -} - ;; - "qa/pull-tester/run-bitcoind-for-test.sh":F) chmod +x qa/pull-tester/run-bitcoind-for-test.sh ;; - "qa/pull-tester/build-tests.sh":F) chmod +x qa/pull-tester/build-tests.sh ;; - - esac -done # for ac_tag - - -as_fn_exit 0 -_ACEOF -ac_clean_files=$ac_clean_files_save - -test $ac_write_fail = 0 || - as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 - - -# configure is writing to config.log, and then calls config.status. -# config.status does its own redirection, appending to config.log. -# Unfortunately, on DOS this fails, as config.log is still kept open -# by configure, so config.status won't be able to write to it; its -# output is simply discarded. So we exec the FD to /dev/null, -# effectively closing config.log, so it can be properly (re)opened and -# appended to by config.status. When coming back to configure, we -# need to make the FD available again. -if test "$no_create" != yes; then - ac_cs_success=: - ac_config_status_args= - test "$silent" = yes && - ac_config_status_args="$ac_config_status_args --quiet" - exec 5>/dev/null - $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false - exec 5>>config.log - # Use ||, not &&, to avoid exiting from the if with $? = 1, which - # would make configure fail if this is the last instruction. - $ac_cs_success || as_fn_exit 1 -fi -if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 -$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} -fi - diff --git a/autom4te.cache/requests b/autom4te.cache/requests deleted file mode 100644 index aa0afca..0000000 --- a/autom4te.cache/requests +++ /dev/null @@ -1,194 +0,0 @@ -# This file was generated by Autom4te #substituted by debian/rules#. -# It contains the lists of macros which have been traced. -# It can be safely removed. - -@request = ( - bless( [ - '0', - 1, - [ - '/usr/share/autoconf' - ], - [ - '/usr/share/autoconf/autoconf/autoconf.m4f', - '/usr/share/aclocal-1.11/amversion.m4', - '/usr/share/aclocal-1.11/auxdir.m4', - '/usr/share/aclocal-1.11/cond.m4', - '/usr/share/aclocal-1.11/depend.m4', - '/usr/share/aclocal-1.11/depout.m4', - '/usr/share/aclocal-1.11/init.m4', - '/usr/share/aclocal-1.11/install-sh.m4', - '/usr/share/aclocal-1.11/lead-dot.m4', - '/usr/share/aclocal-1.11/maintainer.m4', - '/usr/share/aclocal-1.11/make.m4', - '/usr/share/aclocal-1.11/missing.m4', - '/usr/share/aclocal-1.11/mkdirp.m4', - '/usr/share/aclocal-1.11/options.m4', - '/usr/share/aclocal-1.11/runlog.m4', - '/usr/share/aclocal-1.11/sanity.m4', - '/usr/share/aclocal-1.11/silent.m4', - '/usr/share/aclocal-1.11/strip.m4', - '/usr/share/aclocal-1.11/substnot.m4', - '/usr/share/aclocal-1.11/tar.m4', - 'src/m4/ax_boost_base.m4', - 'src/m4/ax_boost_chrono.m4', - 'src/m4/ax_boost_filesystem.m4', - 'src/m4/ax_boost_program_options.m4', - 'src/m4/ax_boost_system.m4', - 'src/m4/ax_boost_thread.m4', - 'src/m4/ax_boost_unit_test_framework.m4', - 'src/m4/ax_check_compile_flag.m4', - 'src/m4/ax_check_link_flag.m4', - 'src/m4/ax_check_preproc_flag.m4', - 'src/m4/ax_pthread.m4', - 'src/m4/bitcoin_find_bdb48.m4', - 'src/m4/bitcoin_qt.m4', - 'src/m4/bitcoin_subdir_to_include.m4', - 'configure.ac' - ], - { - 'm4_pattern_forbid' => 1, - 'PKG_INSTALLDIR' => 1, - 'AC_DEFUN' => 1, - 'AM_PROG_MKDIR_P' => 1, - '_BITCOIN_QT_FIND_LIBS_WITH_PKGCONFIG' => 1, - 'AM_AUTOMAKE_VERSION' => 1, - 'AM_MISSING_HAS_RUN' => 1, - 'AM_SUBST_NOTMAKE' => 1, - 'AX_BOOST_UNIT_TEST_FRAMEWORK' => 1, - 'AM_MISSING_PROG' => 1, - 'AX_BOOST_THREAD' => 1, - 'AM_PROG_INSTALL_STRIP' => 1, - '_PKG_SHORT_ERRORS_SUPPORTED' => 1, - '_m4_warn' => 1, - 'AM_SANITY_CHECK' => 1, - 'PKG_CHECK_EXISTS' => 1, - '_AM_PROG_TAR' => 1, - 'BITCOIN_FIND_BDB48' => 1, - 'AM_DEP_TRACK' => 1, - 'BITCOIN_QT_INIT' => 1, - '_AM_IF_OPTION' => 1, - 'PKG_NOARCH_INSTALLDIR' => 1, - '_AM_SUBST_NOTMAKE' => 1, - 'm4_pattern_allow' => 1, - '_AM_AUTOCONF_VERSION' => 1, - 'AX_BOOST_SYSTEM' => 1, - 'AM_SET_LEADING_DOT' => 1, - 'AX_BOOST_PROGRAM_OPTIONS' => 1, - 'BITCOIN_SUBDIR_TO_INCLUDE' => 1, - 'PKG_CHECK_VAR' => 1, - '_AM_DEPENDENCIES' => 1, - 'PKG_CHECK_MODULES' => 1, - 'AU_DEFUN' => 1, - 'AX_CHECK_PREPROC_FLAG' => 1, - 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1, - 'jm_MAINTAINER_MODE' => 1, - 'BITCOIN_QT_FAIL' => 1, - 'AX_BOOST_CHRONO' => 1, - '_BITCOIN_QT_IS_STATIC' => 1, - '_AM_SET_OPTION' => 1, - '_BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG' => 1, - 'AM_INIT_AUTOMAKE' => 1, - 'BITCOIN_QT_PATH_PROGS' => 1, - '_BITCOIN_QT_CHECK_QT5' => 1, - 'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1, - 'BITCOIN_QT_CONFIGURE' => 1, - 'AM_MAINTAINER_MODE' => 1, - 'AC_DEFUN_ONCE' => 1, - 'AX_CHECK_COMPILE_FLAG' => 1, - 'AX_BOOST_FILESYSTEM' => 1, - 'AM_SILENT_RULES' => 1, - 'AX_BOOST_BASE' => 1, - '_BITCOIN_QT_CHECK_STATIC_PLUGINS' => 1, - 'include' => 1, - 'BITCOIN_QT_CHECK' => 1, - 'AM_AUX_DIR_EXPAND' => 1, - '_AM_SET_OPTIONS' => 1, - '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1, - 'AM_RUN_LOG' => 1, - 'AX_CHECK_LINK_FLAG' => 1, - 'AX_PTHREAD' => 1, - 'ACX_PTHREAD' => 1, - '_AM_MANGLE_OPTION' => 1, - 'AM_CONDITIONAL' => 1, - 'AM_SET_DEPDIR' => 1, - 'm4_include' => 1, - 'PKG_PROG_PKG_CONFIG' => 1, - 'AM_PROG_INSTALL_SH' => 1, - '_AC_AM_CONFIG_HEADER_HOOK' => 1, - 'AM_MAKE_INCLUDE' => 1 - } - ], 'Autom4te::Request' ), - bless( [ - '1', - 1, - [ - '/usr/share/autoconf' - ], - [ - '/usr/share/autoconf/autoconf/autoconf.m4f', - 'aclocal.m4', - 'configure.ac' - ], - { - 'AM_PROG_F77_C_O' => 1, - '_LT_AC_TAGCONFIG' => 1, - 'AC_INIT' => 1, - 'm4_pattern_forbid' => 1, - 'AC_CANONICAL_TARGET' => 1, - '_AM_COND_IF' => 1, - 'AC_CONFIG_LIBOBJ_DIR' => 1, - 'AC_SUBST' => 1, - 'AC_CANONICAL_HOST' => 1, - 'AC_FC_SRCEXT' => 1, - 'AC_PROG_LIBTOOL' => 1, - 'AM_INIT_AUTOMAKE' => 1, - 'AC_CONFIG_SUBDIRS' => 1, - 'AM_PATH_GUILE' => 1, - 'AM_AUTOMAKE_VERSION' => 1, - 'LT_CONFIG_LTDL_DIR' => 1, - 'AC_CONFIG_LINKS' => 1, - 'AC_REQUIRE_AUX_FILE' => 1, - 'LT_SUPPORTED_TAG' => 1, - 'm4_sinclude' => 1, - 'AM_MAINTAINER_MODE' => 1, - 'AM_NLS' => 1, - 'AC_FC_PP_DEFINE' => 1, - 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1, - '_m4_warn' => 1, - 'AM_MAKEFILE_INCLUDE' => 1, - 'AM_PROG_CXX_C_O' => 1, - '_AM_MAKEFILE_INCLUDE' => 1, - '_AM_COND_ENDIF' => 1, - 'AM_ENABLE_MULTILIB' => 1, - 'AM_SILENT_RULES' => 1, - 'AM_PROG_MOC' => 1, - 'AC_CONFIG_FILES' => 1, - 'include' => 1, - 'LT_INIT' => 1, - 'AM_GNU_GETTEXT' => 1, - 'AM_PROG_AR' => 1, - 'AC_LIBSOURCE' => 1, - 'AC_CANONICAL_BUILD' => 1, - 'AM_PROG_FC_C_O' => 1, - 'AC_FC_FREEFORM' => 1, - 'AC_FC_PP_SRCEXT' => 1, - 'AH_OUTPUT' => 1, - 'AC_CONFIG_AUX_DIR' => 1, - '_AM_SUBST_NOTMAKE' => 1, - 'm4_pattern_allow' => 1, - 'AM_PROG_CC_C_O' => 1, - 'sinclude' => 1, - 'AM_CONDITIONAL' => 1, - 'AC_CANONICAL_SYSTEM' => 1, - 'AM_XGETTEXT_OPTION' => 1, - 'AC_CONFIG_HEADERS' => 1, - 'AC_DEFINE_TRACE_LITERAL' => 1, - 'AM_POT_TOOLS' => 1, - 'm4_include' => 1, - '_AM_COND_ELSE' => 1, - 'AC_SUBST_TRACE' => 1 - } - ], 'Autom4te::Request' ) - ); - diff --git a/autom4te.cache/traces.0 b/autom4te.cache/traces.0 deleted file mode 100644 index 84ac94e..0000000 --- a/autom4te.cache/traces.0 +++ /dev/null @@ -1,3481 +0,0 @@ -m4trace:/usr/share/aclocal-1.11/amversion.m4:17: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' -dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to -dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.11.6], [], - [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl -]) -m4trace:/usr/share/aclocal-1.11/amversion.m4:36: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.6])dnl -m4_ifndef([AC_AUTOCONF_VERSION], - [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) -m4trace:/usr/share/aclocal-1.11/auxdir.m4:49: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. -AC_PREREQ([2.50])dnl -# expand $ac_aux_dir to an absolute path -am_aux_dir=`cd $ac_aux_dir && pwd` -]) -m4trace:/usr/share/aclocal-1.11/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl - ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], - [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl -AC_SUBST([$1_TRUE])dnl -AC_SUBST([$1_FALSE])dnl -_AM_SUBST_NOTMAKE([$1_TRUE])dnl -_AM_SUBST_NOTMAKE([$1_FALSE])dnl -m4_define([_AM_COND_VALUE_$1], [$2])dnl -if $2; then - $1_TRUE= - $1_FALSE='#' -else - $1_TRUE='#' - $1_FALSE= -fi -AC_CONFIG_COMMANDS_PRE( -[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then - AC_MSG_ERROR([[conditional "$1" was never defined. -Usually this means the macro was only invoked conditionally.]]) -fi])]) -m4trace:/usr/share/aclocal-1.11/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl -AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl -AC_REQUIRE([AM_MAKE_INCLUDE])dnl -AC_REQUIRE([AM_DEP_TRACK])dnl - -ifelse([$1], CC, [depcc="$CC" am_compiler_list=], - [$1], CXX, [depcc="$CXX" am_compiler_list=], - [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], - [$1], UPC, [depcc="$UPC" am_compiler_list=], - [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], - [depcc="$$1" am_compiler_list=]) - -AC_CACHE_CHECK([dependency style of $depcc], - [am_cv_$1_dependencies_compiler_type], -[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - rm -rf conftest.dir - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_$1_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` - fi - am__universal=false - m4_case([$1], [CC], - [case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac], - [CXX], - [case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac]) - - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. Also, some Intel - # versions had trouble with output in subdirs - am__obj=sub/conftest.${OBJEXT-o} - am__minus_obj="-o $am__obj" - case $depmode in - gcc) - # This depmode causes a compiler race in universal mode. - test "$am__universal" = false || continue - ;; - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - msvc7 | msvc7msys | msvisualcpp | msvcmsys) - # This compiler won't grok `-c -o', but also, the minuso test has - # not run yet. These depmodes are late enough in the game, and - # so weak that their functioning should not be impacted. - am__obj=conftest.${OBJEXT-o} - am__minus_obj= - ;; - none) break ;; - esac - if depmode=$depmode \ - source=sub/conftest.c object=$am__obj \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep $am__obj sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_$1_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_$1_dependencies_compiler_type=none -fi -]) -AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) -AM_CONDITIONAL([am__fastdep$1], [ - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) -]) -m4trace:/usr/share/aclocal-1.11/depend.m4:164: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl -AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl -]) -m4trace:/usr/share/aclocal-1.11/depend.m4:172: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, -[ --disable-dependency-tracking speeds up one-time build - --enable-dependency-tracking do not reject slow dependency extractors]) -if test "x$enable_dependency_tracking" != xno; then - am_depcomp="$ac_aux_dir/depcomp" - AMDEPBACKSLASH='\' - am__nodep='_no' -fi -AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) -AC_SUBST([AMDEPBACKSLASH])dnl -_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl -AC_SUBST([am__nodep])dnl -_AM_SUBST_NOTMAKE([am__nodep])dnl -]) -m4trace:/usr/share/aclocal-1.11/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ - # Autoconf 2.62 quotes --file arguments for eval, but not when files - # are listed without --file. Let's play safe and only enable the eval - # if we detect the quoting. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac - shift - for mf - do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named `Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`AS_DIRNAME("$mf")` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running `make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n 's/^U = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`AS_DIRNAME(["$file"])` - AS_MKDIR_P([$dirpart/$fdir]) - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done - done -} -]) -m4trace:/usr/share/aclocal-1.11/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], - [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], - [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) -]) -m4trace:/usr/share/aclocal-1.11/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl -dnl Autoconf wants to disallow AM_ names. We explicitly allow -dnl the ones we care about. -m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl -AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl -AC_REQUIRE([AC_PROG_INSTALL])dnl -if test "`cd $srcdir && pwd`" != "`pwd`"; then - # Use -I$(srcdir) only when $(srcdir) != ., so that make's output - # is not polluted with repeated "-I." - AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl - # test to see if srcdir already configured - if test -f $srcdir/config.status; then - AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) - fi -fi - -# test whether we have cygpath -if test -z "$CYGPATH_W"; then - if (cygpath --version) >/dev/null 2>/dev/null; then - CYGPATH_W='cygpath -w' - else - CYGPATH_W=echo - fi -fi -AC_SUBST([CYGPATH_W]) - -# Define the identity of the package. -dnl Distinguish between old-style and new-style calls. -m4_ifval([$2], -[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl - AC_SUBST([PACKAGE], [$1])dnl - AC_SUBST([VERSION], [$2])], -[_AM_SET_OPTIONS([$1])dnl -dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. -m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, - [m4_fatal([AC_INIT should be called with package and version arguments])])dnl - AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl - AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl - -_AM_IF_OPTION([no-define],, -[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) - AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl - -# Some tools Automake needs. -AC_REQUIRE([AM_SANITY_CHECK])dnl -AC_REQUIRE([AC_ARG_PROGRAM])dnl -AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) -AM_MISSING_PROG(AUTOCONF, autoconf) -AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) -AM_MISSING_PROG(AUTOHEADER, autoheader) -AM_MISSING_PROG(MAKEINFO, makeinfo) -AC_REQUIRE([AM_PROG_INSTALL_SH])dnl -AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl -AC_REQUIRE([AM_PROG_MKDIR_P])dnl -# We need awk for the "check" target. The system "awk" is bad on -# some platforms. -AC_REQUIRE([AC_PROG_AWK])dnl -AC_REQUIRE([AC_PROG_MAKE_SET])dnl -AC_REQUIRE([AM_SET_LEADING_DOT])dnl -_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], - [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], - [_AM_PROG_TAR([v7])])]) -_AM_IF_OPTION([no-dependencies],, -[AC_PROVIDE_IFELSE([AC_PROG_CC], - [_AM_DEPENDENCIES(CC)], - [define([AC_PROG_CC], - defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl -AC_PROVIDE_IFELSE([AC_PROG_CXX], - [_AM_DEPENDENCIES(CXX)], - [define([AC_PROG_CXX], - defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl -AC_PROVIDE_IFELSE([AC_PROG_OBJC], - [_AM_DEPENDENCIES(OBJC)], - [define([AC_PROG_OBJC], - defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl -]) -_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl -dnl The `parallel-tests' driver may need to know about EXEEXT, so add the -dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro -dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. -AC_CONFIG_COMMANDS_PRE(dnl -[m4_provide_if([_AM_COMPILER_EXEEXT], - [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl -]) -m4trace:/usr/share/aclocal-1.11/init.m4:126: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. -_am_arg=$1 -_am_stamp_count=1 -for _am_header in $config_headers :; do - case $_am_header in - $_am_arg | $_am_arg:* ) - break ;; - * ) - _am_stamp_count=`expr $_am_stamp_count + 1` ;; - esac -done -echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) -m4trace:/usr/share/aclocal-1.11/install-sh.m4:14: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -if test x"${install_sh}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; - *) - install_sh="\${SHELL} $am_aux_dir/install-sh" - esac -fi -AC_SUBST(install_sh)]) -m4trace:/usr/share/aclocal-1.11/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null -mkdir .tst 2>/dev/null -if test -d .tst; then - am__leading_dot=. -else - am__leading_dot=_ -fi -rmdir .tst 2>/dev/null -AC_SUBST([am__leading_dot])]) -m4trace:/usr/share/aclocal-1.11/maintainer.m4:19: -1- AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]), - [enable], [m4_define([am_maintainer_other], [disable])], - [disable], [m4_define([am_maintainer_other], [enable])], - [m4_define([am_maintainer_other], [enable]) - m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) -AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) - dnl maintainer-mode's default is 'disable' unless 'enable' is passed - AC_ARG_ENABLE([maintainer-mode], -[ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful - (and sometimes confusing) to the casual installer], - [USE_MAINTAINER_MODE=$enableval], - [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) - AC_MSG_RESULT([$USE_MAINTAINER_MODE]) - AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) - MAINT=$MAINTAINER_MODE_TRUE - AC_SUBST([MAINT])dnl - -]) -m4trace:/usr/share/aclocal-1.11/maintainer.m4:39: -1- AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) -m4trace:/usr/share/aclocal-1.11/maintainer.m4:39: -1- AC_DEFUN([jm_MAINTAINER_MODE], [AC_DIAGNOSE([obsolete], [The macro `jm_MAINTAINER_MODE' is obsolete. -You should run autoupdate.])dnl -AM_MAINTAINER_MODE]) -m4trace:/usr/share/aclocal-1.11/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} -cat > confinc << 'END' -am__doit: - @echo this is the am__doit target -.PHONY: am__doit -END -# If we don't find an include directive, just comment out the code. -AC_MSG_CHECKING([for style of include used by $am_make]) -am__include="#" -am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# Ignore all kinds of additional output from `make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD - ;; - esac -fi -AC_SUBST([am__include]) -AC_SUBST([am__quote]) -AC_MSG_RESULT([$_am_result]) -rm -f confinc confmf -]) -m4trace:/usr/share/aclocal-1.11/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) -$1=${$1-"${am_missing_run}$2"} -AC_SUBST($1)]) -m4trace:/usr/share/aclocal-1.11/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -AC_REQUIRE_AUX_FILE([missing])dnl -if test x"${MISSING+set}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; - *) - MISSING="\${SHELL} $am_aux_dir/missing" ;; - esac -fi -# Use eval to expand $SHELL -if eval "$MISSING --run true"; then - am_missing_run="$MISSING --run " -else - am_missing_run= - AC_MSG_WARN([`missing' script is too old or missing]) -fi -]) -m4trace:/usr/share/aclocal-1.11/mkdirp.m4:14: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl -AC_REQUIRE([AC_PROG_MKDIR_P])dnl -dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, -dnl while keeping a definition of mkdir_p for backward compatibility. -dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. -dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of -dnl Makefile.ins that do not define MKDIR_P, so we do our own -dnl adjustment using top_builddir (which is defined more often than -dnl MKDIR_P). -AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl -case $mkdir_p in - [[\\/$]]* | ?:[[\\/]]*) ;; - */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; -esac -]) -m4trace:/usr/share/aclocal-1.11/options.m4:14: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) -m4trace:/usr/share/aclocal-1.11/options.m4:20: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) -m4trace:/usr/share/aclocal-1.11/options.m4:26: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) -m4trace:/usr/share/aclocal-1.11/options.m4:32: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) -m4trace:/usr/share/aclocal-1.11/runlog.m4:14: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD - ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD - (exit $ac_status); }]) -m4trace:/usr/share/aclocal-1.11/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) -# Just in case -sleep 1 -echo timestamp > conftest.file -# Reject unsafe characters in $srcdir or the absolute working directory -# name. Accept space and tab only in the latter. -am_lf=' -' -case `pwd` in - *[[\\\"\#\$\&\'\`$am_lf]]*) - AC_MSG_ERROR([unsafe absolute working directory name]);; -esac -case $srcdir in - *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) - AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; -esac - -# Do `set' in a subshell so we don't clobber the current shell's -# arguments. Must try -L first in case configure is actually a -# symlink; some systems play weird games with the mod time of symlinks -# (eg FreeBSD returns the mod time of the symlink's containing -# directory). -if ( - set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` - if test "$[*]" = "X"; then - # -L didn't work. - set X `ls -t "$srcdir/configure" conftest.file` - fi - rm -f conftest.file - if test "$[*]" != "X $srcdir/configure conftest.file" \ - && test "$[*]" != "X conftest.file $srcdir/configure"; then - - # If neither matched, then we have a broken ls. This can happen - # if, for instance, CONFIG_SHELL is bash and it inherits a - # broken ls alias from the environment. This has actually - # happened. Such a system could not be considered "sane". - AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken -alias in your environment]) - fi - - test "$[2]" = conftest.file - ) -then - # Ok. - : -else - AC_MSG_ERROR([newly created file is older than distributed files! -Check your system clock]) -fi -AC_MSG_RESULT(yes)]) -m4trace:/usr/share/aclocal-1.11/silent.m4:14: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], -[ --enable-silent-rules less verbose build output (undo: `make V=1') - --disable-silent-rules verbose build output (undo: `make V=0')]) -case $enable_silent_rules in -yes) AM_DEFAULT_VERBOSITY=0;; -no) AM_DEFAULT_VERBOSITY=1;; -*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; -esac -dnl -dnl A few `make' implementations (e.g., NonStop OS and NextStep) -dnl do not support nested variable expansions. -dnl See automake bug#9928 and bug#10237. -am_make=${MAKE-make} -AC_CACHE_CHECK([whether $am_make supports nested variables], - [am_cv_make_support_nested_variables], - [if AS_ECHO([['TRUE=$(BAR$(V)) -BAR0=false -BAR1=true -V=1 -am__doit: - @$(TRUE) -.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then - am_cv_make_support_nested_variables=yes -else - am_cv_make_support_nested_variables=no -fi]) -if test $am_cv_make_support_nested_variables = yes; then - dnl Using `$V' instead of `$(V)' breaks IRIX make. - AM_V='$(V)' - AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -else - AM_V=$AM_DEFAULT_VERBOSITY - AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY -fi -AC_SUBST([AM_V])dnl -AM_SUBST_NOTMAKE([AM_V])dnl -AC_SUBST([AM_DEFAULT_V])dnl -AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl -AC_SUBST([AM_DEFAULT_VERBOSITY])dnl -AM_BACKSLASH='\' -AC_SUBST([AM_BACKSLASH])dnl -_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl -]) -m4trace:/usr/share/aclocal-1.11/strip.m4:19: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl -# Installed binaries are usually stripped using `strip' when the user -# run `make install-strip'. However `strip' might not be the right -# tool to use in cross-compilation environments, therefore Automake -# will honor the `STRIP' environment variable to overrule this program. -dnl Don't test for $cross_compiling = yes, because it might be `maybe'. -if test "$cross_compiling" != no; then - AC_CHECK_TOOL([STRIP], [strip], :) -fi -INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" -AC_SUBST([INSTALL_STRIP_PROGRAM])]) -m4trace:/usr/share/aclocal-1.11/substnot.m4:14: -1- AC_DEFUN([_AM_SUBST_NOTMAKE]) -m4trace:/usr/share/aclocal-1.11/substnot.m4:19: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) -m4trace:/usr/share/aclocal-1.11/tar.m4:24: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used -# in the wild :-( We should find a proper way to deprecate it ... -AC_SUBST([AMTAR], ['$${TAR-tar}']) -m4_if([$1], [v7], - [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], - [m4_case([$1], [ustar],, [pax],, - [m4_fatal([Unknown tar format])]) -AC_MSG_CHECKING([how to create a $1 tar archive]) -# Loop over all known methods to create a tar archive until one works. -_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' -_am_tools=${am_cv_prog_tar_$1-$_am_tools} -# Do not fold the above two line into one, because Tru64 sh and -# Solaris sh will not grok spaces in the rhs of `-'. -for _am_tool in $_am_tools -do - case $_am_tool in - gnutar) - for _am_tar in tar gnutar gtar; - do - AM_RUN_LOG([$_am_tar --version]) && break - done - am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' - am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' - am__untar="$_am_tar -xf -" - ;; - plaintar) - # Must skip GNU tar: if it does not support --format= it doesn't create - # ustar tarball either. - (tar --version) >/dev/null 2>&1 && continue - am__tar='tar chf - "$$tardir"' - am__tar_='tar chf - "$tardir"' - am__untar='tar xf -' - ;; - pax) - am__tar='pax -L -x $1 -w "$$tardir"' - am__tar_='pax -L -x $1 -w "$tardir"' - am__untar='pax -r' - ;; - cpio) - am__tar='find "$$tardir" -print | cpio -o -H $1 -L' - am__tar_='find "$tardir" -print | cpio -o -H $1 -L' - am__untar='cpio -i -H $1 -d' - ;; - none) - am__tar=false - am__tar_=false - am__untar=false - ;; - esac - - # If the value was cached, stop now. We just wanted to have am__tar - # and am__untar set. - test -n "${am_cv_prog_tar_$1}" && break - - # tar/untar a dummy directory, and stop if the command works - rm -rf conftest.dir - mkdir conftest.dir - echo GrepMe > conftest.dir/file - AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) - rm -rf conftest.dir - if test -s conftest.tar; then - AM_RUN_LOG([$am__untar /dev/null 2>&1 && break - fi -done -rm -rf conftest.dir - -AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) -AC_MSG_RESULT([$am_cv_prog_tar_$1])]) -AC_SUBST([am__tar]) -AC_SUBST([am__untar]) -]) -m4trace:src/m4/ax_boost_base.m4:38: -1- AC_DEFUN([AX_BOOST_BASE], [ -AC_ARG_WITH([boost], - [AS_HELP_STRING([--with-boost@<:@=ARG@:>@], - [use Boost library from a standard location (ARG=yes), - from the specified location (ARG=), - or disable it (ARG=no) - @<:@ARG=yes@:>@ ])], - [ - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ac_boost_path="" - else - want_boost="yes" - ac_boost_path="$withval" - fi - ], - [want_boost="yes"]) - - -AC_ARG_WITH([boost-libdir], - AS_HELP_STRING([--with-boost-libdir=LIB_DIR], - [Force given directory for boost libraries. Note that this will override library path detection, so use this parameter only if default library detection fails and you know exactly where your boost libraries are located.]), - [ - if test -d "$withval" - then - ac_boost_lib_path="$withval" - else - AC_MSG_ERROR(--with-boost-libdir expected directory name) - fi - ], - [ac_boost_lib_path=""] -) - -if test "x$want_boost" = "xyes"; then - boost_lib_version_req=ifelse([$1], ,1.20.0,$1) - boost_lib_version_req_shorten=`expr $boost_lib_version_req : '\([[0-9]]*\.[[0-9]]*\)'` - boost_lib_version_req_major=`expr $boost_lib_version_req : '\([[0-9]]*\)'` - boost_lib_version_req_minor=`expr $boost_lib_version_req : '[[0-9]]*\.\([[0-9]]*\)'` - boost_lib_version_req_sub_minor=`expr $boost_lib_version_req : '[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\)'` - if test "x$boost_lib_version_req_sub_minor" = "x" ; then - boost_lib_version_req_sub_minor="0" - fi - WANT_BOOST_VERSION=`expr $boost_lib_version_req_major \* 100000 \+ $boost_lib_version_req_minor \* 100 \+ $boost_lib_version_req_sub_minor` - AC_MSG_CHECKING(for boostlib >= $boost_lib_version_req) - succeeded=no - - dnl On 64-bit systems check for system libraries in both lib64 and lib. - dnl The former is specified by FHS, but e.g. Debian does not adhere to - dnl this (as it rises problems for generic multi-arch support). - dnl The last entry in the list is chosen by default when no libraries - dnl are found, e.g. when only header-only libraries are installed! - libsubdirs="lib" - ax_arch=`uname -m` - case $ax_arch in - x86_64) - libsubdirs="lib64 libx32 lib lib64" - ;; - ppc64|s390x|sparc64|aarch64) - libsubdirs="lib64 lib lib64" - ;; - esac - - dnl allow for real multi-arch paths e.g. /usr/lib/x86_64-linux-gnu. Give - dnl them priority over the other paths since, if libs are found there, they - dnl are almost assuredly the ones desired. - 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 - if test "$ac_boost_path" != ""; then - BOOST_CPPFLAGS="-I$ac_boost_path/include" - for ac_boost_path_tmp in $libsubdirs; do - if test -d "$ac_boost_path"/"$ac_boost_path_tmp" ; then - BOOST_LDFLAGS="-L$ac_boost_path/$ac_boost_path_tmp" - break - fi - done - elif test "$cross_compiling" != yes; then - for ac_boost_path_tmp in /usr /usr/local /opt /opt/local ; do - if test -d "$ac_boost_path_tmp/include/boost" && test -r "$ac_boost_path_tmp/include/boost"; then - for libsubdir in $libsubdirs ; do - if ls "$ac_boost_path_tmp/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi - done - BOOST_LDFLAGS="-L$ac_boost_path_tmp/$libsubdir" - BOOST_CPPFLAGS="-I$ac_boost_path_tmp/include" - break; - fi - done - fi - - dnl overwrite ld flags if we have required special directory with - dnl --with-boost-libdir parameter - if test "$ac_boost_lib_path" != ""; then - BOOST_LDFLAGS="-L$ac_boost_lib_path" - fi - - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - AC_REQUIRE([AC_PROG_CXX]) - AC_LANG_PUSH(C++) - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ - @%:@include - ]], [[ - #if BOOST_VERSION >= $WANT_BOOST_VERSION - // Everything is okay - #else - # error Boost version is too old - #endif - ]])],[ - AC_MSG_RESULT(yes) - succeeded=yes - found_system=yes - ],[: - ]) - AC_LANG_POP([C++]) - - - - dnl if we found no boost with system layout we search for boost libraries - dnl built and installed without the --layout=system option or for a staged(not installed) version - if test "x$succeeded" != "xyes"; then - _version=0 - if test "$ac_boost_path" != ""; then - if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then - for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do - _version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` - V_CHECK=`expr $_version_tmp \> $_version` - if test "$V_CHECK" = "1" ; then - _version=$_version_tmp - fi - VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` - BOOST_CPPFLAGS="-I$ac_boost_path/include/boost-$VERSION_UNDERSCORE" - done - fi - else - if test "$cross_compiling" != yes; then - for ac_boost_path in /usr /usr/local /opt /opt/local ; do - if test -d "$ac_boost_path" && test -r "$ac_boost_path"; then - for i in `ls -d $ac_boost_path/include/boost-* 2>/dev/null`; do - _version_tmp=`echo $i | sed "s#$ac_boost_path##" | sed 's/\/include\/boost-//' | sed 's/_/./'` - V_CHECK=`expr $_version_tmp \> $_version` - if test "$V_CHECK" = "1" ; then - _version=$_version_tmp - best_path=$ac_boost_path - fi - done - fi - done - - VERSION_UNDERSCORE=`echo $_version | sed 's/\./_/'` - BOOST_CPPFLAGS="-I$best_path/include/boost-$VERSION_UNDERSCORE" - if test "$ac_boost_lib_path" = ""; then - for libsubdir in $libsubdirs ; do - if ls "$best_path/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi - done - BOOST_LDFLAGS="-L$best_path/$libsubdir" - fi - fi - - if test "x$BOOST_ROOT" != "x"; then - for libsubdir in $libsubdirs ; do - if ls "$BOOST_ROOT/stage/$libsubdir/libboost_"* >/dev/null 2>&1 ; then break; fi - done - if test -d "$BOOST_ROOT" && test -r "$BOOST_ROOT" && test -d "$BOOST_ROOT/stage/$libsubdir" && test -r "$BOOST_ROOT/stage/$libsubdir"; then - version_dir=`expr //$BOOST_ROOT : '.*/\(.*\)'` - stage_version=`echo $version_dir | sed 's/boost_//' | sed 's/_/./g'` - stage_version_shorten=`expr $stage_version : '\([[0-9]]*\.[[0-9]]*\)'` - V_CHECK=`expr $stage_version_shorten \>\= $_version` - if test "$V_CHECK" = "1" -a "$ac_boost_lib_path" = "" ; then - AC_MSG_NOTICE(We will use a staged boost library from $BOOST_ROOT) - BOOST_CPPFLAGS="-I$BOOST_ROOT" - BOOST_LDFLAGS="-L$BOOST_ROOT/stage/$libsubdir" - fi - fi - fi - fi - - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - AC_LANG_PUSH(C++) - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ - @%:@include - ]], [[ - #if BOOST_VERSION >= $WANT_BOOST_VERSION - // Everything is okay - #else - # error Boost version is too old - #endif - ]])],[ - AC_MSG_RESULT(yes) - succeeded=yes - found_system=yes - ],[: - ]) - AC_LANG_POP([C++]) - fi - - if test "$succeeded" != "yes" ; then - if test "$_version" = "0" ; then - AC_MSG_NOTICE([[We could not detect the boost libraries (version $boost_lib_version_req_shorten or higher). If you have a staged boost library (still not installed) please specify \$BOOST_ROOT in your environment and do not give a PATH to --with-boost option. If you are sure you have boost installed, then check your version number looking in . See http://randspringer.de/boost for more documentation.]]) - else - AC_MSG_NOTICE([Your boost libraries seems to old (version $_version).]) - fi - # execute ACTION-IF-NOT-FOUND (if present): - ifelse([$3], , :, [$3]) - else - AC_SUBST(BOOST_CPPFLAGS) - AC_SUBST(BOOST_LDFLAGS) - AC_DEFINE(HAVE_BOOST,,[define if the Boost library is available]) - # execute ACTION-IF-FOUND (if present): - ifelse([$2], , :, [$2]) - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" -fi - -]) -m4trace:src/m4/ax_boost_chrono.m4:34: -1- AC_DEFUN([AX_BOOST_CHRONO], [ - AC_ARG_WITH([boost-chrono], - AS_HELP_STRING([--with-boost-chrono@<:@=special-lib@:>@], - [use the Chrono library from boost - it is possible to specify a certain library for the linker - e.g. --with-boost-chrono=boost_chrono-gcc-mt ]), - [ - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_chrono_lib="" - else - want_boost="yes" - ax_boost_user_chrono_lib="$withval" - fi - ], - [want_boost="yes"] - ) - - if test "x$want_boost" = "xyes"; then - AC_REQUIRE([AC_PROG_CC]) - AC_REQUIRE([AC_CANONICAL_BUILD]) - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - AC_CACHE_CHECK(whether the Boost::Chrono library is available, - ax_cv_boost_chrono, - [AC_LANG_PUSH([C++]) - CXXFLAGS_SAVE=$CXXFLAGS - - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[@%:@include ]], - [[boost::chrono::system_clock::time_point time;]])], - ax_cv_boost_chrono=yes, ax_cv_boost_chrono=no) - CXXFLAGS=$CXXFLAGS_SAVE - AC_LANG_POP([C++]) - ]) - if test "x$ax_cv_boost_chrono" = "xyes"; then - AC_SUBST(BOOST_CPPFLAGS) - - AC_DEFINE(HAVE_BOOST_CHRONO,,[define if the Boost::Chrono library is available]) - BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` - - 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, - [BOOST_CHRONO_LIB="-l$ax_lib"; AC_SUBST(BOOST_CHRONO_LIB) link_chrono="yes"; break], - [link_chrono="no"]) - done - if test "x$link_chrono" != "xyes"; then - for libextension in `ls $BOOSTLIBDIR/boost_chrono*.dll* $BOOSTLIBDIR/boost_chrono*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_chrono.*\)\.dll.*$;\1;' -e 's;^\(boost_chrono.*\)\.a.*$;\1;'` ; do - ax_lib=${libextension} - AC_CHECK_LIB($ax_lib, exit, - [BOOST_CHRONO_LIB="-l$ax_lib"; AC_SUBST(BOOST_CHRONO_LIB) link_chrono="yes"; break], - [link_chrono="no"]) - done - fi - - else - for ax_lib in $ax_boost_user_chrono_lib boost_chrono-$ax_boost_user_chrono_lib; do - AC_CHECK_LIB($ax_lib, exit, - [BOOST_CHRONO_LIB="-l$ax_lib"; AC_SUBST(BOOST_CHRONO_LIB) link_chrono="yes"; break], - [link_chrono="no"]) - done - - fi - if test "x$ax_lib" = "x"; then - 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 !) - fi - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - fi -]) -m4trace:src/m4/ax_boost_filesystem.m4:36: -1- AC_DEFUN([AX_BOOST_FILESYSTEM], [ - AC_ARG_WITH([boost-filesystem], - AS_HELP_STRING([--with-boost-filesystem@<:@=special-lib@:>@], - [use the Filesystem library from boost - it is possible to specify a certain library for the linker - e.g. --with-boost-filesystem=boost_filesystem-gcc-mt ]), - [ - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_filesystem_lib="" - else - want_boost="yes" - ax_boost_user_filesystem_lib="$withval" - fi - ], - [want_boost="yes"] - ) - - if test "x$want_boost" = "xyes"; then - AC_REQUIRE([AC_PROG_CC]) - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - LIBS_SAVED=$LIBS - LIBS="$LIBS $BOOST_SYSTEM_LIB" - export LIBS - - AC_CACHE_CHECK(whether the Boost::Filesystem library is available, - ax_cv_boost_filesystem, - [AC_LANG_PUSH([C++]) - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[@%:@include ]], - [[using namespace boost::filesystem; - path my_path( "foo/bar/data.txt" ); - return 0;]])], - ax_cv_boost_filesystem=yes, ax_cv_boost_filesystem=no) - AC_LANG_POP([C++]) - ]) - 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} - AC_CHECK_LIB($ax_lib, exit, - [BOOST_FILESYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_FILESYSTEM_LIB) link_filesystem="yes"; break], - [link_filesystem="no"]) - done - if test "x$link_filesystem" != "xyes"; then - for libextension in `ls -r $BOOSTLIBDIR/boost_filesystem* 2>/dev/null | sed 's,.*/,,' | sed -e 's,\..*,,'` ; do - ax_lib=${libextension} - AC_CHECK_LIB($ax_lib, exit, - [BOOST_FILESYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_FILESYSTEM_LIB) link_filesystem="yes"; break], - [link_filesystem="no"]) - done - fi - else - for ax_lib in $ax_boost_user_filesystem_lib boost_filesystem-$ax_boost_user_filesystem_lib; do - AC_CHECK_LIB($ax_lib, exit, - [BOOST_FILESYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_FILESYSTEM_LIB) link_filesystem="yes"; break], - [link_filesystem="no"]) - done - - fi - if test "x$ax_lib" = "x"; then - 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 !) - fi - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - LIBS="$LIBS_SAVED" - fi -]) -m4trace:src/m4/ax_boost_program_options.m4:34: -1- AC_DEFUN([AX_BOOST_PROGRAM_OPTIONS], [ - AC_ARG_WITH([boost-program-options], - AS_HELP_STRING([--with-boost-program-options@<:@=special-lib@:>@], - [use the program options library from boost - it is possible to specify a certain library for the linker - e.g. --with-boost-program-options=boost_program_options-gcc-mt-1_33_1 ]), - [ - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_program_options_lib="" - else - want_boost="yes" - ax_boost_user_program_options_lib="$withval" - fi - ], - [want_boost="yes"] - ) - - if test "x$want_boost" = "xyes"; then - AC_REQUIRE([AC_PROG_CC]) - export want_boost - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - AC_CACHE_CHECK([whether the Boost::Program_Options library is available], - ax_cv_boost_program_options, - [AC_LANG_PUSH(C++) - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[@%:@include - ]], - [[boost::program_options::options_description generic("Generic options"); - return 0;]])], - ax_cv_boost_program_options=yes, ax_cv_boost_program_options=no) - AC_LANG_POP([C++]) - ]) - if test "$ax_cv_boost_program_options" = yes; then - 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, - [BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib"; AC_SUBST(BOOST_PROGRAM_OPTIONS_LIB) link_program_options="yes"; break], - [link_program_options="no"]) - done - if test "x$link_program_options" != "xyes"; then - for libextension in `ls $BOOSTLIBDIR/boost_program_options*.dll* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_program_options.*\)\.dll.*$;\1;'` `ls $BOOSTLIBDIR/boost_program_options*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_program_options.*\)\.a.*$;\1;'` ; do - ax_lib=${libextension} - AC_CHECK_LIB($ax_lib, exit, - [BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib"; AC_SUBST(BOOST_PROGRAM_OPTIONS_LIB) link_program_options="yes"; break], - [link_program_options="no"]) - done - fi - else - for ax_lib in $ax_boost_user_program_options_lib boost_program_options-$ax_boost_user_program_options_lib; do - AC_CHECK_LIB($ax_lib, main, - [BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib"; AC_SUBST(BOOST_PROGRAM_OPTIONS_LIB) link_program_options="yes"; break], - [link_program_options="no"]) - done - fi - if test "x$ax_lib" = "x"; then - 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] !]) - fi - fi - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - fi -]) -m4trace:src/m4/ax_boost_system.m4:36: -1- AC_DEFUN([AX_BOOST_SYSTEM], [ - AC_ARG_WITH([boost-system], - AS_HELP_STRING([--with-boost-system@<:@=special-lib@:>@], - [use the System library from boost - it is possible to specify a certain library for the linker - e.g. --with-boost-system=boost_system-gcc-mt ]), - [ - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_system_lib="" - else - want_boost="yes" - ax_boost_user_system_lib="$withval" - fi - ], - [want_boost="yes"] - ) - - if test "x$want_boost" = "xyes"; then - AC_REQUIRE([AC_PROG_CC]) - AC_REQUIRE([AC_CANONICAL_BUILD]) - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - AC_CACHE_CHECK(whether the Boost::System library is available, - ax_cv_boost_system, - [AC_LANG_PUSH([C++]) - CXXFLAGS_SAVE=$CXXFLAGS - - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[@%:@include ]], - [[boost::system::system_category]])], - ax_cv_boost_system=yes, ax_cv_boost_system=no) - CXXFLAGS=$CXXFLAGS_SAVE - AC_LANG_POP([C++]) - ]) - if test "x$ax_cv_boost_system" = "xyes"; then - AC_SUBST(BOOST_CPPFLAGS) - - AC_DEFINE(HAVE_BOOST_SYSTEM,,[define if the Boost::System library is available]) - BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` - - 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, - [BOOST_SYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_SYSTEM_LIB) link_system="yes"; break], - [link_system="no"]) - done - if test "x$link_system" != "xyes"; then - for libextension in `ls -r $BOOSTLIBDIR/boost_system* 2>/dev/null | sed 's,.*/,,' | sed -e 's,\..*,,'` ; do - ax_lib=${libextension} - AC_CHECK_LIB($ax_lib, exit, - [BOOST_SYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_SYSTEM_LIB) link_system="yes"; break], - [link_system="no"]) - done - fi - - else - for ax_lib in $ax_boost_user_system_lib boost_system-$ax_boost_user_system_lib; do - AC_CHECK_LIB($ax_lib, exit, - [BOOST_SYSTEM_LIB="-l$ax_lib"; AC_SUBST(BOOST_SYSTEM_LIB) link_system="yes"; break], - [link_system="no"]) - done - - fi - if test "x$ax_lib" = "x"; then - 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 !) - fi - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - fi -]) -m4trace:src/m4/ax_boost_thread.m4:35: -1- AC_DEFUN([AX_BOOST_THREAD], [ - AC_ARG_WITH([boost-thread], - AS_HELP_STRING([--with-boost-thread@<:@=special-lib@:>@], - [use the Thread library from boost - it is possible to specify a certain library for the linker - e.g. --with-boost-thread=boost_thread-gcc-mt ]), - [ - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_thread_lib="" - else - want_boost="yes" - ax_boost_user_thread_lib="$withval" - fi - ], - [want_boost="yes"] - ) - - if test "x$want_boost" = "xyes"; then - AC_REQUIRE([AC_PROG_CC]) - AC_REQUIRE([AC_CANONICAL_BUILD]) - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - AC_CACHE_CHECK(whether the Boost::Thread library is available, - ax_cv_boost_thread, - [AC_LANG_PUSH([C++]) - CXXFLAGS_SAVE=$CXXFLAGS - - if test "x$host_os" = "xsolaris" ; then - CXXFLAGS="-pthreads $CXXFLAGS" - elif test "x$host_os" = "xmingw32" ; then - CXXFLAGS="-mthreads $CXXFLAGS" - else - CXXFLAGS="-pthread $CXXFLAGS" - fi - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[@%:@include ]], - [[boost::thread_group thrds; - return 0;]])], - ax_cv_boost_thread=yes, ax_cv_boost_thread=no) - CXXFLAGS=$CXXFLAGS_SAVE - AC_LANG_POP([C++]) - ]) - if test "x$ax_cv_boost_thread" = "xyes"; then - if test "x$host_os" = "xsolaris" ; then - BOOST_CPPFLAGS="-pthreads $BOOST_CPPFLAGS" - elif test "x$host_os" = "xmingw32" ; then - BOOST_CPPFLAGS="-mthreads $BOOST_CPPFLAGS" - else - BOOST_CPPFLAGS="-pthread $BOOST_CPPFLAGS" - fi - - AC_SUBST(BOOST_CPPFLAGS) - - AC_DEFINE(HAVE_BOOST_THREAD,,[define if the Boost::Thread library is available]) - BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` - - LDFLAGS_SAVE=$LDFLAGS - case "x$host_os" in - *bsd* ) - LDFLAGS="-pthread $LDFLAGS" - break; - ;; - 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, - [BOOST_THREAD_LIB="-l$ax_lib"; AC_SUBST(BOOST_THREAD_LIB) link_thread="yes"; break], - [link_thread="no"]) - done - if test "x$link_thread" != "xyes"; then - for libextension in `ls -r $BOOSTLIBDIR/boost_thread* 2>/dev/null | sed 's,.*/,,' | sed 's,\..*,,'`; do - ax_lib=${libextension} - AC_CHECK_LIB($ax_lib, exit, - [BOOST_THREAD_LIB="-l$ax_lib"; AC_SUBST(BOOST_THREAD_LIB) link_thread="yes"; break], - [link_thread="no"]) - done - fi - - else - for ax_lib in $ax_boost_user_thread_lib boost_thread-$ax_boost_user_thread_lib; do - AC_CHECK_LIB($ax_lib, exit, - [BOOST_THREAD_LIB="-l$ax_lib"; AC_SUBST(BOOST_THREAD_LIB) link_thread="yes"; break], - [link_thread="no"]) - done - - fi - if test "x$ax_lib" = "x"; then - 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 !) - else - case "x$host_os" in - *bsd* ) - BOOST_LDFLAGS="-pthread $BOOST_LDFLAGS" - break; - ;; - esac - - fi - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - fi -]) -m4trace:src/m4/ax_boost_unit_test_framework.m4:34: -1- AC_DEFUN([AX_BOOST_UNIT_TEST_FRAMEWORK], [ - AC_ARG_WITH([boost-unit-test-framework], - AS_HELP_STRING([--with-boost-unit-test-framework@<:@=special-lib@:>@], - [use the Unit_Test_Framework library from boost - it is possible to specify a certain library for the linker - e.g. --with-boost-unit-test-framework=boost_unit_test_framework-gcc ]), - [ - if test "$withval" = "no"; then - want_boost="no" - elif test "$withval" = "yes"; then - want_boost="yes" - ax_boost_user_unit_test_framework_lib="" - else - want_boost="yes" - ax_boost_user_unit_test_framework_lib="$withval" - fi - ], - [want_boost="yes"] - ) - - if test "x$want_boost" = "xyes"; then - AC_REQUIRE([AC_PROG_CC]) - CPPFLAGS_SAVED="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" - export CPPFLAGS - - LDFLAGS_SAVED="$LDFLAGS" - LDFLAGS="$LDFLAGS $BOOST_LDFLAGS" - export LDFLAGS - - AC_CACHE_CHECK(whether the Boost::Unit_Test_Framework library is available, - ax_cv_boost_unit_test_framework, - [AC_LANG_PUSH([C++]) - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[@%:@include ]], - [[using boost::unit_test::test_suite; - test_suite* test= BOOST_TEST_SUITE( "Unit test example 1" ); return 0;]])], - ax_cv_boost_unit_test_framework=yes, ax_cv_boost_unit_test_framework=no) - AC_LANG_POP([C++]) - ]) - if test "x$ax_cv_boost_unit_test_framework" = "xyes"; then - AC_DEFINE(HAVE_BOOST_UNIT_TEST_FRAMEWORK,,[define if the Boost::Unit_Test_Framework library is available]) - BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'` - - 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;'` - ax_lib=${libextension} - link_unit_test_framework="yes" - else - link_unit_test_framework="no" - fi - - if test "x$link_unit_test_framework" = "xyes"; then - BOOST_UNIT_TEST_FRAMEWORK_LIB="-l$ax_lib" - AC_SUBST(BOOST_UNIT_TEST_FRAMEWORK_LIB) - break - fi - done - if test "x$link_unit_test_framework" != "xyes"; then - for libextension in `ls $BOOSTLIBDIR/boost_unit_test_framework*.dll* $BOOSTLIBDIR/boost_unit_test_framework*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_unit_test_framework.*\)\.dll.*$;\1;' -e 's;^\(boost_unit_test_framework.*\)\.a.*$;\1;'` ; do - ax_lib=${libextension} - AC_CHECK_LIB($ax_lib, exit, - [BOOST_UNIT_TEST_FRAMEWORK_LIB="-l$ax_lib"; AC_SUBST(BOOST_UNIT_TEST_FRAMEWORK_LIB) link_unit_test_framework="yes"; break], - [link_unit_test_framework="no"]) - done - fi - else - link_unit_test_framework="no" - saved_ldflags="${LDFLAGS}" - for ax_lib in boost_unit_test_framework-$ax_boost_user_unit_test_framework_lib $ax_boost_user_unit_test_framework_lib ; do - if test "x$link_unit_test_framework" = "xyes"; then - break; - fi - for unittest_library in `ls $BOOSTLIBDIR/lib${ax_lib}.so* $BOOSTLIBDIR/lib${ax_lib}.a* 2>/dev/null` ; do - if test -r $unittest_library ; then - libextension=`echo $unittest_library | sed 's,.*/,,' | sed -e 's;^lib\(boost_unit_test_framework.*\)\.so.*$;\1;' -e 's;^lib\(boost_unit_test_framework.*\)\.a*$;\1;'` - ax_lib=${libextension} - link_unit_test_framework="yes" - else - link_unit_test_framework="no" - fi - - if test "x$link_unit_test_framework" = "xyes"; then - BOOST_UNIT_TEST_FRAMEWORK_LIB="-l$ax_lib" - AC_SUBST(BOOST_UNIT_TEST_FRAMEWORK_LIB) - break - fi - done - done - fi - if test "x$ax_lib" = "x"; then - 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 !) - fi - fi - - CPPFLAGS="$CPPFLAGS_SAVED" - LDFLAGS="$LDFLAGS_SAVED" - fi -]) -m4trace:src/m4/ax_check_compile_flag.m4:58: -1- AC_DEFUN([AX_CHECK_COMPILE_FLAG], [AC_PREREQ(2.59)dnl for _AC_LANG_PREFIX -AS_VAR_PUSHDEF([CACHEVAR],[ax_cv_check_[]_AC_LANG_ABBREV[]flags_$4_$1])dnl -AC_CACHE_CHECK([whether _AC_LANG compiler accepts $1], CACHEVAR, [ - ax_check_save_flags=$[]_AC_LANG_PREFIX[]FLAGS - _AC_LANG_PREFIX[]FLAGS="$[]_AC_LANG_PREFIX[]FLAGS $4 $1" - AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], - [AS_VAR_SET(CACHEVAR,[yes])], - [AS_VAR_SET(CACHEVAR,[no])]) - _AC_LANG_PREFIX[]FLAGS=$ax_check_save_flags]) -AS_IF([test x"AS_VAR_GET(CACHEVAR)" = xyes], - [m4_default([$2], :)], - [m4_default([$3], :)]) -AS_VAR_POPDEF([CACHEVAR])dnl -]) -m4trace:src/m4/ax_check_link_flag.m4:58: -1- AC_DEFUN([AX_CHECK_LINK_FLAG], [AS_VAR_PUSHDEF([CACHEVAR],[ax_cv_check_ldflags_$4_$1])dnl -AC_CACHE_CHECK([whether the linker accepts $1], CACHEVAR, [ - ax_check_save_flags=$LDFLAGS - LDFLAGS="$LDFLAGS $4 $1" - AC_LINK_IFELSE([AC_LANG_PROGRAM()], - [AS_VAR_SET(CACHEVAR,[yes])], - [AS_VAR_SET(CACHEVAR,[no])]) - LDFLAGS=$ax_check_save_flags]) -AS_IF([test x"AS_VAR_GET(CACHEVAR)" = xyes], - [m4_default([$2], :)], - [m4_default([$3], :)]) -AS_VAR_POPDEF([CACHEVAR])dnl -]) -m4trace:src/m4/ax_check_preproc_flag.m4:58: -1- AC_DEFUN([AX_CHECK_PREPROC_FLAG], [AC_PREREQ(2.59)dnl for _AC_LANG_PREFIX -AS_VAR_PUSHDEF([CACHEVAR],[ax_cv_check_[]_AC_LANG_ABBREV[]cppflags_$4_$1])dnl -AC_CACHE_CHECK([whether _AC_LANG preprocessor accepts $1], CACHEVAR, [ - ax_check_save_flags=$CPPFLAGS - CPPFLAGS="$CPPFLAGS $4 $1" - AC_PREPROC_IFELSE([AC_LANG_PROGRAM()], - [AS_VAR_SET(CACHEVAR,[yes])], - [AS_VAR_SET(CACHEVAR,[no])]) - CPPFLAGS=$ax_check_save_flags]) -AS_IF([test x"AS_VAR_GET(CACHEVAR)" = xyes], - [m4_default([$2], :)], - [m4_default([$3], :)]) -AS_VAR_POPDEF([CACHEVAR])dnl -]) -m4trace:src/m4/ax_pthread.m4:87: -1- AU_DEFUN([ACX_PTHREAD], [m4_if($#, 0, [AX_PTHREAD], [AX_PTHREAD($@)])]) -m4trace:src/m4/ax_pthread.m4:87: -1- AC_DEFUN([ACX_PTHREAD], [AC_DIAGNOSE([obsolete], [The macro `ACX_PTHREAD' is obsolete. -You should run autoupdate.])dnl -m4_if($#, 0, [AX_PTHREAD], [AX_PTHREAD($@)])]) -m4trace:src/m4/ax_pthread.m4:88: -1- AC_DEFUN([AX_PTHREAD], [ -AC_REQUIRE([AC_CANONICAL_HOST]) -AC_LANG_PUSH([C]) -ax_pthread_ok=no - -# We used to check for pthread.h first, but this fails if pthread.h -# requires special compiler flags (e.g. on True64 or Sequent). -# It gets checked for in the link test anyway. - -# First of all, check if the user has set any of the PTHREAD_LIBS, -# etcetera environment variables, and if threads linking works using -# them: -if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then - save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $PTHREAD_CFLAGS" - save_LIBS="$LIBS" - LIBS="$PTHREAD_LIBS $LIBS" - AC_MSG_CHECKING([for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS]) - AC_TRY_LINK_FUNC([pthread_join], [ax_pthread_ok=yes]) - AC_MSG_RESULT([$ax_pthread_ok]) - if test x"$ax_pthread_ok" = xno; then - PTHREAD_LIBS="" - PTHREAD_CFLAGS="" - fi - LIBS="$save_LIBS" - CFLAGS="$save_CFLAGS" -fi - -# We must check for the threads library under a number of different -# names; the ordering is very important because some systems -# (e.g. DEC) have both -lpthread and -lpthreads, where one of the -# libraries is broken (non-POSIX). - -# Create a list of thread flags to try. Items starting with a "-" are -# C compiler flags, and other items are library names, except for "none" -# which indicates that we try without any flags at all, and "pthread-config" -# which is a program returning the flags for the Pth emulation library. - -ax_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config" - -# The ordering *is* (sometimes) important. Some notes on the -# individual items follow: - -# pthreads: AIX (must check this before -lpthread) -# none: in case threads are in libc; should be tried before -Kthread and -# other compiler flags to prevent continual compiler warnings -# -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h) -# -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able) -# lthread: LinuxThreads port on FreeBSD (also preferred to -pthread) -# -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads) -# -pthreads: Solaris/gcc -# -mthreads: Mingw32/gcc, Lynx/gcc -# -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it -# doesn't hurt to check since this sometimes defines pthreads too; -# also defines -D_REENTRANT) -# ... -mt is also the pthreads flag for HP/aCC -# pthread: Linux, etcetera -# --thread-safe: KAI C++ -# pthread-config: use pthread-config program (for GNU Pth library) - -case ${host_os} in - solaris*) - - # On Solaris (at least, for some versions), libc contains stubbed - # (non-functional) versions of the pthreads routines, so link-based - # tests will erroneously succeed. (We need to link with -pthreads/-mt/ - # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather - # a function called by this macro, so we could check for that, but - # who knows whether they'll stub that too in a future libc.) So, - # we'll just look for -pthreads and -lpthread first: - - ax_pthread_flags="-pthreads pthread -mt -pthread $ax_pthread_flags" - ;; - - darwin*) - ax_pthread_flags="-pthread $ax_pthread_flags" - ;; -esac - -# Clang doesn't consider unrecognized options an error unless we specify -# -Werror. We throw in some extra Clang-specific options to ensure that -# this doesn't happen for GCC, which also accepts -Werror. - -AC_MSG_CHECKING([if compiler needs -Werror to reject unknown flags]) -save_CFLAGS="$CFLAGS" -ax_pthread_extra_flags="-Werror" -CFLAGS="$CFLAGS $ax_pthread_extra_flags -Wunknown-warning-option -Wsizeof-array-argument" -AC_COMPILE_IFELSE([AC_LANG_PROGRAM([int foo(void);],[foo()])], - [AC_MSG_RESULT([yes])], - [ax_pthread_extra_flags= - AC_MSG_RESULT([no])]) -CFLAGS="$save_CFLAGS" - -if test x"$ax_pthread_ok" = xno; then -for flag in $ax_pthread_flags; do - - case $flag in - none) - AC_MSG_CHECKING([whether pthreads work without any flags]) - ;; - - -*) - AC_MSG_CHECKING([whether pthreads work with $flag]) - PTHREAD_CFLAGS="$flag" - ;; - - pthread-config) - AC_CHECK_PROG([ax_pthread_config], [pthread-config], [yes], [no]) - if test x"$ax_pthread_config" = xno; then continue; fi - PTHREAD_CFLAGS="`pthread-config --cflags`" - PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`" - ;; - - *) - AC_MSG_CHECKING([for the pthreads library -l$flag]) - PTHREAD_LIBS="-l$flag" - ;; - esac - - save_LIBS="$LIBS" - save_CFLAGS="$CFLAGS" - LIBS="$PTHREAD_LIBS $LIBS" - CFLAGS="$CFLAGS $PTHREAD_CFLAGS $ax_pthread_extra_flags" - - # Check for various functions. We must include pthread.h, - # since some functions may be macros. (On the Sequent, we - # need a special flag -Kthread to make this header compile.) - # We check for pthread_join because it is in -lpthread on IRIX - # while pthread_create is in libc. We check for pthread_attr_init - # due to DEC craziness with -lpthreads. We check for - # pthread_cleanup_push because it is one of the few pthread - # functions on Solaris that doesn't have a non-functional libc stub. - # We try pthread_create on general principles. - AC_LINK_IFELSE([AC_LANG_PROGRAM([#include - static void routine(void *a) { a = 0; } - static void *start_routine(void *a) { return a; }], - [pthread_t th; pthread_attr_t attr; - pthread_create(&th, 0, start_routine, 0); - pthread_join(th, 0); - pthread_attr_init(&attr); - pthread_cleanup_push(routine, 0); - pthread_cleanup_pop(0) /* ; */])], - [ax_pthread_ok=yes], - []) - - LIBS="$save_LIBS" - CFLAGS="$save_CFLAGS" - - AC_MSG_RESULT([$ax_pthread_ok]) - if test "x$ax_pthread_ok" = xyes; then - break; - fi - - PTHREAD_LIBS="" - PTHREAD_CFLAGS="" -done -fi - -# Various other checks: -if test "x$ax_pthread_ok" = xyes; then - save_LIBS="$LIBS" - LIBS="$PTHREAD_LIBS $LIBS" - save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $PTHREAD_CFLAGS" - - # Detect AIX lossage: JOINABLE attribute is called UNDETACHED. - AC_MSG_CHECKING([for joinable pthread attribute]) - attr_name=unknown - for attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do - AC_LINK_IFELSE([AC_LANG_PROGRAM([#include ], - [int attr = $attr; return attr /* ; */])], - [attr_name=$attr; break], - []) - done - AC_MSG_RESULT([$attr_name]) - if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then - AC_DEFINE_UNQUOTED([PTHREAD_CREATE_JOINABLE], [$attr_name], - [Define to necessary symbol if this constant - uses a non-standard name on your system.]) - fi - - AC_MSG_CHECKING([if more special flags are required for pthreads]) - flag=no - case ${host_os} in - aix* | freebsd* | darwin*) flag="-D_THREAD_SAFE";; - osf* | hpux*) flag="-D_REENTRANT";; - solaris*) - if test "$GCC" = "yes"; then - flag="-D_REENTRANT" - else - # TODO: What about Clang on Solaris? - flag="-mt -D_REENTRANT" - fi - ;; - esac - AC_MSG_RESULT([$flag]) - if test "x$flag" != xno; then - PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS" - fi - - AC_CACHE_CHECK([for PTHREAD_PRIO_INHERIT], - [ax_cv_PTHREAD_PRIO_INHERIT], [ - AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include ]], - [[int i = PTHREAD_PRIO_INHERIT;]])], - [ax_cv_PTHREAD_PRIO_INHERIT=yes], - [ax_cv_PTHREAD_PRIO_INHERIT=no]) - ]) - AS_IF([test "x$ax_cv_PTHREAD_PRIO_INHERIT" = "xyes"], - [AC_DEFINE([HAVE_PTHREAD_PRIO_INHERIT], [1], [Have PTHREAD_PRIO_INHERIT.])]) - - LIBS="$save_LIBS" - CFLAGS="$save_CFLAGS" - - # More AIX lossage: compile with *_r variant - if test "x$GCC" != xyes; then - case $host_os in - aix*) - AS_CASE(["x/$CC"], - [x*/c89|x*/c89_128|x*/c99|x*/c99_128|x*/cc|x*/cc128|x*/xlc|x*/xlc_v6|x*/xlc128|x*/xlc128_v6], - [#handle absolute path differently from PATH based program lookup - AS_CASE(["x$CC"], - [x/*], - [AS_IF([AS_EXECUTABLE_P([${CC}_r])],[PTHREAD_CC="${CC}_r"])], - [AC_CHECK_PROGS([PTHREAD_CC],[${CC}_r],[$CC])])]) - ;; - esac - fi -fi - -test -n "$PTHREAD_CC" || PTHREAD_CC="$CC" - -AC_SUBST([PTHREAD_LIBS]) -AC_SUBST([PTHREAD_CFLAGS]) -AC_SUBST([PTHREAD_CC]) - -# Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: -if test x"$ax_pthread_ok" = xyes; then - ifelse([$1],,[AC_DEFINE([HAVE_PTHREAD],[1],[Define if you have POSIX threads libraries and header files.])],[$1]) - : -else - ax_pthread_ok=no - $2 -fi -AC_LANG_POP -]) -m4trace:src/m4/bitcoin_find_bdb48.m4:1: -1- AC_DEFUN([BITCOIN_FIND_BDB48], [ - AC_MSG_CHECKING([for Berkeley DB C++ headers]) - BDB_CPPFLAGS= - BDB_LIBS= - bdbpath=X - bdb48path=X - bdbdirlist= - for _vn in 4.8 48 4 5 ''; do - for _pfx in b lib ''; do - bdbdirlist="$bdbdirlist ${_pfx}db${_vn}" - done - done - for searchpath in $bdbdirlist ''; do - test -n "${searchpath}" && searchpath="${searchpath}/" - AC_TRY_COMPILE([ - #include <${searchpath}db_cxx.h> - ],[ - #if !((DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 8) || DB_VERSION_MAJOR > 4) - #error "failed to find bdb 4.8+" - #endif - ],[ - if test "x$bdbpath" = "xX"; then - bdbpath="${searchpath}" - fi - ],[ - continue - ]) - AC_TRY_COMPILE([ - #include <${searchpath}db_cxx.h> - ],[ - #if !(DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR == 8) - #error "failed to find bdb 4.8" - #endif - ],[ - bdb48path="${searchpath}" - break - ]) - done - if test "x$bdbpath" = "xX"; then - AC_MSG_RESULT([no]) - AC_MSG_ERROR(libdb_cxx headers missing) - elif test "x$bdb48path" = "xX"; then - BITCOIN_SUBDIR_TO_INCLUDE(BDB_CPPFLAGS,[${bdbpath}],db_cxx) - AC_ARG_WITH([incompatible-bdb],[AS_HELP_STRING([--with-incompatible-bdb], [allow using a bdb version other than 4.8])],[ - AC_MSG_WARN([Found Berkeley DB other than 4.8; wallets opened by this build will not be portable!]) - ],[ - AC_MSG_ERROR([Found Berkeley DB other than 4.8, required for portable wallets (--with-incompatible-bdb to ignore)]) - ]) - else - BITCOIN_SUBDIR_TO_INCLUDE(BDB_CPPFLAGS,[${bdb48path}],db_cxx) - bdbpath="${bdb48path}" - fi - AC_SUBST(BDB_CPPFLAGS) - - # TODO: Ideally this could find the library version and make sure it matches the headers being used - for searchlib in db_cxx-4.8 db_cxx; do - AC_CHECK_LIB([$searchlib],[main],[ - BDB_LIBS="-l${searchlib}" - break - ]) - done - if test "x$BDB_LIBS" = "x"; then - AC_MSG_ERROR(libdb_cxx missing) - fi - AC_SUBST(BDB_LIBS) -]) -m4trace:src/m4/bitcoin_qt.m4:3: -1- AC_DEFUN([BITCOIN_QT_FAIL], [ - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - AC_MSG_WARN([$1; bitcoin-qt frontend will not be built]) - fi - bitcoin_enable_qt=no - else - AC_MSG_ERROR([$1]) - fi -]) -m4trace:src/m4/bitcoin_qt.m4:14: -1- AC_DEFUN([BITCOIN_QT_CHECK], [ - if test "x$bitcoin_enable_qt" != "xno" && test x$bitcoin_qt_want_version != xno; then - true - $1 - else - true - $2 - fi -]) -m4trace:src/m4/bitcoin_qt.m4:31: -1- AC_DEFUN([BITCOIN_QT_PATH_PROGS], [ - BITCOIN_QT_CHECK([ - if test "x$3" != "x"; then - AC_PATH_PROGS($1,$2,,$3) - else - AC_PATH_PROGS($1,$2) - fi - if test "x$$1" = "x" && test "x$4" != "xyes"; then - BITCOIN_QT_FAIL([$1 not found]) - fi - ]) -]) -m4trace:src/m4/bitcoin_qt.m4:48: -1- AC_DEFUN([BITCOIN_QT_INIT], [ - dnl enable qt support - AC_ARG_WITH([gui], - [AS_HELP_STRING([--with-gui], - [with GUI (no|qt4|qt5|auto. default is auto, qt4 tried first.)])], - [ - bitcoin_qt_want_version=$withval - if test x$bitcoin_qt_want_version = xyes; then - bitcoin_qt_force=yes - bitcoin_qt_want_version=auto - fi - ], - [bitcoin_qt_want_version=auto]) - - AC_ARG_WITH([qt-incdir],[AS_HELP_STRING([--with-qt-incdir=INC_DIR],[specify qt include path (overridden by pkgconfig)])], [qt_include_path=$withval], []) - AC_ARG_WITH([qt-libdir],[AS_HELP_STRING([--with-qt-libdir=LIB_DIR],[specify qt lib path (overridden by pkgconfig)])], [qt_lib_path=$withval], []) - AC_ARG_WITH([qt-plugindir],[AS_HELP_STRING([--with-qt-plugindir=PLUGIN_DIR],[specify qt plugin path (overridden by pkgconfig)])], [qt_plugin_path=$withval], []) - AC_ARG_WITH([qt-bindir],[AS_HELP_STRING([--with-qt-bindir=BIN_DIR],[specify qt bin path])], [qt_bin_path=$withval], []) - - AC_ARG_WITH([qtdbus], - [AS_HELP_STRING([--with-qtdbus], - [enable DBus support (default is yes if qt is enabled and QtDBus is found)])], - [use_dbus=$withval], - [use_dbus=auto]) -]) -m4trace:src/m4/bitcoin_qt.m4:81: -1- AC_DEFUN([BITCOIN_QT_CONFIGURE], [ - use_pkgconfig=$1 - - if test x$use_pkgconfig == x; then - use_pkgconfig=yes - fi - - if test x$use_pkgconfig = xyes; then - if test x$PKG_CONFIG == x; then - AC_MSG_ERROR(pkg-config not found.) - fi - BITCOIN_QT_CHECK([_BITCOIN_QT_FIND_LIBS_WITH_PKGCONFIG([$2])]) - else - BITCOIN_QT_CHECK([_BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG]) - fi - - BITCOIN_QT_PATH_PROGS([MOC], [moc-qt${bitcoin_qt_got_major_vers} moc${bitcoin_qt_got_major_vers} moc], $qt_bin_path) - BITCOIN_QT_PATH_PROGS([UIC], [uic-qt${bitcoin_qt_got_major_vers} uic${bitcoin_qt_got_major_vers} uic], $qt_bin_path) - BITCOIN_QT_PATH_PROGS([RCC], [rcc-qt${bitcoin_qt_got_major_vers} rcc${bitcoin_qt_got_major_vers} rcc], $qt_bin_path) - BITCOIN_QT_PATH_PROGS([LRELEASE], [lrelease-qt${bitcoin_qt_got_major_vers} lrelease${bitcoin_qt_got_major_vers} lrelease], $qt_bin_path) - BITCOIN_QT_PATH_PROGS([LUPDATE], [lupdate-qt${bitcoin_qt_got_major_vers} lupdate${bitcoin_qt_got_major_vers} lupdate],$qt_bin_path, yes) - - MOC_DEFS='-DHAVE_CONFIG_H -I$(top_srcdir)/src' - case $host in - *darwin*) - BITCOIN_QT_CHECK([ - MOC_DEFS="${MOC_DEFS} -DQ_OS_MAC" - base_frameworks="-framework Foundation -framework ApplicationServices -framework AppKit" - AX_CHECK_LINK_FLAG([[$base_frameworks]],[QT_LIBS="$QT_LIBS $base_frameworks"],[AC_MSG_ERROR(could not find base frameworks)]) - ]) - ;; - *mingw*) - BITCOIN_QT_CHECK([ - AX_CHECK_LINK_FLAG([[-mwindows]],[QT_LDFLAGS="$QT_LDFLAGS -mwindows"],[AC_MSG_WARN(-mwindows linker support not detected)]) - ]) - esac - - - dnl enable qt support - AC_MSG_CHECKING(whether to build Bitcoin Core GUI) - BITCOIN_QT_CHECK([ - bitcoin_enable_qt=yes - bitcoin_enable_qt_test=yes - if test x$have_qt_test = xno; then - bitcoin_enable_qt_test=no - fi - bitcoin_enable_qt_dbus=no - if test x$use_dbus != xno && test x$have_qt_dbus = xyes; then - bitcoin_enable_qt_dbus=yes - fi - if test x$use_dbus = xyes && test x$have_qt_dbus = xno; then - AC_MSG_ERROR("libQtDBus not found. Install libQtDBus or remove --with-qtdbus.") - fi - if test x$LUPDATE == x; then - AC_MSG_WARN("lupdate is required to update qt translations") - fi - ],[ - bitcoin_enable_qt=no - ]) - AC_MSG_RESULT([$bitcoin_enable_qt (Qt${bitcoin_qt_got_major_vers})]) - - AC_SUBST(QT_INCLUDES) - AC_SUBST(QT_LIBS) - AC_SUBST(QT_LDFLAGS) - AC_SUBST(QT_DBUS_INCLUDES) - AC_SUBST(QT_DBUS_LIBS) - AC_SUBST(QT_TEST_INCLUDES) - AC_SUBST(QT_TEST_LIBS) - AC_SUBST(QT_SELECT, qt${bitcoin_qt_got_major_vers}) - AC_SUBST(MOC_DEFS) -]) -m4trace:src/m4/bitcoin_qt.m4:160: -1- AC_DEFUN([_BITCOIN_QT_CHECK_QT5], [ - AC_CACHE_CHECK(for Qt 5, bitcoin_cv_qt5,[ - AC_TRY_COMPILE( - [#include ], - [ - #if QT_VERSION < 0x050000 - choke me - #else - return 0; - #endif - ], - bitcoin_cv_qt5=yes, - bitcoin_cv_qt5=no) -])]) -m4trace:src/m4/bitcoin_qt.m4:180: -1- AC_DEFUN([_BITCOIN_QT_IS_STATIC], [ - AC_CACHE_CHECK(for static Qt, bitcoin_cv_static_qt,[ - AC_TRY_COMPILE( - [#include ], - [ - #if defined(QT_STATIC) - return 0; - #else - choke me - #endif - ], - [bitcoin_cv_static_qt=yes], - [bitcoin_cv_static_qt=no]) - ]) - if test xbitcoin_cv_static_qt = xyes; then - AC_DEFINE(QT_STATICPLUGIN, 1, [Define this symbol for static Qt plugins]) - fi -]) -m4trace:src/m4/bitcoin_qt.m4:204: -1- AC_DEFUN([_BITCOIN_QT_CHECK_STATIC_PLUGINS], [ - AC_MSG_CHECKING(for static Qt plugins: $2) - CHECK_STATIC_PLUGINS_TEMP_LIBS="$LIBS" - LIBS="$2 $QT_LIBS $LIBS" - AC_TRY_LINK([ - #define QT_STATICPLUGIN - #include - $1], - [return 0;], - [AC_MSG_RESULT(yes); QT_LIBS="$2 $QT_LIBS"], - [AC_MSG_RESULT(no)]; BITCOIN_QT_FAIL(Could not resolve: $2)) - LIBS="$CHECK_STATIC_PLUGINS_TEMP_LIBS" -]) -m4trace:src/m4/bitcoin_qt.m4:226: -1- AC_DEFUN([_BITCOIN_QT_FIND_LIBS_WITH_PKGCONFIG], [ - m4_ifdef([PKG_CHECK_MODULES],[ - auto_priority_version=$1 - if test x$auto_priority_version == x; then - auto_priority_version=qt5 - fi - if test x$bitcoin_qt_want_version == xqt5 || ( test x$bitcoin_qt_want_version == xauto && test x$auto_priority_version == xqt5 ); then - QT_LIB_PREFIX=Qt5 - bitcoin_qt_got_major_vers=5 - else - QT_LIB_PREFIX=Qt - bitcoin_qt_got_major_vers=4 - fi - qt5_modules="Qt5Core Qt5Gui Qt5Network Qt5Widgets" - qt4_modules="QtCore QtGui QtNetwork" - BITCOIN_QT_CHECK([ - if test x$bitcoin_qt_want_version == xqt5 || ( test x$bitcoin_qt_want_version == xauto && test x$auto_priority_version == xqt5 ); then - PKG_CHECK_MODULES([QT], [$qt5_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes],[have_qt=no]) - elif test x$bitcoin_qt_want_version == xqt4 || ( test x$bitcoin_qt_want_version == xauto && test x$auto_priority_version == xqt4 ); then - PKG_CHECK_MODULES([QT], [$qt4_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes], [have_qt=no]) - fi - - dnl qt version is set to 'auto' and the preferred version wasn't found. Now try the other. - if test x$have_qt == xno && test x$bitcoin_qt_want_version == xauto; then - if test x$auto_priority_version = x$qt5; then - PKG_CHECK_MODULES([QT], [$qt4_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes; QT_LIB_PREFIX=Qt; bitcoin_qt_got_major_vers=4], [have_qt=no]) - else - PKG_CHECK_MODULES([QT], [$qt5_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes; QT_LIB_PREFIX=Qt5; bitcoin_qt_got_major_vers=5], [have_qt=no]) - fi - fi - if test x$have_qt != xyes; then - have_qt=no - BITCOIN_QT_FAIL([Qt dependencies not found]) - fi - ]) - BITCOIN_QT_CHECK([ - PKG_CHECK_MODULES([QT_TEST], [${QT_LIB_PREFIX}Test], [QT_TEST_INCLUDES="$QT_TEST_CFLAGS"; have_qt_test=yes], [have_qt_test=no]) - if test x$use_dbus != xno; then - PKG_CHECK_MODULES([QT_DBUS], [${QT_LIB_PREFIX}DBus], [QT_DBUS_INCLUDES="$QT_DBUS_CFLAGS"; have_qt_dbus=yes], [have_qt_dbus=no]) - fi - ]) - ]) - true; dnl -]) -m4trace:src/m4/bitcoin_qt.m4:278: -1- AC_DEFUN([_BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG], [ - TEMP_CPPFLAGS="$CPPFLAGS" - TEMP_LIBS="$LIBS" - BITCOIN_QT_CHECK([ - if test x$qt_include_path != x; then - QT_INCLUDES="-I$qt_include_path -I$qt_include_path/QtCore -I$qt_include_path/QtGui -I$qt_include_path/QtWidgets -I$qt_include_path/QtNetwork -I$qt_include_path/QtTest -I$qt_include_path/QtDBus" - CPPFLAGS="$QT_INCLUDES $CPPFLAGS" - fi - ]) - - BITCOIN_QT_CHECK([AC_CHECK_HEADER([QtPlugin],,BITCOIN_QT_FAIL(QtCore headers missing))]) - BITCOIN_QT_CHECK([AC_CHECK_HEADER([QApplication],, BITCOIN_QT_FAIL(QtGui headers missing))]) - BITCOIN_QT_CHECK([AC_CHECK_HEADER([QLocalSocket],, BITCOIN_QT_FAIL(QtNetwork headers missing))]) - - BITCOIN_QT_CHECK([ - if test x$bitcoin_qt_want_version = xauto; then - _BITCOIN_QT_CHECK_QT5 - fi - if test x$bitcoin_cv_qt5 == xyes || test x$bitcoin_qt_want_version = xqt5; then - QT_LIB_PREFIX=Qt5 - bitcoin_qt_got_major_vers=5 - else - QT_LIB_PREFIX=Qt - bitcoin_qt_got_major_vers=4 - fi - ]) - - BITCOIN_QT_CHECK([ - LIBS= - if test x$qt_lib_path != x; then - LIBS="$LIBS -L$qt_lib_path" - fi - if test x$qt_plugin_path != x; then - LIBS="$LIBS -L$qt_plugin_path/accessible" - if test x$bitcoin_qt_got_major_vers == x5; then - LIBS="$LIBS -L$qt_plugin_path/platforms" - else - LIBS="$LIBS -L$qt_plugin_path/codecs" - fi - fi - - if test x$TARGET_OS == xwindows; then - AC_CHECK_LIB([imm32], [main],, BITCOIN_QT_FAIL(libimm32 not found)) - fi - ]) - - BITCOIN_QT_CHECK(AC_CHECK_LIB([z] ,[main],,BITCOIN_QT_FAIL(zlib not found))) - BITCOIN_QT_CHECK(AC_CHECK_LIB([png] ,[main],,BITCOIN_QT_FAIL(png not found))) - BITCOIN_QT_CHECK(AC_CHECK_LIB([${QT_LIB_PREFIX}Core] ,[main],,BITCOIN_QT_FAIL(lib$QT_LIB_PREFIXCore not found))) - BITCOIN_QT_CHECK(AC_CHECK_LIB([${QT_LIB_PREFIX}Gui] ,[main],,BITCOIN_QT_FAIL(lib$QT_LIB_PREFIXGui not found))) - BITCOIN_QT_CHECK(AC_CHECK_LIB([${QT_LIB_PREFIX}Network],[main],,BITCOIN_QT_FAIL(lib$QT_LIB_PREFIXNetwork not found))) - if test x$bitcoin_qt_got_major_vers == x5; then - BITCOIN_QT_CHECK(AC_CHECK_LIB([${QT_LIB_PREFIX}Widgets],[main],,BITCOIN_QT_FAIL(lib$QT_LIB_PREFIXWidgets not found))) - fi - QT_LIBS="$LIBS" - LIBS="$TEMP_LIBS" - - dnl This is ugly and complicated. Yuck. Works as follows: - dnl We can't discern whether Qt4 builds are static or not. For Qt5, we can - dnl check a header to find out. When Qt is built statically, some plugins must - dnl be linked into the final binary as well. These plugins have changed between - dnl Qt4 and Qt5. With Qt5, languages moved into core and the WindowsIntegration - dnl plugin was added. Since we can't tell if Qt4 is static or not, it is - dnl assumed for all non-pkg-config builds. - dnl _BITCOIN_QT_CHECK_STATIC_PLUGINS does a quick link-check and appends the - dnl results to QT_LIBS. - BITCOIN_QT_CHECK([ - if test x$bitcoin_qt_got_major_vers == x5; then - _BITCOIN_QT_IS_STATIC - if test x$bitcoin_cv_static_qt == xyes; then - AC_DEFINE(QT_STATICPLUGIN, 1, [Define this symbol if qt plugins are static]) - _BITCOIN_QT_CHECK_STATIC_PLUGINS([Q_IMPORT_PLUGIN(AccessibleFactory)], [-lqtaccessiblewidgets]) - if test x$TARGET_OS == xwindows; then - _BITCOIN_QT_CHECK_STATIC_PLUGINS([Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)],[-lqwindows]) - fi - fi - else - AC_DEFINE(QT_STATICPLUGIN, 1, [Define this symbol if qt plugins are static]) - _BITCOIN_QT_CHECK_STATIC_PLUGINS([ - Q_IMPORT_PLUGIN(qcncodecs) - Q_IMPORT_PLUGIN(qjpcodecs) - Q_IMPORT_PLUGIN(qtwcodecs) - Q_IMPORT_PLUGIN(qkrcodecs) - Q_IMPORT_PLUGIN(AccessibleFactory)], - [-lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets]) - fi - ]) - - BITCOIN_QT_CHECK([ - LIBS= - if test x$qt_lib_path != x; then - LIBS="-L$qt_lib_path" - fi - AC_CHECK_LIB([${QT_LIB_PREFIX}Test], [main],, have_qt_test=no) - AC_CHECK_HEADER([QTest],, have_qt_test=no) - QT_TEST_LIBS="$LIBS" - if test x$use_dbus != xno; then - LIBS= - if test x$qt_lib_path != x; then - LIBS="-L$qt_lib_path" - fi - AC_CHECK_LIB([${QT_LIB_PREFIX}DBus], [main],, have_qt_dbus=no) - AC_CHECK_HEADER([QtDBus],, have_qt_dbus=no) - QT_DBUS_LIBS="$LIBS" - fi - ]) - CPPFLAGS="$TEMP_CPPFLAGS" - LIBS="$TEMP_LIBS" -]) -m4trace:src/m4/bitcoin_subdir_to_include.m4:3: -1- AC_DEFUN([BITCOIN_SUBDIR_TO_INCLUDE], [ - if test "x$2" = "x"; then - AC_MSG_RESULT([default]) - else - echo "#include <$2$3.h>" >conftest.cpp - newinclpath=`${CXXCPP} ${CPPFLAGS} -M conftest.cpp 2>/dev/null | [ tr -d '\\n\\r\\\\' | sed -e 's/^.*[[:space:]:]\(\/[^[:space:]]*\)]$3[\.h[[:space:]].*$/\1/' -e t -e d`] - AC_MSG_RESULT([${newinclpath}]) - if test "x${newinclpath}" != "x"; then - eval "$1=\"\$$1\"' -I${newinclpath}'" - fi - fi -]) -m4trace:configure.ac:9: -1- m4_pattern_forbid([^_?A[CHUM]_]) -m4trace:configure.ac:9: -1- m4_pattern_forbid([_AC_]) -m4trace:configure.ac:9: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) -m4trace:configure.ac:9: -1- m4_pattern_allow([^AS_FLAGS$]) -m4trace:configure.ac:9: -1- m4_pattern_forbid([^_?m4_]) -m4trace:configure.ac:9: -1- m4_pattern_forbid([^dnl$]) -m4trace:configure.ac:9: -1- m4_pattern_forbid([^_?AS_]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^SHELL$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PATH_SEPARATOR$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_NAME$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_VERSION$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_STRING$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_URL$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^exec_prefix$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^prefix$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^program_transform_name$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^bindir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^sbindir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^libexecdir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^datarootdir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^datadir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^sysconfdir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^sharedstatedir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^localstatedir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^includedir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^oldincludedir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^docdir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^infodir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^htmldir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^dvidir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^pdfdir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^psdir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^libdir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^localedir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^mandir$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_NAME$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_VERSION$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_STRING$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_URL$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^DEFS$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^ECHO_C$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^ECHO_N$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^ECHO_T$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^LIBS$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^build_alias$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^host_alias$]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^target_alias$]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^build$]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^build_cpu$]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^build_vendor$]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^build_os$]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^host$]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^host_cpu$]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^host_vendor$]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^host_os$]) -m4trace:configure.ac:22: -1- m4_include([pkg.m4]) -m4trace:pkg.m4:27: -1- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) -m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) -m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) -AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) -AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) -AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) - -if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) -fi -if test -n "$PKG_CONFIG"; then - _pkg_min_version=m4_default([$1], [0.9.0]) - AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - PKG_CONFIG="" - fi -fi[]dnl -]) -m4trace:pkg.m4:60: -1- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -if test -n "$PKG_CONFIG" && \ - AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then - m4_default([$2], [:]) -m4_ifvaln([$3], [else - $3])dnl -fi]) -m4trace:pkg.m4:86: -1- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi[]dnl -]) -m4trace:pkg.m4:106: -1- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl -AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl - -pkg_failed=no -AC_MSG_CHECKING([for $1]) - -_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) -_PKG_CONFIG([$1][_LIBS], [libs], [$2]) - -m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS -and $1[]_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details.]) - -if test $pkg_failed = yes; then - AC_MSG_RESULT([no]) - _PKG_SHORT_ERRORS_SUPPORTED - if test $_pkg_short_errors_supported = yes; then - $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` - else - $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD - - m4_default([$4], [AC_MSG_ERROR( -[Package requirements ($2) were not met: - -$$1_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -_PKG_TEXT])[]dnl - ]) -elif test $pkg_failed = untried; then - AC_MSG_RESULT([no]) - m4_default([$4], [AC_MSG_FAILURE( -[The pkg-config script could not be found or is too old. Make sure it -is in your PATH or set the PKG_CONFIG environment variable to the full -path to pkg-config. - -_PKG_TEXT - -To get pkg-config, see .])[]dnl - ]) -else - $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS - $1[]_LIBS=$pkg_cv_[]$1[]_LIBS - AC_MSG_RESULT([yes]) - $3 -fi[]dnl -]) -m4trace:pkg.m4:169: -1- AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) -m4_pushdef([pkg_description], - [pkg-config installation directory @<:@]pkg_default[@:>@]) -AC_ARG_WITH([pkgconfigdir], - [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, - [with_pkgconfigdir=]pkg_default) -AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) -m4_popdef([pkg_default]) -m4_popdef([pkg_description]) -]) -m4trace:pkg.m4:189: -1- AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) -m4_pushdef([pkg_description], - [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) -AC_ARG_WITH([noarch-pkgconfigdir], - [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, - [with_noarch_pkgconfigdir=]pkg_default) -AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) -m4_popdef([pkg_default]) -m4_popdef([pkg_description]) -]) -m4trace:pkg.m4:206: -1- AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl - -_PKG_CONFIG([$1], [variable="][$3]["], [$2]) -AS_VAR_COPY([$1], [pkg_cv_][$1]) - -AS_VAR_IF([$1], [""], [$5], [$4])dnl -]) -m4trace:configure.ac:37: -1- AM_INIT_AUTOMAKE([no-define subdir-objects foreign]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$]) -m4trace:configure.ac:37: -1- AM_SET_CURRENT_AUTOMAKE_VERSION -m4trace:configure.ac:37: -1- AM_AUTOMAKE_VERSION([1.11.6]) -m4trace:configure.ac:37: -1- _AM_AUTOCONF_VERSION([2.69]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^INSTALL_PROGRAM$]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^INSTALL_SCRIPT$]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^INSTALL_DATA$]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^am__isrc$]) -m4trace:configure.ac:37: -1- _AM_SUBST_NOTMAKE([am__isrc]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^CYGPATH_W$]) -m4trace:configure.ac:37: -1- _AM_SET_OPTIONS([no-define subdir-objects foreign]) -m4trace:configure.ac:37: -1- _AM_SET_OPTION([no-define]) -m4trace:configure.ac:37: -2- _AM_MANGLE_OPTION([no-define]) -m4trace:configure.ac:37: -1- _AM_SET_OPTION([subdir-objects]) -m4trace:configure.ac:37: -2- _AM_MANGLE_OPTION([subdir-objects]) -m4trace:configure.ac:37: -1- _AM_SET_OPTION([foreign]) -m4trace:configure.ac:37: -2- _AM_MANGLE_OPTION([foreign]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^PACKAGE$]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^VERSION$]) -m4trace:configure.ac:37: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) - AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])]) -m4trace:configure.ac:37: -2- _AM_MANGLE_OPTION([no-define]) -m4trace:configure.ac:37: -1- AM_SANITY_CHECK -m4trace:configure.ac:37: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) -m4trace:configure.ac:37: -1- AM_MISSING_HAS_RUN -m4trace:configure.ac:37: -1- AM_AUX_DIR_EXPAND -m4trace:configure.ac:37: -1- m4_pattern_allow([^ACLOCAL$]) -m4trace:configure.ac:37: -1- AM_MISSING_PROG([AUTOCONF], [autoconf]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^AUTOCONF$]) -m4trace:configure.ac:37: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^AUTOMAKE$]) -m4trace:configure.ac:37: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^AUTOHEADER$]) -m4trace:configure.ac:37: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^MAKEINFO$]) -m4trace:configure.ac:37: -1- AM_PROG_INSTALL_SH -m4trace:configure.ac:37: -1- m4_pattern_allow([^install_sh$]) -m4trace:configure.ac:37: -1- AM_PROG_INSTALL_STRIP -m4trace:configure.ac:37: -1- m4_pattern_allow([^STRIP$]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$]) -m4trace:configure.ac:37: -1- AM_PROG_MKDIR_P -m4trace:configure.ac:37: -1- m4_pattern_allow([^MKDIR_P$]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^mkdir_p$]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^AWK$]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^SET_MAKE$]) -m4trace:configure.ac:37: -1- AM_SET_LEADING_DOT -m4trace:configure.ac:37: -1- m4_pattern_allow([^am__leading_dot$]) -m4trace:configure.ac:37: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], - [_AM_PROG_TAR([v7])])]) -m4trace:configure.ac:37: -2- _AM_MANGLE_OPTION([tar-ustar]) -m4trace:configure.ac:37: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])]) -m4trace:configure.ac:37: -2- _AM_MANGLE_OPTION([tar-pax]) -m4trace:configure.ac:37: -1- _AM_PROG_TAR([v7]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^AMTAR$]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^am__tar$]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^am__untar$]) -m4trace:configure.ac:37: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC], - [_AM_DEPENDENCIES(CC)], - [define([AC_PROG_CC], - defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl -AC_PROVIDE_IFELSE([AC_PROG_CXX], - [_AM_DEPENDENCIES(CXX)], - [define([AC_PROG_CXX], - defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl -AC_PROVIDE_IFELSE([AC_PROG_OBJC], - [_AM_DEPENDENCIES(OBJC)], - [define([AC_PROG_OBJC], - defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl -]) -m4trace:configure.ac:37: -2- _AM_MANGLE_OPTION([no-dependencies]) -m4trace:configure.ac:37: -1- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])]) -m4trace:configure.ac:37: -2- _AM_MANGLE_OPTION([silent-rules]) -m4trace:configure.ac:41: -1- AM_MAINTAINER_MODE([enable]) -m4trace:configure.ac:41: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) -m4trace:configure.ac:41: -1- m4_pattern_allow([^MAINTAINER_MODE_TRUE$]) -m4trace:configure.ac:41: -1- m4_pattern_allow([^MAINTAINER_MODE_FALSE$]) -m4trace:configure.ac:41: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_TRUE]) -m4trace:configure.ac:41: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_FALSE]) -m4trace:configure.ac:41: -1- m4_pattern_allow([^MAINT$]) -m4trace:configure.ac:44: -1- AM_SILENT_RULES([yes]) -m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_V$]) -m4trace:configure.ac:44: -1- AM_SUBST_NOTMAKE([AM_V]) -m4trace:configure.ac:44: -1- _AM_SUBST_NOTMAKE([AM_V]) -m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_DEFAULT_V$]) -m4trace:configure.ac:44: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V]) -m4trace:configure.ac:44: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V]) -m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$]) -m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_BACKSLASH$]) -m4trace:configure.ac:44: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^CXX$]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^CXXFLAGS$]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^LDFLAGS$]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^LIBS$]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^CXX$]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^ac_ct_CXX$]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^EXEEXT$]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^OBJEXT$]) -m4trace:configure.ac:117: -1- _AM_DEPENDENCIES([CXX]) -m4trace:configure.ac:117: -1- AM_SET_DEPDIR -m4trace:configure.ac:117: -1- m4_pattern_allow([^DEPDIR$]) -m4trace:configure.ac:117: -1- AM_OUTPUT_DEPENDENCY_COMMANDS -m4trace:configure.ac:117: -1- AM_MAKE_INCLUDE -m4trace:configure.ac:117: -1- m4_pattern_allow([^am__include$]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^am__quote$]) -m4trace:configure.ac:117: -1- AM_DEP_TRACK -m4trace:configure.ac:117: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^AMDEP_TRUE$]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^AMDEP_FALSE$]) -m4trace:configure.ac:117: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE]) -m4trace:configure.ac:117: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^AMDEPBACKSLASH$]) -m4trace:configure.ac:117: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^am__nodep$]) -m4trace:configure.ac:117: -1- _AM_SUBST_NOTMAKE([am__nodep]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^CXXDEPMODE$]) -m4trace:configure.ac:117: -1- AM_CONDITIONAL([am__fastdepCXX], [ - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CXX_dependencies_compiler_type" = gcc3]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$]) -m4trace:configure.ac:117: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE]) -m4trace:configure.ac:117: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CFLAGS$]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^LDFLAGS$]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^LIBS$]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^ac_ct_CC$]) -m4trace:configure.ac:118: -1- _AM_DEPENDENCIES([CC]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CCDEPMODE$]) -m4trace:configure.ac:118: -1- AM_CONDITIONAL([am__fastdepCC], [ - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^am__fastdepCC_TRUE$]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^am__fastdepCC_FALSE$]) -m4trace:configure.ac:118: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE]) -m4trace:configure.ac:118: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE]) -m4trace:configure.ac:119: -1- m4_pattern_allow([^CPP$]) -m4trace:configure.ac:119: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:119: -1- m4_pattern_allow([^CPP$]) -m4trace:configure.ac:120: -1- m4_pattern_allow([^CXXCPP$]) -m4trace:configure.ac:120: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:120: -1- m4_pattern_allow([^CXXCPP$]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^OBJC$]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^OBJCFLAGS$]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^LDFLAGS$]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^LIBS$]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^OBJC$]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^ac_ct_OBJC$]) -m4trace:configure.ac:122: -1- _AM_DEPENDENCIES([OBJC]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^OBJCDEPMODE$]) -m4trace:configure.ac:122: -1- AM_CONDITIONAL([am__fastdepOBJC], [ - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_OBJC_dependencies_compiler_type" = gcc3]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^am__fastdepOBJC_TRUE$]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^am__fastdepOBJC_FALSE$]) -m4trace:configure.ac:122: -1- _AM_SUBST_NOTMAKE([am__fastdepOBJC_TRUE]) -m4trace:configure.ac:122: -1- _AM_SUBST_NOTMAKE([am__fastdepOBJC_FALSE]) -m4trace:configure.ac:123: -1- m4_pattern_allow([^LN_S$]) -m4trace:configure.ac:124: -1- m4_pattern_allow([^OBJCXX$]) -m4trace:configure.ac:124: -1- m4_pattern_allow([^OBJCXXFLAGS$]) -m4trace:configure.ac:124: -1- m4_pattern_allow([^LDFLAGS$]) -m4trace:configure.ac:124: -1- m4_pattern_allow([^LIBS$]) -m4trace:configure.ac:124: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:124: -1- m4_pattern_allow([^OBJCXX$]) -m4trace:configure.ac:124: -1- m4_pattern_allow([^ac_ct_OBJCXX$]) -m4trace:configure.ac:126: -1- m4_pattern_allow([^SED$]) -m4trace:configure.ac:127: -1- m4_pattern_allow([^AR$]) -m4trace:configure.ac:128: -1- m4_pattern_allow([^RANLIB$]) -m4trace:configure.ac:129: -1- m4_pattern_allow([^STRIP$]) -m4trace:configure.ac:130: -1- m4_pattern_allow([^GCOV$]) -m4trace:configure.ac:131: -1- m4_pattern_allow([^LCOV$]) -m4trace:configure.ac:132: -1- m4_pattern_allow([^JAVA$]) -m4trace:configure.ac:133: -1- m4_pattern_allow([^GENHTML$]) -m4trace:configure.ac:134: -1- m4_pattern_allow([^GIT$]) -m4trace:configure.ac:135: -1- m4_pattern_allow([^CCACHE$]) -m4trace:configure.ac:136: -1- m4_pattern_allow([^XGETTEXT$]) -m4trace:configure.ac:137: -1- m4_pattern_allow([^HEXDUMP$]) -m4trace:configure.ac:138: -1- PKG_PROG_PKG_CONFIG -m4trace:configure.ac:138: -1- m4_pattern_forbid([^_?PKG_[A-Z_]+$]) -m4trace:configure.ac:138: -1- m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) -m4trace:configure.ac:138: -1- m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) -m4trace:configure.ac:138: -1- m4_pattern_allow([^PKG_CONFIG$]) -m4trace:configure.ac:138: -1- m4_pattern_allow([^PKG_CONFIG_PATH$]) -m4trace:configure.ac:138: -1- m4_pattern_allow([^PKG_CONFIG_LIBDIR$]) -m4trace:configure.ac:138: -1- m4_pattern_allow([^PKG_CONFIG$]) -m4trace:configure.ac:175: -1- m4_pattern_allow([^HAVE_LIBMINGWTHRD$]) -m4trace:configure.ac:176: -1- m4_pattern_allow([^HAVE_LIBKERNEL32$]) -m4trace:configure.ac:177: -1- m4_pattern_allow([^HAVE_LIBUSER32$]) -m4trace:configure.ac:178: -1- m4_pattern_allow([^HAVE_LIBGDI32$]) -m4trace:configure.ac:179: -1- m4_pattern_allow([^HAVE_LIBCOMDLG32$]) -m4trace:configure.ac:180: -1- m4_pattern_allow([^HAVE_LIBWINSPOOL$]) -m4trace:configure.ac:181: -1- m4_pattern_allow([^HAVE_LIBWINMM$]) -m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_LIBSHELL32$]) -m4trace:configure.ac:183: -1- m4_pattern_allow([^HAVE_LIBCOMCTL32$]) -m4trace:configure.ac:184: -1- m4_pattern_allow([^HAVE_LIBOLE32$]) -m4trace:configure.ac:185: -1- m4_pattern_allow([^HAVE_LIBOLEAUT32$]) -m4trace:configure.ac:186: -1- m4_pattern_allow([^HAVE_LIBUUID$]) -m4trace:configure.ac:187: -1- m4_pattern_allow([^HAVE_LIBRPCRT4$]) -m4trace:configure.ac:188: -1- m4_pattern_allow([^HAVE_LIBADVAPI32$]) -m4trace:configure.ac:189: -1- m4_pattern_allow([^HAVE_LIBWS2_32$]) -m4trace:configure.ac:190: -1- m4_pattern_allow([^HAVE_LIBMSWSOCK$]) -m4trace:configure.ac:191: -1- m4_pattern_allow([^HAVE_LIBSHLWAPI$]) -m4trace:configure.ac:192: -1- m4_pattern_allow([^HAVE_LIBIPHLPAPI$]) -m4trace:configure.ac:193: -1- m4_pattern_allow([^HAVE_LIBCRYPT32$]) -m4trace:configure.ac:195: -1- AX_CHECK_LINK_FLAG([[-static]], [LDFLAGS="$LDFLAGS -static"]) -m4trace:configure.ac:196: -1- AX_CHECK_LINK_FLAG([[-static-libgcc]], [LDFLAGS="$LDFLAGS -static-libgcc"]) -m4trace:configure.ac:197: -1- AX_CHECK_LINK_FLAG([[-static-libstdc++]], [LDFLAGS="$LDFLAGS -static-libstdc++"]) -m4trace:configure.ac:199: -1- m4_pattern_allow([^MAKENSIS$]) -m4trace:configure.ac:204: -1- m4_pattern_allow([^WINDRES$]) -m4trace:configure.ac:219: -1- m4_pattern_allow([^WINDOWS_BITS$]) -m4trace:configure.ac:226: -1- m4_pattern_allow([^PORT$]) -m4trace:configure.ac:233: -1- m4_pattern_allow([^BREW$]) -m4trace:configure.ac:248: -1- m4_pattern_allow([^INSTALLNAMETOOL$]) -m4trace:configure.ac:249: -1- m4_pattern_allow([^OTOOL$]) -m4trace:configure.ac:250: -1- m4_pattern_allow([^GENISOIMAGE$]) -m4trace:configure.ac:262: -1- m4_pattern_allow([^JAVA_COMPARISON_TOOL$]) -m4trace:configure.ac:269: -1- m4_pattern_allow([^COMPARISON_TOOL_REORG_TESTS$]) -m4trace:configure.ac:271: -1- m4_pattern_allow([^COMPARISON_TOOL_REORG_TESTS$]) -m4trace:configure.ac:291: -1- AX_CHECK_COMPILE_FLAG([--coverage], [CXXFLAGS="$CXXFLAGS --coverage"], [AC_MSG_ERROR("lcov testing requested but --coverage flag does not work")]) -m4trace:configure.ac:296: -1- m4_pattern_allow([^GREP$]) -m4trace:configure.ac:296: -1- m4_pattern_allow([^EGREP$]) -m4trace:configure.ac:296: -1- m4_pattern_allow([^STDC_HEADERS$]) -m4trace:configure.ac:296: -1- m4_pattern_allow([^AC_APPLE_UNIVERSAL_BUILD$]) -m4trace:configure.ac:299: -1- AX_PTHREAD -m4trace:configure.ac:299: -1- m4_pattern_allow([^ax_pthread_config$]) -m4trace:configure.ac:299: -1- m4_pattern_allow([^PTHREAD_CREATE_JOINABLE$]) -m4trace:configure.ac:299: -1- m4_pattern_allow([^HAVE_PTHREAD_PRIO_INHERIT$]) -m4trace:configure.ac:299: -1- m4_pattern_allow([^PTHREAD_CC$]) -m4trace:configure.ac:299: -1- m4_pattern_allow([^PTHREAD_LIBS$]) -m4trace:configure.ac:299: -1- m4_pattern_allow([^PTHREAD_CFLAGS$]) -m4trace:configure.ac:299: -1- m4_pattern_allow([^PTHREAD_CC$]) -m4trace:configure.ac:299: -1- m4_pattern_allow([^HAVE_PTHREAD$]) -m4trace:configure.ac:305: -1- m4_pattern_allow([^_FILE_OFFSET_BITS$]) -m4trace:configure.ac:305: -1- m4_pattern_allow([^_LARGE_FILES$]) -m4trace:configure.ac:319: -1- AX_CHECK_LINK_FLAG([[-Wl,--large-address-aware]], [LDFLAGS="$LDFLAGS -Wl,--large-address-aware"]) -m4trace:configure.ac:326: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -configure.ac:326: the top level]) -m4trace:configure.ac:332: -1- m4_pattern_allow([^FDELT_TYPE$]) -m4trace:configure.ac:337: -1- AX_CHECK_COMPILE_FLAG([-Wstack-protector], [HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -Wstack-protector"]) -m4trace:configure.ac:338: -1- AX_CHECK_COMPILE_FLAG([-fstack-protector-all], [HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fstack-protector-all"]) -m4trace:configure.ac:339: -1- AX_CHECK_COMPILE_FLAG([-fPIE], [HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fPIE"]) -m4trace:configure.ac:341: -1- AX_CHECK_PREPROC_FLAG([-D_FORTIFY_SOURCE=2], [ - AX_CHECK_PREPROC_FLAG([-U_FORTIFY_SOURCE],[ - HARDENED_CPPFLAGS="$HARDENED_CPPFLAGS -U_FORTIFY_SOURCE" - ]) - HARDENED_CPPFLAGS="$HARDENED_CPPFLAGS -D_FORTIFY_SOURCE=2" - ]) -m4trace:configure.ac:341: -1- AX_CHECK_PREPROC_FLAG([-U_FORTIFY_SOURCE], [ - HARDENED_CPPFLAGS="$HARDENED_CPPFLAGS -U_FORTIFY_SOURCE" - ]) -m4trace:configure.ac:348: -1- AX_CHECK_LINK_FLAG([[-Wl,--dynamicbase]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,--dynamicbase"]) -m4trace:configure.ac:349: -1- AX_CHECK_LINK_FLAG([[-Wl,--nxcompat]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,--nxcompat"]) -m4trace:configure.ac:350: -1- AX_CHECK_LINK_FLAG([[-Wl,-z,relro]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,-z,relro"]) -m4trace:configure.ac:351: -1- AX_CHECK_LINK_FLAG([[-Wl,-z,now]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,-z,now"]) -m4trace:configure.ac:355: -1- AX_CHECK_LINK_FLAG([[-pie]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -pie"]) -m4trace:configure.ac:366: -1- AX_CHECK_LINK_FLAG([[-Wl,-dead_strip]], [LDFLAGS="$LDFLAGS -Wl,-dead_strip"]) -m4trace:configure.ac:373: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -configure.ac:373: the top level]) -m4trace:configure.ac:373: -1- m4_pattern_allow([^HAVE_MSG_NOSIGNAL$]) -m4trace:configure.ac:382: -1- AM_CONDITIONAL([EMBEDDED_LEVELDB], [true]) -m4trace:configure.ac:382: -1- m4_pattern_allow([^EMBEDDED_LEVELDB_TRUE$]) -m4trace:configure.ac:382: -1- m4_pattern_allow([^EMBEDDED_LEVELDB_FALSE$]) -m4trace:configure.ac:382: -1- _AM_SUBST_NOTMAKE([EMBEDDED_LEVELDB_TRUE]) -m4trace:configure.ac:382: -1- _AM_SUBST_NOTMAKE([EMBEDDED_LEVELDB_FALSE]) -m4trace:configure.ac:383: -1- m4_pattern_allow([^LEVELDB_CPPFLAGS$]) -m4trace:configure.ac:384: -1- m4_pattern_allow([^LIBLEVELDB$]) -m4trace:configure.ac:385: -1- m4_pattern_allow([^LIBMEMENV$]) -m4trace:configure.ac:389: -1- BITCOIN_FIND_BDB48 -m4trace:configure.ac:389: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -src/m4/bitcoin_find_bdb48.m4:1: BITCOIN_FIND_BDB48 is expanded from... -configure.ac:389: the top level]) -m4trace:configure.ac:389: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -src/m4/bitcoin_find_bdb48.m4:1: BITCOIN_FIND_BDB48 is expanded from... -configure.ac:389: the top level]) -m4trace:configure.ac:389: -1- BITCOIN_SUBDIR_TO_INCLUDE([BDB_CPPFLAGS], [${bdbpath}], [db_cxx]) -m4trace:configure.ac:389: -1- BITCOIN_SUBDIR_TO_INCLUDE([BDB_CPPFLAGS], [${bdb48path}], [db_cxx]) -m4trace:configure.ac:389: -1- m4_pattern_allow([^BDB_CPPFLAGS$]) -m4trace:configure.ac:389: -1- m4_pattern_allow([^BDB_LIBS$]) -m4trace:configure.ac:394: -1- m4_pattern_allow([^HAVE_LIBMINIUPNPC$]) -m4trace:configure.ac:402: -1- AX_BOOST_BASE -m4trace:configure.ac:402: -1- m4_pattern_allow([^BOOST_CPPFLAGS$]) -m4trace:configure.ac:402: -1- m4_pattern_allow([^BOOST_LDFLAGS$]) -m4trace:configure.ac:402: -1- m4_pattern_allow([^HAVE_BOOST$]) -m4trace:configure.ac:403: -1- AX_BOOST_SYSTEM -m4trace:configure.ac:403: -1- m4_pattern_allow([^BOOST_CPPFLAGS$]) -m4trace:configure.ac:403: -1- m4_pattern_allow([^HAVE_BOOST_SYSTEM$]) -m4trace:configure.ac:403: -1- m4_pattern_allow([^BOOST_SYSTEM_LIB$]) -m4trace:configure.ac:403: -1- m4_pattern_allow([^BOOST_SYSTEM_LIB$]) -m4trace:configure.ac:403: -1- m4_pattern_allow([^BOOST_SYSTEM_LIB$]) -m4trace:configure.ac:404: -1- AX_BOOST_FILESYSTEM -m4trace:configure.ac:404: -1- m4_pattern_allow([^HAVE_BOOST_FILESYSTEM$]) -m4trace:configure.ac:404: -1- m4_pattern_allow([^BOOST_FILESYSTEM_LIB$]) -m4trace:configure.ac:404: -1- m4_pattern_allow([^BOOST_FILESYSTEM_LIB$]) -m4trace:configure.ac:404: -1- m4_pattern_allow([^BOOST_FILESYSTEM_LIB$]) -m4trace:configure.ac:405: -1- AX_BOOST_PROGRAM_OPTIONS -m4trace:configure.ac:405: -1- m4_pattern_allow([^HAVE_BOOST_PROGRAM_OPTIONS$]) -m4trace:configure.ac:405: -1- m4_pattern_allow([^BOOST_PROGRAM_OPTIONS_LIB$]) -m4trace:configure.ac:405: -1- m4_pattern_allow([^BOOST_PROGRAM_OPTIONS_LIB$]) -m4trace:configure.ac:405: -1- m4_pattern_allow([^BOOST_PROGRAM_OPTIONS_LIB$]) -m4trace:configure.ac:406: -1- AX_BOOST_THREAD -m4trace:configure.ac:406: -1- m4_pattern_allow([^BOOST_CPPFLAGS$]) -m4trace:configure.ac:406: -1- m4_pattern_allow([^HAVE_BOOST_THREAD$]) -m4trace:configure.ac:406: -1- m4_pattern_allow([^BOOST_THREAD_LIB$]) -m4trace:configure.ac:406: -1- m4_pattern_allow([^BOOST_THREAD_LIB$]) -m4trace:configure.ac:406: -1- m4_pattern_allow([^BOOST_THREAD_LIB$]) -m4trace:configure.ac:407: -1- AX_BOOST_CHRONO -m4trace:configure.ac:407: -1- m4_pattern_allow([^BOOST_CPPFLAGS$]) -m4trace:configure.ac:407: -1- m4_pattern_allow([^HAVE_BOOST_CHRONO$]) -m4trace:configure.ac:407: -1- m4_pattern_allow([^BOOST_CHRONO_LIB$]) -m4trace:configure.ac:407: -1- m4_pattern_allow([^BOOST_CHRONO_LIB$]) -m4trace:configure.ac:407: -1- m4_pattern_allow([^BOOST_CHRONO_LIB$]) -m4trace:configure.ac:416: -1- AX_BOOST_UNIT_TEST_FRAMEWORK -m4trace:configure.ac:416: -1- m4_pattern_allow([^HAVE_BOOST_UNIT_TEST_FRAMEWORK$]) -m4trace:configure.ac:416: -1- m4_pattern_allow([^BOOST_UNIT_TEST_FRAMEWORK_LIB$]) -m4trace:configure.ac:416: -1- m4_pattern_allow([^BOOST_UNIT_TEST_FRAMEWORK_LIB$]) -m4trace:configure.ac:416: -1- m4_pattern_allow([^BOOST_UNIT_TEST_FRAMEWORK_LIB$]) -m4trace:configure.ac:454: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -configure.ac:454: the top level]) -m4trace:configure.ac:454: -1- m4_pattern_allow([^HAVE_WORKING_BOOST_SLEEP_FOR$]) -m4trace:configure.ac:476: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -configure.ac:476: the top level]) -m4trace:configure.ac:476: -1- m4_pattern_allow([^HAVE_WORKING_BOOST_SLEEP$]) -m4trace:configure.ac:509: -1- BITCOIN_QT_INIT -m4trace:configure.ac:518: -1- PKG_CHECK_MODULES([SSL], [libssl], [INCLUDES="$INCLUDES $SSL_CFLAGS"; LIBS="$LIBS $SSL_LIBS"], [AC_MSG_ERROR(openssl not found.)]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^SSL_CFLAGS$]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^SSL_LIBS$]) -m4trace:configure.ac:518: -1- PKG_CHECK_EXISTS([libssl], [pkg_cv_[]SSL_CFLAGS=`$PKG_CONFIG --[]cflags "libssl" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:518: -1- PKG_CHECK_EXISTS([libssl], [pkg_cv_[]SSL_LIBS=`$PKG_CONFIG --[]libs "libssl" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:518: -1- _PKG_SHORT_ERRORS_SUPPORTED -m4trace:configure.ac:518: -1- PKG_CHECK_MODULES([CRYPTO], [libcrypto], [INCLUDES="$INCLUDES $CRYPTO_CFLAGS"; LIBS="$LIBS $CRYPTO_LIBS"], [AC_MSG_ERROR(libcrypto not found.)]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^CRYPTO_CFLAGS$]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^CRYPTO_LIBS$]) -m4trace:configure.ac:518: -1- PKG_CHECK_EXISTS([libcrypto], [pkg_cv_[]CRYPTO_CFLAGS=`$PKG_CONFIG --[]cflags "libcrypto" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:518: -1- PKG_CHECK_EXISTS([libcrypto], [pkg_cv_[]CRYPTO_LIBS=`$PKG_CONFIG --[]libs "libcrypto" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:518: -1- _PKG_SHORT_ERRORS_SUPPORTED -m4trace:configure.ac:518: -1- BITCOIN_QT_CHECK([PKG_CHECK_MODULES([PROTOBUF], [protobuf], [have_protobuf=yes], [BITCOIN_QT_FAIL(libprotobuf not found)])]) -m4trace:configure.ac:518: -1- PKG_CHECK_MODULES([PROTOBUF], [protobuf], [have_protobuf=yes], [BITCOIN_QT_FAIL(libprotobuf not found)]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^PROTOBUF_CFLAGS$]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^PROTOBUF_LIBS$]) -m4trace:configure.ac:518: -1- PKG_CHECK_EXISTS([protobuf], [pkg_cv_[]PROTOBUF_CFLAGS=`$PKG_CONFIG --[]cflags "protobuf" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:518: -1- PKG_CHECK_EXISTS([protobuf], [pkg_cv_[]PROTOBUF_LIBS=`$PKG_CONFIG --[]libs "protobuf" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:518: -1- _PKG_SHORT_ERRORS_SUPPORTED -m4trace:configure.ac:518: -1- BITCOIN_QT_FAIL([libprotobuf not found]) -m4trace:configure.ac:518: -1- BITCOIN_QT_FAIL([libprotobuf not found]) -m4trace:configure.ac:518: -1- BITCOIN_QT_CHECK([PKG_CHECK_MODULES([QR], [libqrencode], [have_qrencode=yes], [have_qrencode=no])]) -m4trace:configure.ac:518: -1- PKG_CHECK_MODULES([QR], [libqrencode], [have_qrencode=yes], [have_qrencode=no]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^QR_CFLAGS$]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^QR_LIBS$]) -m4trace:configure.ac:518: -1- PKG_CHECK_EXISTS([libqrencode], [pkg_cv_[]QR_CFLAGS=`$PKG_CONFIG --[]cflags "libqrencode" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:518: -1- PKG_CHECK_EXISTS([libqrencode], [pkg_cv_[]QR_LIBS=`$PKG_CONFIG --[]libs "libqrencode" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:518: -1- _PKG_SHORT_ERRORS_SUPPORTED -m4trace:configure.ac:531: -1- m4_pattern_allow([^HAVE_LIBCRYPTO$]) -m4trace:configure.ac:534: -1- m4_pattern_allow([^HAVE_LIBSSL$]) -m4trace:configure.ac:536: -3- BITCOIN_QT_FAIL([libprotobuf not found]) -m4trace:configure.ac:536: -2- m4_pattern_allow([^HAVE_LIBPROTOBUF_$]) -m4trace:configure.ac:536: -1- BITCOIN_QT_CHECK([as_ac_Lib=`$as_echo "ac_cv_lib_protobuf ''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lprotobuf " >&5 -$as_echo_n "checking for main in -lprotobuf ... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lprotobuf $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBPROTOBUF_ 1 -_ACEOF - - LIBS="-lprotobuf $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libprotobuf not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: libprotobuf not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "libprotobuf not found" "$LINENO" 5 - fi - -fi -]) -m4trace:configure.ac:538: -1- BITCOIN_QT_CHECK([AC_CHECK_LIB([qrencode], [main],, [have_qrencode=no])]) -m4trace:configure.ac:538: -1- m4_pattern_allow([^HAVE_LIBQRENCODE$]) -m4trace:configure.ac:539: -1- BITCOIN_QT_CHECK([AC_CHECK_HEADER([qrencode.h],, have_qrencode=no)]) -m4trace:configure.ac:543: -1- BITCOIN_QT_PATH_PROGS([PROTOC], [protoc], [$protoc_bin_path]) -m4trace:configure.ac:543: -1- BITCOIN_QT_CHECK([ - if test "x$protoc_bin_path" != "x"; then - AC_PATH_PROGS(PROTOC,protoc,,$protoc_bin_path) - else - AC_PATH_PROGS(PROTOC,protoc) - fi - if test "x$PROTOC" = "x" && test "x" != "xyes"; then - BITCOIN_QT_FAIL([PROTOC not found]) - fi - ]) -m4trace:configure.ac:543: -1- m4_pattern_allow([^PROTOC$]) -m4trace:configure.ac:543: -1- m4_pattern_allow([^PROTOC$]) -m4trace:configure.ac:543: -1- BITCOIN_QT_FAIL([PROTOC not found]) -m4trace:configure.ac:546: -1- AM_CONDITIONAL([BUILD_BITCOIND], [test x$build_bitcoind = xyes]) -m4trace:configure.ac:546: -1- m4_pattern_allow([^BUILD_BITCOIND_TRUE$]) -m4trace:configure.ac:546: -1- m4_pattern_allow([^BUILD_BITCOIND_FALSE$]) -m4trace:configure.ac:546: -1- _AM_SUBST_NOTMAKE([BUILD_BITCOIND_TRUE]) -m4trace:configure.ac:546: -1- _AM_SUBST_NOTMAKE([BUILD_BITCOIND_FALSE]) -m4trace:configure.ac:550: -1- AM_CONDITIONAL([BUILD_BITCOIN_CLI], [test x$build_bitcoin_cli = xyes]) -m4trace:configure.ac:550: -1- m4_pattern_allow([^BUILD_BITCOIN_CLI_TRUE$]) -m4trace:configure.ac:550: -1- m4_pattern_allow([^BUILD_BITCOIN_CLI_FALSE$]) -m4trace:configure.ac:550: -1- _AM_SUBST_NOTMAKE([BUILD_BITCOIN_CLI_TRUE]) -m4trace:configure.ac:550: -1- _AM_SUBST_NOTMAKE([BUILD_BITCOIN_CLI_FALSE]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CONFIGURE([$use_pkgconfig], [qt4]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([_BITCOIN_QT_FIND_LIBS_WITH_PKGCONFIG([qt4])]) -m4trace:configure.ac:554: -1- _BITCOIN_QT_FIND_LIBS_WITH_PKGCONFIG([qt4]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([ - if test x$bitcoin_qt_want_version == xqt5 || ( test x$bitcoin_qt_want_version == xauto && test x$auto_priority_version == xqt5 ); then - PKG_CHECK_MODULES([QT], [$qt5_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes],[have_qt=no]) - elif test x$bitcoin_qt_want_version == xqt4 || ( test x$bitcoin_qt_want_version == xauto && test x$auto_priority_version == xqt4 ); then - PKG_CHECK_MODULES([QT], [$qt4_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes], [have_qt=no]) - fi - - dnl qt version is set to 'auto' and the preferred version wasn't found. Now try the other. - if test x$have_qt == xno && test x$bitcoin_qt_want_version == xauto; then - if test x$auto_priority_version = x$qt5; then - PKG_CHECK_MODULES([QT], [$qt4_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes; QT_LIB_PREFIX=Qt; bitcoin_qt_got_major_vers=4], [have_qt=no]) - else - PKG_CHECK_MODULES([QT], [$qt5_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes; QT_LIB_PREFIX=Qt5; bitcoin_qt_got_major_vers=5], [have_qt=no]) - fi - fi - if test x$have_qt != xyes; then - have_qt=no - BITCOIN_QT_FAIL([Qt dependencies not found]) - fi - ]) -m4trace:configure.ac:554: -1- PKG_CHECK_MODULES([QT], [$qt5_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes], [have_qt=no]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_CFLAGS$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_LIBS$]) -m4trace:configure.ac:554: -1- PKG_CHECK_EXISTS([$qt5_modules], [pkg_cv_[]QT_CFLAGS=`$PKG_CONFIG --[]cflags "$qt5_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:554: -1- PKG_CHECK_EXISTS([$qt5_modules], [pkg_cv_[]QT_LIBS=`$PKG_CONFIG --[]libs "$qt5_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:554: -1- _PKG_SHORT_ERRORS_SUPPORTED -m4trace:configure.ac:554: -1- PKG_CHECK_MODULES([QT], [$qt4_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes], [have_qt=no]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_CFLAGS$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_LIBS$]) -m4trace:configure.ac:554: -1- PKG_CHECK_EXISTS([$qt4_modules], [pkg_cv_[]QT_CFLAGS=`$PKG_CONFIG --[]cflags "$qt4_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:554: -1- PKG_CHECK_EXISTS([$qt4_modules], [pkg_cv_[]QT_LIBS=`$PKG_CONFIG --[]libs "$qt4_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:554: -1- _PKG_SHORT_ERRORS_SUPPORTED -m4trace:configure.ac:554: -1- PKG_CHECK_MODULES([QT], [$qt4_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes; QT_LIB_PREFIX=Qt; bitcoin_qt_got_major_vers=4], [have_qt=no]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_CFLAGS$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_LIBS$]) -m4trace:configure.ac:554: -1- PKG_CHECK_EXISTS([$qt4_modules], [pkg_cv_[]QT_CFLAGS=`$PKG_CONFIG --[]cflags "$qt4_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:554: -1- PKG_CHECK_EXISTS([$qt4_modules], [pkg_cv_[]QT_LIBS=`$PKG_CONFIG --[]libs "$qt4_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:554: -1- _PKG_SHORT_ERRORS_SUPPORTED -m4trace:configure.ac:554: -1- PKG_CHECK_MODULES([QT], [$qt5_modules], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes; QT_LIB_PREFIX=Qt5; bitcoin_qt_got_major_vers=5], [have_qt=no]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_CFLAGS$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_LIBS$]) -m4trace:configure.ac:554: -1- PKG_CHECK_EXISTS([$qt5_modules], [pkg_cv_[]QT_CFLAGS=`$PKG_CONFIG --[]cflags "$qt5_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:554: -1- PKG_CHECK_EXISTS([$qt5_modules], [pkg_cv_[]QT_LIBS=`$PKG_CONFIG --[]libs "$qt5_modules" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:554: -1- _PKG_SHORT_ERRORS_SUPPORTED -m4trace:configure.ac:554: -1- BITCOIN_QT_FAIL([Qt dependencies not found]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([ - PKG_CHECK_MODULES([QT_TEST], [${QT_LIB_PREFIX}Test], [QT_TEST_INCLUDES="$QT_TEST_CFLAGS"; have_qt_test=yes], [have_qt_test=no]) - if test x$use_dbus != xno; then - PKG_CHECK_MODULES([QT_DBUS], [${QT_LIB_PREFIX}DBus], [QT_DBUS_INCLUDES="$QT_DBUS_CFLAGS"; have_qt_dbus=yes], [have_qt_dbus=no]) - fi - ]) -m4trace:configure.ac:554: -1- PKG_CHECK_MODULES([QT_TEST], [${QT_LIB_PREFIX}Test], [QT_TEST_INCLUDES="$QT_TEST_CFLAGS"; have_qt_test=yes], [have_qt_test=no]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_TEST_CFLAGS$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_TEST_LIBS$]) -m4trace:configure.ac:554: -1- PKG_CHECK_EXISTS([${QT_LIB_PREFIX}Test], [pkg_cv_[]QT_TEST_CFLAGS=`$PKG_CONFIG --[]cflags "${QT_LIB_PREFIX}Test" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:554: -1- PKG_CHECK_EXISTS([${QT_LIB_PREFIX}Test], [pkg_cv_[]QT_TEST_LIBS=`$PKG_CONFIG --[]libs "${QT_LIB_PREFIX}Test" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:554: -1- _PKG_SHORT_ERRORS_SUPPORTED -m4trace:configure.ac:554: -1- PKG_CHECK_MODULES([QT_DBUS], [${QT_LIB_PREFIX}DBus], [QT_DBUS_INCLUDES="$QT_DBUS_CFLAGS"; have_qt_dbus=yes], [have_qt_dbus=no]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_DBUS_CFLAGS$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_DBUS_LIBS$]) -m4trace:configure.ac:554: -1- PKG_CHECK_EXISTS([${QT_LIB_PREFIX}DBus], [pkg_cv_[]QT_DBUS_CFLAGS=`$PKG_CONFIG --[]cflags "${QT_LIB_PREFIX}DBus" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:554: -1- PKG_CHECK_EXISTS([${QT_LIB_PREFIX}DBus], [pkg_cv_[]QT_DBUS_LIBS=`$PKG_CONFIG --[]libs "${QT_LIB_PREFIX}DBus" 2>/dev/null` - test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) -m4trace:configure.ac:554: -1- _PKG_SHORT_ERRORS_SUPPORTED -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([_BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG]) -m4trace:configure.ac:554: -1- _BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([ - if test x$qt_include_path != x; then - QT_INCLUDES="-I$qt_include_path -I$qt_include_path/QtCore -I$qt_include_path/QtGui -I$qt_include_path/QtWidgets -I$qt_include_path/QtNetwork -I$qt_include_path/QtTest -I$qt_include_path/QtDBus" - CPPFLAGS="$QT_INCLUDES $CPPFLAGS" - fi - ]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([AC_CHECK_HEADER([QtPlugin],,BITCOIN_QT_FAIL(QtCore headers missing))]) -m4trace:configure.ac:554: -2- BITCOIN_QT_FAIL([QtCore headers missing]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([AC_CHECK_HEADER([QApplication],, BITCOIN_QT_FAIL(QtGui headers missing))]) -m4trace:configure.ac:554: -2- BITCOIN_QT_FAIL([QtGui headers missing]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([AC_CHECK_HEADER([QLocalSocket],, BITCOIN_QT_FAIL(QtNetwork headers missing))]) -m4trace:configure.ac:554: -2- BITCOIN_QT_FAIL([QtNetwork headers missing]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([ - if test x$bitcoin_qt_want_version = xauto; then - _BITCOIN_QT_CHECK_QT5 - fi - if test x$bitcoin_cv_qt5 == xyes || test x$bitcoin_qt_want_version = xqt5; then - QT_LIB_PREFIX=Qt5 - bitcoin_qt_got_major_vers=5 - else - QT_LIB_PREFIX=Qt - bitcoin_qt_got_major_vers=4 - fi - ]) -m4trace:configure.ac:554: -1- _BITCOIN_QT_CHECK_QT5 -m4trace:configure.ac:554: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -src/m4/bitcoin_qt.m4:160: _BITCOIN_QT_CHECK_QT5 is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:278: _BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:81: BITCOIN_QT_CONFIGURE is expanded from... -configure.ac:554: the top level]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([ - LIBS= - if test x$qt_lib_path != x; then - LIBS="$LIBS -L$qt_lib_path" - fi - if test x$qt_plugin_path != x; then - LIBS="$LIBS -L$qt_plugin_path/accessible" - if test x$bitcoin_qt_got_major_vers == x5; then - LIBS="$LIBS -L$qt_plugin_path/platforms" - else - LIBS="$LIBS -L$qt_plugin_path/codecs" - fi - fi - - if test x$TARGET_OS == xwindows; then - AC_CHECK_LIB([imm32], [main],, BITCOIN_QT_FAIL(libimm32 not found)) - fi - ]) -m4trace:configure.ac:554: -2- BITCOIN_QT_FAIL([libimm32 not found]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^HAVE_LIBIMM32$]) -m4trace:configure.ac:554: -3- BITCOIN_QT_FAIL([zlib not found]) -m4trace:configure.ac:554: -2- m4_pattern_allow([^HAVE_LIBZ_$]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([as_ac_Lib=`$as_echo "ac_cv_lib_z ''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lz " >&5 -$as_echo_n "checking for main in -lz ... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lz $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBZ_ 1 -_ACEOF - - LIBS="-lz $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: zlib not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: zlib not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "zlib not found" "$LINENO" 5 - fi - -fi -]) -m4trace:configure.ac:554: -3- BITCOIN_QT_FAIL([png not found]) -m4trace:configure.ac:554: -2- m4_pattern_allow([^HAVE_LIBPNG_$]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([as_ac_Lib=`$as_echo "ac_cv_lib_png ''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lpng " >&5 -$as_echo_n "checking for main in -lpng ... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lpng $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define HAVE_LIBPNG_ 1 -_ACEOF - - LIBS="-lpng $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: png not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: png not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "png not found" "$LINENO" 5 - fi - -fi -]) -m4trace:configure.ac:554: -3- BITCOIN_QT_FAIL([lib$QT_LIB_PREFIXCore not found]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}Core ''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}Core " >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}Core ... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}Core $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}Core " | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}Core $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lib$QT_LIB_PREFIXCore not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: lib$QT_LIB_PREFIXCore not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "lib$QT_LIB_PREFIXCore not found" "$LINENO" 5 - fi - -fi -]) -m4trace:configure.ac:554: -3- BITCOIN_QT_FAIL([lib$QT_LIB_PREFIXGui not found]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}Gui ''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}Gui " >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}Gui ... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}Gui $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}Gui " | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}Gui $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lib$QT_LIB_PREFIXGui not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: lib$QT_LIB_PREFIXGui not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "lib$QT_LIB_PREFIXGui not found" "$LINENO" 5 - fi - -fi -]) -m4trace:configure.ac:554: -3- BITCOIN_QT_FAIL([lib$QT_LIB_PREFIXNetwork not found]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}Network''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}Network" >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}Network... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}Network $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}Network" | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}Network $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lib$QT_LIB_PREFIXNetwork not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: lib$QT_LIB_PREFIXNetwork not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "lib$QT_LIB_PREFIXNetwork not found" "$LINENO" 5 - fi - -fi -]) -m4trace:configure.ac:554: -3- BITCOIN_QT_FAIL([lib$QT_LIB_PREFIXWidgets not found]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([as_ac_Lib=`$as_echo "ac_cv_lib_${QT_LIB_PREFIX}Widgets''_main" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l${QT_LIB_PREFIX}Widgets" >&5 -$as_echo_n "checking for main in -l${QT_LIB_PREFIX}Widgets... " >&6; } -if eval \${$as_ac_Lib+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-l${QT_LIB_PREFIX}Widgets $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - -int -main () -{ -return main (); - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - eval "$as_ac_Lib=yes" -else - eval "$as_ac_Lib=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -eval ac_res=\$$as_ac_Lib - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -@%:@define `$as_echo "HAVE_LIB${QT_LIB_PREFIX}Widgets" | $as_tr_cpp` 1 -_ACEOF - - LIBS="-l${QT_LIB_PREFIX}Widgets $LIBS" - -else - - if test "x$bitcoin_qt_want_version" = "xauto" && test x$bitcoin_qt_force != xyes; then - if test x$bitcoin_enable_qt != xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lib$QT_LIB_PREFIXWidgets not found; bitcoin-qt frontend will not be built" >&5 -$as_echo "$as_me: WARNING: lib$QT_LIB_PREFIXWidgets not found; bitcoin-qt frontend will not be built" >&2;} - fi - bitcoin_enable_qt=no - else - as_fn_error $? "lib$QT_LIB_PREFIXWidgets not found" "$LINENO" 5 - fi - -fi -]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([ - if test x$bitcoin_qt_got_major_vers == x5; then - _BITCOIN_QT_IS_STATIC - if test x$bitcoin_cv_static_qt == xyes; then - AC_DEFINE(QT_STATICPLUGIN, 1, [Define this symbol if qt plugins are static]) - _BITCOIN_QT_CHECK_STATIC_PLUGINS([Q_IMPORT_PLUGIN(AccessibleFactory)], [-lqtaccessiblewidgets]) - if test x$TARGET_OS == xwindows; then - _BITCOIN_QT_CHECK_STATIC_PLUGINS([Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)],[-lqwindows]) - fi - fi - else - AC_DEFINE(QT_STATICPLUGIN, 1, [Define this symbol if qt plugins are static]) - _BITCOIN_QT_CHECK_STATIC_PLUGINS([ - Q_IMPORT_PLUGIN(qcncodecs) - Q_IMPORT_PLUGIN(qjpcodecs) - Q_IMPORT_PLUGIN(qtwcodecs) - Q_IMPORT_PLUGIN(qkrcodecs) - Q_IMPORT_PLUGIN(AccessibleFactory)], - [-lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets]) - fi - ]) -m4trace:configure.ac:554: -1- _BITCOIN_QT_IS_STATIC -m4trace:configure.ac:554: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -src/m4/bitcoin_qt.m4:180: _BITCOIN_QT_IS_STATIC is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:278: _BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:81: BITCOIN_QT_CONFIGURE is expanded from... -configure.ac:554: the top level]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_STATICPLUGIN$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_STATICPLUGIN$]) -m4trace:configure.ac:554: -1- _BITCOIN_QT_CHECK_STATIC_PLUGINS([Q_IMPORT_PLUGIN(AccessibleFactory)], [-lqtaccessiblewidgets]) -m4trace:configure.ac:554: -2- BITCOIN_QT_FAIL([Could not resolve: -lqtaccessiblewidgets]) -m4trace:configure.ac:554: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -src/m4/bitcoin_qt.m4:204: _BITCOIN_QT_CHECK_STATIC_PLUGINS is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:278: _BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:81: BITCOIN_QT_CONFIGURE is expanded from... -configure.ac:554: the top level]) -m4trace:configure.ac:554: -1- _BITCOIN_QT_CHECK_STATIC_PLUGINS([Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)], [-lqwindows]) -m4trace:configure.ac:554: -2- BITCOIN_QT_FAIL([Could not resolve: -lqwindows]) -m4trace:configure.ac:554: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -src/m4/bitcoin_qt.m4:204: _BITCOIN_QT_CHECK_STATIC_PLUGINS is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:278: _BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:81: BITCOIN_QT_CONFIGURE is expanded from... -configure.ac:554: the top level]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_STATICPLUGIN$]) -m4trace:configure.ac:554: -1- _BITCOIN_QT_CHECK_STATIC_PLUGINS([ - Q_IMPORT_PLUGIN(qcncodecs) - Q_IMPORT_PLUGIN(qjpcodecs) - Q_IMPORT_PLUGIN(qtwcodecs) - Q_IMPORT_PLUGIN(qkrcodecs) - Q_IMPORT_PLUGIN(AccessibleFactory)], [-lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets]) -m4trace:configure.ac:554: -2- BITCOIN_QT_FAIL([Could not resolve: -lqcncodecs -lqjpcodecs -lqtwcodecs -lqkrcodecs -lqtaccessiblewidgets]) -m4trace:configure.ac:554: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -src/m4/bitcoin_qt.m4:204: _BITCOIN_QT_CHECK_STATIC_PLUGINS is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:278: _BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:81: BITCOIN_QT_CONFIGURE is expanded from... -configure.ac:554: the top level]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([ - LIBS= - if test x$qt_lib_path != x; then - LIBS="-L$qt_lib_path" - fi - AC_CHECK_LIB([${QT_LIB_PREFIX}Test], [main],, have_qt_test=no) - AC_CHECK_HEADER([QTest],, have_qt_test=no) - QT_TEST_LIBS="$LIBS" - if test x$use_dbus != xno; then - LIBS= - if test x$qt_lib_path != x; then - LIBS="-L$qt_lib_path" - fi - AC_CHECK_LIB([${QT_LIB_PREFIX}DBus], [main],, have_qt_dbus=no) - AC_CHECK_HEADER([QtDBus],, have_qt_dbus=no) - QT_DBUS_LIBS="$LIBS" - fi - ]) -m4trace:configure.ac:554: -1- BITCOIN_QT_PATH_PROGS([MOC], [moc-qt${bitcoin_qt_got_major_vers} moc${bitcoin_qt_got_major_vers} moc], [$qt_bin_path]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([ - if test "x$qt_bin_path" != "x"; then - AC_PATH_PROGS(MOC,moc-qt${bitcoin_qt_got_major_vers} moc${bitcoin_qt_got_major_vers} moc,,$qt_bin_path) - else - AC_PATH_PROGS(MOC,moc-qt${bitcoin_qt_got_major_vers} moc${bitcoin_qt_got_major_vers} moc) - fi - if test "x$MOC" = "x" && test "x" != "xyes"; then - BITCOIN_QT_FAIL([MOC not found]) - fi - ]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^MOC$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^MOC$]) -m4trace:configure.ac:554: -1- BITCOIN_QT_FAIL([MOC not found]) -m4trace:configure.ac:554: -1- BITCOIN_QT_PATH_PROGS([UIC], [uic-qt${bitcoin_qt_got_major_vers} uic${bitcoin_qt_got_major_vers} uic], [$qt_bin_path]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([ - if test "x$qt_bin_path" != "x"; then - AC_PATH_PROGS(UIC,uic-qt${bitcoin_qt_got_major_vers} uic${bitcoin_qt_got_major_vers} uic,,$qt_bin_path) - else - AC_PATH_PROGS(UIC,uic-qt${bitcoin_qt_got_major_vers} uic${bitcoin_qt_got_major_vers} uic) - fi - if test "x$UIC" = "x" && test "x" != "xyes"; then - BITCOIN_QT_FAIL([UIC not found]) - fi - ]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^UIC$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^UIC$]) -m4trace:configure.ac:554: -1- BITCOIN_QT_FAIL([UIC not found]) -m4trace:configure.ac:554: -1- BITCOIN_QT_PATH_PROGS([RCC], [rcc-qt${bitcoin_qt_got_major_vers} rcc${bitcoin_qt_got_major_vers} rcc], [$qt_bin_path]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([ - if test "x$qt_bin_path" != "x"; then - AC_PATH_PROGS(RCC,rcc-qt${bitcoin_qt_got_major_vers} rcc${bitcoin_qt_got_major_vers} rcc,,$qt_bin_path) - else - AC_PATH_PROGS(RCC,rcc-qt${bitcoin_qt_got_major_vers} rcc${bitcoin_qt_got_major_vers} rcc) - fi - if test "x$RCC" = "x" && test "x" != "xyes"; then - BITCOIN_QT_FAIL([RCC not found]) - fi - ]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^RCC$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^RCC$]) -m4trace:configure.ac:554: -1- BITCOIN_QT_FAIL([RCC not found]) -m4trace:configure.ac:554: -1- BITCOIN_QT_PATH_PROGS([LRELEASE], [lrelease-qt${bitcoin_qt_got_major_vers} lrelease${bitcoin_qt_got_major_vers} lrelease], [$qt_bin_path]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([ - if test "x$qt_bin_path" != "x"; then - AC_PATH_PROGS(LRELEASE,lrelease-qt${bitcoin_qt_got_major_vers} lrelease${bitcoin_qt_got_major_vers} lrelease,,$qt_bin_path) - else - AC_PATH_PROGS(LRELEASE,lrelease-qt${bitcoin_qt_got_major_vers} lrelease${bitcoin_qt_got_major_vers} lrelease) - fi - if test "x$LRELEASE" = "x" && test "x" != "xyes"; then - BITCOIN_QT_FAIL([LRELEASE not found]) - fi - ]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^LRELEASE$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^LRELEASE$]) -m4trace:configure.ac:554: -1- BITCOIN_QT_FAIL([LRELEASE not found]) -m4trace:configure.ac:554: -1- BITCOIN_QT_PATH_PROGS([LUPDATE], [lupdate-qt${bitcoin_qt_got_major_vers} lupdate${bitcoin_qt_got_major_vers} lupdate], [$qt_bin_path], [yes]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([ - if test "x$qt_bin_path" != "x"; then - AC_PATH_PROGS(LUPDATE,lupdate-qt${bitcoin_qt_got_major_vers} lupdate${bitcoin_qt_got_major_vers} lupdate,,$qt_bin_path) - else - AC_PATH_PROGS(LUPDATE,lupdate-qt${bitcoin_qt_got_major_vers} lupdate${bitcoin_qt_got_major_vers} lupdate) - fi - if test "x$LUPDATE" = "x" && test "xyes" != "xyes"; then - BITCOIN_QT_FAIL([LUPDATE not found]) - fi - ]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^LUPDATE$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^LUPDATE$]) -m4trace:configure.ac:554: -1- BITCOIN_QT_FAIL([LUPDATE not found]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([ - MOC_DEFS="${MOC_DEFS} -DQ_OS_MAC" - base_frameworks="-framework Foundation -framework ApplicationServices -framework AppKit" - AX_CHECK_LINK_FLAG([[$base_frameworks]],[QT_LIBS="$QT_LIBS $base_frameworks"],[AC_MSG_ERROR(could not find base frameworks)]) - ]) -m4trace:configure.ac:554: -1- AX_CHECK_LINK_FLAG([[$base_frameworks]], [QT_LIBS="$QT_LIBS $base_frameworks"], [AC_MSG_ERROR(could not find base frameworks)]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([ - AX_CHECK_LINK_FLAG([[-mwindows]],[QT_LDFLAGS="$QT_LDFLAGS -mwindows"],[AC_MSG_WARN(-mwindows linker support not detected)]) - ]) -m4trace:configure.ac:554: -1- AX_CHECK_LINK_FLAG([[-mwindows]], [QT_LDFLAGS="$QT_LDFLAGS -mwindows"], [AC_MSG_WARN(-mwindows linker support not detected)]) -m4trace:configure.ac:554: -1- BITCOIN_QT_CHECK([ - bitcoin_enable_qt=yes - bitcoin_enable_qt_test=yes - if test x$have_qt_test = xno; then - bitcoin_enable_qt_test=no - fi - bitcoin_enable_qt_dbus=no - if test x$use_dbus != xno && test x$have_qt_dbus = xyes; then - bitcoin_enable_qt_dbus=yes - fi - if test x$use_dbus = xyes && test x$have_qt_dbus = xno; then - AC_MSG_ERROR("libQtDBus not found. Install libQtDBus or remove --with-qtdbus.") - fi - if test x$LUPDATE == x; then - AC_MSG_WARN("lupdate is required to update qt translations") - fi - ], [ - bitcoin_enable_qt=no - ]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_INCLUDES$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_LIBS$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_LDFLAGS$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_DBUS_INCLUDES$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_DBUS_LIBS$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_TEST_INCLUDES$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_TEST_LIBS$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_SELECT$]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^MOC_DEFS$]) -m4trace:configure.ac:578: -1- m4_pattern_allow([^ENABLE_WALLET$]) -m4trace:configure.ac:602: -1- m4_pattern_allow([^USE_UPNP$]) -m4trace:configure.ac:617: -1- m4_pattern_allow([^USE_DBUS$]) -m4trace:configure.ac:631: -1- m4_pattern_allow([^USE_QRCODE$]) -m4trace:configure.ac:663: -1- AM_CONDITIONAL([TARGET_DARWIN], [test x$TARGET_OS = xdarwin]) -m4trace:configure.ac:663: -1- m4_pattern_allow([^TARGET_DARWIN_TRUE$]) -m4trace:configure.ac:663: -1- m4_pattern_allow([^TARGET_DARWIN_FALSE$]) -m4trace:configure.ac:663: -1- _AM_SUBST_NOTMAKE([TARGET_DARWIN_TRUE]) -m4trace:configure.ac:663: -1- _AM_SUBST_NOTMAKE([TARGET_DARWIN_FALSE]) -m4trace:configure.ac:664: -1- AM_CONDITIONAL([BUILD_DARWIN], [test x$BUILD_OS = xdarwin]) -m4trace:configure.ac:664: -1- m4_pattern_allow([^BUILD_DARWIN_TRUE$]) -m4trace:configure.ac:664: -1- m4_pattern_allow([^BUILD_DARWIN_FALSE$]) -m4trace:configure.ac:664: -1- _AM_SUBST_NOTMAKE([BUILD_DARWIN_TRUE]) -m4trace:configure.ac:664: -1- _AM_SUBST_NOTMAKE([BUILD_DARWIN_FALSE]) -m4trace:configure.ac:665: -1- AM_CONDITIONAL([TARGET_WINDOWS], [test x$TARGET_OS = xwindows]) -m4trace:configure.ac:665: -1- m4_pattern_allow([^TARGET_WINDOWS_TRUE$]) -m4trace:configure.ac:665: -1- m4_pattern_allow([^TARGET_WINDOWS_FALSE$]) -m4trace:configure.ac:665: -1- _AM_SUBST_NOTMAKE([TARGET_WINDOWS_TRUE]) -m4trace:configure.ac:665: -1- _AM_SUBST_NOTMAKE([TARGET_WINDOWS_FALSE]) -m4trace:configure.ac:666: -1- AM_CONDITIONAL([ENABLE_WALLET], [test x$enable_wallet == xyes]) -m4trace:configure.ac:666: -1- m4_pattern_allow([^ENABLE_WALLET_TRUE$]) -m4trace:configure.ac:666: -1- m4_pattern_allow([^ENABLE_WALLET_FALSE$]) -m4trace:configure.ac:666: -1- _AM_SUBST_NOTMAKE([ENABLE_WALLET_TRUE]) -m4trace:configure.ac:666: -1- _AM_SUBST_NOTMAKE([ENABLE_WALLET_FALSE]) -m4trace:configure.ac:667: -1- AM_CONDITIONAL([USE_QRCODE], [test x$use_qr = xyes]) -m4trace:configure.ac:667: -1- m4_pattern_allow([^USE_QRCODE_TRUE$]) -m4trace:configure.ac:667: -1- m4_pattern_allow([^USE_QRCODE_FALSE$]) -m4trace:configure.ac:667: -1- _AM_SUBST_NOTMAKE([USE_QRCODE_TRUE]) -m4trace:configure.ac:667: -1- _AM_SUBST_NOTMAKE([USE_QRCODE_FALSE]) -m4trace:configure.ac:668: -1- AM_CONDITIONAL([USE_LCOV], [test x$use_lcov == xyes]) -m4trace:configure.ac:668: -1- m4_pattern_allow([^USE_LCOV_TRUE$]) -m4trace:configure.ac:668: -1- m4_pattern_allow([^USE_LCOV_FALSE$]) -m4trace:configure.ac:668: -1- _AM_SUBST_NOTMAKE([USE_LCOV_TRUE]) -m4trace:configure.ac:668: -1- _AM_SUBST_NOTMAKE([USE_LCOV_FALSE]) -m4trace:configure.ac:669: -1- AM_CONDITIONAL([USE_COMPARISON_TOOL], [test x$use_comparison_tool != xno]) -m4trace:configure.ac:669: -1- m4_pattern_allow([^USE_COMPARISON_TOOL_TRUE$]) -m4trace:configure.ac:669: -1- m4_pattern_allow([^USE_COMPARISON_TOOL_FALSE$]) -m4trace:configure.ac:669: -1- _AM_SUBST_NOTMAKE([USE_COMPARISON_TOOL_TRUE]) -m4trace:configure.ac:669: -1- _AM_SUBST_NOTMAKE([USE_COMPARISON_TOOL_FALSE]) -m4trace:configure.ac:670: -1- AM_CONDITIONAL([USE_COMPARISON_TOOL_REORG_TESTS], [test x$use_comparison_tool_reorg_test != xno]) -m4trace:configure.ac:670: -1- m4_pattern_allow([^USE_COMPARISON_TOOL_REORG_TESTS_TRUE$]) -m4trace:configure.ac:670: -1- m4_pattern_allow([^USE_COMPARISON_TOOL_REORG_TESTS_FALSE$]) -m4trace:configure.ac:670: -1- _AM_SUBST_NOTMAKE([USE_COMPARISON_TOOL_REORG_TESTS_TRUE]) -m4trace:configure.ac:670: -1- _AM_SUBST_NOTMAKE([USE_COMPARISON_TOOL_REORG_TESTS_FALSE]) -m4trace:configure.ac:671: -1- AM_CONDITIONAL([GLIBC_BACK_COMPAT], [test x$use_glibc_compat = xyes]) -m4trace:configure.ac:671: -1- m4_pattern_allow([^GLIBC_BACK_COMPAT_TRUE$]) -m4trace:configure.ac:671: -1- m4_pattern_allow([^GLIBC_BACK_COMPAT_FALSE$]) -m4trace:configure.ac:671: -1- _AM_SUBST_NOTMAKE([GLIBC_BACK_COMPAT_TRUE]) -m4trace:configure.ac:671: -1- _AM_SUBST_NOTMAKE([GLIBC_BACK_COMPAT_FALSE]) -m4trace:configure.ac:673: -1- m4_pattern_allow([^CLIENT_VERSION_MAJOR$]) -m4trace:configure.ac:674: -1- m4_pattern_allow([^CLIENT_VERSION_MINOR$]) -m4trace:configure.ac:675: -1- m4_pattern_allow([^CLIENT_VERSION_REVISION$]) -m4trace:configure.ac:676: -1- m4_pattern_allow([^CLIENT_VERSION_BUILD$]) -m4trace:configure.ac:677: -1- m4_pattern_allow([^CLIENT_VERSION_IS_RELEASE$]) -m4trace:configure.ac:678: -1- m4_pattern_allow([^COPYRIGHT_YEAR$]) -m4trace:configure.ac:679: -1- m4_pattern_allow([^CLIENT_VERSION_MAJOR$]) -m4trace:configure.ac:680: -1- m4_pattern_allow([^CLIENT_VERSION_MINOR$]) -m4trace:configure.ac:681: -1- m4_pattern_allow([^CLIENT_VERSION_REVISION$]) -m4trace:configure.ac:682: -1- m4_pattern_allow([^CLIENT_VERSION_BUILD$]) -m4trace:configure.ac:683: -1- m4_pattern_allow([^CLIENT_VERSION_IS_RELEASE$]) -m4trace:configure.ac:684: -1- m4_pattern_allow([^COPYRIGHT_YEAR$]) -m4trace:configure.ac:687: -1- m4_pattern_allow([^USE_UPNP$]) -m4trace:configure.ac:688: -1- m4_pattern_allow([^USE_QRCODE$]) -m4trace:configure.ac:689: -1- m4_pattern_allow([^INCLUDES$]) -m4trace:configure.ac:690: -1- m4_pattern_allow([^BOOST_LIBS$]) -m4trace:configure.ac:691: -1- m4_pattern_allow([^TESTDEFS$]) -m4trace:configure.ac:692: -1- m4_pattern_allow([^LEVELDB_TARGET_FLAGS$]) -m4trace:configure.ac:693: -1- m4_pattern_allow([^BUILD_TEST$]) -m4trace:configure.ac:694: -1- m4_pattern_allow([^BUILD_QT$]) -m4trace:configure.ac:695: -1- m4_pattern_allow([^BUILD_TEST_QT$]) -m4trace:configure.ac:699: -1- m4_pattern_allow([^LIB@&t@OBJS$]) -m4trace:configure.ac:699: -1- m4_pattern_allow([^LTLIBOBJS$]) -m4trace:configure.ac:699: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"]) -m4trace:configure.ac:699: -1- m4_pattern_allow([^am__EXEEXT_TRUE$]) -m4trace:configure.ac:699: -1- m4_pattern_allow([^am__EXEEXT_FALSE$]) -m4trace:configure.ac:699: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE]) -m4trace:configure.ac:699: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE]) -m4trace:configure.ac:699: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"]) -m4trace:configure.ac:699: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS diff --git a/autom4te.cache/traces.1 b/autom4te.cache/traces.1 deleted file mode 100644 index 2e5df84..0000000 --- a/autom4te.cache/traces.1 +++ /dev/null @@ -1,1336 +0,0 @@ -m4trace:aclocal.m4:1069: -1- m4_include([src/m4/ax_boost_base.m4]) -m4trace:aclocal.m4:1070: -1- m4_include([src/m4/ax_boost_chrono.m4]) -m4trace:aclocal.m4:1071: -1- m4_include([src/m4/ax_boost_filesystem.m4]) -m4trace:aclocal.m4:1072: -1- m4_include([src/m4/ax_boost_program_options.m4]) -m4trace:aclocal.m4:1073: -1- m4_include([src/m4/ax_boost_system.m4]) -m4trace:aclocal.m4:1074: -1- m4_include([src/m4/ax_boost_thread.m4]) -m4trace:aclocal.m4:1075: -1- m4_include([src/m4/ax_boost_unit_test_framework.m4]) -m4trace:aclocal.m4:1076: -1- m4_include([src/m4/ax_check_compile_flag.m4]) -m4trace:aclocal.m4:1077: -1- m4_include([src/m4/ax_check_link_flag.m4]) -m4trace:aclocal.m4:1078: -1- m4_include([src/m4/ax_check_preproc_flag.m4]) -m4trace:aclocal.m4:1079: -1- m4_include([src/m4/ax_pthread.m4]) -m4trace:aclocal.m4:1080: -1- m4_include([src/m4/bitcoin_find_bdb48.m4]) -m4trace:aclocal.m4:1081: -1- m4_include([src/m4/bitcoin_qt.m4]) -m4trace:aclocal.m4:1082: -1- m4_include([src/m4/bitcoin_subdir_to_include.m4]) -m4trace:configure.ac:9: -1- AC_INIT([Bitcoin Core], [_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION], [info@bitcoin.org], [bitcoin]) -m4trace:configure.ac:9: -1- m4_pattern_forbid([^_?A[CHUM]_]) -m4trace:configure.ac:9: -1- m4_pattern_forbid([_AC_]) -m4trace:configure.ac:9: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) -m4trace:configure.ac:9: -1- m4_pattern_allow([^AS_FLAGS$]) -m4trace:configure.ac:9: -1- m4_pattern_forbid([^_?m4_]) -m4trace:configure.ac:9: -1- m4_pattern_forbid([^dnl$]) -m4trace:configure.ac:9: -1- m4_pattern_forbid([^_?AS_]) -m4trace:configure.ac:9: -1- AC_SUBST([SHELL]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([SHELL]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^SHELL$]) -m4trace:configure.ac:9: -1- AC_SUBST([PATH_SEPARATOR]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([PATH_SEPARATOR]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PATH_SEPARATOR$]) -m4trace:configure.ac:9: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME], ['AC_PACKAGE_NAME'])]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([PACKAGE_NAME]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_NAME$]) -m4trace:configure.ac:9: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME], ['AC_PACKAGE_TARNAME'])]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([PACKAGE_TARNAME]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) -m4trace:configure.ac:9: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION], ['AC_PACKAGE_VERSION'])]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([PACKAGE_VERSION]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_VERSION$]) -m4trace:configure.ac:9: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING], ['AC_PACKAGE_STRING'])]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([PACKAGE_STRING]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_STRING$]) -m4trace:configure.ac:9: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) -m4trace:configure.ac:9: -1- AC_SUBST([PACKAGE_URL], [m4_ifdef([AC_PACKAGE_URL], ['AC_PACKAGE_URL'])]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([PACKAGE_URL]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_URL$]) -m4trace:configure.ac:9: -1- AC_SUBST([exec_prefix], [NONE]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([exec_prefix]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^exec_prefix$]) -m4trace:configure.ac:9: -1- AC_SUBST([prefix], [NONE]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([prefix]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^prefix$]) -m4trace:configure.ac:9: -1- AC_SUBST([program_transform_name], [s,x,x,]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([program_transform_name]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^program_transform_name$]) -m4trace:configure.ac:9: -1- AC_SUBST([bindir], ['${exec_prefix}/bin']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([bindir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^bindir$]) -m4trace:configure.ac:9: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([sbindir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^sbindir$]) -m4trace:configure.ac:9: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([libexecdir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^libexecdir$]) -m4trace:configure.ac:9: -1- AC_SUBST([datarootdir], ['${prefix}/share']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([datarootdir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^datarootdir$]) -m4trace:configure.ac:9: -1- AC_SUBST([datadir], ['${datarootdir}']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([datadir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^datadir$]) -m4trace:configure.ac:9: -1- AC_SUBST([sysconfdir], ['${prefix}/etc']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([sysconfdir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^sysconfdir$]) -m4trace:configure.ac:9: -1- AC_SUBST([sharedstatedir], ['${prefix}/com']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([sharedstatedir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^sharedstatedir$]) -m4trace:configure.ac:9: -1- AC_SUBST([localstatedir], ['${prefix}/var']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([localstatedir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^localstatedir$]) -m4trace:configure.ac:9: -1- AC_SUBST([includedir], ['${prefix}/include']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([includedir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^includedir$]) -m4trace:configure.ac:9: -1- AC_SUBST([oldincludedir], ['/usr/include']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([oldincludedir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^oldincludedir$]) -m4trace:configure.ac:9: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME], - ['${datarootdir}/doc/${PACKAGE_TARNAME}'], - ['${datarootdir}/doc/${PACKAGE}'])]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([docdir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^docdir$]) -m4trace:configure.ac:9: -1- AC_SUBST([infodir], ['${datarootdir}/info']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([infodir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^infodir$]) -m4trace:configure.ac:9: -1- AC_SUBST([htmldir], ['${docdir}']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([htmldir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^htmldir$]) -m4trace:configure.ac:9: -1- AC_SUBST([dvidir], ['${docdir}']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([dvidir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^dvidir$]) -m4trace:configure.ac:9: -1- AC_SUBST([pdfdir], ['${docdir}']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([pdfdir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^pdfdir$]) -m4trace:configure.ac:9: -1- AC_SUBST([psdir], ['${docdir}']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([psdir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^psdir$]) -m4trace:configure.ac:9: -1- AC_SUBST([libdir], ['${exec_prefix}/lib']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([libdir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^libdir$]) -m4trace:configure.ac:9: -1- AC_SUBST([localedir], ['${datarootdir}/locale']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([localedir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^localedir$]) -m4trace:configure.ac:9: -1- AC_SUBST([mandir], ['${datarootdir}/man']) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([mandir]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^mandir$]) -m4trace:configure.ac:9: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_NAME$]) -m4trace:configure.ac:9: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */ -@%:@undef PACKAGE_NAME]) -m4trace:configure.ac:9: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) -m4trace:configure.ac:9: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */ -@%:@undef PACKAGE_TARNAME]) -m4trace:configure.ac:9: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_VERSION$]) -m4trace:configure.ac:9: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */ -@%:@undef PACKAGE_VERSION]) -m4trace:configure.ac:9: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_STRING$]) -m4trace:configure.ac:9: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */ -@%:@undef PACKAGE_STRING]) -m4trace:configure.ac:9: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) -m4trace:configure.ac:9: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */ -@%:@undef PACKAGE_BUGREPORT]) -m4trace:configure.ac:9: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_URL$]) -m4trace:configure.ac:9: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */ -@%:@undef PACKAGE_URL]) -m4trace:configure.ac:9: -1- AC_SUBST([DEFS]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([DEFS]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^DEFS$]) -m4trace:configure.ac:9: -1- AC_SUBST([ECHO_C]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([ECHO_C]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^ECHO_C$]) -m4trace:configure.ac:9: -1- AC_SUBST([ECHO_N]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([ECHO_N]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^ECHO_N$]) -m4trace:configure.ac:9: -1- AC_SUBST([ECHO_T]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([ECHO_T]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^ECHO_T$]) -m4trace:configure.ac:9: -1- AC_SUBST([LIBS]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([LIBS]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^LIBS$]) -m4trace:configure.ac:9: -1- AC_SUBST([build_alias]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([build_alias]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^build_alias$]) -m4trace:configure.ac:9: -1- AC_SUBST([host_alias]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([host_alias]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^host_alias$]) -m4trace:configure.ac:9: -1- AC_SUBST([target_alias]) -m4trace:configure.ac:9: -1- AC_SUBST_TRACE([target_alias]) -m4trace:configure.ac:9: -1- m4_pattern_allow([^target_alias$]) -m4trace:configure.ac:10: -1- AC_CONFIG_AUX_DIR([src/build-aux]) -m4trace:configure.ac:12: -1- AC_CANONICAL_HOST -m4trace:configure.ac:12: -1- AC_CANONICAL_BUILD -m4trace:configure.ac:12: -1- AC_REQUIRE_AUX_FILE([config.sub]) -m4trace:configure.ac:12: -1- AC_REQUIRE_AUX_FILE([config.guess]) -m4trace:configure.ac:12: -1- AC_SUBST([build], [$ac_cv_build]) -m4trace:configure.ac:12: -1- AC_SUBST_TRACE([build]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^build$]) -m4trace:configure.ac:12: -1- AC_SUBST([build_cpu], [$[1]]) -m4trace:configure.ac:12: -1- AC_SUBST_TRACE([build_cpu]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^build_cpu$]) -m4trace:configure.ac:12: -1- AC_SUBST([build_vendor], [$[2]]) -m4trace:configure.ac:12: -1- AC_SUBST_TRACE([build_vendor]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^build_vendor$]) -m4trace:configure.ac:12: -1- AC_SUBST([build_os]) -m4trace:configure.ac:12: -1- AC_SUBST_TRACE([build_os]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^build_os$]) -m4trace:configure.ac:12: -1- AC_SUBST([host], [$ac_cv_host]) -m4trace:configure.ac:12: -1- AC_SUBST_TRACE([host]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^host$]) -m4trace:configure.ac:12: -1- AC_SUBST([host_cpu], [$[1]]) -m4trace:configure.ac:12: -1- AC_SUBST_TRACE([host_cpu]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^host_cpu$]) -m4trace:configure.ac:12: -1- AC_SUBST([host_vendor], [$[2]]) -m4trace:configure.ac:12: -1- AC_SUBST_TRACE([host_vendor]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^host_vendor$]) -m4trace:configure.ac:12: -1- AC_SUBST([host_os]) -m4trace:configure.ac:12: -1- AC_SUBST_TRACE([host_os]) -m4trace:configure.ac:12: -1- m4_pattern_allow([^host_os$]) -m4trace:configure.ac:13: -1- AH_OUTPUT([00001], [#ifndef BITCOIN_CONFIG_H]) -m4trace:configure.ac:14: -1- AH_OUTPUT([00002], [#define BITCOIN_CONFIG_H]) -m4trace:configure.ac:15: -1- AH_OUTPUT([zzzz3], [#endif //BITCOIN_CONFIG_H]) -m4trace:configure.ac:22: -1- m4_include([pkg.m4]) -m4trace:configure.ac:37: -1- AM_INIT_AUTOMAKE([no-define subdir-objects foreign]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$]) -m4trace:configure.ac:37: -1- AM_AUTOMAKE_VERSION([1.11.6]) -m4trace:configure.ac:37: -1- AC_REQUIRE_AUX_FILE([install-sh]) -m4trace:configure.ac:37: -1- AC_SUBST([INSTALL_PROGRAM]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([INSTALL_PROGRAM]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^INSTALL_PROGRAM$]) -m4trace:configure.ac:37: -1- AC_SUBST([INSTALL_SCRIPT]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([INSTALL_SCRIPT]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^INSTALL_SCRIPT$]) -m4trace:configure.ac:37: -1- AC_SUBST([INSTALL_DATA]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([INSTALL_DATA]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^INSTALL_DATA$]) -m4trace:configure.ac:37: -1- AC_SUBST([am__isrc], [' -I$(srcdir)']) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([am__isrc]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^am__isrc$]) -m4trace:configure.ac:37: -1- _AM_SUBST_NOTMAKE([am__isrc]) -m4trace:configure.ac:37: -1- AC_SUBST([CYGPATH_W]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([CYGPATH_W]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^CYGPATH_W$]) -m4trace:configure.ac:37: -1- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME']) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([PACKAGE]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^PACKAGE$]) -m4trace:configure.ac:37: -1- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION']) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([VERSION]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^VERSION$]) -m4trace:configure.ac:37: -1- AC_REQUIRE_AUX_FILE([missing]) -m4trace:configure.ac:37: -1- AC_SUBST([ACLOCAL]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([ACLOCAL]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^ACLOCAL$]) -m4trace:configure.ac:37: -1- AC_SUBST([AUTOCONF]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([AUTOCONF]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^AUTOCONF$]) -m4trace:configure.ac:37: -1- AC_SUBST([AUTOMAKE]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([AUTOMAKE]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^AUTOMAKE$]) -m4trace:configure.ac:37: -1- AC_SUBST([AUTOHEADER]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([AUTOHEADER]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^AUTOHEADER$]) -m4trace:configure.ac:37: -1- AC_SUBST([MAKEINFO]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([MAKEINFO]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^MAKEINFO$]) -m4trace:configure.ac:37: -1- AC_SUBST([install_sh]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([install_sh]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^install_sh$]) -m4trace:configure.ac:37: -1- AC_SUBST([STRIP]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([STRIP]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^STRIP$]) -m4trace:configure.ac:37: -1- AC_SUBST([INSTALL_STRIP_PROGRAM]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([INSTALL_STRIP_PROGRAM]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$]) -m4trace:configure.ac:37: -1- AC_REQUIRE_AUX_FILE([install-sh]) -m4trace:configure.ac:37: -1- AC_SUBST([MKDIR_P]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([MKDIR_P]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^MKDIR_P$]) -m4trace:configure.ac:37: -1- AC_SUBST([mkdir_p], ["$MKDIR_P"]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([mkdir_p]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^mkdir_p$]) -m4trace:configure.ac:37: -1- AC_SUBST([AWK]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([AWK]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^AWK$]) -m4trace:configure.ac:37: -1- AC_SUBST([SET_MAKE]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([SET_MAKE]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^SET_MAKE$]) -m4trace:configure.ac:37: -1- AC_SUBST([am__leading_dot]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([am__leading_dot]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^am__leading_dot$]) -m4trace:configure.ac:37: -1- AC_SUBST([AMTAR], ['$${TAR-tar}']) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([AMTAR]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^AMTAR$]) -m4trace:configure.ac:37: -1- AC_SUBST([am__tar]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([am__tar]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^am__tar$]) -m4trace:configure.ac:37: -1- AC_SUBST([am__untar]) -m4trace:configure.ac:37: -1- AC_SUBST_TRACE([am__untar]) -m4trace:configure.ac:37: -1- m4_pattern_allow([^am__untar$]) -m4trace:configure.ac:41: -1- AM_MAINTAINER_MODE([enable]) -m4trace:configure.ac:41: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) -m4trace:configure.ac:41: -1- AC_SUBST([MAINTAINER_MODE_TRUE]) -m4trace:configure.ac:41: -1- AC_SUBST_TRACE([MAINTAINER_MODE_TRUE]) -m4trace:configure.ac:41: -1- m4_pattern_allow([^MAINTAINER_MODE_TRUE$]) -m4trace:configure.ac:41: -1- AC_SUBST([MAINTAINER_MODE_FALSE]) -m4trace:configure.ac:41: -1- AC_SUBST_TRACE([MAINTAINER_MODE_FALSE]) -m4trace:configure.ac:41: -1- m4_pattern_allow([^MAINTAINER_MODE_FALSE$]) -m4trace:configure.ac:41: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_TRUE]) -m4trace:configure.ac:41: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_FALSE]) -m4trace:configure.ac:41: -1- AC_SUBST([MAINT]) -m4trace:configure.ac:41: -1- AC_SUBST_TRACE([MAINT]) -m4trace:configure.ac:41: -1- m4_pattern_allow([^MAINT$]) -m4trace:configure.ac:44: -1- AM_SILENT_RULES([yes]) -m4trace:configure.ac:44: -1- AC_SUBST([AM_V]) -m4trace:configure.ac:44: -1- AC_SUBST_TRACE([AM_V]) -m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_V$]) -m4trace:configure.ac:44: -1- _AM_SUBST_NOTMAKE([AM_V]) -m4trace:configure.ac:44: -1- AC_SUBST([AM_DEFAULT_V]) -m4trace:configure.ac:44: -1- AC_SUBST_TRACE([AM_DEFAULT_V]) -m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_DEFAULT_V$]) -m4trace:configure.ac:44: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V]) -m4trace:configure.ac:44: -1- AC_SUBST([AM_DEFAULT_VERBOSITY]) -m4trace:configure.ac:44: -1- AC_SUBST_TRACE([AM_DEFAULT_VERBOSITY]) -m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$]) -m4trace:configure.ac:44: -1- AC_SUBST([AM_BACKSLASH]) -m4trace:configure.ac:44: -1- AC_SUBST_TRACE([AM_BACKSLASH]) -m4trace:configure.ac:44: -1- m4_pattern_allow([^AM_BACKSLASH$]) -m4trace:configure.ac:44: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH]) -m4trace:configure.ac:114: -1- AC_CONFIG_HEADERS([src/bitcoin-config.h]) -m4trace:configure.ac:117: -1- AC_SUBST([CXX]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([CXX]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^CXX$]) -m4trace:configure.ac:117: -1- AC_SUBST([CXXFLAGS]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([CXXFLAGS]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^CXXFLAGS$]) -m4trace:configure.ac:117: -1- AC_SUBST([LDFLAGS]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([LDFLAGS]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^LDFLAGS$]) -m4trace:configure.ac:117: -1- AC_SUBST([LIBS]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([LIBS]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^LIBS$]) -m4trace:configure.ac:117: -1- AC_SUBST([CPPFLAGS]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([CPPFLAGS]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:117: -1- AC_SUBST([CXX]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([CXX]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^CXX$]) -m4trace:configure.ac:117: -1- AC_SUBST([ac_ct_CXX]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([ac_ct_CXX]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^ac_ct_CXX$]) -m4trace:configure.ac:117: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([EXEEXT]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^EXEEXT$]) -m4trace:configure.ac:117: -1- AC_SUBST([OBJEXT], [$ac_cv_objext]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([OBJEXT]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^OBJEXT$]) -m4trace:configure.ac:117: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([DEPDIR]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^DEPDIR$]) -m4trace:configure.ac:117: -1- AC_SUBST([am__include]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([am__include]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^am__include$]) -m4trace:configure.ac:117: -1- AC_SUBST([am__quote]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([am__quote]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^am__quote$]) -m4trace:configure.ac:117: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) -m4trace:configure.ac:117: -1- AC_SUBST([AMDEP_TRUE]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([AMDEP_TRUE]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^AMDEP_TRUE$]) -m4trace:configure.ac:117: -1- AC_SUBST([AMDEP_FALSE]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([AMDEP_FALSE]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^AMDEP_FALSE$]) -m4trace:configure.ac:117: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE]) -m4trace:configure.ac:117: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE]) -m4trace:configure.ac:117: -1- AC_SUBST([AMDEPBACKSLASH]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([AMDEPBACKSLASH]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^AMDEPBACKSLASH$]) -m4trace:configure.ac:117: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH]) -m4trace:configure.ac:117: -1- AC_SUBST([am__nodep]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([am__nodep]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^am__nodep$]) -m4trace:configure.ac:117: -1- _AM_SUBST_NOTMAKE([am__nodep]) -m4trace:configure.ac:117: -1- AC_SUBST([CXXDEPMODE], [depmode=$am_cv_CXX_dependencies_compiler_type]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([CXXDEPMODE]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^CXXDEPMODE$]) -m4trace:configure.ac:117: -1- AM_CONDITIONAL([am__fastdepCXX], [ - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CXX_dependencies_compiler_type" = gcc3]) -m4trace:configure.ac:117: -1- AC_SUBST([am__fastdepCXX_TRUE]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([am__fastdepCXX_TRUE]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$]) -m4trace:configure.ac:117: -1- AC_SUBST([am__fastdepCXX_FALSE]) -m4trace:configure.ac:117: -1- AC_SUBST_TRACE([am__fastdepCXX_FALSE]) -m4trace:configure.ac:117: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$]) -m4trace:configure.ac:117: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE]) -m4trace:configure.ac:117: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE]) -m4trace:configure.ac:118: -1- AC_SUBST([CC]) -m4trace:configure.ac:118: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:118: -1- AC_SUBST([CFLAGS]) -m4trace:configure.ac:118: -1- AC_SUBST_TRACE([CFLAGS]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CFLAGS$]) -m4trace:configure.ac:118: -1- AC_SUBST([LDFLAGS]) -m4trace:configure.ac:118: -1- AC_SUBST_TRACE([LDFLAGS]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^LDFLAGS$]) -m4trace:configure.ac:118: -1- AC_SUBST([LIBS]) -m4trace:configure.ac:118: -1- AC_SUBST_TRACE([LIBS]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^LIBS$]) -m4trace:configure.ac:118: -1- AC_SUBST([CPPFLAGS]) -m4trace:configure.ac:118: -1- AC_SUBST_TRACE([CPPFLAGS]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:118: -1- AC_SUBST([CC]) -m4trace:configure.ac:118: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:118: -1- AC_SUBST([CC]) -m4trace:configure.ac:118: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:118: -1- AC_SUBST([CC]) -m4trace:configure.ac:118: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:118: -1- AC_SUBST([CC]) -m4trace:configure.ac:118: -1- AC_SUBST_TRACE([CC]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CC$]) -m4trace:configure.ac:118: -1- AC_SUBST([ac_ct_CC]) -m4trace:configure.ac:118: -1- AC_SUBST_TRACE([ac_ct_CC]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^ac_ct_CC$]) -m4trace:configure.ac:118: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type]) -m4trace:configure.ac:118: -1- AC_SUBST_TRACE([CCDEPMODE]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^CCDEPMODE$]) -m4trace:configure.ac:118: -1- AM_CONDITIONAL([am__fastdepCC], [ - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) -m4trace:configure.ac:118: -1- AC_SUBST([am__fastdepCC_TRUE]) -m4trace:configure.ac:118: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^am__fastdepCC_TRUE$]) -m4trace:configure.ac:118: -1- AC_SUBST([am__fastdepCC_FALSE]) -m4trace:configure.ac:118: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE]) -m4trace:configure.ac:118: -1- m4_pattern_allow([^am__fastdepCC_FALSE$]) -m4trace:configure.ac:118: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE]) -m4trace:configure.ac:118: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE]) -m4trace:configure.ac:119: -1- AC_SUBST([CPP]) -m4trace:configure.ac:119: -1- AC_SUBST_TRACE([CPP]) -m4trace:configure.ac:119: -1- m4_pattern_allow([^CPP$]) -m4trace:configure.ac:119: -1- AC_SUBST([CPPFLAGS]) -m4trace:configure.ac:119: -1- AC_SUBST_TRACE([CPPFLAGS]) -m4trace:configure.ac:119: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:119: -1- AC_SUBST([CPP]) -m4trace:configure.ac:119: -1- AC_SUBST_TRACE([CPP]) -m4trace:configure.ac:119: -1- m4_pattern_allow([^CPP$]) -m4trace:configure.ac:120: -1- AC_SUBST([CXXCPP]) -m4trace:configure.ac:120: -1- AC_SUBST_TRACE([CXXCPP]) -m4trace:configure.ac:120: -1- m4_pattern_allow([^CXXCPP$]) -m4trace:configure.ac:120: -1- AC_SUBST([CPPFLAGS]) -m4trace:configure.ac:120: -1- AC_SUBST_TRACE([CPPFLAGS]) -m4trace:configure.ac:120: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:120: -1- AC_SUBST([CXXCPP]) -m4trace:configure.ac:120: -1- AC_SUBST_TRACE([CXXCPP]) -m4trace:configure.ac:120: -1- m4_pattern_allow([^CXXCPP$]) -m4trace:configure.ac:122: -1- AC_SUBST([OBJC]) -m4trace:configure.ac:122: -1- AC_SUBST_TRACE([OBJC]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^OBJC$]) -m4trace:configure.ac:122: -1- AC_SUBST([OBJCFLAGS]) -m4trace:configure.ac:122: -1- AC_SUBST_TRACE([OBJCFLAGS]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^OBJCFLAGS$]) -m4trace:configure.ac:122: -1- AC_SUBST([LDFLAGS]) -m4trace:configure.ac:122: -1- AC_SUBST_TRACE([LDFLAGS]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^LDFLAGS$]) -m4trace:configure.ac:122: -1- AC_SUBST([LIBS]) -m4trace:configure.ac:122: -1- AC_SUBST_TRACE([LIBS]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^LIBS$]) -m4trace:configure.ac:122: -1- AC_SUBST([CPPFLAGS]) -m4trace:configure.ac:122: -1- AC_SUBST_TRACE([CPPFLAGS]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:122: -1- AC_SUBST([OBJC]) -m4trace:configure.ac:122: -1- AC_SUBST_TRACE([OBJC]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^OBJC$]) -m4trace:configure.ac:122: -1- AC_SUBST([ac_ct_OBJC]) -m4trace:configure.ac:122: -1- AC_SUBST_TRACE([ac_ct_OBJC]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^ac_ct_OBJC$]) -m4trace:configure.ac:122: -1- AC_SUBST([OBJCDEPMODE], [depmode=$am_cv_OBJC_dependencies_compiler_type]) -m4trace:configure.ac:122: -1- AC_SUBST_TRACE([OBJCDEPMODE]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^OBJCDEPMODE$]) -m4trace:configure.ac:122: -1- AM_CONDITIONAL([am__fastdepOBJC], [ - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_OBJC_dependencies_compiler_type" = gcc3]) -m4trace:configure.ac:122: -1- AC_SUBST([am__fastdepOBJC_TRUE]) -m4trace:configure.ac:122: -1- AC_SUBST_TRACE([am__fastdepOBJC_TRUE]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^am__fastdepOBJC_TRUE$]) -m4trace:configure.ac:122: -1- AC_SUBST([am__fastdepOBJC_FALSE]) -m4trace:configure.ac:122: -1- AC_SUBST_TRACE([am__fastdepOBJC_FALSE]) -m4trace:configure.ac:122: -1- m4_pattern_allow([^am__fastdepOBJC_FALSE$]) -m4trace:configure.ac:122: -1- _AM_SUBST_NOTMAKE([am__fastdepOBJC_TRUE]) -m4trace:configure.ac:122: -1- _AM_SUBST_NOTMAKE([am__fastdepOBJC_FALSE]) -m4trace:configure.ac:123: -1- AC_SUBST([LN_S], [$as_ln_s]) -m4trace:configure.ac:123: -1- AC_SUBST_TRACE([LN_S]) -m4trace:configure.ac:123: -1- m4_pattern_allow([^LN_S$]) -m4trace:configure.ac:124: -1- AC_SUBST([OBJCXX]) -m4trace:configure.ac:124: -1- AC_SUBST_TRACE([OBJCXX]) -m4trace:configure.ac:124: -1- m4_pattern_allow([^OBJCXX$]) -m4trace:configure.ac:124: -1- AC_SUBST([OBJCXXFLAGS]) -m4trace:configure.ac:124: -1- AC_SUBST_TRACE([OBJCXXFLAGS]) -m4trace:configure.ac:124: -1- m4_pattern_allow([^OBJCXXFLAGS$]) -m4trace:configure.ac:124: -1- AC_SUBST([LDFLAGS]) -m4trace:configure.ac:124: -1- AC_SUBST_TRACE([LDFLAGS]) -m4trace:configure.ac:124: -1- m4_pattern_allow([^LDFLAGS$]) -m4trace:configure.ac:124: -1- AC_SUBST([LIBS]) -m4trace:configure.ac:124: -1- AC_SUBST_TRACE([LIBS]) -m4trace:configure.ac:124: -1- m4_pattern_allow([^LIBS$]) -m4trace:configure.ac:124: -1- AC_SUBST([CPPFLAGS]) -m4trace:configure.ac:124: -1- AC_SUBST_TRACE([CPPFLAGS]) -m4trace:configure.ac:124: -1- m4_pattern_allow([^CPPFLAGS$]) -m4trace:configure.ac:124: -1- AC_SUBST([OBJCXX]) -m4trace:configure.ac:124: -1- AC_SUBST_TRACE([OBJCXX]) -m4trace:configure.ac:124: -1- m4_pattern_allow([^OBJCXX$]) -m4trace:configure.ac:124: -1- AC_SUBST([ac_ct_OBJCXX]) -m4trace:configure.ac:124: -1- AC_SUBST_TRACE([ac_ct_OBJCXX]) -m4trace:configure.ac:124: -1- m4_pattern_allow([^ac_ct_OBJCXX$]) -m4trace:configure.ac:126: -1- AC_SUBST([SED]) -m4trace:configure.ac:126: -1- AC_SUBST_TRACE([SED]) -m4trace:configure.ac:126: -1- m4_pattern_allow([^SED$]) -m4trace:configure.ac:127: -1- AC_SUBST([AR]) -m4trace:configure.ac:127: -1- AC_SUBST_TRACE([AR]) -m4trace:configure.ac:127: -1- m4_pattern_allow([^AR$]) -m4trace:configure.ac:128: -1- AC_SUBST([RANLIB]) -m4trace:configure.ac:128: -1- AC_SUBST_TRACE([RANLIB]) -m4trace:configure.ac:128: -1- m4_pattern_allow([^RANLIB$]) -m4trace:configure.ac:129: -1- AC_SUBST([STRIP]) -m4trace:configure.ac:129: -1- AC_SUBST_TRACE([STRIP]) -m4trace:configure.ac:129: -1- m4_pattern_allow([^STRIP$]) -m4trace:configure.ac:130: -1- AC_SUBST([GCOV]) -m4trace:configure.ac:130: -1- AC_SUBST_TRACE([GCOV]) -m4trace:configure.ac:130: -1- m4_pattern_allow([^GCOV$]) -m4trace:configure.ac:131: -1- AC_SUBST([LCOV]) -m4trace:configure.ac:131: -1- AC_SUBST_TRACE([LCOV]) -m4trace:configure.ac:131: -1- m4_pattern_allow([^LCOV$]) -m4trace:configure.ac:132: -1- AC_SUBST([JAVA]) -m4trace:configure.ac:132: -1- AC_SUBST_TRACE([JAVA]) -m4trace:configure.ac:132: -1- m4_pattern_allow([^JAVA$]) -m4trace:configure.ac:133: -1- AC_SUBST([GENHTML]) -m4trace:configure.ac:133: -1- AC_SUBST_TRACE([GENHTML]) -m4trace:configure.ac:133: -1- m4_pattern_allow([^GENHTML$]) -m4trace:configure.ac:134: -1- AC_SUBST([GIT]) -m4trace:configure.ac:134: -1- AC_SUBST_TRACE([GIT]) -m4trace:configure.ac:134: -1- m4_pattern_allow([^GIT$]) -m4trace:configure.ac:135: -1- AC_SUBST([CCACHE]) -m4trace:configure.ac:135: -1- AC_SUBST_TRACE([CCACHE]) -m4trace:configure.ac:135: -1- m4_pattern_allow([^CCACHE$]) -m4trace:configure.ac:136: -1- AC_SUBST([XGETTEXT]) -m4trace:configure.ac:136: -1- AC_SUBST_TRACE([XGETTEXT]) -m4trace:configure.ac:136: -1- m4_pattern_allow([^XGETTEXT$]) -m4trace:configure.ac:137: -1- AC_SUBST([HEXDUMP]) -m4trace:configure.ac:137: -1- AC_SUBST_TRACE([HEXDUMP]) -m4trace:configure.ac:137: -1- m4_pattern_allow([^HEXDUMP$]) -m4trace:configure.ac:138: -1- m4_pattern_forbid([^_?PKG_[A-Z_]+$]) -m4trace:configure.ac:138: -1- m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) -m4trace:configure.ac:138: -1- m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) -m4trace:configure.ac:138: -1- AC_SUBST([PKG_CONFIG]) -m4trace:configure.ac:138: -1- AC_SUBST_TRACE([PKG_CONFIG]) -m4trace:configure.ac:138: -1- m4_pattern_allow([^PKG_CONFIG$]) -m4trace:configure.ac:138: -1- AC_SUBST([PKG_CONFIG_PATH]) -m4trace:configure.ac:138: -1- AC_SUBST_TRACE([PKG_CONFIG_PATH]) -m4trace:configure.ac:138: -1- m4_pattern_allow([^PKG_CONFIG_PATH$]) -m4trace:configure.ac:138: -1- AC_SUBST([PKG_CONFIG_LIBDIR]) -m4trace:configure.ac:138: -1- AC_SUBST_TRACE([PKG_CONFIG_LIBDIR]) -m4trace:configure.ac:138: -1- m4_pattern_allow([^PKG_CONFIG_LIBDIR$]) -m4trace:configure.ac:138: -1- AC_SUBST([PKG_CONFIG]) -m4trace:configure.ac:138: -1- AC_SUBST_TRACE([PKG_CONFIG]) -m4trace:configure.ac:138: -1- m4_pattern_allow([^PKG_CONFIG$]) -m4trace:configure.ac:175: -1- AH_OUTPUT([HAVE_LIBMINGWTHRD], [/* Define to 1 if you have the `mingwthrd\' library (-lmingwthrd). */ -@%:@undef HAVE_LIBMINGWTHRD]) -m4trace:configure.ac:175: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBMINGWTHRD]) -m4trace:configure.ac:175: -1- m4_pattern_allow([^HAVE_LIBMINGWTHRD$]) -m4trace:configure.ac:176: -1- AH_OUTPUT([HAVE_LIBKERNEL32], [/* Define to 1 if you have the `kernel32\' library (-lkernel32). */ -@%:@undef HAVE_LIBKERNEL32]) -m4trace:configure.ac:176: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBKERNEL32]) -m4trace:configure.ac:176: -1- m4_pattern_allow([^HAVE_LIBKERNEL32$]) -m4trace:configure.ac:177: -1- AH_OUTPUT([HAVE_LIBUSER32], [/* Define to 1 if you have the `user32\' library (-luser32). */ -@%:@undef HAVE_LIBUSER32]) -m4trace:configure.ac:177: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBUSER32]) -m4trace:configure.ac:177: -1- m4_pattern_allow([^HAVE_LIBUSER32$]) -m4trace:configure.ac:178: -1- AH_OUTPUT([HAVE_LIBGDI32], [/* Define to 1 if you have the `gdi32\' library (-lgdi32). */ -@%:@undef HAVE_LIBGDI32]) -m4trace:configure.ac:178: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBGDI32]) -m4trace:configure.ac:178: -1- m4_pattern_allow([^HAVE_LIBGDI32$]) -m4trace:configure.ac:179: -1- AH_OUTPUT([HAVE_LIBCOMDLG32], [/* Define to 1 if you have the `comdlg32\' library (-lcomdlg32). */ -@%:@undef HAVE_LIBCOMDLG32]) -m4trace:configure.ac:179: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBCOMDLG32]) -m4trace:configure.ac:179: -1- m4_pattern_allow([^HAVE_LIBCOMDLG32$]) -m4trace:configure.ac:180: -1- AH_OUTPUT([HAVE_LIBWINSPOOL], [/* Define to 1 if you have the `winspool\' library (-lwinspool). */ -@%:@undef HAVE_LIBWINSPOOL]) -m4trace:configure.ac:180: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBWINSPOOL]) -m4trace:configure.ac:180: -1- m4_pattern_allow([^HAVE_LIBWINSPOOL$]) -m4trace:configure.ac:181: -1- AH_OUTPUT([HAVE_LIBWINMM], [/* Define to 1 if you have the `winmm\' library (-lwinmm). */ -@%:@undef HAVE_LIBWINMM]) -m4trace:configure.ac:181: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBWINMM]) -m4trace:configure.ac:181: -1- m4_pattern_allow([^HAVE_LIBWINMM$]) -m4trace:configure.ac:182: -1- AH_OUTPUT([HAVE_LIBSHELL32], [/* Define to 1 if you have the `shell32\' library (-lshell32). */ -@%:@undef HAVE_LIBSHELL32]) -m4trace:configure.ac:182: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBSHELL32]) -m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_LIBSHELL32$]) -m4trace:configure.ac:183: -1- AH_OUTPUT([HAVE_LIBCOMCTL32], [/* Define to 1 if you have the `comctl32\' library (-lcomctl32). */ -@%:@undef HAVE_LIBCOMCTL32]) -m4trace:configure.ac:183: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBCOMCTL32]) -m4trace:configure.ac:183: -1- m4_pattern_allow([^HAVE_LIBCOMCTL32$]) -m4trace:configure.ac:184: -1- AH_OUTPUT([HAVE_LIBOLE32], [/* Define to 1 if you have the `ole32\' library (-lole32). */ -@%:@undef HAVE_LIBOLE32]) -m4trace:configure.ac:184: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBOLE32]) -m4trace:configure.ac:184: -1- m4_pattern_allow([^HAVE_LIBOLE32$]) -m4trace:configure.ac:185: -1- AH_OUTPUT([HAVE_LIBOLEAUT32], [/* Define to 1 if you have the `oleaut32\' library (-loleaut32). */ -@%:@undef HAVE_LIBOLEAUT32]) -m4trace:configure.ac:185: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBOLEAUT32]) -m4trace:configure.ac:185: -1- m4_pattern_allow([^HAVE_LIBOLEAUT32$]) -m4trace:configure.ac:186: -1- AH_OUTPUT([HAVE_LIBUUID], [/* Define to 1 if you have the `uuid\' library (-luuid). */ -@%:@undef HAVE_LIBUUID]) -m4trace:configure.ac:186: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBUUID]) -m4trace:configure.ac:186: -1- m4_pattern_allow([^HAVE_LIBUUID$]) -m4trace:configure.ac:187: -1- AH_OUTPUT([HAVE_LIBRPCRT4], [/* Define to 1 if you have the `rpcrt4\' library (-lrpcrt4). */ -@%:@undef HAVE_LIBRPCRT4]) -m4trace:configure.ac:187: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBRPCRT4]) -m4trace:configure.ac:187: -1- m4_pattern_allow([^HAVE_LIBRPCRT4$]) -m4trace:configure.ac:188: -1- AH_OUTPUT([HAVE_LIBADVAPI32], [/* Define to 1 if you have the `advapi32\' library (-ladvapi32). */ -@%:@undef HAVE_LIBADVAPI32]) -m4trace:configure.ac:188: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBADVAPI32]) -m4trace:configure.ac:188: -1- m4_pattern_allow([^HAVE_LIBADVAPI32$]) -m4trace:configure.ac:189: -1- AH_OUTPUT([HAVE_LIBWS2_32], [/* Define to 1 if you have the `ws2_32\' library (-lws2_32). */ -@%:@undef HAVE_LIBWS2_32]) -m4trace:configure.ac:189: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBWS2_32]) -m4trace:configure.ac:189: -1- m4_pattern_allow([^HAVE_LIBWS2_32$]) -m4trace:configure.ac:190: -1- AH_OUTPUT([HAVE_LIBMSWSOCK], [/* Define to 1 if you have the `mswsock\' library (-lmswsock). */ -@%:@undef HAVE_LIBMSWSOCK]) -m4trace:configure.ac:190: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBMSWSOCK]) -m4trace:configure.ac:190: -1- m4_pattern_allow([^HAVE_LIBMSWSOCK$]) -m4trace:configure.ac:191: -1- AH_OUTPUT([HAVE_LIBSHLWAPI], [/* Define to 1 if you have the `shlwapi\' library (-lshlwapi). */ -@%:@undef HAVE_LIBSHLWAPI]) -m4trace:configure.ac:191: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBSHLWAPI]) -m4trace:configure.ac:191: -1- m4_pattern_allow([^HAVE_LIBSHLWAPI$]) -m4trace:configure.ac:192: -1- AH_OUTPUT([HAVE_LIBIPHLPAPI], [/* Define to 1 if you have the `iphlpapi\' library (-liphlpapi). */ -@%:@undef HAVE_LIBIPHLPAPI]) -m4trace:configure.ac:192: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBIPHLPAPI]) -m4trace:configure.ac:192: -1- m4_pattern_allow([^HAVE_LIBIPHLPAPI$]) -m4trace:configure.ac:193: -1- AH_OUTPUT([HAVE_LIBCRYPT32], [/* Define to 1 if you have the `crypt32\' library (-lcrypt32). */ -@%:@undef HAVE_LIBCRYPT32]) -m4trace:configure.ac:193: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBCRYPT32]) -m4trace:configure.ac:193: -1- m4_pattern_allow([^HAVE_LIBCRYPT32$]) -m4trace:configure.ac:199: -1- AC_SUBST([MAKENSIS]) -m4trace:configure.ac:199: -1- AC_SUBST_TRACE([MAKENSIS]) -m4trace:configure.ac:199: -1- m4_pattern_allow([^MAKENSIS$]) -m4trace:configure.ac:204: -1- AC_SUBST([WINDRES]) -m4trace:configure.ac:204: -1- AC_SUBST_TRACE([WINDRES]) -m4trace:configure.ac:204: -1- m4_pattern_allow([^WINDRES$]) -m4trace:configure.ac:219: -1- AC_SUBST([WINDOWS_BITS]) -m4trace:configure.ac:219: -1- AC_SUBST_TRACE([WINDOWS_BITS]) -m4trace:configure.ac:219: -1- m4_pattern_allow([^WINDOWS_BITS$]) -m4trace:configure.ac:226: -1- AC_SUBST([PORT]) -m4trace:configure.ac:226: -1- AC_SUBST_TRACE([PORT]) -m4trace:configure.ac:226: -1- m4_pattern_allow([^PORT$]) -m4trace:configure.ac:233: -1- AC_SUBST([BREW]) -m4trace:configure.ac:233: -1- AC_SUBST_TRACE([BREW]) -m4trace:configure.ac:233: -1- m4_pattern_allow([^BREW$]) -m4trace:configure.ac:248: -1- AC_SUBST([INSTALLNAMETOOL]) -m4trace:configure.ac:248: -1- AC_SUBST_TRACE([INSTALLNAMETOOL]) -m4trace:configure.ac:248: -1- m4_pattern_allow([^INSTALLNAMETOOL$]) -m4trace:configure.ac:249: -1- AC_SUBST([OTOOL]) -m4trace:configure.ac:249: -1- AC_SUBST_TRACE([OTOOL]) -m4trace:configure.ac:249: -1- m4_pattern_allow([^OTOOL$]) -m4trace:configure.ac:250: -1- AC_SUBST([GENISOIMAGE]) -m4trace:configure.ac:250: -1- AC_SUBST_TRACE([GENISOIMAGE]) -m4trace:configure.ac:250: -1- m4_pattern_allow([^GENISOIMAGE$]) -m4trace:configure.ac:262: -1- AC_SUBST([JAVA_COMPARISON_TOOL], [$use_comparison_tool]) -m4trace:configure.ac:262: -1- AC_SUBST_TRACE([JAVA_COMPARISON_TOOL]) -m4trace:configure.ac:262: -1- m4_pattern_allow([^JAVA_COMPARISON_TOOL$]) -m4trace:configure.ac:269: -1- AC_SUBST([COMPARISON_TOOL_REORG_TESTS], [1]) -m4trace:configure.ac:269: -1- AC_SUBST_TRACE([COMPARISON_TOOL_REORG_TESTS]) -m4trace:configure.ac:269: -1- m4_pattern_allow([^COMPARISON_TOOL_REORG_TESTS$]) -m4trace:configure.ac:271: -1- AC_SUBST([COMPARISON_TOOL_REORG_TESTS], [0]) -m4trace:configure.ac:271: -1- AC_SUBST_TRACE([COMPARISON_TOOL_REORG_TESTS]) -m4trace:configure.ac:271: -1- m4_pattern_allow([^COMPARISON_TOOL_REORG_TESTS$]) -m4trace:configure.ac:296: -1- AH_OUTPUT([WORDS_BIGENDIAN], [/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most - significant byte first (like Motorola and SPARC, unlike Intel). */ -#if defined AC_APPLE_UNIVERSAL_BUILD -# if defined __BIG_ENDIAN__ -# define WORDS_BIGENDIAN 1 -# endif -#else -# ifndef WORDS_BIGENDIAN -# undef WORDS_BIGENDIAN -# endif -#endif]) -m4trace:configure.ac:296: -1- AC_SUBST([GREP]) -m4trace:configure.ac:296: -1- AC_SUBST_TRACE([GREP]) -m4trace:configure.ac:296: -1- m4_pattern_allow([^GREP$]) -m4trace:configure.ac:296: -1- AC_SUBST([EGREP]) -m4trace:configure.ac:296: -1- AC_SUBST_TRACE([EGREP]) -m4trace:configure.ac:296: -1- m4_pattern_allow([^EGREP$]) -m4trace:configure.ac:296: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS]) -m4trace:configure.ac:296: -1- m4_pattern_allow([^STDC_HEADERS$]) -m4trace:configure.ac:296: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */ -@%:@undef STDC_HEADERS]) -m4trace:configure.ac:296: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_SYS_TYPES_H]) -m4trace:configure.ac:296: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_SYS_STAT_H]) -m4trace:configure.ac:296: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_STDLIB_H]) -m4trace:configure.ac:296: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_STRING_H]) -m4trace:configure.ac:296: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_MEMORY_H]) -m4trace:configure.ac:296: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_STRINGS_H]) -m4trace:configure.ac:296: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_INTTYPES_H]) -m4trace:configure.ac:296: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_STDINT_H]) -m4trace:configure.ac:296: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_UNISTD_H]) -m4trace:configure.ac:296: -1- AC_DEFINE_TRACE_LITERAL([AC_APPLE_UNIVERSAL_BUILD]) -m4trace:configure.ac:296: -1- m4_pattern_allow([^AC_APPLE_UNIVERSAL_BUILD$]) -m4trace:configure.ac:296: -1- AH_OUTPUT([AC_APPLE_UNIVERSAL_BUILD], [/* Define if building universal (internal helper macro) */ -@%:@undef AC_APPLE_UNIVERSAL_BUILD]) -m4trace:configure.ac:299: -1- AC_SUBST([ax_pthread_config]) -m4trace:configure.ac:299: -1- AC_SUBST_TRACE([ax_pthread_config]) -m4trace:configure.ac:299: -1- m4_pattern_allow([^ax_pthread_config$]) -m4trace:configure.ac:299: -1- AC_DEFINE_TRACE_LITERAL([PTHREAD_CREATE_JOINABLE]) -m4trace:configure.ac:299: -1- m4_pattern_allow([^PTHREAD_CREATE_JOINABLE$]) -m4trace:configure.ac:299: -1- AH_OUTPUT([PTHREAD_CREATE_JOINABLE], [/* Define to necessary symbol if this constant uses a non-standard name on - your system. */ -@%:@undef PTHREAD_CREATE_JOINABLE]) -m4trace:configure.ac:299: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PTHREAD_PRIO_INHERIT]) -m4trace:configure.ac:299: -1- m4_pattern_allow([^HAVE_PTHREAD_PRIO_INHERIT$]) -m4trace:configure.ac:299: -1- AH_OUTPUT([HAVE_PTHREAD_PRIO_INHERIT], [/* Have PTHREAD_PRIO_INHERIT. */ -@%:@undef HAVE_PTHREAD_PRIO_INHERIT]) -m4trace:configure.ac:299: -1- AC_SUBST([PTHREAD_CC]) -m4trace:configure.ac:299: -1- AC_SUBST_TRACE([PTHREAD_CC]) -m4trace:configure.ac:299: -1- m4_pattern_allow([^PTHREAD_CC$]) -m4trace:configure.ac:299: -1- AC_SUBST([PTHREAD_LIBS]) -m4trace:configure.ac:299: -1- AC_SUBST_TRACE([PTHREAD_LIBS]) -m4trace:configure.ac:299: -1- m4_pattern_allow([^PTHREAD_LIBS$]) -m4trace:configure.ac:299: -1- AC_SUBST([PTHREAD_CFLAGS]) -m4trace:configure.ac:299: -1- AC_SUBST_TRACE([PTHREAD_CFLAGS]) -m4trace:configure.ac:299: -1- m4_pattern_allow([^PTHREAD_CFLAGS$]) -m4trace:configure.ac:299: -1- AC_SUBST([PTHREAD_CC]) -m4trace:configure.ac:299: -1- AC_SUBST_TRACE([PTHREAD_CC]) -m4trace:configure.ac:299: -1- m4_pattern_allow([^PTHREAD_CC$]) -m4trace:configure.ac:299: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PTHREAD]) -m4trace:configure.ac:299: -1- m4_pattern_allow([^HAVE_PTHREAD$]) -m4trace:configure.ac:299: -1- AH_OUTPUT([HAVE_PTHREAD], [/* Define if you have POSIX threads libraries and header files. */ -@%:@undef HAVE_PTHREAD]) -m4trace:configure.ac:305: -1- AC_DEFINE_TRACE_LITERAL([_FILE_OFFSET_BITS]) -m4trace:configure.ac:305: -1- m4_pattern_allow([^_FILE_OFFSET_BITS$]) -m4trace:configure.ac:305: -1- AH_OUTPUT([_FILE_OFFSET_BITS], [/* Number of bits in a file offset, on hosts where this is settable. */ -@%:@undef _FILE_OFFSET_BITS]) -m4trace:configure.ac:305: -1- AC_DEFINE_TRACE_LITERAL([_LARGE_FILES]) -m4trace:configure.ac:305: -1- m4_pattern_allow([^_LARGE_FILES$]) -m4trace:configure.ac:305: -1- AH_OUTPUT([_LARGE_FILES], [/* Define for large files, on AIX-style hosts. */ -@%:@undef _LARGE_FILES]) -m4trace:configure.ac:305: -1- AH_OUTPUT([_DARWIN_USE_64_BIT_INODE], [/* Enable large inode numbers on Mac OS X 10.5. */ -#ifndef _DARWIN_USE_64_BIT_INODE -# define _DARWIN_USE_64_BIT_INODE 1 -#endif]) -m4trace:configure.ac:326: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -configure.ac:326: the top level]) -m4trace:configure.ac:332: -1- AC_DEFINE_TRACE_LITERAL([FDELT_TYPE]) -m4trace:configure.ac:332: -1- m4_pattern_allow([^FDELT_TYPE$]) -m4trace:configure.ac:332: -1- AH_OUTPUT([FDELT_TYPE], [/* parameter and return value type for __fdelt_chk */ -@%:@undef FDELT_TYPE]) -m4trace:configure.ac:369: -1- AH_OUTPUT([HAVE_STDIO_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_STDIO_H]) -m4trace:configure.ac:369: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_STDLIB_H]) -m4trace:configure.ac:369: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_UNISTD_H]) -m4trace:configure.ac:369: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_STRINGS_H]) -m4trace:configure.ac:369: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_SYS_TYPES_H]) -m4trace:configure.ac:369: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_SYS_STAT_H]) -m4trace:configure.ac:373: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -configure.ac:373: the top level]) -m4trace:configure.ac:373: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MSG_NOSIGNAL]) -m4trace:configure.ac:373: -1- m4_pattern_allow([^HAVE_MSG_NOSIGNAL$]) -m4trace:configure.ac:373: -1- AH_OUTPUT([HAVE_MSG_NOSIGNAL], [/* Define this symbol if you have MSG_NOSIGNAL */ -@%:@undef HAVE_MSG_NOSIGNAL]) -m4trace:configure.ac:382: -1- AM_CONDITIONAL([EMBEDDED_LEVELDB], [true]) -m4trace:configure.ac:382: -1- AC_SUBST([EMBEDDED_LEVELDB_TRUE]) -m4trace:configure.ac:382: -1- AC_SUBST_TRACE([EMBEDDED_LEVELDB_TRUE]) -m4trace:configure.ac:382: -1- m4_pattern_allow([^EMBEDDED_LEVELDB_TRUE$]) -m4trace:configure.ac:382: -1- AC_SUBST([EMBEDDED_LEVELDB_FALSE]) -m4trace:configure.ac:382: -1- AC_SUBST_TRACE([EMBEDDED_LEVELDB_FALSE]) -m4trace:configure.ac:382: -1- m4_pattern_allow([^EMBEDDED_LEVELDB_FALSE$]) -m4trace:configure.ac:382: -1- _AM_SUBST_NOTMAKE([EMBEDDED_LEVELDB_TRUE]) -m4trace:configure.ac:382: -1- _AM_SUBST_NOTMAKE([EMBEDDED_LEVELDB_FALSE]) -m4trace:configure.ac:383: -1- AC_SUBST([LEVELDB_CPPFLAGS]) -m4trace:configure.ac:383: -1- AC_SUBST_TRACE([LEVELDB_CPPFLAGS]) -m4trace:configure.ac:383: -1- m4_pattern_allow([^LEVELDB_CPPFLAGS$]) -m4trace:configure.ac:384: -1- AC_SUBST([LIBLEVELDB]) -m4trace:configure.ac:384: -1- AC_SUBST_TRACE([LIBLEVELDB]) -m4trace:configure.ac:384: -1- m4_pattern_allow([^LIBLEVELDB$]) -m4trace:configure.ac:385: -1- AC_SUBST([LIBMEMENV]) -m4trace:configure.ac:385: -1- AC_SUBST_TRACE([LIBMEMENV]) -m4trace:configure.ac:385: -1- m4_pattern_allow([^LIBMEMENV$]) -m4trace:configure.ac:389: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -src/m4/bitcoin_find_bdb48.m4:1: BITCOIN_FIND_BDB48 is expanded from... -configure.ac:389: the top level]) -m4trace:configure.ac:389: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -src/m4/bitcoin_find_bdb48.m4:1: BITCOIN_FIND_BDB48 is expanded from... -configure.ac:389: the top level]) -m4trace:configure.ac:389: -1- AC_SUBST([BDB_CPPFLAGS]) -m4trace:configure.ac:389: -1- AC_SUBST_TRACE([BDB_CPPFLAGS]) -m4trace:configure.ac:389: -1- m4_pattern_allow([^BDB_CPPFLAGS$]) -m4trace:configure.ac:389: -1- AC_SUBST([BDB_LIBS]) -m4trace:configure.ac:389: -1- AC_SUBST_TRACE([BDB_LIBS]) -m4trace:configure.ac:389: -1- m4_pattern_allow([^BDB_LIBS$]) -m4trace:configure.ac:394: -1- AH_OUTPUT([HAVE_MINIUPNPC_MINIWGET_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_MINIUPNPC_MINIWGET_H]) -m4trace:configure.ac:394: -1- AH_OUTPUT([HAVE_MINIUPNPC_MINIUPNPC_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_MINIUPNPC_MINIUPNPC_H]) -m4trace:configure.ac:394: -1- AH_OUTPUT([HAVE_MINIUPNPC_UPNPCOMMANDS_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_MINIUPNPC_UPNPCOMMANDS_H]) -m4trace:configure.ac:394: -1- AH_OUTPUT([HAVE_MINIUPNPC_UPNPERRORS_H], [/* Define to 1 if you have the header file. */ -@%:@undef HAVE_MINIUPNPC_UPNPERRORS_H]) -m4trace:configure.ac:394: -1- AH_OUTPUT([HAVE_LIBMINIUPNPC], [/* Define to 1 if you have the `miniupnpc\' library (-lminiupnpc). */ -@%:@undef HAVE_LIBMINIUPNPC]) -m4trace:configure.ac:394: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBMINIUPNPC]) -m4trace:configure.ac:394: -1- m4_pattern_allow([^HAVE_LIBMINIUPNPC$]) -m4trace:configure.ac:402: -1- AC_SUBST([BOOST_CPPFLAGS]) -m4trace:configure.ac:402: -1- AC_SUBST_TRACE([BOOST_CPPFLAGS]) -m4trace:configure.ac:402: -1- m4_pattern_allow([^BOOST_CPPFLAGS$]) -m4trace:configure.ac:402: -1- AC_SUBST([BOOST_LDFLAGS]) -m4trace:configure.ac:402: -1- AC_SUBST_TRACE([BOOST_LDFLAGS]) -m4trace:configure.ac:402: -1- m4_pattern_allow([^BOOST_LDFLAGS$]) -m4trace:configure.ac:402: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BOOST]) -m4trace:configure.ac:402: -1- m4_pattern_allow([^HAVE_BOOST$]) -m4trace:configure.ac:402: -1- AH_OUTPUT([HAVE_BOOST], [/* define if the Boost library is available */ -@%:@undef HAVE_BOOST]) -m4trace:configure.ac:403: -1- AC_SUBST([BOOST_CPPFLAGS]) -m4trace:configure.ac:403: -1- AC_SUBST_TRACE([BOOST_CPPFLAGS]) -m4trace:configure.ac:403: -1- m4_pattern_allow([^BOOST_CPPFLAGS$]) -m4trace:configure.ac:403: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BOOST_SYSTEM]) -m4trace:configure.ac:403: -1- m4_pattern_allow([^HAVE_BOOST_SYSTEM$]) -m4trace:configure.ac:403: -1- AH_OUTPUT([HAVE_BOOST_SYSTEM], [/* define if the Boost::System library is available */ -@%:@undef HAVE_BOOST_SYSTEM]) -m4trace:configure.ac:403: -1- AC_SUBST([BOOST_SYSTEM_LIB]) -m4trace:configure.ac:403: -1- AC_SUBST_TRACE([BOOST_SYSTEM_LIB]) -m4trace:configure.ac:403: -1- m4_pattern_allow([^BOOST_SYSTEM_LIB$]) -m4trace:configure.ac:403: -1- AC_SUBST([BOOST_SYSTEM_LIB]) -m4trace:configure.ac:403: -1- AC_SUBST_TRACE([BOOST_SYSTEM_LIB]) -m4trace:configure.ac:403: -1- m4_pattern_allow([^BOOST_SYSTEM_LIB$]) -m4trace:configure.ac:403: -1- AC_SUBST([BOOST_SYSTEM_LIB]) -m4trace:configure.ac:403: -1- AC_SUBST_TRACE([BOOST_SYSTEM_LIB]) -m4trace:configure.ac:403: -1- m4_pattern_allow([^BOOST_SYSTEM_LIB$]) -m4trace:configure.ac:404: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BOOST_FILESYSTEM]) -m4trace:configure.ac:404: -1- m4_pattern_allow([^HAVE_BOOST_FILESYSTEM$]) -m4trace:configure.ac:404: -1- AH_OUTPUT([HAVE_BOOST_FILESYSTEM], [/* define if the Boost::Filesystem library is available */ -@%:@undef HAVE_BOOST_FILESYSTEM]) -m4trace:configure.ac:404: -1- AC_SUBST([BOOST_FILESYSTEM_LIB]) -m4trace:configure.ac:404: -1- AC_SUBST_TRACE([BOOST_FILESYSTEM_LIB]) -m4trace:configure.ac:404: -1- m4_pattern_allow([^BOOST_FILESYSTEM_LIB$]) -m4trace:configure.ac:404: -1- AC_SUBST([BOOST_FILESYSTEM_LIB]) -m4trace:configure.ac:404: -1- AC_SUBST_TRACE([BOOST_FILESYSTEM_LIB]) -m4trace:configure.ac:404: -1- m4_pattern_allow([^BOOST_FILESYSTEM_LIB$]) -m4trace:configure.ac:404: -1- AC_SUBST([BOOST_FILESYSTEM_LIB]) -m4trace:configure.ac:404: -1- AC_SUBST_TRACE([BOOST_FILESYSTEM_LIB]) -m4trace:configure.ac:404: -1- m4_pattern_allow([^BOOST_FILESYSTEM_LIB$]) -m4trace:configure.ac:405: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BOOST_PROGRAM_OPTIONS]) -m4trace:configure.ac:405: -1- m4_pattern_allow([^HAVE_BOOST_PROGRAM_OPTIONS$]) -m4trace:configure.ac:405: -1- AH_OUTPUT([HAVE_BOOST_PROGRAM_OPTIONS], [/* define if the Boost::PROGRAM_OPTIONS library is available */ -@%:@undef HAVE_BOOST_PROGRAM_OPTIONS]) -m4trace:configure.ac:405: -1- AC_SUBST([BOOST_PROGRAM_OPTIONS_LIB]) -m4trace:configure.ac:405: -1- AC_SUBST_TRACE([BOOST_PROGRAM_OPTIONS_LIB]) -m4trace:configure.ac:405: -1- m4_pattern_allow([^BOOST_PROGRAM_OPTIONS_LIB$]) -m4trace:configure.ac:405: -1- AC_SUBST([BOOST_PROGRAM_OPTIONS_LIB]) -m4trace:configure.ac:405: -1- AC_SUBST_TRACE([BOOST_PROGRAM_OPTIONS_LIB]) -m4trace:configure.ac:405: -1- m4_pattern_allow([^BOOST_PROGRAM_OPTIONS_LIB$]) -m4trace:configure.ac:405: -1- AC_SUBST([BOOST_PROGRAM_OPTIONS_LIB]) -m4trace:configure.ac:405: -1- AC_SUBST_TRACE([BOOST_PROGRAM_OPTIONS_LIB]) -m4trace:configure.ac:405: -1- m4_pattern_allow([^BOOST_PROGRAM_OPTIONS_LIB$]) -m4trace:configure.ac:406: -1- AC_SUBST([BOOST_CPPFLAGS]) -m4trace:configure.ac:406: -1- AC_SUBST_TRACE([BOOST_CPPFLAGS]) -m4trace:configure.ac:406: -1- m4_pattern_allow([^BOOST_CPPFLAGS$]) -m4trace:configure.ac:406: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BOOST_THREAD]) -m4trace:configure.ac:406: -1- m4_pattern_allow([^HAVE_BOOST_THREAD$]) -m4trace:configure.ac:406: -1- AH_OUTPUT([HAVE_BOOST_THREAD], [/* define if the Boost::Thread library is available */ -@%:@undef HAVE_BOOST_THREAD]) -m4trace:configure.ac:406: -1- AC_SUBST([BOOST_THREAD_LIB]) -m4trace:configure.ac:406: -1- AC_SUBST_TRACE([BOOST_THREAD_LIB]) -m4trace:configure.ac:406: -1- m4_pattern_allow([^BOOST_THREAD_LIB$]) -m4trace:configure.ac:406: -1- AC_SUBST([BOOST_THREAD_LIB]) -m4trace:configure.ac:406: -1- AC_SUBST_TRACE([BOOST_THREAD_LIB]) -m4trace:configure.ac:406: -1- m4_pattern_allow([^BOOST_THREAD_LIB$]) -m4trace:configure.ac:406: -1- AC_SUBST([BOOST_THREAD_LIB]) -m4trace:configure.ac:406: -1- AC_SUBST_TRACE([BOOST_THREAD_LIB]) -m4trace:configure.ac:406: -1- m4_pattern_allow([^BOOST_THREAD_LIB$]) -m4trace:configure.ac:407: -1- AC_SUBST([BOOST_CPPFLAGS]) -m4trace:configure.ac:407: -1- AC_SUBST_TRACE([BOOST_CPPFLAGS]) -m4trace:configure.ac:407: -1- m4_pattern_allow([^BOOST_CPPFLAGS$]) -m4trace:configure.ac:407: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BOOST_CHRONO]) -m4trace:configure.ac:407: -1- m4_pattern_allow([^HAVE_BOOST_CHRONO$]) -m4trace:configure.ac:407: -1- AH_OUTPUT([HAVE_BOOST_CHRONO], [/* define if the Boost::Chrono library is available */ -@%:@undef HAVE_BOOST_CHRONO]) -m4trace:configure.ac:407: -1- AC_SUBST([BOOST_CHRONO_LIB]) -m4trace:configure.ac:407: -1- AC_SUBST_TRACE([BOOST_CHRONO_LIB]) -m4trace:configure.ac:407: -1- m4_pattern_allow([^BOOST_CHRONO_LIB$]) -m4trace:configure.ac:407: -1- AC_SUBST([BOOST_CHRONO_LIB]) -m4trace:configure.ac:407: -1- AC_SUBST_TRACE([BOOST_CHRONO_LIB]) -m4trace:configure.ac:407: -1- m4_pattern_allow([^BOOST_CHRONO_LIB$]) -m4trace:configure.ac:407: -1- AC_SUBST([BOOST_CHRONO_LIB]) -m4trace:configure.ac:407: -1- AC_SUBST_TRACE([BOOST_CHRONO_LIB]) -m4trace:configure.ac:407: -1- m4_pattern_allow([^BOOST_CHRONO_LIB$]) -m4trace:configure.ac:416: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BOOST_UNIT_TEST_FRAMEWORK]) -m4trace:configure.ac:416: -1- m4_pattern_allow([^HAVE_BOOST_UNIT_TEST_FRAMEWORK$]) -m4trace:configure.ac:416: -1- AH_OUTPUT([HAVE_BOOST_UNIT_TEST_FRAMEWORK], [/* define if the Boost::Unit_Test_Framework library is available */ -@%:@undef HAVE_BOOST_UNIT_TEST_FRAMEWORK]) -m4trace:configure.ac:416: -1- AC_SUBST([BOOST_UNIT_TEST_FRAMEWORK_LIB]) -m4trace:configure.ac:416: -1- AC_SUBST_TRACE([BOOST_UNIT_TEST_FRAMEWORK_LIB]) -m4trace:configure.ac:416: -1- m4_pattern_allow([^BOOST_UNIT_TEST_FRAMEWORK_LIB$]) -m4trace:configure.ac:416: -1- AC_SUBST([BOOST_UNIT_TEST_FRAMEWORK_LIB]) -m4trace:configure.ac:416: -1- AC_SUBST_TRACE([BOOST_UNIT_TEST_FRAMEWORK_LIB]) -m4trace:configure.ac:416: -1- m4_pattern_allow([^BOOST_UNIT_TEST_FRAMEWORK_LIB$]) -m4trace:configure.ac:416: -1- AC_SUBST([BOOST_UNIT_TEST_FRAMEWORK_LIB]) -m4trace:configure.ac:416: -1- AC_SUBST_TRACE([BOOST_UNIT_TEST_FRAMEWORK_LIB]) -m4trace:configure.ac:416: -1- m4_pattern_allow([^BOOST_UNIT_TEST_FRAMEWORK_LIB$]) -m4trace:configure.ac:454: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -configure.ac:454: the top level]) -m4trace:configure.ac:454: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_BOOST_SLEEP_FOR]) -m4trace:configure.ac:454: -1- m4_pattern_allow([^HAVE_WORKING_BOOST_SLEEP_FOR$]) -m4trace:configure.ac:454: -1- AH_OUTPUT([HAVE_WORKING_BOOST_SLEEP_FOR], [/* Define this symbol if boost sleep_for works */ -@%:@undef HAVE_WORKING_BOOST_SLEEP_FOR]) -m4trace:configure.ac:476: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -configure.ac:476: the top level]) -m4trace:configure.ac:476: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_BOOST_SLEEP]) -m4trace:configure.ac:476: -1- m4_pattern_allow([^HAVE_WORKING_BOOST_SLEEP$]) -m4trace:configure.ac:476: -1- AH_OUTPUT([HAVE_WORKING_BOOST_SLEEP], [/* Define this symbol if boost sleep works */ -@%:@undef HAVE_WORKING_BOOST_SLEEP]) -m4trace:configure.ac:518: -1- AC_SUBST([SSL_CFLAGS]) -m4trace:configure.ac:518: -1- AC_SUBST_TRACE([SSL_CFLAGS]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^SSL_CFLAGS$]) -m4trace:configure.ac:518: -1- AC_SUBST([SSL_LIBS]) -m4trace:configure.ac:518: -1- AC_SUBST_TRACE([SSL_LIBS]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^SSL_LIBS$]) -m4trace:configure.ac:518: -1- AC_SUBST([CRYPTO_CFLAGS]) -m4trace:configure.ac:518: -1- AC_SUBST_TRACE([CRYPTO_CFLAGS]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^CRYPTO_CFLAGS$]) -m4trace:configure.ac:518: -1- AC_SUBST([CRYPTO_LIBS]) -m4trace:configure.ac:518: -1- AC_SUBST_TRACE([CRYPTO_LIBS]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^CRYPTO_LIBS$]) -m4trace:configure.ac:518: -1- AC_SUBST([PROTOBUF_CFLAGS]) -m4trace:configure.ac:518: -1- AC_SUBST_TRACE([PROTOBUF_CFLAGS]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^PROTOBUF_CFLAGS$]) -m4trace:configure.ac:518: -1- AC_SUBST([PROTOBUF_LIBS]) -m4trace:configure.ac:518: -1- AC_SUBST_TRACE([PROTOBUF_LIBS]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^PROTOBUF_LIBS$]) -m4trace:configure.ac:518: -1- AC_SUBST([QR_CFLAGS]) -m4trace:configure.ac:518: -1- AC_SUBST_TRACE([QR_CFLAGS]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^QR_CFLAGS$]) -m4trace:configure.ac:518: -1- AC_SUBST([QR_LIBS]) -m4trace:configure.ac:518: -1- AC_SUBST_TRACE([QR_LIBS]) -m4trace:configure.ac:518: -1- m4_pattern_allow([^QR_LIBS$]) -m4trace:configure.ac:531: -1- AH_OUTPUT([HAVE_LIBCRYPTO], [/* Define to 1 if you have the `crypto\' library (-lcrypto). */ -@%:@undef HAVE_LIBCRYPTO]) -m4trace:configure.ac:531: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBCRYPTO]) -m4trace:configure.ac:531: -1- m4_pattern_allow([^HAVE_LIBCRYPTO$]) -m4trace:configure.ac:534: -1- AH_OUTPUT([HAVE_LIBSSL], [/* Define to 1 if you have the `ssl\' library (-lssl). */ -@%:@undef HAVE_LIBSSL]) -m4trace:configure.ac:534: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBSSL]) -m4trace:configure.ac:534: -1- m4_pattern_allow([^HAVE_LIBSSL$]) -m4trace:configure.ac:536: -2- AH_OUTPUT([HAVE_LIBPROTOBUF_], [/* Define to 1 if you have the `protobuf \' library (-lprotobuf ). */ -@%:@undef HAVE_LIBPROTOBUF_]) -m4trace:configure.ac:536: -2- AC_DEFINE_TRACE_LITERAL([HAVE_LIBPROTOBUF_]) -m4trace:configure.ac:536: -2- m4_pattern_allow([^HAVE_LIBPROTOBUF_$]) -m4trace:configure.ac:538: -1- AH_OUTPUT([HAVE_LIBQRENCODE], [/* Define to 1 if you have the `qrencode\' library (-lqrencode). */ -@%:@undef HAVE_LIBQRENCODE]) -m4trace:configure.ac:538: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBQRENCODE]) -m4trace:configure.ac:538: -1- m4_pattern_allow([^HAVE_LIBQRENCODE$]) -m4trace:configure.ac:543: -1- AC_SUBST([PROTOC]) -m4trace:configure.ac:543: -1- AC_SUBST_TRACE([PROTOC]) -m4trace:configure.ac:543: -1- m4_pattern_allow([^PROTOC$]) -m4trace:configure.ac:543: -1- AC_SUBST([PROTOC]) -m4trace:configure.ac:543: -1- AC_SUBST_TRACE([PROTOC]) -m4trace:configure.ac:543: -1- m4_pattern_allow([^PROTOC$]) -m4trace:configure.ac:546: -1- AM_CONDITIONAL([BUILD_BITCOIND], [test x$build_bitcoind = xyes]) -m4trace:configure.ac:546: -1- AC_SUBST([BUILD_BITCOIND_TRUE]) -m4trace:configure.ac:546: -1- AC_SUBST_TRACE([BUILD_BITCOIND_TRUE]) -m4trace:configure.ac:546: -1- m4_pattern_allow([^BUILD_BITCOIND_TRUE$]) -m4trace:configure.ac:546: -1- AC_SUBST([BUILD_BITCOIND_FALSE]) -m4trace:configure.ac:546: -1- AC_SUBST_TRACE([BUILD_BITCOIND_FALSE]) -m4trace:configure.ac:546: -1- m4_pattern_allow([^BUILD_BITCOIND_FALSE$]) -m4trace:configure.ac:546: -1- _AM_SUBST_NOTMAKE([BUILD_BITCOIND_TRUE]) -m4trace:configure.ac:546: -1- _AM_SUBST_NOTMAKE([BUILD_BITCOIND_FALSE]) -m4trace:configure.ac:550: -1- AM_CONDITIONAL([BUILD_BITCOIN_CLI], [test x$build_bitcoin_cli = xyes]) -m4trace:configure.ac:550: -1- AC_SUBST([BUILD_BITCOIN_CLI_TRUE]) -m4trace:configure.ac:550: -1- AC_SUBST_TRACE([BUILD_BITCOIN_CLI_TRUE]) -m4trace:configure.ac:550: -1- m4_pattern_allow([^BUILD_BITCOIN_CLI_TRUE$]) -m4trace:configure.ac:550: -1- AC_SUBST([BUILD_BITCOIN_CLI_FALSE]) -m4trace:configure.ac:550: -1- AC_SUBST_TRACE([BUILD_BITCOIN_CLI_FALSE]) -m4trace:configure.ac:550: -1- m4_pattern_allow([^BUILD_BITCOIN_CLI_FALSE$]) -m4trace:configure.ac:550: -1- _AM_SUBST_NOTMAKE([BUILD_BITCOIN_CLI_TRUE]) -m4trace:configure.ac:550: -1- _AM_SUBST_NOTMAKE([BUILD_BITCOIN_CLI_FALSE]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_CFLAGS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_CFLAGS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_CFLAGS$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_LIBS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_LIBS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_LIBS$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_CFLAGS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_CFLAGS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_CFLAGS$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_LIBS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_LIBS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_LIBS$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_CFLAGS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_CFLAGS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_CFLAGS$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_LIBS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_LIBS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_LIBS$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_CFLAGS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_CFLAGS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_CFLAGS$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_LIBS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_LIBS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_LIBS$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_TEST_CFLAGS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_TEST_CFLAGS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_TEST_CFLAGS$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_TEST_LIBS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_TEST_LIBS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_TEST_LIBS$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_DBUS_CFLAGS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_DBUS_CFLAGS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_DBUS_CFLAGS$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_DBUS_LIBS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_DBUS_LIBS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_DBUS_LIBS$]) -m4trace:configure.ac:554: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -src/m4/bitcoin_qt.m4:160: _BITCOIN_QT_CHECK_QT5 is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:278: _BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:81: BITCOIN_QT_CONFIGURE is expanded from... -configure.ac:554: the top level]) -m4trace:configure.ac:554: -1- AH_OUTPUT([HAVE_LIBIMM32], [/* Define to 1 if you have the `imm32\' library (-limm32). */ -@%:@undef HAVE_LIBIMM32]) -m4trace:configure.ac:554: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBIMM32]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^HAVE_LIBIMM32$]) -m4trace:configure.ac:554: -2- AH_OUTPUT([HAVE_LIBZ_], [/* Define to 1 if you have the `z \' library (-lz ). */ -@%:@undef HAVE_LIBZ_]) -m4trace:configure.ac:554: -2- AC_DEFINE_TRACE_LITERAL([HAVE_LIBZ_]) -m4trace:configure.ac:554: -2- m4_pattern_allow([^HAVE_LIBZ_$]) -m4trace:configure.ac:554: -2- AH_OUTPUT([HAVE_LIBPNG_], [/* Define to 1 if you have the `png \' library (-lpng ). */ -@%:@undef HAVE_LIBPNG_]) -m4trace:configure.ac:554: -2- AC_DEFINE_TRACE_LITERAL([HAVE_LIBPNG_]) -m4trace:configure.ac:554: -2- m4_pattern_allow([^HAVE_LIBPNG_$]) -m4trace:configure.ac:554: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2614: AC_TRY_COMPILE is expanded from... -/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... -/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... -/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... -src/m4/bitcoin_qt.m4:180: _BITCOIN_QT_IS_STATIC is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:278: _BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:81: BITCOIN_QT_CONFIGURE is expanded from... -configure.ac:554: the top level]) -m4trace:configure.ac:554: -1- AC_DEFINE_TRACE_LITERAL([QT_STATICPLUGIN]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_STATICPLUGIN$]) -m4trace:configure.ac:554: -1- AH_OUTPUT([QT_STATICPLUGIN], [/* Define this symbol for static Qt plugins */ -@%:@undef QT_STATICPLUGIN]) -m4trace:configure.ac:554: -1- AC_DEFINE_TRACE_LITERAL([QT_STATICPLUGIN]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_STATICPLUGIN$]) -m4trace:configure.ac:554: -1- AH_OUTPUT([QT_STATICPLUGIN], [/* Define this symbol if qt plugins are static */ -@%:@undef QT_STATICPLUGIN]) -m4trace:configure.ac:554: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -src/m4/bitcoin_qt.m4:204: _BITCOIN_QT_CHECK_STATIC_PLUGINS is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:278: _BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:81: BITCOIN_QT_CONFIGURE is expanded from... -configure.ac:554: the top level]) -m4trace:configure.ac:554: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -src/m4/bitcoin_qt.m4:204: _BITCOIN_QT_CHECK_STATIC_PLUGINS is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:278: _BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:81: BITCOIN_QT_CONFIGURE is expanded from... -configure.ac:554: the top level]) -m4trace:configure.ac:554: -1- AC_DEFINE_TRACE_LITERAL([QT_STATICPLUGIN]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_STATICPLUGIN$]) -m4trace:configure.ac:554: -1- AH_OUTPUT([QT_STATICPLUGIN], [/* Define this symbol if qt plugins are static */ -@%:@undef QT_STATICPLUGIN]) -m4trace:configure.ac:554: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete. -You should run autoupdate.], [/usr/src/packages/autoconf/26/32/autoconf2.5-2.69-2/src/autoconf-2.69/lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from... -src/m4/bitcoin_qt.m4:204: _BITCOIN_QT_CHECK_STATIC_PLUGINS is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:278: _BITCOIN_QT_FIND_LIBS_WITHOUT_PKGCONFIG is expanded from... -src/m4/bitcoin_qt.m4:14: BITCOIN_QT_CHECK is expanded from... -src/m4/bitcoin_qt.m4:81: BITCOIN_QT_CONFIGURE is expanded from... -configure.ac:554: the top level]) -m4trace:configure.ac:554: -1- AC_SUBST([MOC]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([MOC]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^MOC$]) -m4trace:configure.ac:554: -1- AC_SUBST([MOC]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([MOC]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^MOC$]) -m4trace:configure.ac:554: -1- AC_SUBST([UIC]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([UIC]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^UIC$]) -m4trace:configure.ac:554: -1- AC_SUBST([UIC]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([UIC]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^UIC$]) -m4trace:configure.ac:554: -1- AC_SUBST([RCC]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([RCC]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^RCC$]) -m4trace:configure.ac:554: -1- AC_SUBST([RCC]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([RCC]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^RCC$]) -m4trace:configure.ac:554: -1- AC_SUBST([LRELEASE]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([LRELEASE]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^LRELEASE$]) -m4trace:configure.ac:554: -1- AC_SUBST([LRELEASE]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([LRELEASE]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^LRELEASE$]) -m4trace:configure.ac:554: -1- AC_SUBST([LUPDATE]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([LUPDATE]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^LUPDATE$]) -m4trace:configure.ac:554: -1- AC_SUBST([LUPDATE]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([LUPDATE]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^LUPDATE$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_INCLUDES]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_INCLUDES]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_INCLUDES$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_LIBS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_LIBS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_LIBS$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_LDFLAGS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_LDFLAGS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_LDFLAGS$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_DBUS_INCLUDES]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_DBUS_INCLUDES]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_DBUS_INCLUDES$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_DBUS_LIBS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_DBUS_LIBS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_DBUS_LIBS$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_TEST_INCLUDES]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_TEST_INCLUDES]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_TEST_INCLUDES$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_TEST_LIBS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_TEST_LIBS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_TEST_LIBS$]) -m4trace:configure.ac:554: -1- AC_SUBST([QT_SELECT], [qt${bitcoin_qt_got_major_vers}]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([QT_SELECT]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^QT_SELECT$]) -m4trace:configure.ac:554: -1- AC_SUBST([MOC_DEFS]) -m4trace:configure.ac:554: -1- AC_SUBST_TRACE([MOC_DEFS]) -m4trace:configure.ac:554: -1- m4_pattern_allow([^MOC_DEFS$]) -m4trace:configure.ac:578: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_WALLET]) -m4trace:configure.ac:578: -1- m4_pattern_allow([^ENABLE_WALLET$]) -m4trace:configure.ac:578: -1- AH_OUTPUT([ENABLE_WALLET], [/* Define to 1 to enable wallet functions */ -@%:@undef ENABLE_WALLET]) -m4trace:configure.ac:602: -1- AC_DEFINE_TRACE_LITERAL([USE_UPNP]) -m4trace:configure.ac:602: -1- m4_pattern_allow([^USE_UPNP$]) -m4trace:configure.ac:602: -1- AH_OUTPUT([USE_UPNP], [/* UPnP support not compiled if undefined, otherwise value (0 or 1) determines - default state */ -@%:@undef USE_UPNP]) -m4trace:configure.ac:617: -1- AC_DEFINE_TRACE_LITERAL([USE_DBUS]) -m4trace:configure.ac:617: -1- m4_pattern_allow([^USE_DBUS$]) -m4trace:configure.ac:617: -1- AH_OUTPUT([USE_DBUS], [/* Define if dbus support should be compiled in */ -@%:@undef USE_DBUS]) -m4trace:configure.ac:631: -1- AC_DEFINE_TRACE_LITERAL([USE_QRCODE]) -m4trace:configure.ac:631: -1- m4_pattern_allow([^USE_QRCODE$]) -m4trace:configure.ac:631: -1- AH_OUTPUT([USE_QRCODE], [/* Define if QR support should be compiled in */ -@%:@undef USE_QRCODE]) -m4trace:configure.ac:663: -1- AM_CONDITIONAL([TARGET_DARWIN], [test x$TARGET_OS = xdarwin]) -m4trace:configure.ac:663: -1- AC_SUBST([TARGET_DARWIN_TRUE]) -m4trace:configure.ac:663: -1- AC_SUBST_TRACE([TARGET_DARWIN_TRUE]) -m4trace:configure.ac:663: -1- m4_pattern_allow([^TARGET_DARWIN_TRUE$]) -m4trace:configure.ac:663: -1- AC_SUBST([TARGET_DARWIN_FALSE]) -m4trace:configure.ac:663: -1- AC_SUBST_TRACE([TARGET_DARWIN_FALSE]) -m4trace:configure.ac:663: -1- m4_pattern_allow([^TARGET_DARWIN_FALSE$]) -m4trace:configure.ac:663: -1- _AM_SUBST_NOTMAKE([TARGET_DARWIN_TRUE]) -m4trace:configure.ac:663: -1- _AM_SUBST_NOTMAKE([TARGET_DARWIN_FALSE]) -m4trace:configure.ac:664: -1- AM_CONDITIONAL([BUILD_DARWIN], [test x$BUILD_OS = xdarwin]) -m4trace:configure.ac:664: -1- AC_SUBST([BUILD_DARWIN_TRUE]) -m4trace:configure.ac:664: -1- AC_SUBST_TRACE([BUILD_DARWIN_TRUE]) -m4trace:configure.ac:664: -1- m4_pattern_allow([^BUILD_DARWIN_TRUE$]) -m4trace:configure.ac:664: -1- AC_SUBST([BUILD_DARWIN_FALSE]) -m4trace:configure.ac:664: -1- AC_SUBST_TRACE([BUILD_DARWIN_FALSE]) -m4trace:configure.ac:664: -1- m4_pattern_allow([^BUILD_DARWIN_FALSE$]) -m4trace:configure.ac:664: -1- _AM_SUBST_NOTMAKE([BUILD_DARWIN_TRUE]) -m4trace:configure.ac:664: -1- _AM_SUBST_NOTMAKE([BUILD_DARWIN_FALSE]) -m4trace:configure.ac:665: -1- AM_CONDITIONAL([TARGET_WINDOWS], [test x$TARGET_OS = xwindows]) -m4trace:configure.ac:665: -1- AC_SUBST([TARGET_WINDOWS_TRUE]) -m4trace:configure.ac:665: -1- AC_SUBST_TRACE([TARGET_WINDOWS_TRUE]) -m4trace:configure.ac:665: -1- m4_pattern_allow([^TARGET_WINDOWS_TRUE$]) -m4trace:configure.ac:665: -1- AC_SUBST([TARGET_WINDOWS_FALSE]) -m4trace:configure.ac:665: -1- AC_SUBST_TRACE([TARGET_WINDOWS_FALSE]) -m4trace:configure.ac:665: -1- m4_pattern_allow([^TARGET_WINDOWS_FALSE$]) -m4trace:configure.ac:665: -1- _AM_SUBST_NOTMAKE([TARGET_WINDOWS_TRUE]) -m4trace:configure.ac:665: -1- _AM_SUBST_NOTMAKE([TARGET_WINDOWS_FALSE]) -m4trace:configure.ac:666: -1- AM_CONDITIONAL([ENABLE_WALLET], [test x$enable_wallet == xyes]) -m4trace:configure.ac:666: -1- AC_SUBST([ENABLE_WALLET_TRUE]) -m4trace:configure.ac:666: -1- AC_SUBST_TRACE([ENABLE_WALLET_TRUE]) -m4trace:configure.ac:666: -1- m4_pattern_allow([^ENABLE_WALLET_TRUE$]) -m4trace:configure.ac:666: -1- AC_SUBST([ENABLE_WALLET_FALSE]) -m4trace:configure.ac:666: -1- AC_SUBST_TRACE([ENABLE_WALLET_FALSE]) -m4trace:configure.ac:666: -1- m4_pattern_allow([^ENABLE_WALLET_FALSE$]) -m4trace:configure.ac:666: -1- _AM_SUBST_NOTMAKE([ENABLE_WALLET_TRUE]) -m4trace:configure.ac:666: -1- _AM_SUBST_NOTMAKE([ENABLE_WALLET_FALSE]) -m4trace:configure.ac:667: -1- AM_CONDITIONAL([USE_QRCODE], [test x$use_qr = xyes]) -m4trace:configure.ac:667: -1- AC_SUBST([USE_QRCODE_TRUE]) -m4trace:configure.ac:667: -1- AC_SUBST_TRACE([USE_QRCODE_TRUE]) -m4trace:configure.ac:667: -1- m4_pattern_allow([^USE_QRCODE_TRUE$]) -m4trace:configure.ac:667: -1- AC_SUBST([USE_QRCODE_FALSE]) -m4trace:configure.ac:667: -1- AC_SUBST_TRACE([USE_QRCODE_FALSE]) -m4trace:configure.ac:667: -1- m4_pattern_allow([^USE_QRCODE_FALSE$]) -m4trace:configure.ac:667: -1- _AM_SUBST_NOTMAKE([USE_QRCODE_TRUE]) -m4trace:configure.ac:667: -1- _AM_SUBST_NOTMAKE([USE_QRCODE_FALSE]) -m4trace:configure.ac:668: -1- AM_CONDITIONAL([USE_LCOV], [test x$use_lcov == xyes]) -m4trace:configure.ac:668: -1- AC_SUBST([USE_LCOV_TRUE]) -m4trace:configure.ac:668: -1- AC_SUBST_TRACE([USE_LCOV_TRUE]) -m4trace:configure.ac:668: -1- m4_pattern_allow([^USE_LCOV_TRUE$]) -m4trace:configure.ac:668: -1- AC_SUBST([USE_LCOV_FALSE]) -m4trace:configure.ac:668: -1- AC_SUBST_TRACE([USE_LCOV_FALSE]) -m4trace:configure.ac:668: -1- m4_pattern_allow([^USE_LCOV_FALSE$]) -m4trace:configure.ac:668: -1- _AM_SUBST_NOTMAKE([USE_LCOV_TRUE]) -m4trace:configure.ac:668: -1- _AM_SUBST_NOTMAKE([USE_LCOV_FALSE]) -m4trace:configure.ac:669: -1- AM_CONDITIONAL([USE_COMPARISON_TOOL], [test x$use_comparison_tool != xno]) -m4trace:configure.ac:669: -1- AC_SUBST([USE_COMPARISON_TOOL_TRUE]) -m4trace:configure.ac:669: -1- AC_SUBST_TRACE([USE_COMPARISON_TOOL_TRUE]) -m4trace:configure.ac:669: -1- m4_pattern_allow([^USE_COMPARISON_TOOL_TRUE$]) -m4trace:configure.ac:669: -1- AC_SUBST([USE_COMPARISON_TOOL_FALSE]) -m4trace:configure.ac:669: -1- AC_SUBST_TRACE([USE_COMPARISON_TOOL_FALSE]) -m4trace:configure.ac:669: -1- m4_pattern_allow([^USE_COMPARISON_TOOL_FALSE$]) -m4trace:configure.ac:669: -1- _AM_SUBST_NOTMAKE([USE_COMPARISON_TOOL_TRUE]) -m4trace:configure.ac:669: -1- _AM_SUBST_NOTMAKE([USE_COMPARISON_TOOL_FALSE]) -m4trace:configure.ac:670: -1- AM_CONDITIONAL([USE_COMPARISON_TOOL_REORG_TESTS], [test x$use_comparison_tool_reorg_test != xno]) -m4trace:configure.ac:670: -1- AC_SUBST([USE_COMPARISON_TOOL_REORG_TESTS_TRUE]) -m4trace:configure.ac:670: -1- AC_SUBST_TRACE([USE_COMPARISON_TOOL_REORG_TESTS_TRUE]) -m4trace:configure.ac:670: -1- m4_pattern_allow([^USE_COMPARISON_TOOL_REORG_TESTS_TRUE$]) -m4trace:configure.ac:670: -1- AC_SUBST([USE_COMPARISON_TOOL_REORG_TESTS_FALSE]) -m4trace:configure.ac:670: -1- AC_SUBST_TRACE([USE_COMPARISON_TOOL_REORG_TESTS_FALSE]) -m4trace:configure.ac:670: -1- m4_pattern_allow([^USE_COMPARISON_TOOL_REORG_TESTS_FALSE$]) -m4trace:configure.ac:670: -1- _AM_SUBST_NOTMAKE([USE_COMPARISON_TOOL_REORG_TESTS_TRUE]) -m4trace:configure.ac:670: -1- _AM_SUBST_NOTMAKE([USE_COMPARISON_TOOL_REORG_TESTS_FALSE]) -m4trace:configure.ac:671: -1- AM_CONDITIONAL([GLIBC_BACK_COMPAT], [test x$use_glibc_compat = xyes]) -m4trace:configure.ac:671: -1- AC_SUBST([GLIBC_BACK_COMPAT_TRUE]) -m4trace:configure.ac:671: -1- AC_SUBST_TRACE([GLIBC_BACK_COMPAT_TRUE]) -m4trace:configure.ac:671: -1- m4_pattern_allow([^GLIBC_BACK_COMPAT_TRUE$]) -m4trace:configure.ac:671: -1- AC_SUBST([GLIBC_BACK_COMPAT_FALSE]) -m4trace:configure.ac:671: -1- AC_SUBST_TRACE([GLIBC_BACK_COMPAT_FALSE]) -m4trace:configure.ac:671: -1- m4_pattern_allow([^GLIBC_BACK_COMPAT_FALSE$]) -m4trace:configure.ac:671: -1- _AM_SUBST_NOTMAKE([GLIBC_BACK_COMPAT_TRUE]) -m4trace:configure.ac:671: -1- _AM_SUBST_NOTMAKE([GLIBC_BACK_COMPAT_FALSE]) -m4trace:configure.ac:673: -1- AC_DEFINE_TRACE_LITERAL([CLIENT_VERSION_MAJOR]) -m4trace:configure.ac:673: -1- m4_pattern_allow([^CLIENT_VERSION_MAJOR$]) -m4trace:configure.ac:673: -1- AH_OUTPUT([CLIENT_VERSION_MAJOR], [/* Major version */ -@%:@undef CLIENT_VERSION_MAJOR]) -m4trace:configure.ac:674: -1- AC_DEFINE_TRACE_LITERAL([CLIENT_VERSION_MINOR]) -m4trace:configure.ac:674: -1- m4_pattern_allow([^CLIENT_VERSION_MINOR$]) -m4trace:configure.ac:674: -1- AH_OUTPUT([CLIENT_VERSION_MINOR], [/* Minor version */ -@%:@undef CLIENT_VERSION_MINOR]) -m4trace:configure.ac:675: -1- AC_DEFINE_TRACE_LITERAL([CLIENT_VERSION_REVISION]) -m4trace:configure.ac:675: -1- m4_pattern_allow([^CLIENT_VERSION_REVISION$]) -m4trace:configure.ac:675: -1- AH_OUTPUT([CLIENT_VERSION_REVISION], [/* Build revision */ -@%:@undef CLIENT_VERSION_REVISION]) -m4trace:configure.ac:676: -1- AC_DEFINE_TRACE_LITERAL([CLIENT_VERSION_BUILD]) -m4trace:configure.ac:676: -1- m4_pattern_allow([^CLIENT_VERSION_BUILD$]) -m4trace:configure.ac:676: -1- AH_OUTPUT([CLIENT_VERSION_BUILD], [/* Version Build */ -@%:@undef CLIENT_VERSION_BUILD]) -m4trace:configure.ac:677: -1- AC_DEFINE_TRACE_LITERAL([CLIENT_VERSION_IS_RELEASE]) -m4trace:configure.ac:677: -1- m4_pattern_allow([^CLIENT_VERSION_IS_RELEASE$]) -m4trace:configure.ac:677: -1- AH_OUTPUT([CLIENT_VERSION_IS_RELEASE], [/* Version is release */ -@%:@undef CLIENT_VERSION_IS_RELEASE]) -m4trace:configure.ac:678: -1- AC_DEFINE_TRACE_LITERAL([COPYRIGHT_YEAR]) -m4trace:configure.ac:678: -1- m4_pattern_allow([^COPYRIGHT_YEAR$]) -m4trace:configure.ac:678: -1- AH_OUTPUT([COPYRIGHT_YEAR], [/* Version is release */ -@%:@undef COPYRIGHT_YEAR]) -m4trace:configure.ac:679: -1- AC_SUBST([CLIENT_VERSION_MAJOR], [0]) -m4trace:configure.ac:679: -1- AC_SUBST_TRACE([CLIENT_VERSION_MAJOR]) -m4trace:configure.ac:679: -1- m4_pattern_allow([^CLIENT_VERSION_MAJOR$]) -m4trace:configure.ac:680: -1- AC_SUBST([CLIENT_VERSION_MINOR], [9]) -m4trace:configure.ac:680: -1- AC_SUBST_TRACE([CLIENT_VERSION_MINOR]) -m4trace:configure.ac:680: -1- m4_pattern_allow([^CLIENT_VERSION_MINOR$]) -m4trace:configure.ac:681: -1- AC_SUBST([CLIENT_VERSION_REVISION], [99]) -m4trace:configure.ac:681: -1- AC_SUBST_TRACE([CLIENT_VERSION_REVISION]) -m4trace:configure.ac:681: -1- m4_pattern_allow([^CLIENT_VERSION_REVISION$]) -m4trace:configure.ac:682: -1- AC_SUBST([CLIENT_VERSION_BUILD], [0]) -m4trace:configure.ac:682: -1- AC_SUBST_TRACE([CLIENT_VERSION_BUILD]) -m4trace:configure.ac:682: -1- m4_pattern_allow([^CLIENT_VERSION_BUILD$]) -m4trace:configure.ac:683: -1- AC_SUBST([CLIENT_VERSION_IS_RELEASE], [false]) -m4trace:configure.ac:683: -1- AC_SUBST_TRACE([CLIENT_VERSION_IS_RELEASE]) -m4trace:configure.ac:683: -1- m4_pattern_allow([^CLIENT_VERSION_IS_RELEASE$]) -m4trace:configure.ac:684: -1- AC_SUBST([COPYRIGHT_YEAR], [2014]) -m4trace:configure.ac:684: -1- AC_SUBST_TRACE([COPYRIGHT_YEAR]) -m4trace:configure.ac:684: -1- m4_pattern_allow([^COPYRIGHT_YEAR$]) -m4trace:configure.ac:687: -1- AC_SUBST([USE_UPNP]) -m4trace:configure.ac:687: -1- AC_SUBST_TRACE([USE_UPNP]) -m4trace:configure.ac:687: -1- m4_pattern_allow([^USE_UPNP$]) -m4trace:configure.ac:688: -1- AC_SUBST([USE_QRCODE]) -m4trace:configure.ac:688: -1- AC_SUBST_TRACE([USE_QRCODE]) -m4trace:configure.ac:688: -1- m4_pattern_allow([^USE_QRCODE$]) -m4trace:configure.ac:689: -1- AC_SUBST([INCLUDES]) -m4trace:configure.ac:689: -1- AC_SUBST_TRACE([INCLUDES]) -m4trace:configure.ac:689: -1- m4_pattern_allow([^INCLUDES$]) -m4trace:configure.ac:690: -1- AC_SUBST([BOOST_LIBS]) -m4trace:configure.ac:690: -1- AC_SUBST_TRACE([BOOST_LIBS]) -m4trace:configure.ac:690: -1- m4_pattern_allow([^BOOST_LIBS$]) -m4trace:configure.ac:691: -1- AC_SUBST([TESTDEFS]) -m4trace:configure.ac:691: -1- AC_SUBST_TRACE([TESTDEFS]) -m4trace:configure.ac:691: -1- m4_pattern_allow([^TESTDEFS$]) -m4trace:configure.ac:692: -1- AC_SUBST([LEVELDB_TARGET_FLAGS]) -m4trace:configure.ac:692: -1- AC_SUBST_TRACE([LEVELDB_TARGET_FLAGS]) -m4trace:configure.ac:692: -1- m4_pattern_allow([^LEVELDB_TARGET_FLAGS$]) -m4trace:configure.ac:693: -1- AC_SUBST([BUILD_TEST]) -m4trace:configure.ac:693: -1- AC_SUBST_TRACE([BUILD_TEST]) -m4trace:configure.ac:693: -1- m4_pattern_allow([^BUILD_TEST$]) -m4trace:configure.ac:694: -1- AC_SUBST([BUILD_QT]) -m4trace:configure.ac:694: -1- AC_SUBST_TRACE([BUILD_QT]) -m4trace:configure.ac:694: -1- m4_pattern_allow([^BUILD_QT$]) -m4trace:configure.ac:695: -1- AC_SUBST([BUILD_TEST_QT]) -m4trace:configure.ac:695: -1- AC_SUBST_TRACE([BUILD_TEST_QT]) -m4trace:configure.ac:695: -1- m4_pattern_allow([^BUILD_TEST_QT$]) -m4trace:configure.ac:696: -1- AC_CONFIG_FILES([Makefile src/Makefile src/test/Makefile src/qt/Makefile src/qt/test/Makefile share/setup.nsi share/qt/Info.plist]) -m4trace:configure.ac:697: -1- AC_CONFIG_FILES([qa/pull-tester/run-bitcoind-for-test.sh], [chmod +x qa/pull-tester/run-bitcoind-for-test.sh]) -m4trace:configure.ac:698: -1- AC_CONFIG_FILES([qa/pull-tester/build-tests.sh], [chmod +x qa/pull-tester/build-tests.sh]) -m4trace:configure.ac:699: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs]) -m4trace:configure.ac:699: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) -m4trace:configure.ac:699: -1- m4_pattern_allow([^LIB@&t@OBJS$]) -m4trace:configure.ac:699: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs]) -m4trace:configure.ac:699: -1- AC_SUBST_TRACE([LTLIBOBJS]) -m4trace:configure.ac:699: -1- m4_pattern_allow([^LTLIBOBJS$]) -m4trace:configure.ac:699: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"]) -m4trace:configure.ac:699: -1- AC_SUBST([am__EXEEXT_TRUE]) -m4trace:configure.ac:699: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE]) -m4trace:configure.ac:699: -1- m4_pattern_allow([^am__EXEEXT_TRUE$]) -m4trace:configure.ac:699: -1- AC_SUBST([am__EXEEXT_FALSE]) -m4trace:configure.ac:699: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE]) -m4trace:configure.ac:699: -1- m4_pattern_allow([^am__EXEEXT_FALSE$]) -m4trace:configure.ac:699: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE]) -m4trace:configure.ac:699: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE]) -m4trace:configure.ac:699: -1- AC_SUBST_TRACE([top_builddir]) -m4trace:configure.ac:699: -1- AC_SUBST_TRACE([top_build_prefix]) -m4trace:configure.ac:699: -1- AC_SUBST_TRACE([srcdir]) -m4trace:configure.ac:699: -1- AC_SUBST_TRACE([abs_srcdir]) -m4trace:configure.ac:699: -1- AC_SUBST_TRACE([top_srcdir]) -m4trace:configure.ac:699: -1- AC_SUBST_TRACE([abs_top_srcdir]) -m4trace:configure.ac:699: -1- AC_SUBST_TRACE([builddir]) -m4trace:configure.ac:699: -1- AC_SUBST_TRACE([abs_builddir]) -m4trace:configure.ac:699: -1- AC_SUBST_TRACE([abs_top_builddir]) -m4trace:configure.ac:699: -1- AC_SUBST_TRACE([INSTALL]) -m4trace:configure.ac:699: -1- AC_SUBST_TRACE([MKDIR_P]) diff --git a/build/build.h b/build/build.h deleted file mode 100644 index 51c4b54..0000000 --- a/build/build.h +++ /dev/null @@ -1,2 +0,0 @@ -// No build information available -#define BUILD_DATE "2014-06-17 14:05:48 -0400" diff --git a/doc/README b/doc/README index 65c6b89..50fb244 100644 --- a/doc/README +++ b/doc/README @@ -1,7 +1,8 @@ -BitBean 0.4.4 BETA +BitBean 1.1.0.0-g32a928eRC1 -Copyright (c) 2013 NovaCoin Developers -Copyright (c) 2011-2012 PPCoin Developers +Copyright (c) 2013 Novacoin Developers +Copyright (c) 2011-2012 PPBean Developers +Copyright (c) 2015 Bean Core www.bitbean.org Distributed under the MIT/X11 software license, see the accompanying file license.txt or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in @@ -13,6 +14,9 @@ Intro ----- BitBean is a free open source project derived from Bitcoin, with the goal of providing a long-term energy-efficient scrypt-based crypto-currency. -Built on the foundation of Bitcoin, PPCoin and NovaCoin, innovations such as proof-of-stake -help further advance the field of crypto-currency. +Built on the foundation of Bitcoin, PPBean and Novacoin, innovations such as +Proof-of-Sprout and Proof-of-Sprout Transactions (PoST), help further advance +the field of crypto-currency. + +More information can be found at: http://www.bitbean.org diff --git a/doc/README_windows.txt b/doc/README_windows.txt index ca2058b..269681c 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,7 +1,8 @@ BitBean 0.4.4 BETA -Copyright (c) 2013 NovaCoin Developers -Copyright (c) 2011-2013 PPCoin Developers +Copyright (c) 2013 Novacoin Developers +Copyright (c) 2011-2013 PPBean Developers +Copyright (c) 2015 Bean Core www.bitbean.org Distributed under the MIT/X11 software license, see the accompanying file license.txt or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in @@ -13,6 +14,8 @@ Intro ----- BitBean is a free open source project derived from Bitcoin, with the goal of providing a long-term energy-efficient scrypt-based crypto-currency. -Built on the foundation of Bitcoin, PPCoin and NovaCoin, innovations such as proof-of-stake and scrypt -help further advance the field of crypto-currency. +Built on the foundation of Bitcoin, PPBean and Novacoin, innovations such as +Proof-of-Sprout and Proof-of-Sprout Transactions (PoST), help further advance +the field of crypto-currency. +More information can be found at: http://www.bitbean.org diff --git a/doc/assets-attribution.txt b/doc/assets-attribution.txt index 5bd0903..b5e59cc 100644 --- a/doc/assets-attribution.txt +++ b/doc/assets-attribution.txt @@ -2,58 +2,70 @@ Code: src/strlcpy.h Author: Todd C. Miller License: ISC -Icon: src/qt/res/icons/clock*.png, src/qt/res/icons/tx*.png, - src/qt/res/src/*.svg -Designer: Wladimir van der Laan -License: MIT - -Icon: src/qt/res/icons/address-book.png, src/qt/res/icons/export.png, - src/qt/res/icons/history.png, src/qt/res/icons/key.png, - src/qt/res/icons/lock_*.png, src/qt/res/icons/overview.png, - src/qt/res/icons/receive.png, src/qt/res/icons/send.png, - src/qt/res/icons/synced.png, src/qt/res/icons/filesave.png -Icon Pack: NUVOLA ICON THEME for KDE 3.x -Designer: David Vignoni (david@icon-king.com) - ICON KING - www.icon-king.com -License: LGPL -Site: http://www.icon-king.com/projects/nuvola/ - -Icon: src/qt/res/icons/connect*.png -Icon Pack: Human-O2 -Designer: schollidesign +---------------------------------------------------- + +Icons: + src/qt/res/icons/address-book.png + src/qt/res/icons/beans-confirmed.png + src/qt/res/icons/bitbean-16.png + src/qt/res/icons/bitbean-80.png + src/qt/res/icons/bitbean.ico + src/qt/res/icons/checkmark.png + src/qt/res/icons/clock1.png + src/qt/res/icons/clock2.png + src/qt/res/icons/clock3.png + src/qt/res/icons/clock4.png + src/qt/res/icons/clock5.png + src/qt/res/icons/configure.png + src/qt/res/icons/connect0_16.png + src/qt/res/icons/connect1_16.png + src/qt/res/icons/connect2_16.png + src/qt/res/icons/connect3_16.png + src/qt/res/icons/connect4_16.png + src/qt/res/icons/debugwindow.png + src/qt/res/icons/editcopy.png + src/qt/res/icons/editpaste.png + src/qt/res/icons/edit.png + src/qt/res/icons/export.png + src/qt/res/icons/filesave.png + src/qt/res/icons/history.png + src/qt/res/icons/key.png + src/qt/res/icons/lock_closed.png + src/qt/res/icons/lock_open.png + src/qt/res/icons/notsynced.png + src/qt/res/icons/overview.png + src/qt/res/icons/receive.png + src/qt/res/icons/send.png + src/qt/res/icons/signmessage.png + src/qt/res/icons/sprout.png + src/qt/res/icons/staking_off.png + src/qt/res/icons/staking_on.png + src/qt/res/icons/transaction_conflicted.png + src/qt/res/icons/tx_inout.png + src/qt/res/icons/tx_input.png + src/qt/res/icons/tx_output.png + src/qt/res/icons/verifymessage.png + +Images: + src/qt/res/images/about.png + src/qt/res/images/Bean2Moon.png + src/qt/res/images/BeanSky.png + +Designer: @brunopro79 +Site: http://www.stubedesign.com License: GNU/GPL -Site: http://findicons.com/icon/93743/blocks_gnome_netstatus_0 - -Icon: src/qt/res/icons/transaction*.png -Designer: md2k7 -Site: https://forum.bitcoin.org/index.php?topic=15276.0 -License: You are free to do with these icons as you wish, including selling, - copying, modifying etc. - -Icon: src/qt/res/icons/configure.png, src/qt/res/icons/quit.png, - src/qt/res/icons/editcopy.png, src/qt/res/icons/editpaste.png, - src/qt/res/icons/add.png, src/qt/res/icons/edit.png, - src/qt/res/icons/remove.png (edited) -Designer: http://www.everaldo.com -Icon Pack: Crystal SVG -License: LGPL - -Icon: src/qt/res/icons/bitcoin.png, src/qt/res/icons/toolbar.png -Designer: Bitboy (optimized for 16x16 by Wladimir van der Laan) -License: Public Domain -Site: http://forum.bitcoin.org/?topic=1756.0 - -Icon: scripts/img/reload.xcf (modified),src/qt/res/movies/update_spinner.mng -Icon Pack: Kids -Designer: Everaldo (Everaldo Coelho) + +---------------------------------------------------- + + +Icon: src/qt/res/movies/bitbean_spinner.mng + src/qt/res/icons/remove.png + src/qt/res/icons/add.png + src/qt/res/icons/quit.png + + +Designer: Shawn Kent License: GNU/GPL -Site: http://findicons.com/icon/17102/reload?id=17102 +Site: http://www.bitbean.org -Image: src/qt/res/images/splash2.jpg (Wallet image) -Designer: Crobbo (forum) -Site: https://bitcointalk.org/index.php?topic=32273.0 -License: Public domain -BitBean Logo -Designer: Evan -License: Creative Commons Attribution 4.0 International License diff --git a/doc/build-msw.txt b/doc/build-msw.txt index 93cb729..0c3c12d 100644 --- a/doc/build-msw.txt +++ b/doc/build-msw.txt @@ -79,6 +79,6 @@ cp *.h miniupnpc/ BitBean ------- DOS prompt: -cd \Testcoin\src +cd \Testbean\src mingw32-make -f makefile.mingw -strip Testcoind.exe +strip Testbeand.exe diff --git a/doc/build-osx.txt b/doc/build-osx.txt index 4531902..fea5fe1 100644 --- a/doc/build-osx.txt +++ b/doc/build-osx.txt @@ -1,4 +1,5 @@ Copyright (c) 2009-2012 Bitcoin Developers +Copyright (c) 2015 Bean Core www.bitbean.org Distributed under the MIT/X11 software license, see the accompanying file license.txt or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in the @@ -7,7 +8,7 @@ software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. -Mac OS X Testcoind build instructions +Mac OS X BitBeand build instructions Laszlo Hanyecz Douglas Huff @@ -27,7 +28,7 @@ but you can get the current version from http://developer.apple.com 1. Clone the github tree to get the source code: -git clone git@github.com:rat4/Testcoin.git Testcoin +git clone https://github.com/TeamBitBean/bitbean-core 2. Download and install MacPorts from http://www.macports.org/ @@ -41,14 +42,14 @@ sudo port install boost db48 openssl miniupnpc Optionally install qrencode (and set USE_QRCODE=1): sudo port install qrencode -4. Now you should be able to build Testcoind: +4. Now you should be able to build BitBeand: -cd Testcoin/src +cd BitBean/src make -f makefile.osx Run: - ./Testcoind --help # for a list of command-line options. + ./BitBeand --help # for a list of command-line options. Run - ./Testcoind -daemon # to start the Testcoin daemon. + ./BitBeand -daemon # to start the Testbean daemon. Run - ./Testcoind help # When the daemon is running, to get a list of RPC commands + ./BitBeand help # When the daemon is running, to get a list of RPC commands diff --git a/doc/build-unix.txt b/doc/build-unix.txt index c2ecdd4..a5c1636 100644 --- a/doc/build-unix.txt +++ b/doc/build-unix.txt @@ -1,4 +1,5 @@ Copyright (c) 2009-2012 Bitcoin Developers +Copyright (c) 2015 Bean Core www.bitbean.org Distributed under the MIT/X11 software license, see the accompanying file license.txt or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in @@ -14,10 +15,10 @@ To Build -------- cd src/ -make -f makefile.unix # Headless Testcoin +make -f makefile.unix # Headless BitBean Vault daemon See readme-qt.rst for instructions on building BitBean QT, -the graphical Testcoin. +the graphical Vault. Dependencies ------------ @@ -76,14 +77,14 @@ Dependency Build Instructions: Gentoo emerge -av1 --noreplace boost openssl sys-libs/db Take the following steps to build (no UPnP support): - cd ${TestCOIN_DIR}/src + cd ${BitBean_DIR}/src make -f makefile.unix USE_UPNP= - strip Testcoind + strip BitBeand Notes ----- -The release is built with GCC and then "strip Testcoind" to strip the debug +The release is built with GCC and then "strip BitBbeand" to strip the debug symbols, which reduces the executable size by about 90%. @@ -113,7 +114,7 @@ sudo su Security -------- -To help make your Testcoin installation more secure by making certain attacks impossible to +To help make your BitBean installation more secure by making certain attacks impossible to exploit even if a vulnerability is found, you can take the following measures: * Position Independent Executable @@ -130,7 +131,7 @@ exploit even if a vulnerability is found, you can take the following measures: make -f makefile.unix ... -e PIE=1 To test that you have built PIE executable, install scanelf, part of paxutils, and use: - scanelf -e ./Testcoin + scanelf -e ./Testbean The output should contain: TYPE @@ -138,13 +139,13 @@ exploit even if a vulnerability is found, you can take the following measures: * Non-executable Stack If the stack is executable then trivial stack based buffer overflow exploits are possible if - vulnerable buffers are found. By default, Testcoin should be built with a non-executable stack + vulnerable buffers are found. By default, BitBean 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. To verify that the stack is non-executable after compiling use: - scanelf -e ./Testcoin + scanelf -e ./BitBean the output should contain: STK/REL/PTL diff --git a/doc/coding.txt b/doc/coding.txt index 5940985..1a88bed 100644 --- a/doc/coding.txt +++ b/doc/coding.txt @@ -65,9 +65,6 @@ StartNode : Starts other threads. ThreadGetMyExternalIP : Determines outside-the-firewall IP address, sends addr message to connected peers when it determines it. -ThreadIRCSeed : Joins IRC bootstrapping channel, watching for new -peers and advertising this node's IP address. - ThreadSocketHandler : Sends/Receives data from peers on port 8333. ThreadMessageHandler : Higher-level message handling (sending and @@ -90,7 +87,7 @@ in 500ms. ThreadRPCServer : Remote procedure call handler, listens on port 8332 for connections and services them. -ThreadBitcoinMiner : Generates bitcoins +ThreadBitbeanMiner : Generates bitbeans ThreadMapPort : Universal plug-and-play startup/shutdown diff --git a/doc/readme-qt.rst b/doc/readme-qt.rst index 50ee296..8b503a0 100644 --- a/doc/readme-qt.rst +++ b/doc/readme-qt.rst @@ -24,9 +24,9 @@ then execute the following: qmake make -Alternatively, install Qt Creator and open the `Testcoin-qt.pro` file. +Alternatively, install Qt Creator and open the `BitBean-qt.pro` file. -An executable named `Testcoin-qt` will be built. +An executable named `BitBean-qt` will be built. Windows @@ -71,7 +71,7 @@ Build configuration options UPNnP port forwarding --------------------- -To use UPnP for port forwarding behind a NAT router (recommended, as more connections overall allow for a faster and more stable Testcoin experience), pass the following argument to qmake: +To use UPnP for port forwarding behind a NAT router (recommended, as more connections overall allow for a faster and more stable Testbean experience), pass the following argument to qmake: :: @@ -136,7 +136,7 @@ Ubuntu 11.10 warning ==================== Ubuntu 11.10 has a package called 'qt-at-spi' installed by default. At the time of writing, having that package -installed causes Testcoin-qt to crash intermittently. The issue has been reported as `launchpad bug 857790`_, but +installed causes Testbean-qt to crash intermittently. The issue has been reported as `launchpad bug 857790`_, but isn't yet fixed. Until the bug is fixed, you can remove the qt-at-spi package to work around the problem, though this will presumably diff --git a/doc/release-process.txt b/doc/release-process.txt index ed23ef3..c92081e 100644 --- a/doc/release-process.txt +++ b/doc/release-process.txt @@ -1,24 +1,25 @@ -* update translations (ping tcatm on IRC for now) + +* update translations (ping BitBeaner on IRC [#BitBean or #beancore on Freenode] for now) * update (commit) version in sources - bitcoin-qt.pro + BitBean-qt.pro src/version.h share/setup.nsi doc/README* * tag version in git - git tag -a v0.5.1 + git tag -a v1.1.0.0 * write release notes. git shortlog helps a lot: - git shortlog --no-merges v0.5.0.. + git shortlog --no-merges v1.1.0.0 * perform gitian builds - * From a directory containing the bitcoin source, gitian-builder and gitian.sigs + * From a directory containing the BitBean source, gitian-builder and gitian.sigs export SIGNER=(your gitian key, ie bluematt, sipa, etc) - export VERSION=0.5.1 + export VERSION=1.1.0.0 cd ./gitian-builder * Fetch and build inputs: @@ -32,73 +33,73 @@ wget 'http://downloads.sourceforge.net/project/boost/boost/1.47.0/boost_1_47_0.tar.bz2' wget 'http://download.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.7.4.tar.gz' cd .. - ./bin/gbuild ../bitcoin/contrib/gitian-descriptors/boost-win32.yml + ./bin/gbuild ../BitBean/contrib/gitian-descriptors/boost-win32.yml cp build/out/boost-win32-1.47.0-gitian.zip inputs/ - ./bin/gbuild ../bitcoin/contrib/gitian-descriptors/qt-win32.yml + ./bin/gbuild ../BitBean/contrib/gitian-descriptors/qt-win32.yml cp build/out/qt-win32-4.7.4-gitian.zip inputs/ - ./bin/gbuild ../bitcoin/contrib/gitian-descriptors/deps-win32.yml - cp build/out/bitcoin-deps-0.0.3.zip inputs/ + ./bin/gbuild ../BitBean/contrib/gitian-descriptors/deps-win32.yml + cp build/out/BitBean-deps-0.0.3.zip inputs/ - * Build bitcoind and bitcoin-qt on Linux32, Linux64, and Win32: - ./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian.yml - ./bin/gsign --signer $SIGNER --release ${VERSION} --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian.yml + * Build BitBeand and BitBean-qt on Linux32, Linux64, and Win32: + ./bin/gbuild --commit BitBean=v${VERSION} ../BitBean/contrib/gitian-descriptors/gitian.yml + ./bin/gsign --signer $SIGNER --release ${VERSION} --destination ../gitian.sigs/ ../BitBean/contrib/gitian-descriptors/gitian.yml pushd build/out - zip -r bitcoin-${VERSION}-linux-gitian.zip * - mv bitcoin-${VERSION}-linux-gitian.zip ../../ + zip -r BitBean-${VERSION}-linux-gitian.zip * + mv BitBean-${VERSION}-linux-gitian.zip ../../ popd - ./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-win32.yml - ./bin/gsign --signer $SIGNER --release ${VERSION}-win32 --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-win32.yml + ./bin/gbuild --commit BitBean=v${VERSION} ../BitBean/contrib/gitian-descriptors/gitian-win32.yml + ./bin/gsign --signer $SIGNER --release ${VERSION}-win32 --destination ../gitian.sigs/ ../BitBean/contrib/gitian-descriptors/gitian-win32.yml pushd build/out - zip -r bitcoin-${VERSION}-win32-gitian.zip * - mv bitcoin-${VERSION}-win32-gitian.zip ../../ + zip -r BitBean-${VERSION}-win32-gitian.zip * + mv BitBean-${VERSION}-win32-gitian.zip ../../ popd Build output expected: - 1. linux 32-bit and 64-bit binaries + source (bitcoin-${VERSION}-linux-gitian.zip) - 2. windows 32-bit binary, installer + source (bitcoin-${VERSION}-win32-gitian.zip) + 1. linux 32-bit and 64-bit binaries + source (BitBean-${VERSION}-linux-gitian.zip) + 2. windows 32-bit binary, installer + source (BitBean-${VERSION}-win32-gitian.zip) 3. Gitian signatures (in gitian.sigs/${VERSION}[-win32]/(your gitian key)/ * repackage gitian builds for release as stand-alone zip/tar/installer exe * Linux .tar.gz: - unzip bitcoin-${VERSION}-linux-gitian.zip -d bitcoin-${VERSION}-linux - tar czvf bitcoin-${VERSION}-linux.tar.gz bitcoin-${VERSION}-linux - rm -rf bitcoin-${VERSION}-linux + unzip BitBean-${VERSION}-linux-gitian.zip -d BitBean-${VERSION}-linux + tar czvf BitBean-${VERSION}-linux.tar.gz BitBean-${VERSION}-linux + rm -rf BitBean-${VERSION}-linux * Windows .zip and setup.exe: - unzip bitcoin-${VERSION}-win32-gitian.zip -d bitcoin-${VERSION}-win32 - mv bitcoin-${VERSION}-win32/bitcoin-*-setup.exe . - zip -r bitcoin-${VERSION}-win32.zip bitcoin-${VERSION}-win32 - rm -rf bitcoin-${VERSION}-win32 + unzip BitBean-${VERSION}-win32-gitian.zip -d BitBean-${VERSION}-win32 + mv BitBean-${VERSION}-win32/BitBean-*-setup.exe . + zip -r BitBean-${VERSION}-win32.zip BitBean-${VERSION}-win32 + rm -rf BitBean-${VERSION}-win32 * perform Mac build See this blog post for how Gavin set up his build environment to build the OSX release; note that a patched version of macdeployqt is not needed anymore, as the required functionality and fixes are implemented directly in macdeployqtplus: - http://gavintech.blogspot.com/2011/11/deploying-bitcoin-qt-on-osx.html + http://gavintech.blogspot.com/2011/11/deploying-BitBean-qt-on-osx.html Gavin also had trouble with the macports py27-appscript package; he ended up installing a version that worked with: /usr/bin/easy_install-2.7 appscript - qmake RELEASE=1 USE_UPNP=1 USE_QRCODE=1 bitcoin-qt.pro + qmake RELEASE=1 USE_UPNP=1 USE_QRCODE=1 BitBean-qt.pro make export QTDIR=/opt/local/share/qt4 # needed to find translations/qt_*.qm files T=$(contrib/qt_translations.py $QTDIR/translations src/qt/locale) - python2.7 contrib/macdeploy/macdeployqtplus Bitcoin-Qt.app -add-qt-tr $T -dmg -fancy contrib/macdeploy/fancy.plist + python2.7 contrib/macdeploy/macdeployqtplus BitBean-Qt.app -add-qt-tr $T -dmg -fancy contrib/macdeploy/fancy.plist Build output expected: - Bitcoin-Qt.dmg + BitBean-Qt.dmg * upload builds to SourceForge * create SHA256SUMS for builds, and PGP-sign it -* update bitcoin.org version +* update BitBean.org version * update forum version * update wiki download links -* update wiki changelog: https://en.bitcoin.it/wiki/Changelog +* update wiki changelog: https://bitbean.org/wiki/Changelog * Commit your signature to gitian.sigs: pushd gitian.sigs @@ -112,31 +113,31 @@ * After 3 or more people have gitian-built, repackage gitian-signed zips: - * From a directory containing bitcoin source, gitian.sigs and gitian zips + * From a directory containing BitBean source, gitian.sigs and gitian zips export VERSION=0.5.1 - mkdir bitcoin-${VERSION}-linux-gitian - pushd bitcoin-${VERSION}-linux-gitian - unzip ../bitcoin-${VERSION}-linux-gitian.zip + mkdir BitBean-${VERSION}-linux-gitian + pushd BitBean-${VERSION}-linux-gitian + unzip ../BitBean-${VERSION}-linux-gitian.zip mkdir gitian - cp ../bitcoin/contrib/gitian-downloader/*.pgp ./gitian/ + cp ../BitBean/contrib/gitian-downloader/*.pgp ./gitian/ for signer in $(ls ../gitian.sigs/${VERSION}/); do - cp ../gitian.sigs/${VERSION}/${signer}/bitcoin-build.assert ./gitian/${signer}-build.assert - cp ../gitian.sigs/${VERSION}/${signer}/bitcoin-build.assert.sig ./gitian/${signer}-build.assert.sig + cp ../gitian.sigs/${VERSION}/${signer}/BitBean-build.assert ./gitian/${signer}-build.assert + cp ../gitian.sigs/${VERSION}/${signer}/BitBean-build.assert.sig ./gitian/${signer}-build.assert.sig done - zip -r bitcoin-${VERSION}-linux-gitian.zip * - cp bitcoin-${VERSION}-linux-gitian.zip ../ + zip -r BitBean-${VERSION}-linux-gitian.zip * + cp BitBean-${VERSION}-linux-gitian.zip ../ popd - mkdir bitcoin-${VERSION}-win32-gitian - pushd bitcoin-${VERSION}-win32-gitian - unzip ../bitcoin-${VERSION}-win32-gitian.zip + mkdir BitBean-${VERSION}-win32-gitian + pushd BitBean-${VERSION}-win32-gitian + unzip ../BitBean-${VERSION}-win32-gitian.zip mkdir gitian - cp ../bitcoin/contrib/gitian-downloader/*.pgp ./gitian/ + cp ../BitBean/contrib/gitian-downloader/*.pgp ./gitian/ for signer in $(ls ../gitian.sigs/${VERSION}-win32/); do - cp ../gitian.sigs/${VERSION}-win32/${signer}/bitcoin-build.assert ./gitian/${signer}-build.assert - cp ../gitian.sigs/${VERSION}-win32/${signer}/bitcoin-build.assert.sig ./gitian/${signer}-build.assert.sig + cp ../gitian.sigs/${VERSION}-win32/${signer}/BitBean-build.assert ./gitian/${signer}-build.assert + cp ../gitian.sigs/${VERSION}-win32/${signer}/BitBean-build.assert.sig ./gitian/${signer}-build.assert.sig done - zip -r bitcoin-${VERSION}-win32-gitian.zip * - cp bitcoin-${VERSION}-win32-gitian.zip ../ + zip -r BitBean-${VERSION}-win32-gitian.zip * + cp BitBean-${VERSION}-win32-gitian.zip ../ popd * Upload gitian zips to SourceForge diff --git a/src/Makefile b/src/Makefile index 44f5244..57ff5a3 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,9 +1,9 @@ ############################################################################# -# Makefile for building: testcoin-qt +# Makefile for building: Bitbean-qt # Generated by qmake (2.01a) (Qt 4.8.3) on: Thu Jun 12 12:44:14 2014 -# Project: testcoin-qt.pro +# Project: Bitbean-qt.pro # Template: app -# Command: /usr/bin/qmake -o Makefile testcoin-qt.pro +# Command: /usr/bin/qmake -o Makefile Bitbean-qt.pro ############################################################################# ####### Compiler, tools and options @@ -16,7 +16,7 @@ CXXFLAGS = -m64 -pipe -fstack-protector-all --param ssp-buffer-size=1 -O2 - INCPATH = -I/usr/share/qt4/mkspecs/linux-g++-64 -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 -Isrc -Isrc/json -Isrc/qt -Isrc/leveldb/include -Isrc/leveldb/helpers -Ibuild -Ibuild LINK = g++ LFLAGS = -m64 -fstack-protector-all --param ssp-buffer-size=1 -Wl,-O1 -LIBS = $(SUBLIBS) -L/usr/lib/x86_64-linux-gnu -lminiupnpc /home/matthew/Desktop/my_coin_test/src/leveldb/libleveldb.a /home/matthew/Desktop/my_coin_test/src/leveldb/libmemenv.a -lssl -lcrypto -ldb_cxx -lboost_system -lboost_filesystem -lboost_program_options -lboost_thread -lrt -ldl -lpthread -lQtGui -lQtCore +LIBS = $(SUBLIBS) -L/usr/lib/x86_64-linux-gnu -lminiupnpc /home/matthew/Desktop/my_bean_test/src/leveldb/libleveldb.a /home/matthew/Desktop/my_bean_test/src/leveldb/libmemenv.a -lssl -lcrypto -ldb_cxx -lboost_system -lboost_filesystem -lboost_program_options -lboost_thread -lrt -ldl -lpthread -lQtGui -lQtCore AR = ar cqs RANLIB = QMAKE = /usr/bin/qmake @@ -44,19 +44,19 @@ OBJECTS_DIR = build/ ####### Files SOURCES = src/txdb-leveldb.cpp \ - src/qt/bitcoin.cpp \ - src/qt/bitcoingui.cpp \ + src/qt/bitbean.cpp \ + src/qt/bitbeangui.cpp \ src/qt/transactiontablemodel.cpp \ src/qt/addresstablemodel.cpp \ src/qt/optionsdialog.cpp \ - src/qt/sendcoinsdialog.cpp \ - src/qt/coincontroldialog.cpp \ - src/qt/coincontroltreewidget.cpp \ + src/qt/sendbeansdialog.cpp \ + src/qt/beancontroldialog.cpp \ + src/qt/beancontroltreewidget.cpp \ src/qt/addressbookpage.cpp \ src/qt/signverifymessagedialog.cpp \ src/qt/aboutdialog.cpp \ src/qt/editaddressdialog.cpp \ - src/qt/bitcoinaddressvalidator.cpp \ + src/qt/bitbeanaddressvalidator.cpp \ src/alert.cpp \ src/version.cpp \ src/sync.cpp \ @@ -68,7 +68,6 @@ SOURCES = src/txdb-leveldb.cpp \ src/miner.cpp \ src/init.cpp \ src/net.cpp \ - src/irc.cpp \ src/checkpoints.cpp \ src/addrman.cpp \ src/db.cpp \ @@ -80,14 +79,14 @@ SOURCES = src/txdb-leveldb.cpp \ src/qt/monitoreddatamapper.cpp \ src/qt/transactiondesc.cpp \ src/qt/transactiondescdialog.cpp \ - src/qt/bitcoinstrings.cpp \ - src/qt/bitcoinamountfield.cpp \ + src/qt/bitbeanstrings.cpp \ + src/qt/bitbeanamountfield.cpp \ src/wallet.cpp \ src/keystore.cpp \ src/qt/transactionfilterproxy.cpp \ src/qt/transactionview.cpp \ src/qt/walletmodel.cpp \ - src/bitcoinrpc.cpp \ + src/bitbeanrpc.cpp \ src/rpcdump.cpp \ src/rpcnet.cpp \ src/rpcmining.cpp \ @@ -97,9 +96,9 @@ SOURCES = src/txdb-leveldb.cpp \ src/qt/overviewpage.cpp \ src/qt/csvmodelwriter.cpp \ src/crypter.cpp \ - src/qt/sendcoinsentry.cpp \ + src/qt/sendbeansentry.cpp \ src/qt/qvalidatedlineedit.cpp \ - src/qt/bitcoinunits.cpp \ + src/qt/bitbeanunits.cpp \ src/qt/qvaluecombobox.cpp \ src/qt/askpassphrasedialog.cpp \ src/protocol.cpp \ @@ -113,60 +112,50 @@ SOURCES = src/txdb-leveldb.cpp \ src/scrypt-x86_64.S \ src/scrypt.cpp \ src/pbkdf2.cpp \ - src/zerocoin/Accumulator.cpp \ - src/zerocoin/AccumulatorProofOfKnowledge.cpp \ - src/zerocoin/Coin.cpp \ - src/zerocoin/CoinSpend.cpp \ - src/zerocoin/Commitment.cpp \ - src/zerocoin/ParamGeneration.cpp \ - src/zerocoin/Params.cpp \ - src/zerocoin/SerialNumberSignatureOfKnowledge.cpp \ - src/zerocoin/SpendMetaData.cpp \ - src/zerocoin/ZeroTest.cpp build/moc_bitcoingui.cpp \ build/moc_transactiontablemodel.cpp \ build/moc_addresstablemodel.cpp \ build/moc_optionsdialog.cpp \ - build/moc_coincontroldialog.cpp \ - build/moc_coincontroltreewidget.cpp \ - build/moc_sendcoinsdialog.cpp \ + build/moc_beancontroldialog.cpp \ + build/moc_beancontroltreewidget.cpp \ + build/moc_sendbeansdialog.cpp \ build/moc_addressbookpage.cpp \ build/moc_signverifymessagedialog.cpp \ build/moc_aboutdialog.cpp \ build/moc_editaddressdialog.cpp \ - build/moc_bitcoinaddressvalidator.cpp \ + build/moc_bitbeanaddressvalidator.cpp \ build/moc_clientmodel.cpp \ build/moc_guiutil.cpp \ build/moc_optionsmodel.cpp \ build/moc_monitoreddatamapper.cpp \ build/moc_transactiondesc.cpp \ build/moc_transactiondescdialog.cpp \ - build/moc_bitcoinamountfield.cpp \ + build/moc_bitbeanamountfield.cpp \ build/moc_transactionfilterproxy.cpp \ build/moc_transactionview.cpp \ build/moc_walletmodel.cpp \ build/moc_overviewpage.cpp \ build/moc_csvmodelwriter.cpp \ - build/moc_sendcoinsentry.cpp \ + build/moc_sendbeansentry.cpp \ build/moc_qvalidatedlineedit.cpp \ build/moc_qvaluecombobox.cpp \ build/moc_askpassphrasedialog.cpp \ build/moc_notificator.cpp \ build/moc_rpcconsole.cpp \ - qrc_bitcoin.cpp + qrc_bitbean.cpp OBJECTS = build/txdb-leveldb.o \ - build/bitcoin.o \ - build/bitcoingui.o \ + build/bitbean.o \ + build/bitbeangui.o \ build/transactiontablemodel.o \ build/addresstablemodel.o \ build/optionsdialog.o \ - build/sendcoinsdialog.o \ - build/coincontroldialog.o \ - build/coincontroltreewidget.o \ + build/sendbeansdialog.o \ + build/beancontroldialog.o \ + build/beancontroltreewidget.o \ build/addressbookpage.o \ build/signverifymessagedialog.o \ build/aboutdialog.o \ build/editaddressdialog.o \ - build/bitcoinaddressvalidator.o \ + build/bitbeanaddressvalidator.o \ build/alert.o \ build/version.o \ build/sync.o \ @@ -178,7 +167,6 @@ OBJECTS = build/txdb-leveldb.o \ build/miner.o \ build/init.o \ build/net.o \ - build/irc.o \ build/checkpoints.o \ build/addrman.o \ build/db.o \ @@ -190,14 +178,14 @@ OBJECTS = build/txdb-leveldb.o \ build/monitoreddatamapper.o \ build/transactiondesc.o \ build/transactiondescdialog.o \ - build/bitcoinstrings.o \ - build/bitcoinamountfield.o \ + build/bitbeanstrings.o \ + build/bitbeanamountfield.o \ build/wallet.o \ build/keystore.o \ build/transactionfilterproxy.o \ build/transactionview.o \ build/walletmodel.o \ - build/bitcoinrpc.o \ + build/bitbeanrpc.o \ build/rpcdump.o \ build/rpcnet.o \ build/rpcmining.o \ @@ -207,9 +195,9 @@ OBJECTS = build/txdb-leveldb.o \ build/overviewpage.o \ build/csvmodelwriter.o \ build/crypter.o \ - build/sendcoinsentry.o \ + build/sendbeansentry.o \ build/qvalidatedlineedit.o \ - build/bitcoinunits.o \ + build/bitbeanunits.o \ build/qvaluecombobox.o \ build/askpassphrasedialog.o \ build/protocol.o \ @@ -232,38 +220,37 @@ OBJECTS = build/txdb-leveldb.o \ build/Params.o \ build/SerialNumberSignatureOfKnowledge.o \ build/SpendMetaData.o \ - build/ZeroTest.o \ - build/moc_bitcoingui.o \ + build/moc_bitbeangui.o \ build/moc_transactiontablemodel.o \ build/moc_addresstablemodel.o \ build/moc_optionsdialog.o \ - build/moc_coincontroldialog.o \ - build/moc_coincontroltreewidget.o \ - build/moc_sendcoinsdialog.o \ + build/moc_beancontroldialog.o \ + build/moc_beancontroltreewidget.o \ + build/moc_sendbeansdialog.o \ build/moc_addressbookpage.o \ build/moc_signverifymessagedialog.o \ build/moc_aboutdialog.o \ build/moc_editaddressdialog.o \ - build/moc_bitcoinaddressvalidator.o \ + build/moc_bitbeanaddressvalidator.o \ build/moc_clientmodel.o \ build/moc_guiutil.o \ build/moc_optionsmodel.o \ build/moc_monitoreddatamapper.o \ build/moc_transactiondesc.o \ build/moc_transactiondescdialog.o \ - build/moc_bitcoinamountfield.o \ + build/moc_bitbeanamountfield.o \ build/moc_transactionfilterproxy.o \ build/moc_transactionview.o \ build/moc_walletmodel.o \ build/moc_overviewpage.o \ build/moc_csvmodelwriter.o \ - build/moc_sendcoinsentry.o \ + build/moc_sendbeansentry.o \ build/moc_qvalidatedlineedit.o \ build/moc_qvaluecombobox.o \ build/moc_askpassphrasedialog.o \ build/moc_notificator.o \ build/moc_rpcconsole.o \ - build/qrc_bitcoin.o + build/qrc_bitbean.o DIST = /usr/share/qt4/mkspecs/common/unix.conf \ /usr/share/qt4/mkspecs/common/linux.conf \ /usr/share/qt4/mkspecs/common/gcc-base.conf \ @@ -287,10 +274,10 @@ DIST = /usr/share/qt4/mkspecs/common/unix.conf \ /usr/share/qt4/mkspecs/features/uic.prf \ /usr/share/qt4/mkspecs/features/yacc.prf \ /usr/share/qt4/mkspecs/features/lex.prf \ - testcoin-qt.pro -QMAKE_TARGET = testcoin-qt + testbean-qt.pro +QMAKE_TARGET = testbean-qt DESTDIR = -TARGET = testcoin-qt +TARGET = testbean-qt first: all ####### Implicit rules @@ -316,10 +303,10 @@ first: all all: Makefile $(TARGET) -$(TARGET): /home/matthew/Desktop/my_coin_test/src/leveldb/libleveldb.a /home/matthew/Desktop/my_coin_test/build/build.h build/ui_coincontroldialog.h build/ui_sendcoinsdialog.h build/ui_addressbookpage.h build/ui_signverifymessagedialog.h build/ui_aboutdialog.h build/ui_editaddressdialog.h build/ui_transactiondescdialog.h build/ui_overviewpage.h build/ui_sendcoinsentry.h build/ui_askpassphrasedialog.h build/ui_rpcconsole.h build/ui_optionsdialog.h $(OBJECTS) +$(TARGET): /home/matthew/Desktop/my_bean_test/src/leveldb/libleveldb.a /home/matthew/Desktop/my_bean_test/build/build.h build/ui_beancontroldialog.h build/ui_sendbeansdialog.h build/ui_addressbookpage.h build/ui_signverifymessagedialog.h build/ui_aboutdialog.h build/ui_editaddressdialog.h build/ui_transactiondescdialog.h build/ui_overviewpage.h build/ui_sendbeansentry.h build/ui_askpassphrasedialog.h build/ui_rpcconsole.h build/ui_optionsdialog.h $(OBJECTS) $(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS) -Makefile: testcoin-qt.pro /usr/share/qt4/mkspecs/linux-g++-64/qmake.conf /usr/share/qt4/mkspecs/common/unix.conf \ +Makefile: testbean-qt.pro /usr/share/qt4/mkspecs/linux-g++-64/qmake.conf /usr/share/qt4/mkspecs/common/unix.conf \ /usr/share/qt4/mkspecs/common/linux.conf \ /usr/share/qt4/mkspecs/common/gcc-base.conf \ /usr/share/qt4/mkspecs/common/gcc-base-unix.conf \ @@ -344,7 +331,7 @@ Makefile: testcoin-qt.pro /usr/share/qt4/mkspecs/linux-g++-64/qmake.conf /usr/s /usr/share/qt4/mkspecs/features/lex.prf \ /usr/lib/x86_64-linux-gnu/libQtGui.prl \ /usr/lib/x86_64-linux-gnu/libQtCore.prl - $(QMAKE) -o Makefile testcoin-qt.pro + $(QMAKE) -o Makefile testbean-qt.pro /usr/share/qt4/mkspecs/common/unix.conf: /usr/share/qt4/mkspecs/common/linux.conf: /usr/share/qt4/mkspecs/common/gcc-base.conf: @@ -371,16 +358,16 @@ Makefile: testcoin-qt.pro /usr/share/qt4/mkspecs/linux-g++-64/qmake.conf /usr/s /usr/lib/x86_64-linux-gnu/libQtGui.prl: /usr/lib/x86_64-linux-gnu/libQtCore.prl: qmake: FORCE - @$(QMAKE) -o Makefile testcoin-qt.pro + @$(QMAKE) -o Makefile testbean-qt.pro dist: - @$(CHK_DIR_EXISTS) build/testcoin-qt1.0.7 || $(MKDIR) build/testcoin-qt1.0.7 - $(COPY_FILE) --parents $(SOURCES) $(DIST) build/testcoin-qt1.0.7/ && $(COPY_FILE) --parents src/qt/locale/bitcoin_af_ZA.ts src/qt/locale/bitcoin_ar.ts src/qt/locale/bitcoin_be_BY.ts src/qt/locale/bitcoin_bg.ts src/qt/locale/bitcoin_bs.ts src/qt/locale/bitcoin_ca.ts src/qt/locale/bitcoin_ca@valencia.ts src/qt/locale/bitcoin_ca_ES.ts src/qt/locale/bitcoin_cs.ts src/qt/locale/bitcoin_cy.ts src/qt/locale/bitcoin_da.ts src/qt/locale/bitcoin_de.ts src/qt/locale/bitcoin_el_GR.ts src/qt/locale/bitcoin_en.ts src/qt/locale/bitcoin_eo.ts src/qt/locale/bitcoin_es.ts src/qt/locale/bitcoin_es_CL.ts src/qt/locale/bitcoin_es_DO.ts src/qt/locale/bitcoin_es_MX.ts src/qt/locale/bitcoin_es_UY.ts src/qt/locale/bitcoin_et.ts src/qt/locale/bitcoin_eu_ES.ts src/qt/locale/bitcoin_fa.ts src/qt/locale/bitcoin_fa_IR.ts src/qt/locale/bitcoin_fi.ts src/qt/locale/bitcoin_fr.ts src/qt/locale/bitcoin_fr_CA.ts src/qt/locale/bitcoin_gl.ts src/qt/locale/bitcoin_he.ts src/qt/locale/bitcoin_hi_IN.ts src/qt/locale/bitcoin_hr.ts src/qt/locale/bitcoin_hu.ts src/qt/locale/bitcoin_id_ID.ts src/qt/locale/bitcoin_it.ts src/qt/locale/bitcoin_ja.ts src/qt/locale/bitcoin_ka.ts src/qt/locale/bitcoin_kk_KZ.ts src/qt/locale/bitcoin_ko_KR.ts src/qt/locale/bitcoin_ky.ts src/qt/locale/bitcoin_la.ts src/qt/locale/bitcoin_lt.ts src/qt/locale/bitcoin_lv_LV.ts src/qt/locale/bitcoin_ms_MY.ts src/qt/locale/bitcoin_nb.ts src/qt/locale/bitcoin_nl.ts src/qt/locale/bitcoin_pam.ts src/qt/locale/bitcoin_pl.ts src/qt/locale/bitcoin_pt_BR.ts src/qt/locale/bitcoin_pt_PT.ts src/qt/locale/bitcoin_ro_RO.ts src/qt/locale/bitcoin_ru.ts src/qt/locale/bitcoin_sah.ts src/qt/locale/bitcoin_sk.ts src/qt/locale/bitcoin_sl_SI.ts src/qt/locale/bitcoin_sq.ts src/qt/locale/bitcoin_sr.ts src/qt/locale/bitcoin_sv.ts src/qt/locale/bitcoin_th_TH.ts src/qt/locale/bitcoin_tr.ts src/qt/locale/bitcoin_uk.ts src/qt/locale/bitcoin_ur_PK.ts src/qt/locale/bitcoin_vi.ts src/qt/locale/bitcoin_vi_VN.ts src/qt/locale/bitcoin_zh_CN.ts src/qt/locale/bitcoin_zh_TW.ts build/testcoin-qt1.0.7/ && $(COPY_FILE) --parents src/qt/bitcoingui.h src/qt/transactiontablemodel.h src/qt/addresstablemodel.h src/qt/optionsdialog.h src/qt/coincontroldialog.h src/qt/coincontroltreewidget.h src/qt/sendcoinsdialog.h src/qt/addressbookpage.h src/qt/signverifymessagedialog.h src/qt/aboutdialog.h src/qt/editaddressdialog.h src/qt/bitcoinaddressvalidator.h src/alert.h src/addrman.h src/base58.h src/bignum.h src/checkpoints.h src/compat.h src/coincontrol.h src/sync.h src/util.h src/uint256.h src/kernel.h src/scrypt.h src/pbkdf2.h src/zerocoin/Accumulator.h src/zerocoin/AccumulatorProofOfKnowledge.h src/zerocoin/Coin.h src/zerocoin/CoinSpend.h src/zerocoin/Commitment.h src/zerocoin/ParamGeneration.h src/zerocoin/Params.h src/zerocoin/SerialNumberSignatureOfKnowledge.h src/zerocoin/SpendMetaData.h src/zerocoin/ZeroTest.h src/zerocoin/Zerocoin.h src/serialize.h src/strlcpy.h src/main.h src/miner.h src/net.h src/key.h src/db.h src/txdb.h src/walletdb.h src/script.h src/init.h src/irc.h src/mruset.h src/json/json_spirit_writer_template.h src/json/json_spirit_writer.h src/json/json_spirit_value.h src/json/json_spirit_utils.h src/json/json_spirit_stream_reader.h src/json/json_spirit_reader_template.h src/json/json_spirit_reader.h src/json/json_spirit_error_position.h src/json/json_spirit.h src/qt/clientmodel.h src/qt/guiutil.h src/qt/transactionrecord.h src/qt/guiconstants.h src/qt/optionsmodel.h src/qt/monitoreddatamapper.h src/qt/transactiondesc.h src/qt/transactiondescdialog.h src/qt/bitcoinamountfield.h src/wallet.h src/keystore.h src/qt/transactionfilterproxy.h src/qt/transactionview.h src/qt/walletmodel.h src/bitcoinrpc.h src/qt/overviewpage.h src/qt/csvmodelwriter.h src/crypter.h src/qt/sendcoinsentry.h src/qt/qvalidatedlineedit.h src/qt/bitcoinunits.h src/qt/qvaluecombobox.h src/qt/askpassphrasedialog.h src/protocol.h src/qt/notificator.h src/qt/qtipcserver.h src/allocators.h src/ui_interface.h src/qt/rpcconsole.h src/version.h src/netbase.h src/clientversion.h build/testcoin-qt1.0.7/ && $(COPY_FILE) --parents src/qt/bitcoin.qrc build/testcoin-qt1.0.7/ && $(COPY_FILE) --parents src/txdb-leveldb.cpp src/qt/bitcoin.cpp src/qt/bitcoingui.cpp src/qt/transactiontablemodel.cpp src/qt/addresstablemodel.cpp src/qt/optionsdialog.cpp src/qt/sendcoinsdialog.cpp src/qt/coincontroldialog.cpp src/qt/coincontroltreewidget.cpp src/qt/addressbookpage.cpp src/qt/signverifymessagedialog.cpp src/qt/aboutdialog.cpp src/qt/editaddressdialog.cpp src/qt/bitcoinaddressvalidator.cpp src/alert.cpp src/version.cpp src/sync.cpp src/util.cpp src/netbase.cpp src/key.cpp src/script.cpp src/main.cpp src/miner.cpp src/init.cpp src/net.cpp src/irc.cpp src/checkpoints.cpp src/addrman.cpp src/db.cpp src/walletdb.cpp src/qt/clientmodel.cpp src/qt/guiutil.cpp src/qt/transactionrecord.cpp src/qt/optionsmodel.cpp src/qt/monitoreddatamapper.cpp src/qt/transactiondesc.cpp src/qt/transactiondescdialog.cpp src/qt/bitcoinstrings.cpp src/qt/bitcoinamountfield.cpp src/wallet.cpp src/keystore.cpp src/qt/transactionfilterproxy.cpp src/qt/transactionview.cpp src/qt/walletmodel.cpp src/bitcoinrpc.cpp src/rpcdump.cpp src/rpcnet.cpp src/rpcmining.cpp src/rpcwallet.cpp src/rpcblockchain.cpp src/rpcrawtransaction.cpp src/qt/overviewpage.cpp src/qt/csvmodelwriter.cpp src/crypter.cpp src/qt/sendcoinsentry.cpp src/qt/qvalidatedlineedit.cpp src/qt/bitcoinunits.cpp src/qt/qvaluecombobox.cpp src/qt/askpassphrasedialog.cpp src/protocol.cpp src/qt/notificator.cpp src/qt/qtipcserver.cpp src/qt/rpcconsole.cpp src/noui.cpp src/kernel.cpp src/scrypt-arm.S src/scrypt-x86.S src/scrypt-x86_64.S src/scrypt.cpp src/pbkdf2.cpp src/zerocoin/Accumulator.cpp src/zerocoin/AccumulatorProofOfKnowledge.cpp src/zerocoin/Coin.cpp src/zerocoin/CoinSpend.cpp src/zerocoin/Commitment.cpp src/zerocoin/ParamGeneration.cpp src/zerocoin/Params.cpp src/zerocoin/SerialNumberSignatureOfKnowledge.cpp src/zerocoin/SpendMetaData.cpp src/zerocoin/ZeroTest.cpp build/testcoin-qt1.0.7/ && $(COPY_FILE) --parents src/qt/forms/coincontroldialog.ui src/qt/forms/sendcoinsdialog.ui src/qt/forms/addressbookpage.ui src/qt/forms/signverifymessagedialog.ui src/qt/forms/aboutdialog.ui src/qt/forms/editaddressdialog.ui src/qt/forms/transactiondescdialog.ui src/qt/forms/overviewpage.ui src/qt/forms/sendcoinsentry.ui src/qt/forms/askpassphrasedialog.ui src/qt/forms/rpcconsole.ui src/qt/forms/optionsdialog.ui build/testcoin-qt1.0.7/ && $(COPY_FILE) --parents src/qt/locale/bitcoin_af_ZA.ts src/qt/locale/bitcoin_ar.ts src/qt/locale/bitcoin_be_BY.ts src/qt/locale/bitcoin_bg.ts src/qt/locale/bitcoin_bs.ts src/qt/locale/bitcoin_ca.ts src/qt/locale/bitcoin_ca@valencia.ts src/qt/locale/bitcoin_ca_ES.ts src/qt/locale/bitcoin_cs.ts src/qt/locale/bitcoin_cy.ts src/qt/locale/bitcoin_da.ts src/qt/locale/bitcoin_de.ts src/qt/locale/bitcoin_el_GR.ts src/qt/locale/bitcoin_en.ts src/qt/locale/bitcoin_eo.ts src/qt/locale/bitcoin_es.ts src/qt/locale/bitcoin_es_CL.ts src/qt/locale/bitcoin_es_DO.ts src/qt/locale/bitcoin_es_MX.ts src/qt/locale/bitcoin_es_UY.ts src/qt/locale/bitcoin_et.ts src/qt/locale/bitcoin_eu_ES.ts src/qt/locale/bitcoin_fa.ts src/qt/locale/bitcoin_fa_IR.ts src/qt/locale/bitcoin_fi.ts src/qt/locale/bitcoin_fr.ts src/qt/locale/bitcoin_fr_CA.ts src/qt/locale/bitcoin_gl.ts src/qt/locale/bitcoin_he.ts src/qt/locale/bitcoin_hi_IN.ts src/qt/locale/bitcoin_hr.ts src/qt/locale/bitcoin_hu.ts src/qt/locale/bitcoin_id_ID.ts src/qt/locale/bitcoin_it.ts src/qt/locale/bitcoin_ja.ts src/qt/locale/bitcoin_ka.ts src/qt/locale/bitcoin_kk_KZ.ts src/qt/locale/bitcoin_ko_KR.ts src/qt/locale/bitcoin_ky.ts src/qt/locale/bitcoin_la.ts src/qt/locale/bitcoin_lt.ts src/qt/locale/bitcoin_lv_LV.ts src/qt/locale/bitcoin_ms_MY.ts src/qt/locale/bitcoin_nb.ts src/qt/locale/bitcoin_nl.ts src/qt/locale/bitcoin_pam.ts src/qt/locale/bitcoin_pl.ts src/qt/locale/bitcoin_pt_BR.ts src/qt/locale/bitcoin_pt_PT.ts src/qt/locale/bitcoin_ro_RO.ts src/qt/locale/bitcoin_ru.ts src/qt/locale/bitcoin_sah.ts src/qt/locale/bitcoin_sk.ts src/qt/locale/bitcoin_sl_SI.ts src/qt/locale/bitcoin_sq.ts src/qt/locale/bitcoin_sr.ts src/qt/locale/bitcoin_sv.ts src/qt/locale/bitcoin_th_TH.ts src/qt/locale/bitcoin_tr.ts src/qt/locale/bitcoin_uk.ts src/qt/locale/bitcoin_ur_PK.ts src/qt/locale/bitcoin_vi.ts src/qt/locale/bitcoin_vi_VN.ts src/qt/locale/bitcoin_zh_CN.ts src/qt/locale/bitcoin_zh_TW.ts build/testcoin-qt1.0.7/ && (cd `dirname build/testcoin-qt1.0.7` && $(TAR) testcoin-qt1.0.7.tar testcoin-qt1.0.7 && $(COMPRESS) testcoin-qt1.0.7.tar) && $(MOVE) `dirname build/testcoin-qt1.0.7`/testcoin-qt1.0.7.tar.gz . && $(DEL_FILE) -r build/testcoin-qt1.0.7 + @$(CHK_DIR_EXISTS) build/testbean-qt1.0.7 || $(MKDIR) build/testbean-qt1.0.7 + $(COPY_FILE) --parents $(SOURCES) $(DIST) build/testbean-qt1.0.7/ && $(COPY_FILE) --parents src/qt/locale/bitbean_af_ZA.ts src/qt/locale/bitbean_ar.ts src/qt/locale/bitbean_be_BY.ts src/qt/locale/bitbean_bg.ts src/qt/locale/bitbean_bs.ts src/qt/locale/bitbean_ca.ts src/qt/locale/bitbean_ca@valencia.ts src/qt/locale/bitbean_ca_ES.ts src/qt/locale/bitbean_cs.ts src/qt/locale/bitbean_cy.ts src/qt/locale/bitbean_da.ts src/qt/locale/bitbean_de.ts src/qt/locale/bitbean_el_GR.ts src/qt/locale/bitbean_en.ts src/qt/locale/bitbean_eo.ts src/qt/locale/bitbean_es.ts src/qt/locale/bitbean_es_CL.ts src/qt/locale/bitbean_es_DO.ts src/qt/locale/bitbean_es_MX.ts src/qt/locale/bitbean_es_UY.ts src/qt/locale/bitbean_et.ts src/qt/locale/bitbean_eu_ES.ts src/qt/locale/bitbean_fa.ts src/qt/locale/bitbean_fa_IR.ts src/qt/locale/bitbean_fi.ts src/qt/locale/bitbean_fr.ts src/qt/locale/bitbean_fr_CA.ts src/qt/locale/bitbean_gl.ts src/qt/locale/bitbean_he.ts src/qt/locale/bitbean_hi_IN.ts src/qt/locale/bitbean_hr.ts src/qt/locale/bitbean_hu.ts src/qt/locale/bitbean_id_ID.ts src/qt/locale/bitbean_it.ts src/qt/locale/bitbean_ja.ts src/qt/locale/bitbean_ka.ts src/qt/locale/bitbean_kk_KZ.ts src/qt/locale/bitbean_ko_KR.ts src/qt/locale/bitbean_ky.ts src/qt/locale/bitbean_la.ts src/qt/locale/bitbean_lt.ts src/qt/locale/bitbean_lv_LV.ts src/qt/locale/bitbean_ms_MY.ts src/qt/locale/bitbean_nb.ts src/qt/locale/bitbean_nl.ts src/qt/locale/bitbean_pam.ts src/qt/locale/bitbean_pl.ts src/qt/locale/bitbean_pt_BR.ts src/qt/locale/bitbean_pt_PT.ts src/qt/locale/bitbean_ro_RO.ts src/qt/locale/bitbean_ru.ts src/qt/locale/bitbean_sah.ts src/qt/locale/bitbean_sk.ts src/qt/locale/bitbean_sl_SI.ts src/qt/locale/bitbean_sq.ts src/qt/locale/bitbean_sr.ts src/qt/locale/bitbean_sv.ts src/qt/locale/bitbean_th_TH.ts src/qt/locale/bitbean_tr.ts src/qt/locale/bitbean_uk.ts src/qt/locale/bitbean_ur_PK.ts src/qt/locale/bitbean_vi.ts src/qt/locale/bitbean_vi_VN.ts src/qt/locale/bitbean_zh_CN.ts src/qt/locale/bitbean_zh_TW.ts build/testbean-qt1.0.7/ && $(COPY_FILE) --parents src/qt/bitbeangui.h src/qt/transactiontablemodel.h src/qt/addresstablemodel.h src/qt/optionsdialog.h src/qt/beancontroldialog.h src/qt/beancontroltreewidget.h src/qt/sendbeansdialog.h src/qt/addressbookpage.h src/qt/signverifymessagedialog.h src/qt/aboutdialog.h src/qt/editaddressdialog.h src/qt/bitbeanaddressvalidator.h src/alert.h src/addrman.h src/base58.h src/bignum.h src/checkpoints.h src/compat.h src/beancontrol.h src/sync.h src/util.h src/uint256.h src/kernel.h src/scrypt.h src/pbkdf2.h src/zerobean/Accumulator.h src/zerobean/AccumulatorProofOfKnowledge.h src/zerobean/Coin.h src/zerobean/CoinSpend.h src/zerobean/Commitment.h src/zerobean/ParamGeneration.h src/zerobean/Params.h src/zerobean/SerialNumberSignatureOfKnowledge.h src/zerobean/SpendMetaData.h src/zerobean/ZeroTest.h src/zerobean/Zerobean.h src/serialize.h src/strlcpy.h src/main.h src/miner.h src/net.h src/key.h src/db.h src/txdb.h src/walletdb.h src/script.h src/init.h src/irc.h src/mruset.h src/json/json_spirit_writer_template.h src/json/json_spirit_writer.h src/json/json_spirit_value.h src/json/json_spirit_utils.h src/json/json_spirit_stream_reader.h src/json/json_spirit_reader_template.h src/json/json_spirit_reader.h src/json/json_spirit_error_position.h src/json/json_spirit.h src/qt/clientmodel.h src/qt/guiutil.h src/qt/transactionrecord.h src/qt/guiconstants.h src/qt/optionsmodel.h src/qt/monitoreddatamapper.h src/qt/transactiondesc.h src/qt/transactiondescdialog.h src/qt/bitbeanamountfield.h src/wallet.h src/keystore.h src/qt/transactionfilterproxy.h src/qt/transactionview.h src/qt/walletmodel.h src/bitbeanrpc.h src/qt/overviewpage.h src/qt/csvmodelwriter.h src/crypter.h src/qt/sendbeansentry.h src/qt/qvalidatedlineedit.h src/qt/bitbeanunits.h src/qt/qvaluecombobox.h src/qt/askpassphrasedialog.h src/protocol.h src/qt/notificator.h src/qt/qtipcserver.h src/allocators.h src/ui_interface.h src/qt/rpcconsole.h src/version.h src/netbase.h src/clientversion.h build/testbean-qt1.0.7/ && $(COPY_FILE) --parents src/qt/bitbean.qrc build/testbean-qt1.0.7/ && $(COPY_FILE) --parents src/txdb-leveldb.cpp src/qt/bitbean.cpp src/qt/bitbeangui.cpp src/qt/transactiontablemodel.cpp src/qt/addresstablemodel.cpp src/qt/optionsdialog.cpp src/qt/sendbeansdialog.cpp src/qt/beancontroldialog.cpp src/qt/beancontroltreewidget.cpp src/qt/addressbookpage.cpp src/qt/signverifymessagedialog.cpp src/qt/aboutdialog.cpp src/qt/editaddressdialog.cpp src/qt/bitbeanaddressvalidator.cpp src/alert.cpp src/version.cpp src/sync.cpp src/util.cpp src/netbase.cpp src/key.cpp src/script.cpp src/main.cpp src/miner.cpp src/init.cpp src/net.cpp src/irc.cpp src/checkpoints.cpp src/addrman.cpp src/db.cpp src/walletdb.cpp src/qt/clientmodel.cpp src/qt/guiutil.cpp src/qt/transactionrecord.cpp src/qt/optionsmodel.cpp src/qt/monitoreddatamapper.cpp src/qt/transactiondesc.cpp src/qt/transactiondescdialog.cpp src/qt/bitbeanstrings.cpp src/qt/bitbeanamountfield.cpp src/wallet.cpp src/keystore.cpp src/qt/transactionfilterproxy.cpp src/qt/transactionview.cpp src/qt/walletmodel.cpp src/bitbeanrpc.cpp src/rpcdump.cpp src/rpcnet.cpp src/rpcmining.cpp src/rpcwallet.cpp src/rpcblockchain.cpp src/rpcrawtransaction.cpp src/qt/overviewpage.cpp src/qt/csvmodelwriter.cpp src/crypter.cpp src/qt/sendbeansentry.cpp src/qt/qvalidatedlineedit.cpp src/qt/bitbeanunits.cpp src/qt/qvaluecombobox.cpp src/qt/askpassphrasedialog.cpp src/protocol.cpp src/qt/notificator.cpp src/qt/qtipcserver.cpp src/qt/rpcconsole.cpp src/noui.cpp src/kernel.cpp src/scrypt-arm.S src/scrypt-x86.S src/scrypt-x86_64.S src/scrypt.cpp src/pbkdf2.cpp src/zerobean/Accumulator.cpp src/zerobean/AccumulatorProofOfKnowledge.cpp src/zerobean/Coin.cpp src/zerobean/CoinSpend.cpp src/zerobean/Commitment.cpp src/zerobean/ParamGeneration.cpp src/zerobean/Params.cpp src/zerobean/SerialNumberSignatureOfKnowledge.cpp src/zerobean/SpendMetaData.cpp src/zerobean/ZeroTest.cpp build/testbean-qt1.0.7/ && $(COPY_FILE) --parents src/qt/forms/beancontroldialog.ui src/qt/forms/sendbeansdialog.ui src/qt/forms/addressbookpage.ui src/qt/forms/signverifymessagedialog.ui src/qt/forms/aboutdialog.ui src/qt/forms/editaddressdialog.ui src/qt/forms/transactiondescdialog.ui src/qt/forms/overviewpage.ui src/qt/forms/sendbeansentry.ui src/qt/forms/askpassphrasedialog.ui src/qt/forms/rpcconsole.ui src/qt/forms/optionsdialog.ui build/testbean-qt1.0.7/ && $(COPY_FILE) --parents src/qt/locale/bitbean_af_ZA.ts src/qt/locale/bitbean_ar.ts src/qt/locale/bitbean_be_BY.ts src/qt/locale/bitbean_bg.ts src/qt/locale/bitbean_bs.ts src/qt/locale/bitbean_ca.ts src/qt/locale/bitbean_ca@valencia.ts src/qt/locale/bitbean_ca_ES.ts src/qt/locale/bitbean_cs.ts src/qt/locale/bitbean_cy.ts src/qt/locale/bitbean_da.ts src/qt/locale/bitbean_de.ts src/qt/locale/bitbean_el_GR.ts src/qt/locale/bitbean_en.ts src/qt/locale/bitbean_eo.ts src/qt/locale/bitbean_es.ts src/qt/locale/bitbean_es_CL.ts src/qt/locale/bitbean_es_DO.ts src/qt/locale/bitbean_es_MX.ts src/qt/locale/bitbean_es_UY.ts src/qt/locale/bitbean_et.ts src/qt/locale/bitbean_eu_ES.ts src/qt/locale/bitbean_fa.ts src/qt/locale/bitbean_fa_IR.ts src/qt/locale/bitbean_fi.ts src/qt/locale/bitbean_fr.ts src/qt/locale/bitbean_fr_CA.ts src/qt/locale/bitbean_gl.ts src/qt/locale/bitbean_he.ts src/qt/locale/bitbean_hi_IN.ts src/qt/locale/bitbean_hr.ts src/qt/locale/bitbean_hu.ts src/qt/locale/bitbean_id_ID.ts src/qt/locale/bitbean_it.ts src/qt/locale/bitbean_ja.ts src/qt/locale/bitbean_ka.ts src/qt/locale/bitbean_kk_KZ.ts src/qt/locale/bitbean_ko_KR.ts src/qt/locale/bitbean_ky.ts src/qt/locale/bitbean_la.ts src/qt/locale/bitbean_lt.ts src/qt/locale/bitbean_lv_LV.ts src/qt/locale/bitbean_ms_MY.ts src/qt/locale/bitbean_nb.ts src/qt/locale/bitbean_nl.ts src/qt/locale/bitbean_pam.ts src/qt/locale/bitbean_pl.ts src/qt/locale/bitbean_pt_BR.ts src/qt/locale/bitbean_pt_PT.ts src/qt/locale/bitbean_ro_RO.ts src/qt/locale/bitbean_ru.ts src/qt/locale/bitbean_sah.ts src/qt/locale/bitbean_sk.ts src/qt/locale/bitbean_sl_SI.ts src/qt/locale/bitbean_sq.ts src/qt/locale/bitbean_sr.ts src/qt/locale/bitbean_sv.ts src/qt/locale/bitbean_th_TH.ts src/qt/locale/bitbean_tr.ts src/qt/locale/bitbean_uk.ts src/qt/locale/bitbean_ur_PK.ts src/qt/locale/bitbean_vi.ts src/qt/locale/bitbean_vi_VN.ts src/qt/locale/bitbean_zh_CN.ts src/qt/locale/bitbean_zh_TW.ts build/testbean-qt1.0.7/ && (cd `dirname build/testbean-qt1.0.7` && $(TAR) testbean-qt1.0.7.tar testbean-qt1.0.7 && $(COMPRESS) testbean-qt1.0.7.tar) && $(MOVE) `dirname build/testbean-qt1.0.7`/testbean-qt1.0.7.tar.gz . && $(DEL_FILE) -r build/testbean-qt1.0.7 clean:compiler_clean -$(DEL_FILE) $(OBJECTS) - -$(DEL_FILE) /home/matthew/Desktop/my_coin_test/src/leveldb/libleveldb.a; cd /home/matthew/Desktop/my_coin_test/src/leveldb ; $(MAKE) clean + -$(DEL_FILE) /home/matthew/Desktop/my_bean_test/src/leveldb/libleveldb.a; cd /home/matthew/Desktop/my_bean_test/src/leveldb ; $(MAKE) clean -$(DEL_FILE) *~ core *.core @@ -391,11 +378,11 @@ distclean: clean -$(DEL_FILE) Makefile -/home/matthew/Desktop/my_coin_test/src/leveldb/libleveldb.a: FORCE - cd /home/matthew/Desktop/my_coin_test/src/leveldb && CC=gcc CXX=g++ $(MAKE) OPT="-m64 -pipe -fstack-protector-all --param ssp-buffer-size=1 -O2" libleveldb.a libmemenv.a +/home/matthew/Desktop/my_bean_test/src/leveldb/libleveldb.a: FORCE + cd /home/matthew/Desktop/my_bean_test/src/leveldb && CC=gcc CXX=g++ $(MAKE) OPT="-m64 -pipe -fstack-protector-all --param ssp-buffer-size=1 -O2" libleveldb.a libmemenv.a -/home/matthew/Desktop/my_coin_test/build/build.h: FORCE - cd /home/matthew/Desktop/my_coin_test; /bin/sh share/genbuild.sh /home/matthew/Desktop/my_coin_test/build/build.h +/home/matthew/Desktop/my_bean_test/build/build.h: FORCE + cd /home/matthew/Desktop/my_bean_test; /bin/sh share/genbuild.sh /home/matthew/Desktop/my_bean_test/build/build.h check: first @@ -403,209 +390,209 @@ mocclean: compiler_moc_header_clean compiler_moc_source_clean mocables: compiler_moc_header_make_all compiler_moc_source_make_all -compiler_TSQM_make_all: src/qt/locale/bitcoin_af_ZA.qm src/qt/locale/bitcoin_ar.qm src/qt/locale/bitcoin_be_BY.qm src/qt/locale/bitcoin_bg.qm src/qt/locale/bitcoin_bs.qm src/qt/locale/bitcoin_ca.qm src/qt/locale/bitcoin_ca@valencia.qm src/qt/locale/bitcoin_ca_ES.qm src/qt/locale/bitcoin_cs.qm src/qt/locale/bitcoin_cy.qm src/qt/locale/bitcoin_da.qm src/qt/locale/bitcoin_de.qm src/qt/locale/bitcoin_el_GR.qm src/qt/locale/bitcoin_en.qm src/qt/locale/bitcoin_eo.qm src/qt/locale/bitcoin_es.qm src/qt/locale/bitcoin_es_CL.qm src/qt/locale/bitcoin_es_DO.qm src/qt/locale/bitcoin_es_MX.qm src/qt/locale/bitcoin_es_UY.qm src/qt/locale/bitcoin_et.qm src/qt/locale/bitcoin_eu_ES.qm src/qt/locale/bitcoin_fa.qm src/qt/locale/bitcoin_fa_IR.qm src/qt/locale/bitcoin_fi.qm src/qt/locale/bitcoin_fr.qm src/qt/locale/bitcoin_fr_CA.qm src/qt/locale/bitcoin_gl.qm src/qt/locale/bitcoin_he.qm src/qt/locale/bitcoin_hi_IN.qm src/qt/locale/bitcoin_hr.qm src/qt/locale/bitcoin_hu.qm src/qt/locale/bitcoin_id_ID.qm src/qt/locale/bitcoin_it.qm src/qt/locale/bitcoin_ja.qm src/qt/locale/bitcoin_ka.qm src/qt/locale/bitcoin_kk_KZ.qm src/qt/locale/bitcoin_ko_KR.qm src/qt/locale/bitcoin_ky.qm src/qt/locale/bitcoin_la.qm src/qt/locale/bitcoin_lt.qm src/qt/locale/bitcoin_lv_LV.qm src/qt/locale/bitcoin_ms_MY.qm src/qt/locale/bitcoin_nb.qm src/qt/locale/bitcoin_nl.qm src/qt/locale/bitcoin_pam.qm src/qt/locale/bitcoin_pl.qm src/qt/locale/bitcoin_pt_BR.qm src/qt/locale/bitcoin_pt_PT.qm src/qt/locale/bitcoin_ro_RO.qm src/qt/locale/bitcoin_ru.qm src/qt/locale/bitcoin_sah.qm src/qt/locale/bitcoin_sk.qm src/qt/locale/bitcoin_sl_SI.qm src/qt/locale/bitcoin_sq.qm src/qt/locale/bitcoin_sr.qm src/qt/locale/bitcoin_sv.qm src/qt/locale/bitcoin_th_TH.qm src/qt/locale/bitcoin_tr.qm src/qt/locale/bitcoin_uk.qm src/qt/locale/bitcoin_ur_PK.qm src/qt/locale/bitcoin_vi.qm src/qt/locale/bitcoin_vi_VN.qm src/qt/locale/bitcoin_zh_CN.qm src/qt/locale/bitcoin_zh_TW.qm +compiler_TSQM_make_all: src/qt/locale/bitbean_af_ZA.qm src/qt/locale/bitbean_ar.qm src/qt/locale/bitbean_be_BY.qm src/qt/locale/bitbean_bg.qm src/qt/locale/bitbean_bs.qm src/qt/locale/bitbean_ca.qm src/qt/locale/bitbean_ca@valencia.qm src/qt/locale/bitbean_ca_ES.qm src/qt/locale/bitbean_cs.qm src/qt/locale/bitbean_cy.qm src/qt/locale/bitbean_da.qm src/qt/locale/bitbean_de.qm src/qt/locale/bitbean_el_GR.qm src/qt/locale/bitbean_en.qm src/qt/locale/bitbean_eo.qm src/qt/locale/bitbean_es.qm src/qt/locale/bitbean_es_CL.qm src/qt/locale/bitbean_es_DO.qm src/qt/locale/bitbean_es_MX.qm src/qt/locale/bitbean_es_UY.qm src/qt/locale/bitbean_et.qm src/qt/locale/bitbean_eu_ES.qm src/qt/locale/bitbean_fa.qm src/qt/locale/bitbean_fa_IR.qm src/qt/locale/bitbean_fi.qm src/qt/locale/bitbean_fr.qm src/qt/locale/bitbean_fr_CA.qm src/qt/locale/bitbean_gl.qm src/qt/locale/bitbean_he.qm src/qt/locale/bitbean_hi_IN.qm src/qt/locale/bitbean_hr.qm src/qt/locale/bitbean_hu.qm src/qt/locale/bitbean_id_ID.qm src/qt/locale/bitbean_it.qm src/qt/locale/bitbean_ja.qm src/qt/locale/bitbean_ka.qm src/qt/locale/bitbean_kk_KZ.qm src/qt/locale/bitbean_ko_KR.qm src/qt/locale/bitbean_ky.qm src/qt/locale/bitbean_la.qm src/qt/locale/bitbean_lt.qm src/qt/locale/bitbean_lv_LV.qm src/qt/locale/bitbean_ms_MY.qm src/qt/locale/bitbean_nb.qm src/qt/locale/bitbean_nl.qm src/qt/locale/bitbean_pam.qm src/qt/locale/bitbean_pl.qm src/qt/locale/bitbean_pt_BR.qm src/qt/locale/bitbean_pt_PT.qm src/qt/locale/bitbean_ro_RO.qm src/qt/locale/bitbean_ru.qm src/qt/locale/bitbean_sah.qm src/qt/locale/bitbean_sk.qm src/qt/locale/bitbean_sl_SI.qm src/qt/locale/bitbean_sq.qm src/qt/locale/bitbean_sr.qm src/qt/locale/bitbean_sv.qm src/qt/locale/bitbean_th_TH.qm src/qt/locale/bitbean_tr.qm src/qt/locale/bitbean_uk.qm src/qt/locale/bitbean_ur_PK.qm src/qt/locale/bitbean_vi.qm src/qt/locale/bitbean_vi_VN.qm src/qt/locale/bitbean_zh_CN.qm src/qt/locale/bitbean_zh_TW.qm compiler_TSQM_clean: - -$(DEL_FILE) src/qt/locale/bitcoin_af_ZA.qm src/qt/locale/bitcoin_ar.qm src/qt/locale/bitcoin_be_BY.qm src/qt/locale/bitcoin_bg.qm src/qt/locale/bitcoin_bs.qm src/qt/locale/bitcoin_ca.qm src/qt/locale/bitcoin_ca@valencia.qm src/qt/locale/bitcoin_ca_ES.qm src/qt/locale/bitcoin_cs.qm src/qt/locale/bitcoin_cy.qm src/qt/locale/bitcoin_da.qm src/qt/locale/bitcoin_de.qm src/qt/locale/bitcoin_el_GR.qm src/qt/locale/bitcoin_en.qm src/qt/locale/bitcoin_eo.qm src/qt/locale/bitcoin_es.qm src/qt/locale/bitcoin_es_CL.qm src/qt/locale/bitcoin_es_DO.qm src/qt/locale/bitcoin_es_MX.qm src/qt/locale/bitcoin_es_UY.qm src/qt/locale/bitcoin_et.qm src/qt/locale/bitcoin_eu_ES.qm src/qt/locale/bitcoin_fa.qm src/qt/locale/bitcoin_fa_IR.qm src/qt/locale/bitcoin_fi.qm src/qt/locale/bitcoin_fr.qm src/qt/locale/bitcoin_fr_CA.qm src/qt/locale/bitcoin_gl.qm src/qt/locale/bitcoin_he.qm src/qt/locale/bitcoin_hi_IN.qm src/qt/locale/bitcoin_hr.qm src/qt/locale/bitcoin_hu.qm src/qt/locale/bitcoin_id_ID.qm src/qt/locale/bitcoin_it.qm src/qt/locale/bitcoin_ja.qm src/qt/locale/bitcoin_ka.qm src/qt/locale/bitcoin_kk_KZ.qm src/qt/locale/bitcoin_ko_KR.qm src/qt/locale/bitcoin_ky.qm src/qt/locale/bitcoin_la.qm src/qt/locale/bitcoin_lt.qm src/qt/locale/bitcoin_lv_LV.qm src/qt/locale/bitcoin_ms_MY.qm src/qt/locale/bitcoin_nb.qm src/qt/locale/bitcoin_nl.qm src/qt/locale/bitcoin_pam.qm src/qt/locale/bitcoin_pl.qm src/qt/locale/bitcoin_pt_BR.qm src/qt/locale/bitcoin_pt_PT.qm src/qt/locale/bitcoin_ro_RO.qm src/qt/locale/bitcoin_ru.qm src/qt/locale/bitcoin_sah.qm src/qt/locale/bitcoin_sk.qm src/qt/locale/bitcoin_sl_SI.qm src/qt/locale/bitcoin_sq.qm src/qt/locale/bitcoin_sr.qm src/qt/locale/bitcoin_sv.qm src/qt/locale/bitcoin_th_TH.qm src/qt/locale/bitcoin_tr.qm src/qt/locale/bitcoin_uk.qm src/qt/locale/bitcoin_ur_PK.qm src/qt/locale/bitcoin_vi.qm src/qt/locale/bitcoin_vi_VN.qm src/qt/locale/bitcoin_zh_CN.qm src/qt/locale/bitcoin_zh_TW.qm -src/qt/locale/bitcoin_af_ZA.qm: src/qt/locale/bitcoin_af_ZA.ts - /usr/bin/lrelease src/qt/locale/bitcoin_af_ZA.ts -qm src/qt/locale/bitcoin_af_ZA.qm + -$(DEL_FILE) src/qt/locale/bitbean_af_ZA.qm src/qt/locale/bitbean_ar.qm src/qt/locale/bitbean_be_BY.qm src/qt/locale/bitbean_bg.qm src/qt/locale/bitbean_bs.qm src/qt/locale/bitbean_ca.qm src/qt/locale/bitbean_ca@valencia.qm src/qt/locale/bitbean_ca_ES.qm src/qt/locale/bitbean_cs.qm src/qt/locale/bitbean_cy.qm src/qt/locale/bitbean_da.qm src/qt/locale/bitbean_de.qm src/qt/locale/bitbean_el_GR.qm src/qt/locale/bitbean_en.qm src/qt/locale/bitbean_eo.qm src/qt/locale/bitbean_es.qm src/qt/locale/bitbean_es_CL.qm src/qt/locale/bitbean_es_DO.qm src/qt/locale/bitbean_es_MX.qm src/qt/locale/bitbean_es_UY.qm src/qt/locale/bitbean_et.qm src/qt/locale/bitbean_eu_ES.qm src/qt/locale/bitbean_fa.qm src/qt/locale/bitbean_fa_IR.qm src/qt/locale/bitbean_fi.qm src/qt/locale/bitbean_fr.qm src/qt/locale/bitbean_fr_CA.qm src/qt/locale/bitbean_gl.qm src/qt/locale/bitbean_he.qm src/qt/locale/bitbean_hi_IN.qm src/qt/locale/bitbean_hr.qm src/qt/locale/bitbean_hu.qm src/qt/locale/bitbean_id_ID.qm src/qt/locale/bitbean_it.qm src/qt/locale/bitbean_ja.qm src/qt/locale/bitbean_ka.qm src/qt/locale/bitbean_kk_KZ.qm src/qt/locale/bitbean_ko_KR.qm src/qt/locale/bitbean_ky.qm src/qt/locale/bitbean_la.qm src/qt/locale/bitbean_lt.qm src/qt/locale/bitbean_lv_LV.qm src/qt/locale/bitbean_ms_MY.qm src/qt/locale/bitbean_nb.qm src/qt/locale/bitbean_nl.qm src/qt/locale/bitbean_pam.qm src/qt/locale/bitbean_pl.qm src/qt/locale/bitbean_pt_BR.qm src/qt/locale/bitbean_pt_PT.qm src/qt/locale/bitbean_ro_RO.qm src/qt/locale/bitbean_ru.qm src/qt/locale/bitbean_sah.qm src/qt/locale/bitbean_sk.qm src/qt/locale/bitbean_sl_SI.qm src/qt/locale/bitbean_sq.qm src/qt/locale/bitbean_sr.qm src/qt/locale/bitbean_sv.qm src/qt/locale/bitbean_th_TH.qm src/qt/locale/bitbean_tr.qm src/qt/locale/bitbean_uk.qm src/qt/locale/bitbean_ur_PK.qm src/qt/locale/bitbean_vi.qm src/qt/locale/bitbean_vi_VN.qm src/qt/locale/bitbean_zh_CN.qm src/qt/locale/bitbean_zh_TW.qm +src/qt/locale/bitbean_af_ZA.qm: src/qt/locale/bitbean_af_ZA.ts + /usr/bin/lrelease src/qt/locale/bitbean_af_ZA.ts -qm src/qt/locale/bitbean_af_ZA.qm -src/qt/locale/bitcoin_ar.qm: src/qt/locale/bitcoin_ar.ts - /usr/bin/lrelease src/qt/locale/bitcoin_ar.ts -qm src/qt/locale/bitcoin_ar.qm +src/qt/locale/bitbean_ar.qm: src/qt/locale/bitbean_ar.ts + /usr/bin/lrelease src/qt/locale/bitbean_ar.ts -qm src/qt/locale/bitbean_ar.qm -src/qt/locale/bitcoin_be_BY.qm: src/qt/locale/bitcoin_be_BY.ts - /usr/bin/lrelease src/qt/locale/bitcoin_be_BY.ts -qm src/qt/locale/bitcoin_be_BY.qm +src/qt/locale/bitbean_be_BY.qm: src/qt/locale/bitbean_be_BY.ts + /usr/bin/lrelease src/qt/locale/bitbean_be_BY.ts -qm src/qt/locale/bitbean_be_BY.qm -src/qt/locale/bitcoin_bg.qm: src/qt/locale/bitcoin_bg.ts - /usr/bin/lrelease src/qt/locale/bitcoin_bg.ts -qm src/qt/locale/bitcoin_bg.qm +src/qt/locale/bitbean_bg.qm: src/qt/locale/bitbean_bg.ts + /usr/bin/lrelease src/qt/locale/bitbean_bg.ts -qm src/qt/locale/bitbean_bg.qm -src/qt/locale/bitcoin_bs.qm: src/qt/locale/bitcoin_bs.ts - /usr/bin/lrelease src/qt/locale/bitcoin_bs.ts -qm src/qt/locale/bitcoin_bs.qm +src/qt/locale/bitbean_bs.qm: src/qt/locale/bitbean_bs.ts + /usr/bin/lrelease src/qt/locale/bitbean_bs.ts -qm src/qt/locale/bitbean_bs.qm -src/qt/locale/bitcoin_ca.qm: src/qt/locale/bitcoin_ca.ts - /usr/bin/lrelease src/qt/locale/bitcoin_ca.ts -qm src/qt/locale/bitcoin_ca.qm +src/qt/locale/bitbean_ca.qm: src/qt/locale/bitbean_ca.ts + /usr/bin/lrelease src/qt/locale/bitbean_ca.ts -qm src/qt/locale/bitbean_ca.qm -src/qt/locale/bitcoin_ca@valencia.qm: src/qt/locale/bitcoin_ca@valencia.ts - /usr/bin/lrelease src/qt/locale/bitcoin_ca@valencia.ts -qm src/qt/locale/bitcoin_ca@valencia.qm +src/qt/locale/bitbean_ca@valencia.qm: src/qt/locale/bitbean_ca@valencia.ts + /usr/bin/lrelease src/qt/locale/bitbean_ca@valencia.ts -qm src/qt/locale/bitbean_ca@valencia.qm -src/qt/locale/bitcoin_ca_ES.qm: src/qt/locale/bitcoin_ca_ES.ts - /usr/bin/lrelease src/qt/locale/bitcoin_ca_ES.ts -qm src/qt/locale/bitcoin_ca_ES.qm +src/qt/locale/bitbean_ca_ES.qm: src/qt/locale/bitbean_ca_ES.ts + /usr/bin/lrelease src/qt/locale/bitbean_ca_ES.ts -qm src/qt/locale/bitbean_ca_ES.qm -src/qt/locale/bitcoin_cs.qm: src/qt/locale/bitcoin_cs.ts - /usr/bin/lrelease src/qt/locale/bitcoin_cs.ts -qm src/qt/locale/bitcoin_cs.qm +src/qt/locale/bitbean_cs.qm: src/qt/locale/bitbean_cs.ts + /usr/bin/lrelease src/qt/locale/bitbean_cs.ts -qm src/qt/locale/bitbean_cs.qm -src/qt/locale/bitcoin_cy.qm: src/qt/locale/bitcoin_cy.ts - /usr/bin/lrelease src/qt/locale/bitcoin_cy.ts -qm src/qt/locale/bitcoin_cy.qm +src/qt/locale/bitbean_cy.qm: src/qt/locale/bitbean_cy.ts + /usr/bin/lrelease src/qt/locale/bitbean_cy.ts -qm src/qt/locale/bitbean_cy.qm -src/qt/locale/bitcoin_da.qm: src/qt/locale/bitcoin_da.ts - /usr/bin/lrelease src/qt/locale/bitcoin_da.ts -qm src/qt/locale/bitcoin_da.qm +src/qt/locale/bitbean_da.qm: src/qt/locale/bitbean_da.ts + /usr/bin/lrelease src/qt/locale/bitbean_da.ts -qm src/qt/locale/bitbean_da.qm -src/qt/locale/bitcoin_de.qm: src/qt/locale/bitcoin_de.ts - /usr/bin/lrelease src/qt/locale/bitcoin_de.ts -qm src/qt/locale/bitcoin_de.qm +src/qt/locale/bitbean_de.qm: src/qt/locale/bitbean_de.ts + /usr/bin/lrelease src/qt/locale/bitbean_de.ts -qm src/qt/locale/bitbean_de.qm -src/qt/locale/bitcoin_el_GR.qm: src/qt/locale/bitcoin_el_GR.ts - /usr/bin/lrelease src/qt/locale/bitcoin_el_GR.ts -qm src/qt/locale/bitcoin_el_GR.qm +src/qt/locale/bitbean_el_GR.qm: src/qt/locale/bitbean_el_GR.ts + /usr/bin/lrelease src/qt/locale/bitbean_el_GR.ts -qm src/qt/locale/bitbean_el_GR.qm -src/qt/locale/bitcoin_en.qm: src/qt/locale/bitcoin_en.ts - /usr/bin/lrelease src/qt/locale/bitcoin_en.ts -qm src/qt/locale/bitcoin_en.qm +src/qt/locale/bitbean_en.qm: src/qt/locale/bitbean_en.ts + /usr/bin/lrelease src/qt/locale/bitbean_en.ts -qm src/qt/locale/bitbean_en.qm -src/qt/locale/bitcoin_eo.qm: src/qt/locale/bitcoin_eo.ts - /usr/bin/lrelease src/qt/locale/bitcoin_eo.ts -qm src/qt/locale/bitcoin_eo.qm +src/qt/locale/bitbean_eo.qm: src/qt/locale/bitbean_eo.ts + /usr/bin/lrelease src/qt/locale/bitbean_eo.ts -qm src/qt/locale/bitbean_eo.qm -src/qt/locale/bitcoin_es.qm: src/qt/locale/bitcoin_es.ts - /usr/bin/lrelease src/qt/locale/bitcoin_es.ts -qm src/qt/locale/bitcoin_es.qm +src/qt/locale/bitbean_es.qm: src/qt/locale/bitbean_es.ts + /usr/bin/lrelease src/qt/locale/bitbean_es.ts -qm src/qt/locale/bitbean_es.qm -src/qt/locale/bitcoin_es_CL.qm: src/qt/locale/bitcoin_es_CL.ts - /usr/bin/lrelease src/qt/locale/bitcoin_es_CL.ts -qm src/qt/locale/bitcoin_es_CL.qm +src/qt/locale/bitbean_es_CL.qm: src/qt/locale/bitbean_es_CL.ts + /usr/bin/lrelease src/qt/locale/bitbean_es_CL.ts -qm src/qt/locale/bitbean_es_CL.qm -src/qt/locale/bitcoin_es_DO.qm: src/qt/locale/bitcoin_es_DO.ts - /usr/bin/lrelease src/qt/locale/bitcoin_es_DO.ts -qm src/qt/locale/bitcoin_es_DO.qm +src/qt/locale/bitbean_es_DO.qm: src/qt/locale/bitbean_es_DO.ts + /usr/bin/lrelease src/qt/locale/bitbean_es_DO.ts -qm src/qt/locale/bitbean_es_DO.qm -src/qt/locale/bitcoin_es_MX.qm: src/qt/locale/bitcoin_es_MX.ts - /usr/bin/lrelease src/qt/locale/bitcoin_es_MX.ts -qm src/qt/locale/bitcoin_es_MX.qm +src/qt/locale/bitbean_es_MX.qm: src/qt/locale/bitbean_es_MX.ts + /usr/bin/lrelease src/qt/locale/bitbean_es_MX.ts -qm src/qt/locale/bitbean_es_MX.qm -src/qt/locale/bitcoin_es_UY.qm: src/qt/locale/bitcoin_es_UY.ts - /usr/bin/lrelease src/qt/locale/bitcoin_es_UY.ts -qm src/qt/locale/bitcoin_es_UY.qm +src/qt/locale/bitbean_es_UY.qm: src/qt/locale/bitbean_es_UY.ts + /usr/bin/lrelease src/qt/locale/bitbean_es_UY.ts -qm src/qt/locale/bitbean_es_UY.qm -src/qt/locale/bitcoin_et.qm: src/qt/locale/bitcoin_et.ts - /usr/bin/lrelease src/qt/locale/bitcoin_et.ts -qm src/qt/locale/bitcoin_et.qm +src/qt/locale/bitbean_et.qm: src/qt/locale/bitbean_et.ts + /usr/bin/lrelease src/qt/locale/bitbean_et.ts -qm src/qt/locale/bitbean_et.qm -src/qt/locale/bitcoin_eu_ES.qm: src/qt/locale/bitcoin_eu_ES.ts - /usr/bin/lrelease src/qt/locale/bitcoin_eu_ES.ts -qm src/qt/locale/bitcoin_eu_ES.qm +src/qt/locale/bitbean_eu_ES.qm: src/qt/locale/bitbean_eu_ES.ts + /usr/bin/lrelease src/qt/locale/bitbean_eu_ES.ts -qm src/qt/locale/bitbean_eu_ES.qm -src/qt/locale/bitcoin_fa.qm: src/qt/locale/bitcoin_fa.ts - /usr/bin/lrelease src/qt/locale/bitcoin_fa.ts -qm src/qt/locale/bitcoin_fa.qm +src/qt/locale/bitbean_fa.qm: src/qt/locale/bitbean_fa.ts + /usr/bin/lrelease src/qt/locale/bitbean_fa.ts -qm src/qt/locale/bitbean_fa.qm -src/qt/locale/bitcoin_fa_IR.qm: src/qt/locale/bitcoin_fa_IR.ts - /usr/bin/lrelease src/qt/locale/bitcoin_fa_IR.ts -qm src/qt/locale/bitcoin_fa_IR.qm +src/qt/locale/bitbean_fa_IR.qm: src/qt/locale/bitbean_fa_IR.ts + /usr/bin/lrelease src/qt/locale/bitbean_fa_IR.ts -qm src/qt/locale/bitbean_fa_IR.qm -src/qt/locale/bitcoin_fi.qm: src/qt/locale/bitcoin_fi.ts - /usr/bin/lrelease src/qt/locale/bitcoin_fi.ts -qm src/qt/locale/bitcoin_fi.qm +src/qt/locale/bitbean_fi.qm: src/qt/locale/bitbean_fi.ts + /usr/bin/lrelease src/qt/locale/bitbean_fi.ts -qm src/qt/locale/bitbean_fi.qm -src/qt/locale/bitcoin_fr.qm: src/qt/locale/bitcoin_fr.ts - /usr/bin/lrelease src/qt/locale/bitcoin_fr.ts -qm src/qt/locale/bitcoin_fr.qm +src/qt/locale/bitbean_fr.qm: src/qt/locale/bitbean_fr.ts + /usr/bin/lrelease src/qt/locale/bitbean_fr.ts -qm src/qt/locale/bitbean_fr.qm -src/qt/locale/bitcoin_fr_CA.qm: src/qt/locale/bitcoin_fr_CA.ts - /usr/bin/lrelease src/qt/locale/bitcoin_fr_CA.ts -qm src/qt/locale/bitcoin_fr_CA.qm +src/qt/locale/bitbean_fr_CA.qm: src/qt/locale/bitbean_fr_CA.ts + /usr/bin/lrelease src/qt/locale/bitbean_fr_CA.ts -qm src/qt/locale/bitbean_fr_CA.qm -src/qt/locale/bitcoin_gl.qm: src/qt/locale/bitcoin_gl.ts - /usr/bin/lrelease src/qt/locale/bitcoin_gl.ts -qm src/qt/locale/bitcoin_gl.qm +src/qt/locale/bitbean_gl.qm: src/qt/locale/bitbean_gl.ts + /usr/bin/lrelease src/qt/locale/bitbean_gl.ts -qm src/qt/locale/bitbean_gl.qm -src/qt/locale/bitcoin_he.qm: src/qt/locale/bitcoin_he.ts - /usr/bin/lrelease src/qt/locale/bitcoin_he.ts -qm src/qt/locale/bitcoin_he.qm +src/qt/locale/bitbean_he.qm: src/qt/locale/bitbean_he.ts + /usr/bin/lrelease src/qt/locale/bitbean_he.ts -qm src/qt/locale/bitbean_he.qm -src/qt/locale/bitcoin_hi_IN.qm: src/qt/locale/bitcoin_hi_IN.ts - /usr/bin/lrelease src/qt/locale/bitcoin_hi_IN.ts -qm src/qt/locale/bitcoin_hi_IN.qm +src/qt/locale/bitbean_hi_IN.qm: src/qt/locale/bitbean_hi_IN.ts + /usr/bin/lrelease src/qt/locale/bitbean_hi_IN.ts -qm src/qt/locale/bitbean_hi_IN.qm -src/qt/locale/bitcoin_hr.qm: src/qt/locale/bitcoin_hr.ts - /usr/bin/lrelease src/qt/locale/bitcoin_hr.ts -qm src/qt/locale/bitcoin_hr.qm +src/qt/locale/bitbean_hr.qm: src/qt/locale/bitbean_hr.ts + /usr/bin/lrelease src/qt/locale/bitbean_hr.ts -qm src/qt/locale/bitbean_hr.qm -src/qt/locale/bitcoin_hu.qm: src/qt/locale/bitcoin_hu.ts - /usr/bin/lrelease src/qt/locale/bitcoin_hu.ts -qm src/qt/locale/bitcoin_hu.qm +src/qt/locale/bitbean_hu.qm: src/qt/locale/bitbean_hu.ts + /usr/bin/lrelease src/qt/locale/bitbean_hu.ts -qm src/qt/locale/bitbean_hu.qm -src/qt/locale/bitcoin_id_ID.qm: src/qt/locale/bitcoin_id_ID.ts - /usr/bin/lrelease src/qt/locale/bitcoin_id_ID.ts -qm src/qt/locale/bitcoin_id_ID.qm +src/qt/locale/bitbean_id_ID.qm: src/qt/locale/bitbean_id_ID.ts + /usr/bin/lrelease src/qt/locale/bitbean_id_ID.ts -qm src/qt/locale/bitbean_id_ID.qm -src/qt/locale/bitcoin_it.qm: src/qt/locale/bitcoin_it.ts - /usr/bin/lrelease src/qt/locale/bitcoin_it.ts -qm src/qt/locale/bitcoin_it.qm +src/qt/locale/bitbean_it.qm: src/qt/locale/bitbean_it.ts + /usr/bin/lrelease src/qt/locale/bitbean_it.ts -qm src/qt/locale/bitbean_it.qm -src/qt/locale/bitcoin_ja.qm: src/qt/locale/bitcoin_ja.ts - /usr/bin/lrelease src/qt/locale/bitcoin_ja.ts -qm src/qt/locale/bitcoin_ja.qm +src/qt/locale/bitbean_ja.qm: src/qt/locale/bitbean_ja.ts + /usr/bin/lrelease src/qt/locale/bitbean_ja.ts -qm src/qt/locale/bitbean_ja.qm -src/qt/locale/bitcoin_ka.qm: src/qt/locale/bitcoin_ka.ts - /usr/bin/lrelease src/qt/locale/bitcoin_ka.ts -qm src/qt/locale/bitcoin_ka.qm +src/qt/locale/bitbean_ka.qm: src/qt/locale/bitbean_ka.ts + /usr/bin/lrelease src/qt/locale/bitbean_ka.ts -qm src/qt/locale/bitbean_ka.qm -src/qt/locale/bitcoin_kk_KZ.qm: src/qt/locale/bitcoin_kk_KZ.ts - /usr/bin/lrelease src/qt/locale/bitcoin_kk_KZ.ts -qm src/qt/locale/bitcoin_kk_KZ.qm +src/qt/locale/bitbean_kk_KZ.qm: src/qt/locale/bitbean_kk_KZ.ts + /usr/bin/lrelease src/qt/locale/bitbean_kk_KZ.ts -qm src/qt/locale/bitbean_kk_KZ.qm -src/qt/locale/bitcoin_ko_KR.qm: src/qt/locale/bitcoin_ko_KR.ts - /usr/bin/lrelease src/qt/locale/bitcoin_ko_KR.ts -qm src/qt/locale/bitcoin_ko_KR.qm +src/qt/locale/bitbean_ko_KR.qm: src/qt/locale/bitbean_ko_KR.ts + /usr/bin/lrelease src/qt/locale/bitbean_ko_KR.ts -qm src/qt/locale/bitbean_ko_KR.qm -src/qt/locale/bitcoin_ky.qm: src/qt/locale/bitcoin_ky.ts - /usr/bin/lrelease src/qt/locale/bitcoin_ky.ts -qm src/qt/locale/bitcoin_ky.qm +src/qt/locale/bitbean_ky.qm: src/qt/locale/bitbean_ky.ts + /usr/bin/lrelease src/qt/locale/bitbean_ky.ts -qm src/qt/locale/bitbean_ky.qm -src/qt/locale/bitcoin_la.qm: src/qt/locale/bitcoin_la.ts - /usr/bin/lrelease src/qt/locale/bitcoin_la.ts -qm src/qt/locale/bitcoin_la.qm +src/qt/locale/bitbean_la.qm: src/qt/locale/bitbean_la.ts + /usr/bin/lrelease src/qt/locale/bitbean_la.ts -qm src/qt/locale/bitbean_la.qm -src/qt/locale/bitcoin_lt.qm: src/qt/locale/bitcoin_lt.ts - /usr/bin/lrelease src/qt/locale/bitcoin_lt.ts -qm src/qt/locale/bitcoin_lt.qm +src/qt/locale/bitbean_lt.qm: src/qt/locale/bitbean_lt.ts + /usr/bin/lrelease src/qt/locale/bitbean_lt.ts -qm src/qt/locale/bitbean_lt.qm -src/qt/locale/bitcoin_lv_LV.qm: src/qt/locale/bitcoin_lv_LV.ts - /usr/bin/lrelease src/qt/locale/bitcoin_lv_LV.ts -qm src/qt/locale/bitcoin_lv_LV.qm +src/qt/locale/bitbean_lv_LV.qm: src/qt/locale/bitbean_lv_LV.ts + /usr/bin/lrelease src/qt/locale/bitbean_lv_LV.ts -qm src/qt/locale/bitbean_lv_LV.qm -src/qt/locale/bitcoin_ms_MY.qm: src/qt/locale/bitcoin_ms_MY.ts - /usr/bin/lrelease src/qt/locale/bitcoin_ms_MY.ts -qm src/qt/locale/bitcoin_ms_MY.qm +src/qt/locale/bitbean_ms_MY.qm: src/qt/locale/bitbean_ms_MY.ts + /usr/bin/lrelease src/qt/locale/bitbean_ms_MY.ts -qm src/qt/locale/bitbean_ms_MY.qm -src/qt/locale/bitcoin_nb.qm: src/qt/locale/bitcoin_nb.ts - /usr/bin/lrelease src/qt/locale/bitcoin_nb.ts -qm src/qt/locale/bitcoin_nb.qm +src/qt/locale/bitbean_nb.qm: src/qt/locale/bitbean_nb.ts + /usr/bin/lrelease src/qt/locale/bitbean_nb.ts -qm src/qt/locale/bitbean_nb.qm -src/qt/locale/bitcoin_nl.qm: src/qt/locale/bitcoin_nl.ts - /usr/bin/lrelease src/qt/locale/bitcoin_nl.ts -qm src/qt/locale/bitcoin_nl.qm +src/qt/locale/bitbean_nl.qm: src/qt/locale/bitbean_nl.ts + /usr/bin/lrelease src/qt/locale/bitbean_nl.ts -qm src/qt/locale/bitbean_nl.qm -src/qt/locale/bitcoin_pam.qm: src/qt/locale/bitcoin_pam.ts - /usr/bin/lrelease src/qt/locale/bitcoin_pam.ts -qm src/qt/locale/bitcoin_pam.qm +src/qt/locale/bitbean_pam.qm: src/qt/locale/bitbean_pam.ts + /usr/bin/lrelease src/qt/locale/bitbean_pam.ts -qm src/qt/locale/bitbean_pam.qm -src/qt/locale/bitcoin_pl.qm: src/qt/locale/bitcoin_pl.ts - /usr/bin/lrelease src/qt/locale/bitcoin_pl.ts -qm src/qt/locale/bitcoin_pl.qm +src/qt/locale/bitbean_pl.qm: src/qt/locale/bitbean_pl.ts + /usr/bin/lrelease src/qt/locale/bitbean_pl.ts -qm src/qt/locale/bitbean_pl.qm -src/qt/locale/bitcoin_pt_BR.qm: src/qt/locale/bitcoin_pt_BR.ts - /usr/bin/lrelease src/qt/locale/bitcoin_pt_BR.ts -qm src/qt/locale/bitcoin_pt_BR.qm +src/qt/locale/bitbean_pt_BR.qm: src/qt/locale/bitbean_pt_BR.ts + /usr/bin/lrelease src/qt/locale/bitbean_pt_BR.ts -qm src/qt/locale/bitbean_pt_BR.qm -src/qt/locale/bitcoin_pt_PT.qm: src/qt/locale/bitcoin_pt_PT.ts - /usr/bin/lrelease src/qt/locale/bitcoin_pt_PT.ts -qm src/qt/locale/bitcoin_pt_PT.qm +src/qt/locale/bitbean_pt_PT.qm: src/qt/locale/bitbean_pt_PT.ts + /usr/bin/lrelease src/qt/locale/bitbean_pt_PT.ts -qm src/qt/locale/bitbean_pt_PT.qm -src/qt/locale/bitcoin_ro_RO.qm: src/qt/locale/bitcoin_ro_RO.ts - /usr/bin/lrelease src/qt/locale/bitcoin_ro_RO.ts -qm src/qt/locale/bitcoin_ro_RO.qm +src/qt/locale/bitbean_ro_RO.qm: src/qt/locale/bitbean_ro_RO.ts + /usr/bin/lrelease src/qt/locale/bitbean_ro_RO.ts -qm src/qt/locale/bitbean_ro_RO.qm -src/qt/locale/bitcoin_ru.qm: src/qt/locale/bitcoin_ru.ts - /usr/bin/lrelease src/qt/locale/bitcoin_ru.ts -qm src/qt/locale/bitcoin_ru.qm +src/qt/locale/bitbean_ru.qm: src/qt/locale/bitbean_ru.ts + /usr/bin/lrelease src/qt/locale/bitbean_ru.ts -qm src/qt/locale/bitbean_ru.qm -src/qt/locale/bitcoin_sah.qm: src/qt/locale/bitcoin_sah.ts - /usr/bin/lrelease src/qt/locale/bitcoin_sah.ts -qm src/qt/locale/bitcoin_sah.qm +src/qt/locale/bitbean_sah.qm: src/qt/locale/bitbean_sah.ts + /usr/bin/lrelease src/qt/locale/bitbean_sah.ts -qm src/qt/locale/bitbean_sah.qm -src/qt/locale/bitcoin_sk.qm: src/qt/locale/bitcoin_sk.ts - /usr/bin/lrelease src/qt/locale/bitcoin_sk.ts -qm src/qt/locale/bitcoin_sk.qm +src/qt/locale/bitbean_sk.qm: src/qt/locale/bitbean_sk.ts + /usr/bin/lrelease src/qt/locale/bitbean_sk.ts -qm src/qt/locale/bitbean_sk.qm -src/qt/locale/bitcoin_sl_SI.qm: src/qt/locale/bitcoin_sl_SI.ts - /usr/bin/lrelease src/qt/locale/bitcoin_sl_SI.ts -qm src/qt/locale/bitcoin_sl_SI.qm +src/qt/locale/bitbean_sl_SI.qm: src/qt/locale/bitbean_sl_SI.ts + /usr/bin/lrelease src/qt/locale/bitbean_sl_SI.ts -qm src/qt/locale/bitbean_sl_SI.qm -src/qt/locale/bitcoin_sq.qm: src/qt/locale/bitcoin_sq.ts - /usr/bin/lrelease src/qt/locale/bitcoin_sq.ts -qm src/qt/locale/bitcoin_sq.qm +src/qt/locale/bitbean_sq.qm: src/qt/locale/bitbean_sq.ts + /usr/bin/lrelease src/qt/locale/bitbean_sq.ts -qm src/qt/locale/bitbean_sq.qm -src/qt/locale/bitcoin_sr.qm: src/qt/locale/bitcoin_sr.ts - /usr/bin/lrelease src/qt/locale/bitcoin_sr.ts -qm src/qt/locale/bitcoin_sr.qm +src/qt/locale/bitbean_sr.qm: src/qt/locale/bitbean_sr.ts + /usr/bin/lrelease src/qt/locale/bitbean_sr.ts -qm src/qt/locale/bitbean_sr.qm -src/qt/locale/bitcoin_sv.qm: src/qt/locale/bitcoin_sv.ts - /usr/bin/lrelease src/qt/locale/bitcoin_sv.ts -qm src/qt/locale/bitcoin_sv.qm +src/qt/locale/bitbean_sv.qm: src/qt/locale/bitbean_sv.ts + /usr/bin/lrelease src/qt/locale/bitbean_sv.ts -qm src/qt/locale/bitbean_sv.qm -src/qt/locale/bitcoin_th_TH.qm: src/qt/locale/bitcoin_th_TH.ts - /usr/bin/lrelease src/qt/locale/bitcoin_th_TH.ts -qm src/qt/locale/bitcoin_th_TH.qm +src/qt/locale/bitbean_th_TH.qm: src/qt/locale/bitbean_th_TH.ts + /usr/bin/lrelease src/qt/locale/bitbean_th_TH.ts -qm src/qt/locale/bitbean_th_TH.qm -src/qt/locale/bitcoin_tr.qm: src/qt/locale/bitcoin_tr.ts - /usr/bin/lrelease src/qt/locale/bitcoin_tr.ts -qm src/qt/locale/bitcoin_tr.qm +src/qt/locale/bitbean_tr.qm: src/qt/locale/bitbean_tr.ts + /usr/bin/lrelease src/qt/locale/bitbean_tr.ts -qm src/qt/locale/bitbean_tr.qm -src/qt/locale/bitcoin_uk.qm: src/qt/locale/bitcoin_uk.ts - /usr/bin/lrelease src/qt/locale/bitcoin_uk.ts -qm src/qt/locale/bitcoin_uk.qm +src/qt/locale/bitbean_uk.qm: src/qt/locale/bitbean_uk.ts + /usr/bin/lrelease src/qt/locale/bitbean_uk.ts -qm src/qt/locale/bitbean_uk.qm -src/qt/locale/bitcoin_ur_PK.qm: src/qt/locale/bitcoin_ur_PK.ts - /usr/bin/lrelease src/qt/locale/bitcoin_ur_PK.ts -qm src/qt/locale/bitcoin_ur_PK.qm +src/qt/locale/bitbean_ur_PK.qm: src/qt/locale/bitbean_ur_PK.ts + /usr/bin/lrelease src/qt/locale/bitbean_ur_PK.ts -qm src/qt/locale/bitbean_ur_PK.qm -src/qt/locale/bitcoin_vi.qm: src/qt/locale/bitcoin_vi.ts - /usr/bin/lrelease src/qt/locale/bitcoin_vi.ts -qm src/qt/locale/bitcoin_vi.qm +src/qt/locale/bitbean_vi.qm: src/qt/locale/bitbean_vi.ts + /usr/bin/lrelease src/qt/locale/bitbean_vi.ts -qm src/qt/locale/bitbean_vi.qm -src/qt/locale/bitcoin_vi_VN.qm: src/qt/locale/bitcoin_vi_VN.ts - /usr/bin/lrelease src/qt/locale/bitcoin_vi_VN.ts -qm src/qt/locale/bitcoin_vi_VN.qm +src/qt/locale/bitbean_vi_VN.qm: src/qt/locale/bitbean_vi_VN.ts + /usr/bin/lrelease src/qt/locale/bitbean_vi_VN.ts -qm src/qt/locale/bitbean_vi_VN.qm -src/qt/locale/bitcoin_zh_CN.qm: src/qt/locale/bitcoin_zh_CN.ts - /usr/bin/lrelease src/qt/locale/bitcoin_zh_CN.ts -qm src/qt/locale/bitcoin_zh_CN.qm +src/qt/locale/bitbean_zh_CN.qm: src/qt/locale/bitbean_zh_CN.ts + /usr/bin/lrelease src/qt/locale/bitbean_zh_CN.ts -qm src/qt/locale/bitbean_zh_CN.qm -src/qt/locale/bitcoin_zh_TW.qm: src/qt/locale/bitcoin_zh_TW.ts - /usr/bin/lrelease src/qt/locale/bitcoin_zh_TW.ts -qm src/qt/locale/bitcoin_zh_TW.qm +src/qt/locale/bitbean_zh_TW.qm: src/qt/locale/bitbean_zh_TW.ts + /usr/bin/lrelease src/qt/locale/bitbean_zh_TW.ts -qm src/qt/locale/bitbean_zh_TW.qm -compiler_moc_header_make_all: build/moc_bitcoingui.cpp build/moc_transactiontablemodel.cpp build/moc_addresstablemodel.cpp build/moc_optionsdialog.cpp build/moc_coincontroldialog.cpp build/moc_coincontroltreewidget.cpp build/moc_sendcoinsdialog.cpp build/moc_addressbookpage.cpp build/moc_signverifymessagedialog.cpp build/moc_aboutdialog.cpp build/moc_editaddressdialog.cpp build/moc_bitcoinaddressvalidator.cpp build/moc_clientmodel.cpp build/moc_guiutil.cpp build/moc_optionsmodel.cpp build/moc_monitoreddatamapper.cpp build/moc_transactiondesc.cpp build/moc_transactiondescdialog.cpp build/moc_bitcoinamountfield.cpp build/moc_transactionfilterproxy.cpp build/moc_transactionview.cpp build/moc_walletmodel.cpp build/moc_overviewpage.cpp build/moc_csvmodelwriter.cpp build/moc_sendcoinsentry.cpp build/moc_qvalidatedlineedit.cpp build/moc_qvaluecombobox.cpp build/moc_askpassphrasedialog.cpp build/moc_notificator.cpp build/moc_rpcconsole.cpp +compiler_moc_header_make_all: build/moc_bitbeangui.cpp build/moc_transactiontablemodel.cpp build/moc_addresstablemodel.cpp build/moc_optionsdialog.cpp build/moc_beancontroldialog.cpp build/moc_beancontroltreewidget.cpp build/moc_sendbeansdialog.cpp build/moc_addressbookpage.cpp build/moc_signverifymessagedialog.cpp build/moc_aboutdialog.cpp build/moc_editaddressdialog.cpp build/moc_bitbeanaddressvalidator.cpp build/moc_clientmodel.cpp build/moc_guiutil.cpp build/moc_optionsmodel.cpp build/moc_monitoreddatamapper.cpp build/moc_transactiondesc.cpp build/moc_transactiondescdialog.cpp build/moc_bitbeanamountfield.cpp build/moc_transactionfilterproxy.cpp build/moc_transactionview.cpp build/moc_walletmodel.cpp build/moc_overviewpage.cpp build/moc_csvmodelwriter.cpp build/moc_sendbeansentry.cpp build/moc_qvalidatedlineedit.cpp build/moc_qvaluecombobox.cpp build/moc_askpassphrasedialog.cpp build/moc_notificator.cpp build/moc_rpcconsole.cpp compiler_moc_header_clean: - -$(DEL_FILE) build/moc_bitcoingui.cpp build/moc_transactiontablemodel.cpp build/moc_addresstablemodel.cpp build/moc_optionsdialog.cpp build/moc_coincontroldialog.cpp build/moc_coincontroltreewidget.cpp build/moc_sendcoinsdialog.cpp build/moc_addressbookpage.cpp build/moc_signverifymessagedialog.cpp build/moc_aboutdialog.cpp build/moc_editaddressdialog.cpp build/moc_bitcoinaddressvalidator.cpp build/moc_clientmodel.cpp build/moc_guiutil.cpp build/moc_optionsmodel.cpp build/moc_monitoreddatamapper.cpp build/moc_transactiondesc.cpp build/moc_transactiondescdialog.cpp build/moc_bitcoinamountfield.cpp build/moc_transactionfilterproxy.cpp build/moc_transactionview.cpp build/moc_walletmodel.cpp build/moc_overviewpage.cpp build/moc_csvmodelwriter.cpp build/moc_sendcoinsentry.cpp build/moc_qvalidatedlineedit.cpp build/moc_qvaluecombobox.cpp build/moc_askpassphrasedialog.cpp build/moc_notificator.cpp build/moc_rpcconsole.cpp -build/moc_bitcoingui.cpp: src/qt/bitcoingui.h - /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/bitcoingui.h -o build/moc_bitcoingui.cpp + -$(DEL_FILE) build/moc_bitbeangui.cpp build/moc_transactiontablemodel.cpp build/moc_addresstablemodel.cpp build/moc_optionsdialog.cpp build/moc_beancontroldialog.cpp build/moc_beancontroltreewidget.cpp build/moc_sendbeansdialog.cpp build/moc_addressbookpage.cpp build/moc_signverifymessagedialog.cpp build/moc_aboutdialog.cpp build/moc_editaddressdialog.cpp build/moc_bitbeanaddressvalidator.cpp build/moc_clientmodel.cpp build/moc_guiutil.cpp build/moc_optionsmodel.cpp build/moc_monitoreddatamapper.cpp build/moc_transactiondesc.cpp build/moc_transactiondescdialog.cpp build/moc_bitbeanamountfield.cpp build/moc_transactionfilterproxy.cpp build/moc_transactionview.cpp build/moc_walletmodel.cpp build/moc_overviewpage.cpp build/moc_csvmodelwriter.cpp build/moc_sendbeansentry.cpp build/moc_qvalidatedlineedit.cpp build/moc_qvaluecombobox.cpp build/moc_askpassphrasedialog.cpp build/moc_notificator.cpp build/moc_rpcconsole.cpp +build/moc_bitbeangui.cpp: src/qt/bitbeangui.h + /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/bitbeangui.h -o build/moc_bitbeangui.cpp build/moc_transactiontablemodel.cpp: src/qt/transactiontablemodel.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/transactiontablemodel.h -o build/moc_transactiontablemodel.cpp @@ -616,14 +603,14 @@ build/moc_addresstablemodel.cpp: src/qt/addresstablemodel.h build/moc_optionsdialog.cpp: src/qt/optionsdialog.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/optionsdialog.h -o build/moc_optionsdialog.cpp -build/moc_coincontroldialog.cpp: src/qt/coincontroldialog.h - /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/coincontroldialog.h -o build/moc_coincontroldialog.cpp +build/moc_beancontroldialog.cpp: src/qt/beancontroldialog.h + /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/beancontroldialog.h -o build/moc_beancontroldialog.cpp -build/moc_coincontroltreewidget.cpp: src/qt/coincontroltreewidget.h - /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/coincontroltreewidget.h -o build/moc_coincontroltreewidget.cpp +build/moc_beancontroltreewidget.cpp: src/qt/beancontroltreewidget.h + /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/beancontroltreewidget.h -o build/moc_beancontroltreewidget.cpp -build/moc_sendcoinsdialog.cpp: src/qt/sendcoinsdialog.h - /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/sendcoinsdialog.h -o build/moc_sendcoinsdialog.cpp +build/moc_sendbeansdialog.cpp: src/qt/sendbeansdialog.h + /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/sendbeansdialog.h -o build/moc_sendbeansdialog.cpp build/moc_addressbookpage.cpp: src/qt/addressbookpage.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/addressbookpage.h -o build/moc_addressbookpage.cpp @@ -637,8 +624,8 @@ build/moc_aboutdialog.cpp: src/qt/aboutdialog.h build/moc_editaddressdialog.cpp: src/qt/editaddressdialog.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/editaddressdialog.h -o build/moc_editaddressdialog.cpp -build/moc_bitcoinaddressvalidator.cpp: src/qt/bitcoinaddressvalidator.h - /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/bitcoinaddressvalidator.h -o build/moc_bitcoinaddressvalidator.cpp +build/moc_bitbeanaddressvalidator.cpp: src/qt/bitbeanaddressvalidator.h + /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/bitbeanaddressvalidator.h -o build/moc_bitbeanaddressvalidator.cpp build/moc_clientmodel.cpp: src/qt/clientmodel.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/clientmodel.h -o build/moc_clientmodel.cpp @@ -658,8 +645,8 @@ build/moc_transactiondesc.cpp: src/qt/transactiondesc.h build/moc_transactiondescdialog.cpp: src/qt/transactiondescdialog.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/transactiondescdialog.h -o build/moc_transactiondescdialog.cpp -build/moc_bitcoinamountfield.cpp: src/qt/bitcoinamountfield.h - /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/bitcoinamountfield.h -o build/moc_bitcoinamountfield.cpp +build/moc_bitbeanamountfield.cpp: src/qt/bitbeanamountfield.h + /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/bitbeanamountfield.h -o build/moc_bitbeanamountfield.cpp build/moc_transactionfilterproxy.cpp: src/qt/transactionfilterproxy.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/transactionfilterproxy.h -o build/moc_transactionfilterproxy.cpp @@ -677,8 +664,8 @@ build/moc_overviewpage.cpp: src/qt/overviewpage.h build/moc_csvmodelwriter.cpp: src/qt/csvmodelwriter.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/csvmodelwriter.h -o build/moc_csvmodelwriter.cpp -build/moc_sendcoinsentry.cpp: src/qt/sendcoinsentry.h - /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/sendcoinsentry.h -o build/moc_sendcoinsentry.cpp +build/moc_sendbeansentry.cpp: src/qt/sendbeansentry.h + /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/sendbeansentry.h -o build/moc_sendbeansentry.cpp build/moc_qvalidatedlineedit.cpp: src/qt/qvalidatedlineedit.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/qvalidatedlineedit.h -o build/moc_qvalidatedlineedit.cpp @@ -695,49 +682,49 @@ build/moc_notificator.cpp: src/qt/notificator.h build/moc_rpcconsole.cpp: src/qt/rpcconsole.h /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/rpcconsole.h -o build/moc_rpcconsole.cpp -compiler_rcc_make_all: qrc_bitcoin.cpp +compiler_rcc_make_all: qrc_bitbean.cpp compiler_rcc_clean: - -$(DEL_FILE) qrc_bitcoin.cpp -qrc_bitcoin.cpp: src/qt/bitcoin.qrc \ - src/qt/locale/bitcoin_ka.qm \ - src/qt/locale/bitcoin_ko_KR.qm \ - src/qt/locale/bitcoin_fr.qm \ - src/qt/locale/bitcoin_sk.qm \ - src/qt/locale/bitcoin_gl.qm \ - src/qt/locale/bitcoin_sv.qm \ - src/qt/locale/bitcoin_pt_BR.qm \ - src/qt/locale/bitcoin_da.qm \ - src/qt/locale/bitcoin_zh_CN.qm \ - src/qt/locale/bitcoin_he.qm \ - src/qt/locale/bitcoin_pl.qm \ - src/qt/locale/bitcoin_cs.qm \ - src/qt/locale/bitcoin_de.qm \ - src/qt/locale/bitcoin_tr.qm \ - src/qt/locale/bitcoin_fr_CA.qm \ - src/qt/locale/bitcoin_ca_ES.qm \ - src/qt/locale/bitcoin_lt.qm \ - src/qt/locale/bitcoin_zh_TW.qm \ - src/qt/locale/bitcoin_hr.qm \ - src/qt/locale/bitcoin_uk.qm \ - src/qt/locale/bitcoin_sl_SI.qm \ - src/qt/locale/bitcoin_hu.qm \ - src/qt/locale/bitcoin_es_CL.qm \ - src/qt/locale/bitcoin_pt_PT.qm \ - src/qt/locale/bitcoin_ro_RO.qm \ - src/qt/locale/bitcoin_nb.qm \ - src/qt/locale/bitcoin_pam.qm \ - src/qt/locale/bitcoin_el_GR.qm \ - src/qt/locale/bitcoin_ja.qm \ - src/qt/locale/bitcoin_en.qm \ - src/qt/locale/bitcoin_eo.qm \ - src/qt/locale/bitcoin_it.qm \ - src/qt/locale/bitcoin_fa.qm \ - src/qt/locale/bitcoin_es.qm \ - src/qt/locale/bitcoin_ar.qm \ - src/qt/locale/bitcoin_nl.qm \ - src/qt/locale/bitcoin_es_DO.qm \ - src/qt/locale/bitcoin_fi.qm \ - src/qt/locale/bitcoin_ru.qm \ + -$(DEL_FILE) qrc_bitbean.cpp +qrc_bitbean.cpp: src/qt/bitbean.qrc \ + src/qt/locale/bitbean_ka.qm \ + src/qt/locale/bitbean_ko_KR.qm \ + src/qt/locale/bitbean_fr.qm \ + src/qt/locale/bitbean_sk.qm \ + src/qt/locale/bitbean_gl.qm \ + src/qt/locale/bitbean_sv.qm \ + src/qt/locale/bitbean_pt_BR.qm \ + src/qt/locale/bitbean_da.qm \ + src/qt/locale/bitbean_zh_CN.qm \ + src/qt/locale/bitbean_he.qm \ + src/qt/locale/bitbean_pl.qm \ + src/qt/locale/bitbean_cs.qm \ + src/qt/locale/bitbean_de.qm \ + src/qt/locale/bitbean_tr.qm \ + src/qt/locale/bitbean_fr_CA.qm \ + src/qt/locale/bitbean_ca_ES.qm \ + src/qt/locale/bitbean_lt.qm \ + src/qt/locale/bitbean_zh_TW.qm \ + src/qt/locale/bitbean_hr.qm \ + src/qt/locale/bitbean_uk.qm \ + src/qt/locale/bitbean_sl_SI.qm \ + src/qt/locale/bitbean_hu.qm \ + src/qt/locale/bitbean_es_CL.qm \ + src/qt/locale/bitbean_pt_PT.qm \ + src/qt/locale/bitbean_ro_RO.qm \ + src/qt/locale/bitbean_nb.qm \ + src/qt/locale/bitbean_pam.qm \ + src/qt/locale/bitbean_el_GR.qm \ + src/qt/locale/bitbean_ja.qm \ + src/qt/locale/bitbean_en.qm \ + src/qt/locale/bitbean_eo.qm \ + src/qt/locale/bitbean_it.qm \ + src/qt/locale/bitbean_fa.qm \ + src/qt/locale/bitbean_es.qm \ + src/qt/locale/bitbean_ar.qm \ + src/qt/locale/bitbean_nl.qm \ + src/qt/locale/bitbean_es_DO.qm \ + src/qt/locale/bitbean_fi.qm \ + src/qt/locale/bitbean_ru.qm \ src/qt/res/images/about.png \ src/qt/res/images/splash3.png \ src/qt/res/movies/update_spinner.mng \ @@ -755,7 +742,7 @@ qrc_bitcoin.cpp: src/qt/bitcoin.qrc \ src/qt/res/icons/send.png \ src/qt/res/icons/configure.png \ src/qt/res/icons/export.png \ - src/qt/res/icons/synced.png \ + src/qt/res/icons/beans-confirmed.png \ src/qt/res/icons/history.png \ src/qt/res/icons/filesave.png \ src/qt/res/icons/transaction2.png \ @@ -772,19 +759,19 @@ qrc_bitcoin.cpp: src/qt/bitcoin.qrc \ src/qt/res/icons/clock4.png \ src/qt/res/icons/clock5.png \ src/qt/res/icons/qrcode.png \ - src/qt/res/icons/novacoin-16.png \ - src/qt/res/icons/novacoin-80.png \ + src/qt/res/icons/novabean-16.png \ + src/qt/res/icons/novabean-80.png \ src/qt/res/icons/tx_inout.png \ src/qt/res/icons/remove.png \ src/qt/res/icons/key.png \ - src/qt/res/icons/novacoin-16.png \ + src/qt/res/icons/novabean-16.png \ src/qt/res/icons/lock_open.png \ - src/qt/res/icons/novacoin-80.png \ + src/qt/res/icons/novabean-80.png \ src/qt/res/icons/tx_input.png \ src/qt/res/icons/debugwindow.png \ src/qt/res/icons/tx_output.png \ src/qt/res/icons/staking_off.png - /usr/bin/rcc -name bitcoin src/qt/bitcoin.qrc -o qrc_bitcoin.cpp + /usr/bin/rcc -name bitbean src/qt/bitbean.qrc -o qrc_bitbean.cpp compiler_image_collection_make_all: build/qmake_image_collection.cpp compiler_image_collection_clean: @@ -796,7 +783,7 @@ build/overviewpage.moc: src/qt/overviewpage.h \ build/ui_overviewpage.h \ src/qt/walletmodel.h \ src/allocators.h \ - src/qt/bitcoinunits.h \ + src/qt/bitbeanunits.h \ src/qt/optionsmodel.h \ src/qt/transactiontablemodel.h \ src/qt/transactionfilterproxy.h \ @@ -808,7 +795,7 @@ build/overviewpage.moc: src/qt/overviewpage.h \ build/rpcconsole.moc: src/qt/rpcconsole.h \ build/ui_rpcconsole.h \ src/qt/clientmodel.h \ - src/bitcoinrpc.h \ + src/bitbeanrpc.h \ src/json/json_spirit_reader_template.h \ src/json/json_spirit_value.h \ src/json/json_spirit_error_position.h \ @@ -832,15 +819,15 @@ build/rpcconsole.moc: src/qt/rpcconsole.h \ src/qt/rpcconsole.cpp /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) src/qt/rpcconsole.cpp -o build/rpcconsole.moc -compiler_uic_make_all: build/ui_coincontroldialog.h build/ui_sendcoinsdialog.h build/ui_addressbookpage.h build/ui_signverifymessagedialog.h build/ui_aboutdialog.h build/ui_editaddressdialog.h build/ui_transactiondescdialog.h build/ui_overviewpage.h build/ui_sendcoinsentry.h build/ui_askpassphrasedialog.h build/ui_rpcconsole.h build/ui_optionsdialog.h +compiler_uic_make_all: build/ui_beancontroldialog.h build/ui_sendbeansdialog.h build/ui_addressbookpage.h build/ui_signverifymessagedialog.h build/ui_aboutdialog.h build/ui_editaddressdialog.h build/ui_transactiondescdialog.h build/ui_overviewpage.h build/ui_sendbeansentry.h build/ui_askpassphrasedialog.h build/ui_rpcconsole.h build/ui_optionsdialog.h compiler_uic_clean: - -$(DEL_FILE) build/ui_coincontroldialog.h build/ui_sendcoinsdialog.h build/ui_addressbookpage.h build/ui_signverifymessagedialog.h build/ui_aboutdialog.h build/ui_editaddressdialog.h build/ui_transactiondescdialog.h build/ui_overviewpage.h build/ui_sendcoinsentry.h build/ui_askpassphrasedialog.h build/ui_rpcconsole.h build/ui_optionsdialog.h -build/ui_coincontroldialog.h: src/qt/forms/coincontroldialog.ui \ - src/qt/coincontroltreewidget.h - /usr/bin/uic-qt4 src/qt/forms/coincontroldialog.ui -o build/ui_coincontroldialog.h + -$(DEL_FILE) build/ui_beancontroldialog.h build/ui_sendbeansdialog.h build/ui_addressbookpage.h build/ui_signverifymessagedialog.h build/ui_aboutdialog.h build/ui_editaddressdialog.h build/ui_transactiondescdialog.h build/ui_overviewpage.h build/ui_sendbeansentry.h build/ui_askpassphrasedialog.h build/ui_rpcconsole.h build/ui_optionsdialog.h +build/ui_beancontroldialog.h: src/qt/forms/beancontroldialog.ui \ + src/qt/beancontroltreewidget.h + /usr/bin/uic-qt4 src/qt/forms/beancontroldialog.ui -o build/ui_beancontroldialog.h -build/ui_sendcoinsdialog.h: src/qt/forms/sendcoinsdialog.ui - /usr/bin/uic-qt4 src/qt/forms/sendcoinsdialog.ui -o build/ui_sendcoinsdialog.h +build/ui_sendbeansdialog.h: src/qt/forms/sendbeansdialog.ui + /usr/bin/uic-qt4 src/qt/forms/sendbeansdialog.ui -o build/ui_sendbeansdialog.h build/ui_addressbookpage.h: src/qt/forms/addressbookpage.ui /usr/bin/uic-qt4 src/qt/forms/addressbookpage.ui -o build/ui_addressbookpage.h @@ -861,10 +848,10 @@ build/ui_transactiondescdialog.h: src/qt/forms/transactiondescdialog.ui build/ui_overviewpage.h: src/qt/forms/overviewpage.ui /usr/bin/uic-qt4 src/qt/forms/overviewpage.ui -o build/ui_overviewpage.h -build/ui_sendcoinsentry.h: src/qt/forms/sendcoinsentry.ui \ +build/ui_sendbeansentry.h: src/qt/forms/sendbeansentry.ui \ src/qt/qvalidatedlineedit.h \ - src/qt/bitcoinamountfield.h - /usr/bin/uic-qt4 src/qt/forms/sendcoinsentry.ui -o build/ui_sendcoinsentry.h + src/qt/bitbeanamountfield.h + /usr/bin/uic-qt4 src/qt/forms/sendbeansentry.ui -o build/ui_sendbeansentry.h build/ui_askpassphrasedialog.h: src/qt/forms/askpassphrasedialog.ui /usr/bin/uic-qt4 src/qt/forms/askpassphrasedialog.ui -o build/ui_askpassphrasedialog.h @@ -873,7 +860,7 @@ build/ui_rpcconsole.h: src/qt/forms/rpcconsole.ui /usr/bin/uic-qt4 src/qt/forms/rpcconsole.ui -o build/ui_rpcconsole.h build/ui_optionsdialog.h: src/qt/forms/optionsdialog.ui \ - src/qt/bitcoinamountfield.h \ + src/qt/bitbeanamountfield.h \ src/qt/qvaluecombobox.h \ src/qt/qvalidatedlineedit.h /usr/bin/uic-qt4 src/qt/forms/optionsdialog.ui -o build/ui_optionsdialog.h @@ -909,22 +896,12 @@ build/txdb-leveldb.o: src/txdb-leveldb.cpp src/kernel.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/checkpoints.h \ src/txdb.h \ src/txdb-leveldb.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/txdb-leveldb.o src/txdb-leveldb.cpp -build/bitcoin.o: src/qt/bitcoin.cpp src/qt/bitcoingui.h \ +build/bitbean.o: src/qt/bitbean.cpp src/qt/bitbeangui.h \ src/qt/clientmodel.h \ src/qt/walletmodel.h \ src/allocators.h \ @@ -952,27 +929,17 @@ build/bitcoin.o: src/qt/bitcoin.cpp src/qt/bitcoingui.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h \ src/walletdb.h \ src/db.h \ src/base58.h \ src/qt/qtipcserver.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitcoin.o src/qt/bitcoin.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitbean.o src/qt/bitbean.cpp -build/bitcoingui.o: src/qt/bitcoingui.cpp src/qt/bitcoingui.h \ +build/bitbeangui.o: src/qt/bitbeangui.cpp src/qt/bitbeangui.h \ src/qt/transactiontablemodel.h \ src/qt/addressbookpage.h \ - src/qt/sendcoinsdialog.h \ + src/qt/sendbeansdialog.h \ src/qt/signverifymessagedialog.h \ src/qt/optionsdialog.h \ src/qt/aboutdialog.h \ @@ -985,7 +952,7 @@ build/bitcoingui.o: src/qt/bitcoingui.cpp src/qt/bitcoingui.h \ src/qt/addresstablemodel.h \ src/qt/transactionview.h \ src/qt/overviewpage.h \ - src/qt/bitcoinunits.h \ + src/qt/bitbeanunits.h \ src/qt/guiconstants.h \ src/qt/askpassphrasedialog.h \ src/qt/notificator.h \ @@ -1011,22 +978,12 @@ build/bitcoingui.o: src/qt/bitcoingui.cpp src/qt/bitcoingui.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h \ src/walletdb.h \ src/db.h \ src/base58.h \ src/qt/macdockiconhandler.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitcoingui.o src/qt/bitcoingui.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitbeangui.o src/qt/bitbeangui.cpp build/transactiontablemodel.o: src/qt/transactiontablemodel.cpp src/qt/transactiontablemodel.h \ src/qt/guiutil.h \ @@ -1038,7 +995,7 @@ build/transactiontablemodel.o: src/qt/transactiontablemodel.cpp src/qt/transacti src/allocators.h \ src/qt/optionsmodel.h \ src/qt/addresstablemodel.h \ - src/qt/bitcoinunits.h \ + src/qt/bitbeanunits.h \ src/wallet.h \ src/main.h \ src/bignum.h \ @@ -1058,16 +1015,6 @@ build/transactiontablemodel.o: src/qt/transactiontablemodel.cpp src/qt/transacti src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h \ src/walletdb.h \ src/db.h \ @@ -1098,16 +1045,6 @@ build/addresstablemodel.o: src/qt/addresstablemodel.cpp src/qt/addresstablemodel src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h \ src/walletdb.h \ src/db.h \ @@ -1116,10 +1053,10 @@ build/addresstablemodel.o: src/qt/addresstablemodel.cpp src/qt/addresstablemodel build/optionsdialog.o: src/qt/optionsdialog.cpp src/qt/optionsdialog.h \ build/ui_optionsdialog.h \ - src/qt/bitcoinamountfield.h \ + src/qt/bitbeanamountfield.h \ src/qt/qvalidatedlineedit.h \ src/qt/qvaluecombobox.h \ - src/qt/bitcoinunits.h \ + src/qt/bitbeanunits.h \ src/qt/monitoreddatamapper.h \ src/netbase.h \ src/serialize.h \ @@ -1130,8 +1067,8 @@ build/optionsdialog.o: src/qt/optionsdialog.cpp src/qt/optionsdialog.h \ src/qt/optionsmodel.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/optionsdialog.o src/qt/optionsdialog.cpp -build/sendcoinsdialog.o: src/qt/sendcoinsdialog.cpp src/qt/sendcoinsdialog.h \ - build/ui_sendcoinsdialog.h \ +build/sendbeansdialog.o: src/qt/sendbeansdialog.cpp src/qt/sendbeansdialog.h \ + build/ui_sendbeansdialog.h \ src/init.h \ src/wallet.h \ src/main.h \ @@ -1154,16 +1091,6 @@ build/sendcoinsdialog.o: src/qt/sendcoinsdialog.cpp src/qt/sendcoinsdialog.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h \ src/walletdb.h \ src/db.h \ @@ -1171,18 +1098,18 @@ build/sendcoinsdialog.o: src/qt/sendcoinsdialog.cpp src/qt/sendcoinsdialog.h \ src/qt/walletmodel.h \ src/qt/addresstablemodel.h \ src/qt/addressbookpage.h \ - src/qt/bitcoinunits.h \ + src/qt/bitbeanunits.h \ src/qt/optionsmodel.h \ - src/qt/sendcoinsentry.h \ + src/qt/sendbeansentry.h \ src/qt/guiutil.h \ src/qt/askpassphrasedialog.h \ - src/coincontrol.h \ - src/qt/coincontroldialog.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/sendcoinsdialog.o src/qt/sendcoinsdialog.cpp + src/beancontrol.h \ + src/qt/beancontroldialog.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/sendbeansdialog.o src/qt/sendbeansdialog.cpp -build/coincontroldialog.o: src/qt/coincontroldialog.cpp src/qt/coincontroldialog.h \ - build/ui_coincontroldialog.h \ - src/qt/coincontroltreewidget.h \ +build/beancontroldialog.o: src/qt/beancontroldialog.cpp src/qt/beancontroldialog.h \ + build/ui_beancontroldialog.h \ + src/qt/beancontroltreewidget.h \ src/init.h \ src/wallet.h \ src/main.h \ @@ -1205,36 +1132,26 @@ build/coincontroldialog.o: src/qt/coincontroldialog.cpp src/qt/coincontroldialog src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h \ src/walletdb.h \ src/db.h \ src/base58.h \ - src/qt/bitcoinunits.h \ + src/qt/bitbeanunits.h \ src/qt/walletmodel.h \ src/qt/addresstablemodel.h \ src/qt/optionsmodel.h \ - src/coincontrol.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/coincontroldialog.o src/qt/coincontroldialog.cpp + src/beancontrol.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/beancontroldialog.o src/qt/beancontroldialog.cpp -build/coincontroltreewidget.o: src/qt/coincontroltreewidget.cpp src/qt/coincontroltreewidget.h \ - src/qt/coincontroldialog.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/coincontroltreewidget.o src/qt/coincontroltreewidget.cpp +build/beancontroltreewidget.o: src/qt/beamcontroltreewidget.cpp src/qt/beancontroltreewidget.h \ + src/qt/beancontroldialog.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/beancontroltreewidget.o src/qt/beancontroltreewidget.cpp build/addressbookpage.o: src/qt/addressbookpage.cpp src/qt/addressbookpage.h \ build/ui_addressbookpage.h \ src/qt/addresstablemodel.h \ src/qt/optionsmodel.h \ - src/qt/bitcoingui.h \ + src/qt/bitbeangui.h \ src/qt/editaddressdialog.h \ src/qt/csvmodelwriter.h \ src/qt/guiutil.h \ @@ -1269,16 +1186,6 @@ build/signverifymessagedialog.o: src/qt/signverifymessagedialog.cpp src/qt/signv src/protocol.h \ src/addrman.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h \ src/walletdb.h \ src/db.h \ @@ -1299,8 +1206,8 @@ build/editaddressdialog.o: src/qt/editaddressdialog.cpp src/qt/editaddressdialog src/qt/guiutil.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/editaddressdialog.o src/qt/editaddressdialog.cpp -build/bitcoinaddressvalidator.o: src/qt/bitcoinaddressvalidator.cpp src/qt/bitcoinaddressvalidator.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitcoinaddressvalidator.o src/qt/bitcoinaddressvalidator.cpp +build/bitbeanaddressvalidator.o: src/qt/bitbeanaddressvalidator.cpp src/qt/bitbeanaddressvalidator.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitbeanaddressvalidator.o src/qt/bitbeanaddressvalidator.cpp build/alert.o: src/alert.cpp src/alert.h \ src/uint256.h \ @@ -1392,16 +1299,6 @@ build/script.o: src/script.cpp src/script.h \ src/protocol.h \ src/addrman.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/script.o src/script.cpp build/main.o: src/main.cpp src/alert.h \ @@ -1427,16 +1324,6 @@ build/main.o: src/main.cpp src/alert.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/txdb.h \ src/txdb-leveldb.h \ src/init.h \ @@ -1469,16 +1356,6 @@ build/miner.o: src/miner.cpp src/txdb.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/miner.h \ src/wallet.h \ src/ui_interface.h \ @@ -1510,20 +1387,10 @@ build/init.o: src/init.cpp src/txdb.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/walletdb.h \ src/db.h \ src/base58.h \ - src/bitcoinrpc.h \ + src/bitbeanrpc.h \ src/json/json_spirit_reader_template.h \ src/json/json_spirit_value.h \ src/json/json_spirit_error_position.h \ @@ -1533,7 +1400,7 @@ build/init.o: src/init.cpp src/txdb.h \ src/init.h \ src/wallet.h \ src/ui_interface.h \ - src/zerocoin/ZeroTest.h + src/zerobean/ZeroTest.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/init.o src/init.cpp build/net.o: src/net.cpp src/irc.h \ @@ -1558,16 +1425,6 @@ build/net.o: src/net.cpp src/irc.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/init.h \ src/wallet.h \ src/ui_interface.h \ @@ -1576,7 +1433,6 @@ build/net.o: src/net.cpp src/irc.h \ src/strlcpy.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/net.o src/net.cpp -build/irc.o: src/irc.cpp src/irc.h \ src/net.h \ src/mruset.h \ src/netbase.h \ @@ -1597,8 +1453,7 @@ build/irc.o: src/irc.cpp src/irc.h \ src/script.h \ src/keystore.h \ src/crypter.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/irc.o src/irc.cpp - + build/checkpoints.o: src/checkpoints.cpp src/checkpoints.h \ src/net.h \ src/mruset.h \ @@ -1622,16 +1477,7 @@ build/checkpoints.o: src/checkpoints.cpp src/checkpoints.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/checkpoints.o src/checkpoints.cpp build/addrman.o: src/addrman.cpp src/addrman.h \ @@ -1668,16 +1514,6 @@ build/db.o: src/db.cpp src/db.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/db.o src/db.cpp @@ -1703,16 +1539,6 @@ build/walletdb.o: src/walletdb.cpp src/walletdb.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/base58.h \ src/wallet.h \ src/ui_interface.h @@ -1744,24 +1570,14 @@ build/clientmodel.o: src/qt/clientmodel.cpp src/qt/clientmodel.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/clientmodel.o src/qt/clientmodel.cpp build/guiutil.o: src/qt/guiutil.cpp src/qt/guiutil.h \ - src/qt/bitcoinaddressvalidator.h \ + src/qt/bitbeanaddressvalidator.h \ src/qt/walletmodel.h \ src/allocators.h \ - src/qt/bitcoinunits.h \ + src/qt/bitbeanunits.h \ src/util.h \ src/uint256.h \ src/netbase.h \ @@ -1783,16 +1599,6 @@ build/guiutil.o: src/qt/guiutil.cpp src/qt/guiutil.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h \ src/walletdb.h \ src/db.h \ @@ -1821,16 +1627,6 @@ build/transactionrecord.o: src/qt/transactionrecord.cpp src/qt/transactionrecord src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h \ src/walletdb.h \ src/db.h \ @@ -1838,7 +1634,7 @@ build/transactionrecord.o: src/qt/transactionrecord.cpp src/qt/transactionrecord $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/transactionrecord.o src/qt/transactionrecord.cpp build/optionsmodel.o: src/qt/optionsmodel.cpp src/qt/optionsmodel.h \ - src/qt/bitcoinunits.h \ + src/qt/bitbeanunits.h \ src/init.h \ src/wallet.h \ src/main.h \ @@ -1861,16 +1657,6 @@ build/optionsmodel.o: src/qt/optionsmodel.cpp src/qt/optionsmodel.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h \ src/walletdb.h \ src/db.h \ @@ -1883,7 +1669,7 @@ build/monitoreddatamapper.o: src/qt/monitoreddatamapper.cpp src/qt/monitoreddata build/transactiondesc.o: src/qt/transactiondesc.cpp src/qt/transactiondesc.h \ src/qt/guiutil.h \ - src/qt/bitcoinunits.h \ + src/qt/bitbeanunits.h \ src/main.h \ src/bignum.h \ src/serialize.h \ @@ -1904,16 +1690,6 @@ build/transactiondesc.o: src/qt/transactiondesc.cpp src/qt/transactiondesc.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/wallet.h \ src/ui_interface.h \ src/walletdb.h \ @@ -1928,14 +1704,14 @@ build/transactiondescdialog.o: src/qt/transactiondescdialog.cpp src/qt/transacti src/qt/transactiontablemodel.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/transactiondescdialog.o src/qt/transactiondescdialog.cpp -build/bitcoinstrings.o: src/qt/bitcoinstrings.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitcoinstrings.o src/qt/bitcoinstrings.cpp +build/bitbeanstrings.o: src/qt/bitbeanstrings.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitbeanstrings.o src/qt/bitbeanstrings.cpp -build/bitcoinamountfield.o: src/qt/bitcoinamountfield.cpp src/qt/bitcoinamountfield.h \ +build/bitbeanamountfield.o: src/qt/bitbeanamountfield.cpp src/qt/bitbeanamountfield.h \ src/qt/qvaluecombobox.h \ - src/qt/bitcoinunits.h \ + src/qt/bitbeanunits.h \ src/qt/guiconstants.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitcoinamountfield.o src/qt/bitcoinamountfield.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitbeanamountfield.o src/qt/bitbeanamountfield.cpp build/wallet.o: src/wallet.cpp src/txdb.h \ src/txdb-leveldb.h \ @@ -1959,23 +1735,13 @@ build/wallet.o: src/wallet.cpp src/txdb.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/wallet.h \ src/ui_interface.h \ src/walletdb.h \ src/db.h \ src/base58.h \ src/kernel.h \ - src/coincontrol.h + src/beancontrol.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/wallet.o src/wallet.cpp build/keystore.o: src/keystore.cpp src/keystore.h \ @@ -2008,7 +1774,7 @@ build/transactionview.o: src/qt/transactionview.cpp src/qt/transactionview.h \ src/allocators.h \ src/qt/addresstablemodel.h \ src/qt/transactiontablemodel.h \ - src/qt/bitcoinunits.h \ + src/qt/bitbeanunits.h \ src/qt/csvmodelwriter.h \ src/qt/transactiondescdialog.h \ src/qt/editaddressdialog.h \ @@ -2043,22 +1809,12 @@ build/walletmodel.o: src/qt/walletmodel.cpp src/qt/walletmodel.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/walletdb.h \ src/db.h \ src/base58.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/walletmodel.o src/qt/walletmodel.cpp -build/bitcoinrpc.o: src/bitcoinrpc.cpp src/init.h \ +build/bitbeanrpc.o: src/bitbeanrpc.cpp src/init.h \ src/wallet.h \ src/main.h \ src/bignum.h \ @@ -2080,28 +1836,18 @@ build/bitcoinrpc.o: src/bitcoinrpc.cpp src/init.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h \ src/walletdb.h \ src/db.h \ src/base58.h \ - src/bitcoinrpc.h \ + src/bitbeanrpc.h \ src/json/json_spirit_reader_template.h \ src/json/json_spirit_value.h \ src/json/json_spirit_error_position.h \ src/json/json_spirit_writer_template.h \ src/json/json_spirit_utils.h \ src/checkpoints.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitcoinrpc.o src/bitcoinrpc.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitbeanrpc.o src/bitbeanrpc.cpp build/rpcdump.o: src/rpcdump.cpp src/init.h \ src/wallet.h \ @@ -2125,21 +1871,11 @@ build/rpcdump.o: src/rpcdump.cpp src/init.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h \ src/walletdb.h \ src/db.h \ src/base58.h \ - src/bitcoinrpc.h \ + src/bitbeanrpc.h \ src/json/json_spirit_reader_template.h \ src/json/json_spirit_value.h \ src/json/json_spirit_error_position.h \ @@ -2161,7 +1897,7 @@ build/rpcnet.o: src/rpcnet.cpp src/net.h \ src/addrman.h \ src/util.h \ src/sync.h \ - src/bitcoinrpc.h \ + src/bitbeanrpc.h \ src/json/json_spirit_reader_template.h \ src/json/json_spirit_value.h \ src/json/json_spirit_error_position.h \ @@ -2177,16 +1913,6 @@ build/rpcnet.o: src/rpcnet.cpp src/net.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h \ src/walletdb.h \ src/db.h \ @@ -2213,16 +1939,6 @@ build/rpcmining.o: src/rpcmining.cpp src/main.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/db.h \ src/txdb.h \ src/txdb-leveldb.h \ @@ -2232,7 +1948,7 @@ build/rpcmining.o: src/rpcmining.cpp src/main.h \ src/walletdb.h \ src/base58.h \ src/miner.h \ - src/bitcoinrpc.h \ + src/bitbeanrpc.h \ src/json/json_spirit_reader_template.h \ src/json/json_spirit_value.h \ src/json/json_spirit_error_position.h \ @@ -2262,21 +1978,11 @@ build/rpcwallet.o: src/rpcwallet.cpp src/wallet.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/ui_interface.h \ src/walletdb.h \ src/db.h \ src/base58.h \ - src/bitcoinrpc.h \ + src/bitbeanrpc.h \ src/json/json_spirit_reader_template.h \ src/json/json_spirit_value.h \ src/json/json_spirit_error_position.h \ @@ -2306,17 +2012,7 @@ build/rpcblockchain.o: src/rpcblockchain.cpp src/main.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ - src/bitcoinrpc.h \ + src/bitbeanrpc.h \ src/json/json_spirit_reader_template.h \ src/json/json_spirit_value.h \ src/json/json_spirit_error_position.h \ @@ -2340,7 +2036,7 @@ build/rpcrawtransaction.o: src/rpcrawtransaction.cpp src/base58.h \ src/keystore.h \ src/crypter.h \ src/sync.h \ - src/bitcoinrpc.h \ + src/bitbeanrpc.h \ src/json/json_spirit_reader_template.h \ src/json/json_spirit_value.h \ src/json/json_spirit_error_position.h \ @@ -2355,16 +2051,6 @@ build/rpcrawtransaction.o: src/rpcrawtransaction.cpp src/base58.h \ src/txdb-leveldb.h \ src/main.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/init.h \ src/wallet.h \ src/ui_interface.h \ @@ -2376,7 +2062,7 @@ build/overviewpage.o: src/qt/overviewpage.cpp src/qt/overviewpage.h \ build/ui_overviewpage.h \ src/qt/walletmodel.h \ src/allocators.h \ - src/qt/bitcoinunits.h \ + src/qt/bitbeanunits.h \ src/qt/optionsmodel.h \ src/qt/transactiontablemodel.h \ src/qt/transactionfilterproxy.h \ @@ -2406,25 +2092,25 @@ build/crypter.o: src/crypter.cpp src/crypter.h \ src/sync.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/crypter.o src/crypter.cpp -build/sendcoinsentry.o: src/qt/sendcoinsentry.cpp src/qt/sendcoinsentry.h \ - build/ui_sendcoinsentry.h \ - src/qt/bitcoinamountfield.h \ +build/sendbeansentry.o: src/qt/sendbeansentry.cpp src/qt/sendbeansentry.h \ + build/ui_sendbeansentry.h \ + src/qt/bitbeanamountfield.h \ src/qt/qvalidatedlineedit.h \ src/qt/guiutil.h \ - src/qt/bitcoinunits.h \ + src/qt/bitbeanunits.h \ src/qt/addressbookpage.h \ src/qt/walletmodel.h \ src/allocators.h \ src/qt/optionsmodel.h \ src/qt/addresstablemodel.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/sendcoinsentry.o src/qt/sendcoinsentry.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/sendbeansentry.o src/qt/sendbeansentry.cpp build/qvalidatedlineedit.o: src/qt/qvalidatedlineedit.cpp src/qt/qvalidatedlineedit.h \ src/qt/guiconstants.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/qvalidatedlineedit.o src/qt/qvalidatedlineedit.cpp -build/bitcoinunits.o: src/qt/bitcoinunits.cpp src/qt/bitcoinunits.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitcoinunits.o src/qt/bitcoinunits.cpp +build/bitbeanunits.o: src/qt/bitbeanunits.cpp src/qt/bitbeanunits.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/bitbeanunits.o src/qt/bitbeanunits.cpp build/qvaluecombobox.o: src/qt/qvaluecombobox.cpp src/qt/qvaluecombobox.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/qvaluecombobox.o src/qt/qvaluecombobox.cpp @@ -2466,7 +2152,7 @@ build/qtipcserver.o: src/qt/qtipcserver.cpp src/qt/qtipcserver.h \ build/rpcconsole.o: src/qt/rpcconsole.cpp src/qt/rpcconsole.h \ build/ui_rpcconsole.h \ src/qt/clientmodel.h \ - src/bitcoinrpc.h \ + src/bitbeanrpc.h \ src/json/json_spirit_reader_template.h \ src/json/json_spirit_value.h \ src/json/json_spirit_error_position.h \ @@ -2513,20 +2199,10 @@ build/noui.o: src/noui.cpp src/ui_interface.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/walletdb.h \ src/db.h \ src/base58.h \ - src/bitcoinrpc.h \ + src/bitbeanrpc.h \ src/json/json_spirit_reader_template.h \ src/json/json_spirit_value.h \ src/json/json_spirit_error_position.h \ @@ -2556,16 +2232,6 @@ build/kernel.o: src/kernel.cpp src/kernel.h \ src/crypter.h \ src/key.h \ src/scrypt.h \ - src/zerocoin/Zerocoin.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h \ src/txdb.h \ src/txdb-leveldb.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/kernel.o src/kernel.cpp @@ -2599,7 +2265,6 @@ build/scrypt.o: src/scrypt.cpp src/scrypt.h \ build/pbkdf2.o: src/pbkdf2.cpp src/pbkdf2.h $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/pbkdf2.o src/pbkdf2.cpp -build/Accumulator.o: src/zerocoin/Accumulator.cpp src/zerocoin/Zerocoin.h \ src/serialize.h \ src/allocators.h \ src/version.h \ @@ -2609,18 +2274,7 @@ build/Accumulator.o: src/zerocoin/Accumulator.cpp src/zerocoin/Zerocoin.h \ src/util.h \ src/netbase.h \ src/compat.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/Accumulator.o src/zerocoin/Accumulator.cpp - -build/AccumulatorProofOfKnowledge.o: src/zerocoin/AccumulatorProofOfKnowledge.cpp src/zerocoin/Zerocoin.h \ + src/serialize.h \ src/allocators.h \ src/version.h \ @@ -2630,18 +2284,6 @@ build/AccumulatorProofOfKnowledge.o: src/zerocoin/AccumulatorProofOfKnowledge.cp src/util.h \ src/netbase.h \ src/compat.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/AccumulatorProofOfKnowledge.o src/zerocoin/AccumulatorProofOfKnowledge.cpp - -build/Coin.o: src/zerocoin/Coin.cpp src/zerocoin/Zerocoin.h \ src/serialize.h \ src/allocators.h \ src/version.h \ @@ -2651,18 +2293,6 @@ build/Coin.o: src/zerocoin/Coin.cpp src/zerocoin/Zerocoin.h \ src/util.h \ src/netbase.h \ src/compat.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/Coin.o src/zerocoin/Coin.cpp - -build/CoinSpend.o: src/zerocoin/CoinSpend.cpp src/zerocoin/Zerocoin.h \ src/serialize.h \ src/allocators.h \ src/version.h \ @@ -2672,18 +2302,6 @@ build/CoinSpend.o: src/zerocoin/CoinSpend.cpp src/zerocoin/Zerocoin.h \ src/util.h \ src/netbase.h \ src/compat.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/CoinSpend.o src/zerocoin/CoinSpend.cpp - -build/Commitment.o: src/zerocoin/Commitment.cpp src/zerocoin/Zerocoin.h \ src/serialize.h \ src/allocators.h \ src/version.h \ @@ -2693,18 +2311,6 @@ build/Commitment.o: src/zerocoin/Commitment.cpp src/zerocoin/Zerocoin.h \ src/util.h \ src/netbase.h \ src/compat.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/Commitment.o src/zerocoin/Commitment.cpp - -build/ParamGeneration.o: src/zerocoin/ParamGeneration.cpp src/zerocoin/Zerocoin.h \ src/serialize.h \ src/allocators.h \ src/version.h \ @@ -2714,18 +2320,6 @@ build/ParamGeneration.o: src/zerocoin/ParamGeneration.cpp src/zerocoin/Zerocoin. src/util.h \ src/netbase.h \ src/compat.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/ParamGeneration.o src/zerocoin/ParamGeneration.cpp - -build/Params.o: src/zerocoin/Params.cpp src/zerocoin/Zerocoin.h \ src/serialize.h \ src/allocators.h \ src/version.h \ @@ -2735,18 +2329,6 @@ build/Params.o: src/zerocoin/Params.cpp src/zerocoin/Zerocoin.h \ src/util.h \ src/netbase.h \ src/compat.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/Params.o src/zerocoin/Params.cpp - -build/SerialNumberSignatureOfKnowledge.o: src/zerocoin/SerialNumberSignatureOfKnowledge.cpp src/zerocoin/Zerocoin.h \ src/serialize.h \ src/allocators.h \ src/version.h \ @@ -2756,18 +2338,6 @@ build/SerialNumberSignatureOfKnowledge.o: src/zerocoin/SerialNumberSignatureOfKn src/util.h \ src/netbase.h \ src/compat.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/SerialNumberSignatureOfKnowledge.o src/zerocoin/SerialNumberSignatureOfKnowledge.cpp - -build/SpendMetaData.o: src/zerocoin/SpendMetaData.cpp src/zerocoin/Zerocoin.h \ src/serialize.h \ src/allocators.h \ src/version.h \ @@ -2777,18 +2347,6 @@ build/SpendMetaData.o: src/zerocoin/SpendMetaData.cpp src/zerocoin/Zerocoin.h \ src/util.h \ src/netbase.h \ src/compat.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/SpendMetaData.o src/zerocoin/SpendMetaData.cpp - -build/ZeroTest.o: src/zerocoin/ZeroTest.cpp src/zerocoin/Zerocoin.h \ src/serialize.h \ src/allocators.h \ src/version.h \ @@ -2798,19 +2356,9 @@ build/ZeroTest.o: src/zerocoin/ZeroTest.cpp src/zerocoin/Zerocoin.h \ src/util.h \ src/netbase.h \ src/compat.h \ - src/zerocoin/Params.h \ - src/zerocoin/Coin.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ParamGeneration.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/ZeroTest.o src/zerocoin/ZeroTest.cpp - -build/moc_bitcoingui.o: build/moc_bitcoingui.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_bitcoingui.o build/moc_bitcoingui.cpp + +build/moc_bitbeangui.o: build/moc_bitbeangui.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_bitbeangui.o build/moc_bitbeangui.cpp build/moc_transactiontablemodel.o: build/moc_transactiontablemodel.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_transactiontablemodel.o build/moc_transactiontablemodel.cpp @@ -2821,14 +2369,14 @@ build/moc_addresstablemodel.o: build/moc_addresstablemodel.cpp build/moc_optionsdialog.o: build/moc_optionsdialog.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_optionsdialog.o build/moc_optionsdialog.cpp -build/moc_coincontroldialog.o: build/moc_coincontroldialog.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_coincontroldialog.o build/moc_coincontroldialog.cpp +build/moc_beancontroldialog.o: build/moc_beancontroldialog.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_beancontroldialog.o build/moc_beancontroldialog.cpp -build/moc_coincontroltreewidget.o: build/moc_coincontroltreewidget.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_coincontroltreewidget.o build/moc_coincontroltreewidget.cpp +build/moc_beancontroltreewidget.o: build/moc_beancontroltreewidget.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_beancontroltreewidget.o build/moc_beancontroltreewidget.cpp -build/moc_sendcoinsdialog.o: build/moc_sendcoinsdialog.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_sendcoinsdialog.o build/moc_sendcoinsdialog.cpp +build/moc_sendbeansdialog.o: build/moc_sendbeansdialog.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_sendbeansdialog.o build/moc_sendbeansdialog.cpp build/moc_addressbookpage.o: build/moc_addressbookpage.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_addressbookpage.o build/moc_addressbookpage.cpp @@ -2842,8 +2390,8 @@ build/moc_aboutdialog.o: build/moc_aboutdialog.cpp build/moc_editaddressdialog.o: build/moc_editaddressdialog.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_editaddressdialog.o build/moc_editaddressdialog.cpp -build/moc_bitcoinaddressvalidator.o: build/moc_bitcoinaddressvalidator.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_bitcoinaddressvalidator.o build/moc_bitcoinaddressvalidator.cpp +build/moc_bitbeanaddressvalidator.o: build/moc_bitbeanaddressvalidator.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_bitbeanaddressvalidator.o build/moc_bitbeanaddressvalidator.cpp build/moc_clientmodel.o: build/moc_clientmodel.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_clientmodel.o build/moc_clientmodel.cpp @@ -2863,8 +2411,8 @@ build/moc_transactiondesc.o: build/moc_transactiondesc.cpp build/moc_transactiondescdialog.o: build/moc_transactiondescdialog.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_transactiondescdialog.o build/moc_transactiondescdialog.cpp -build/moc_bitcoinamountfield.o: build/moc_bitcoinamountfield.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_bitcoinamountfield.o build/moc_bitcoinamountfield.cpp +build/moc_bitbeanamountfield.o: build/moc_bitbeanamountfield.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_bitbeanamountfield.o build/moc_bitbeanamountfield.cpp build/moc_transactionfilterproxy.o: build/moc_transactionfilterproxy.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_transactionfilterproxy.o build/moc_transactionfilterproxy.cpp @@ -2881,8 +2429,8 @@ build/moc_overviewpage.o: build/moc_overviewpage.cpp build/moc_csvmodelwriter.o: build/moc_csvmodelwriter.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_csvmodelwriter.o build/moc_csvmodelwriter.cpp -build/moc_sendcoinsentry.o: build/moc_sendcoinsentry.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_sendcoinsentry.o build/moc_sendcoinsentry.cpp +build/moc_sendbeansentry.o: build/moc_sendbeansentry.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_sendbeansentry.o build/moc_sendbeansentry.cpp build/moc_qvalidatedlineedit.o: build/moc_qvalidatedlineedit.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_qvalidatedlineedit.o build/moc_qvalidatedlineedit.cpp @@ -2899,8 +2447,8 @@ build/moc_notificator.o: build/moc_notificator.cpp build/moc_rpcconsole.o: build/moc_rpcconsole.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_rpcconsole.o build/moc_rpcconsole.cpp -build/qrc_bitcoin.o: qrc_bitcoin.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/qrc_bitcoin.o qrc_bitcoin.cpp +build/qrc_bitbean.o: qrc_bitbean.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/qrc_bitbean.o qrc_bitbean.cpp ####### Install diff --git a/src/Makefile.in b/src/Makefile.in index 1a5e1ac..83c9f99 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -36,23 +36,23 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ - $(srcdir)/Makefile.include $(srcdir)/bitcoin-config.h.in + $(srcdir)/Makefile.include $(srcdir)/bitbean-config.h.in @EMBEDDED_LEVELDB_TRUE@am__append_1 = \ @EMBEDDED_LEVELDB_TRUE@ -I$(top_srcdir)/src/leveldb/include \ @EMBEDDED_LEVELDB_TRUE@ -I$(top_srcdir)/src/leveldb/helpers/memenv @EMBEDDED_LEVELDB_TRUE@am__append_2 = $(top_builddir)/src/leveldb/libleveldb.a @EMBEDDED_LEVELDB_TRUE@am__append_3 = $(top_builddir)/src/leveldb/libmemenv.a -@ENABLE_WALLET_TRUE@am__append_4 = libbitcoin_wallet.a +@ENABLE_WALLET_TRUE@am__append_4 = libbitbean_wallet.a bin_PROGRAMS = $(am__EXEEXT_1) $(am__EXEEXT_2) -@BUILD_BITCOIND_TRUE@am__append_5 = bitcoind -@BUILD_BITCOIN_CLI_TRUE@am__append_6 = bitcoin-cli +@BUILD_BITCOIND_TRUE@am__append_5 = bitbeand +@BUILD_BITCOIN_CLI_TRUE@am__append_6 = bitbean-cli @GLIBC_BACK_COMPAT_TRUE@am__append_7 = compat/glibc_compat.cpp \ @GLIBC_BACK_COMPAT_TRUE@ compat/glibcxx_compat.cpp -@ENABLE_WALLET_TRUE@am__append_8 = libbitcoin_wallet.a +@ENABLE_WALLET_TRUE@am__append_8 = libbitbean_wallet.a # -@TARGET_WINDOWS_TRUE@am__append_9 = bitcoind-res.rc +@TARGET_WINDOWS_TRUE@am__append_9 = bitbeand-res.rc # -@TARGET_WINDOWS_TRUE@am__append_10 = bitcoin-cli-res.rc +@TARGET_WINDOWS_TRUE@am__append_10 = bitbean-cli-res.rc subdir = src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/src/m4/ax_boost_base.m4 \ @@ -66,14 +66,14 @@ am__aclocal_m4_deps = $(top_srcdir)/src/m4/ax_boost_base.m4 \ $(top_srcdir)/src/m4/ax_check_link_flag.m4 \ $(top_srcdir)/src/m4/ax_check_preproc_flag.m4 \ $(top_srcdir)/src/m4/ax_pthread.m4 \ - $(top_srcdir)/src/m4/bitcoin_find_bdb48.m4 \ - $(top_srcdir)/src/m4/bitcoin_qt.m4 \ - $(top_srcdir)/src/m4/bitcoin_subdir_to_include.m4 \ + $(top_srcdir)/src/m4/bitbean_find_bdb48.m4 \ + $(top_srcdir)/src/m4/bitbean_qt.m4 \ + $(top_srcdir)/src/m4/bitbean_subdir_to_include.m4 \ $(top_srcdir)/pkg.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = bitcoin-config.h +CONFIG_HEADER = bitbean-config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) @@ -84,19 +84,19 @@ am__v_AR_0 = @echo " AR " $@; AM_V_at = $(am__v_at_$(V)) am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ -libbitcoin_cli_a_AR = $(AR) $(ARFLAGS) -libbitcoin_cli_a_LIBADD = +libbitbean_cli_a_AR = $(AR) $(ARFLAGS) +libbitbean_cli_a_LIBADD = am__objects_1 = -am_libbitcoin_cli_a_OBJECTS = rpcclient.$(OBJEXT) $(am__objects_1) -libbitcoin_cli_a_OBJECTS = $(am_libbitcoin_cli_a_OBJECTS) -libbitcoin_common_a_AR = $(AR) $(ARFLAGS) -libbitcoin_common_a_LIBADD = -am__libbitcoin_common_a_SOURCES_DIST = base58.cpp allocators.cpp \ +am_libbitbean_cli_a_OBJECTS = rpcclient.$(OBJEXT) $(am__objects_1) +libbitbean_cli_a_OBJECTS = $(am_libbitbean_cli_a_OBJECTS) +libbitbean_common_a_AR = $(AR) $(ARFLAGS) +libbitbean_common_a_LIBADD = +am__libbitbean_common_a_SOURCES_DIST = base58.cpp allocators.cpp \ chainparams.cpp core.cpp hash.cpp key.cpp netbase.cpp \ protocol.cpp rpcprotocol.cpp script.cpp sync.cpp util.cpp \ version.cpp addrman.h alert.h allocators.h base58.h bignum.h \ bloom.h chainparams.h checkpoints.h checkqueue.h \ - clientversion.h coincontrol.h coins.h compat.h core.h \ + clientversion.h beancontrol.h beans.h compat.h core.h \ crypter.h db.h hash.h init.h key.h keystore.h leveldbwrapper.h \ limitedmap.h main.h miner.h mruset.h netbase.h net.h noui.h \ protocol.h rpcclient.h rpcprotocol.h rpcserver.h script.h \ @@ -107,51 +107,51 @@ am__libbitcoin_common_a_SOURCES_DIST = base58.cpp allocators.cpp \ am__dirstamp = $(am__leading_dot)dirstamp @GLIBC_BACK_COMPAT_TRUE@am__objects_2 = compat/glibc_compat.$(OBJEXT) \ @GLIBC_BACK_COMPAT_TRUE@ compat/glibcxx_compat.$(OBJEXT) -am_libbitcoin_common_a_OBJECTS = base58.$(OBJEXT) allocators.$(OBJEXT) \ +am_libbitbean_common_a_OBJECTS = base58.$(OBJEXT) allocators.$(OBJEXT) \ chainparams.$(OBJEXT) core.$(OBJEXT) hash.$(OBJEXT) \ key.$(OBJEXT) netbase.$(OBJEXT) protocol.$(OBJEXT) \ rpcprotocol.$(OBJEXT) script.$(OBJEXT) sync.$(OBJEXT) \ util.$(OBJEXT) version.$(OBJEXT) $(am__objects_1) \ $(am__objects_2) -nodist_libbitcoin_common_a_OBJECTS = -libbitcoin_common_a_OBJECTS = $(am_libbitcoin_common_a_OBJECTS) \ - $(nodist_libbitcoin_common_a_OBJECTS) -libbitcoin_server_a_AR = $(AR) $(ARFLAGS) -libbitcoin_server_a_LIBADD = -am_libbitcoin_server_a_OBJECTS = addrman.$(OBJEXT) alert.$(OBJEXT) \ - bloom.$(OBJEXT) checkpoints.$(OBJEXT) coins.$(OBJEXT) \ +nodist_libbitbean_common_a_OBJECTS = +libbitbean_common_a_OBJECTS = $(am_libbitbean_common_a_OBJECTS) \ + $(nodist_libbitbean_common_a_OBJECTS) +libbitbean_server_a_AR = $(AR) $(ARFLAGS) +libbitbean_server_a_LIBADD = +am_libbitbean_server_a_OBJECTS = addrman.$(OBJEXT) alert.$(OBJEXT) \ + bloom.$(OBJEXT) checkpoints.$(OBJEXT) beans.$(OBJEXT) \ init.$(OBJEXT) keystore.$(OBJEXT) leveldbwrapper.$(OBJEXT) \ main.$(OBJEXT) miner.$(OBJEXT) net.$(OBJEXT) noui.$(OBJEXT) \ rpcblockchain.$(OBJEXT) rpcmining.$(OBJEXT) rpcmisc.$(OBJEXT) \ rpcnet.$(OBJEXT) rpcrawtransaction.$(OBJEXT) \ rpcserver.$(OBJEXT) txdb.$(OBJEXT) txmempool.$(OBJEXT) \ $(am__objects_1) $(am__objects_1) -libbitcoin_server_a_OBJECTS = $(am_libbitcoin_server_a_OBJECTS) -libbitcoin_wallet_a_AR = $(AR) $(ARFLAGS) -libbitcoin_wallet_a_LIBADD = -am_libbitcoin_wallet_a_OBJECTS = db.$(OBJEXT) crypter.$(OBJEXT) \ +libbitbean_server_a_OBJECTS = $(am_libbitbean_server_a_OBJECTS) +libbitbean_wallet_a_AR = $(AR) $(ARFLAGS) +libbitbean_wallet_a_LIBADD = +am_libbitbean_wallet_a_OBJECTS = db.$(OBJEXT) crypter.$(OBJEXT) \ rpcdump.$(OBJEXT) rpcwallet.$(OBJEXT) wallet.$(OBJEXT) \ walletdb.$(OBJEXT) $(am__objects_1) -libbitcoin_wallet_a_OBJECTS = $(am_libbitcoin_wallet_a_OBJECTS) -@BUILD_BITCOIND_TRUE@am__EXEEXT_1 = bitcoind$(EXEEXT) -@BUILD_BITCOIN_CLI_TRUE@am__EXEEXT_2 = bitcoin-cli$(EXEEXT) +libbitbean_wallet_a_OBJECTS = $(am_libbitbean_wallet_a_OBJECTS) +@BUILD_BITCOIND_TRUE@am__EXEEXT_1 = bitbeand$(EXEEXT) +@BUILD_BITCOIN_CLI_TRUE@am__EXEEXT_2 = bitbean-cli$(EXEEXT) am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) -am__bitcoin_cli_SOURCES_DIST = bitcoin-cli.cpp bitcoin-cli-res.rc -@TARGET_WINDOWS_TRUE@am__objects_3 = bitcoin-cli-res.$(OBJEXT) -am_bitcoin_cli_OBJECTS = bitcoin-cli.$(OBJEXT) $(am__objects_3) -bitcoin_cli_OBJECTS = $(am_bitcoin_cli_OBJECTS) +am__bitbean_cli_SOURCES_DIST = bitbean-cli.cpp bitbean-cli-res.rc +@TARGET_WINDOWS_TRUE@am__objects_3 = bitbean-cli-res.$(OBJEXT) +am_bitbean_cli_OBJECTS = bitbean-cli.$(OBJEXT) $(am__objects_3) +bitbean_cli_OBJECTS = $(am_bitbean_cli_OBJECTS) am__DEPENDENCIES_1 = -bitcoin_cli_DEPENDENCIES = libbitcoin_cli.a libbitcoin_common.a \ +bitbean_cli_DEPENDENCIES = libbitbean_cli.a libbitbean_common.a \ $(am__DEPENDENCIES_1) -am__bitcoind_SOURCES_DIST = bitcoind.cpp bitcoind-res.rc -@TARGET_WINDOWS_TRUE@am__objects_4 = bitcoind-res.$(OBJEXT) -am_bitcoind_OBJECTS = bitcoind.$(OBJEXT) $(am__objects_4) -bitcoind_OBJECTS = $(am_bitcoind_OBJECTS) +am__bitbeand_SOURCES_DIST = bitbeand.cpp bitbeand-res.rc +@TARGET_WINDOWS_TRUE@am__objects_4 = bitbeand-res.$(OBJEXT) +am_bitbeand_OBJECTS = bitbeand.$(OBJEXT) $(am__objects_4) +bitbeand_OBJECTS = $(am_bitbeand_OBJECTS) am__DEPENDENCIES_2 = $(am__append_2) am__DEPENDENCIES_3 = $(am__append_3) -bitcoind_DEPENDENCIES = libbitcoin_server.a libbitcoin_cli.a \ - libbitcoin_common.a $(am__DEPENDENCIES_2) \ +bitbeand_DEPENDENCIES = libbitbean_server.a libbitbean_cli.a \ + libbitbean_common.a $(am__DEPENDENCIES_2) \ $(am__DEPENDENCIES_3) $(am__append_8) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) DEFAULT_INCLUDES = -I.@am__isrc@ @@ -182,14 +182,14 @@ am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_$(V)) am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; -SOURCES = $(libbitcoin_cli_a_SOURCES) $(libbitcoin_common_a_SOURCES) \ - $(nodist_libbitcoin_common_a_SOURCES) \ - $(libbitcoin_server_a_SOURCES) $(libbitcoin_wallet_a_SOURCES) \ - $(bitcoin_cli_SOURCES) $(bitcoind_SOURCES) -DIST_SOURCES = $(libbitcoin_cli_a_SOURCES) \ - $(am__libbitcoin_common_a_SOURCES_DIST) \ - $(libbitcoin_server_a_SOURCES) $(libbitcoin_wallet_a_SOURCES) \ - $(am__bitcoin_cli_SOURCES_DIST) $(am__bitcoind_SOURCES_DIST) +SOURCES = $(libbitbean_cli_a_SOURCES) $(libbitbean_common_a_SOURCES) \ + $(nodist_libbitbean_common_a_SOURCES) \ + $(libbitbean_server_a_SOURCES) $(libbitbean_wallet_a_SOURCES) \ + $(bitbean_cli_SOURCES) $(bitbeand_SOURCES) +DIST_SOURCES = $(libbitbean_cli_a_SOURCES) \ + $(am__libbitbean_common_a_SOURCES_DIST) \ + $(libbitbean_server_a_SOURCES) $(libbitbean_wallet_a_SOURCES) \ + $(am__bitbean_cli_SOURCES_DIST) $(am__bitbeand_SOURCES_DIST) RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ @@ -425,16 +425,16 @@ AM_CPPFLAGS = $(INCLUDES) -I$(top_builddir)/src/obj $(BDB_CPPFLAGS) \ $(BOOST_CPPFLAGS) $(BOOST_INCLUDES) $(LEVELDB_CPPFLAGS) \ -I$(builddir) $(BDB_CPPFLAGS) AM_LDFLAGS = $(PTHREAD_CFLAGS) -LIBBITCOIN_SERVER = $(top_builddir)/src/libbitcoin_server.a -LIBBITCOIN_WALLET = $(top_builddir)/src/libbitcoin_wallet.a -LIBBITCOIN_COMMON = $(top_builddir)/src/libbitcoin_common.a -LIBBITCOIN_CLI = $(top_builddir)/src/libbitcoin_cli.a -LIBBITCOINQT = $(top_builddir)/src/qt/libbitcoinqt.a -noinst_LIBRARIES = libbitcoin_server.a libbitcoin_common.a \ - libbitcoin_cli.a $(am__append_4) +LIBBITCOIN_SERVER = $(top_builddir)/src/libbitbean_server.a +LIBBITCOIN_WALLET = $(top_builddir)/src/libbitbean_wallet.a +LIBBITCOIN_COMMON = $(top_builddir)/src/libbitbean_common.a +LIBBITCOIN_CLI = $(top_builddir)/src/libbitbean_cli.a +LIBBITCOINQT = $(top_builddir)/src/qt/libbitbeanqt.a +noinst_LIBRARIES = libbitbean_server.a libbitbean_common.a \ + libbitbean_cli.a $(am__append_4) SUBDIRS = . $(BUILD_QT) $(BUILD_TEST) DIST_SUBDIRS = . qt test -# bitcoin core # +# bitbean core # BITCOIN_CORE_H = \ addrman.h \ alert.h \ @@ -445,8 +445,8 @@ BITCOIN_CORE_H = \ checkpoints.h \ checkqueue.h \ clientversion.h \ - coincontrol.h \ - coins.h \ + beancontrol.h \ + beans.h \ compat.h \ core.h \ crypter.h \ @@ -492,12 +492,12 @@ JSON_H = \ json/json_spirit_writer.h \ json/json_spirit_writer_template.h -libbitcoin_server_a_SOURCES = \ +libbitbean_server_a_SOURCES = \ addrman.cpp \ alert.cpp \ bloom.cpp \ checkpoints.cpp \ - coins.cpp \ + beans.cpp \ init.cpp \ keystore.cpp \ leveldbwrapper.cpp \ @@ -516,7 +516,7 @@ libbitcoin_server_a_SOURCES = \ $(JSON_H) \ $(BITCOIN_CORE_H) -libbitcoin_wallet_a_SOURCES = \ +libbitbean_wallet_a_SOURCES = \ db.cpp \ crypter.cpp \ rpcdump.cpp \ @@ -525,34 +525,34 @@ libbitcoin_wallet_a_SOURCES = \ walletdb.cpp \ $(BITCOIN_CORE_H) -libbitcoin_common_a_SOURCES = base58.cpp allocators.cpp \ +libbitbean_common_a_SOURCES = base58.cpp allocators.cpp \ chainparams.cpp core.cpp hash.cpp key.cpp netbase.cpp \ protocol.cpp rpcprotocol.cpp script.cpp sync.cpp util.cpp \ version.cpp $(BITCOIN_CORE_H) $(am__append_7) -libbitcoin_cli_a_SOURCES = \ +libbitbean_cli_a_SOURCES = \ rpcclient.cpp \ $(BITCOIN_CORE_H) -nodist_libbitcoin_common_a_SOURCES = $(top_srcdir)/src/obj/build.h +nodist_libbitbean_common_a_SOURCES = $(top_srcdir)/src/obj/build.h # -# bitcoind binary # -bitcoind_LDADD = libbitcoin_server.a libbitcoin_cli.a \ - libbitcoin_common.a $(LIBLEVELDB) $(LIBMEMENV) $(am__append_8) \ +# bitbeand binary # +bitbeand_LDADD = libbitbean_server.a libbitbean_cli.a \ + libbitbean_common.a $(LIBLEVELDB) $(LIBMEMENV) $(am__append_8) \ $(BOOST_LIBS) $(BDB_LIBS) -bitcoind_SOURCES = bitcoind.cpp $(am__append_9) +bitbeand_SOURCES = bitbeand.cpp $(am__append_9) -# bitcoin-cli binary # -bitcoin_cli_LDADD = \ - libbitcoin_cli.a \ - libbitcoin_common.a \ +# bitbean-cli binary # +bitbean_cli_LDADD = \ + libbitbean_cli.a \ + libbitbean_common.a \ $(BOOST_LIBS) -bitcoin_cli_SOURCES = bitcoin-cli.cpp $(am__append_10) +bitbean_cli_SOURCES = bitbean-cli.cpp $(am__append_10) CLEANFILES = leveldb/libleveldb.a leveldb/libmemenv.a *.gcda *.gcno DISTCLEANFILES = obj/build.h EXTRA_DIST = leveldb Makefile.include -all: bitcoin-config.h +all: bitbean-config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: @@ -588,29 +588,29 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): -bitcoin-config.h: stamp-h1 +bitbean-config.h: stamp-h1 @if test ! -f $@; then \ rm -f stamp-h1; \ $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ else :; fi -stamp-h1: $(srcdir)/bitcoin-config.h.in $(top_builddir)/config.status +stamp-h1: $(srcdir)/bitbean-config.h.in $(top_builddir)/config.status @rm -f stamp-h1 - cd $(top_builddir) && $(SHELL) ./config.status src/bitcoin-config.h -$(srcdir)/bitcoin-config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(SHELL) ./config.status src/bitbean-config.h +$(srcdir)/bitbean-config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: - -rm -f bitcoin-config.h stamp-h1 + -rm -f bitbean-config.h stamp-h1 clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) -libbitcoin_cli.a: $(libbitcoin_cli_a_OBJECTS) $(libbitcoin_cli_a_DEPENDENCIES) - $(AM_V_at)-rm -f libbitcoin_cli.a - $(AM_V_AR)$(libbitcoin_cli_a_AR) libbitcoin_cli.a $(libbitcoin_cli_a_OBJECTS) $(libbitcoin_cli_a_LIBADD) - $(AM_V_at)$(RANLIB) libbitcoin_cli.a +libbitbean_cli.a: $(libbitbean_cli_a_OBJECTS) $(libbitbean_cli_a_DEPENDENCIES) + $(AM_V_at)-rm -f libbitbean_cli.a + $(AM_V_AR)$(libbitbean_cli_a_AR) libbitbean_cli.a $(libbitbean_cli_a_OBJECTS) $(libbitbean_cli_a_LIBADD) + $(AM_V_at)$(RANLIB) libbitbean_cli.a compat/$(am__dirstamp): @$(MKDIR_P) compat @: > compat/$(am__dirstamp) @@ -621,18 +621,18 @@ compat/glibc_compat.$(OBJEXT): compat/$(am__dirstamp) \ compat/$(DEPDIR)/$(am__dirstamp) compat/glibcxx_compat.$(OBJEXT): compat/$(am__dirstamp) \ compat/$(DEPDIR)/$(am__dirstamp) -libbitcoin_common.a: $(libbitcoin_common_a_OBJECTS) $(libbitcoin_common_a_DEPENDENCIES) - $(AM_V_at)-rm -f libbitcoin_common.a - $(AM_V_AR)$(libbitcoin_common_a_AR) libbitcoin_common.a $(libbitcoin_common_a_OBJECTS) $(libbitcoin_common_a_LIBADD) - $(AM_V_at)$(RANLIB) libbitcoin_common.a -libbitcoin_server.a: $(libbitcoin_server_a_OBJECTS) $(libbitcoin_server_a_DEPENDENCIES) - $(AM_V_at)-rm -f libbitcoin_server.a - $(AM_V_AR)$(libbitcoin_server_a_AR) libbitcoin_server.a $(libbitcoin_server_a_OBJECTS) $(libbitcoin_server_a_LIBADD) - $(AM_V_at)$(RANLIB) libbitcoin_server.a -libbitcoin_wallet.a: $(libbitcoin_wallet_a_OBJECTS) $(libbitcoin_wallet_a_DEPENDENCIES) - $(AM_V_at)-rm -f libbitcoin_wallet.a - $(AM_V_AR)$(libbitcoin_wallet_a_AR) libbitcoin_wallet.a $(libbitcoin_wallet_a_OBJECTS) $(libbitcoin_wallet_a_LIBADD) - $(AM_V_at)$(RANLIB) libbitcoin_wallet.a +libbitbean_common.a: $(libbitbean_common_a_OBJECTS) $(libbitbean_common_a_DEPENDENCIES) + $(AM_V_at)-rm -f libbitbean_common.a + $(AM_V_AR)$(libbitbean_common_a_AR) libbitbean_common.a $(libbitbean_common_a_OBJECTS) $(libbitbean_common_a_LIBADD) + $(AM_V_at)$(RANLIB) libbitbean_common.a +libbitbean_server.a: $(libbitbean_server_a_OBJECTS) $(libbitbean_server_a_DEPENDENCIES) + $(AM_V_at)-rm -f libbitbean_server.a + $(AM_V_AR)$(libbitbean_server_a_AR) libbitbean_server.a $(libbitbean_server_a_OBJECTS) $(libbitbean_server_a_LIBADD) + $(AM_V_at)$(RANLIB) libbitbean_server.a +libbitbean_wallet.a: $(libbitbean_wallet_a_OBJECTS) $(libbitbean_wallet_a_DEPENDENCIES) + $(AM_V_at)-rm -f libbitbean_wallet.a + $(AM_V_AR)$(libbitbean_wallet_a_AR) libbitbean_wallet.a $(libbitbean_wallet_a_OBJECTS) $(libbitbean_wallet_a_LIBADD) + $(AM_V_at)$(RANLIB) libbitbean_wallet.a install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @@ -670,12 +670,12 @@ uninstall-binPROGRAMS: clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) -bitcoin-cli$(EXEEXT): $(bitcoin_cli_OBJECTS) $(bitcoin_cli_DEPENDENCIES) - @rm -f bitcoin-cli$(EXEEXT) - $(AM_V_CXXLD)$(CXXLINK) $(bitcoin_cli_OBJECTS) $(bitcoin_cli_LDADD) $(LIBS) -bitcoind$(EXEEXT): $(bitcoind_OBJECTS) $(bitcoind_DEPENDENCIES) - @rm -f bitcoind$(EXEEXT) - $(AM_V_CXXLD)$(CXXLINK) $(bitcoind_OBJECTS) $(bitcoind_LDADD) $(LIBS) +bitbean-cli$(EXEEXT): $(bitbean_cli_OBJECTS) $(bitbean_cli_DEPENDENCIES) + @rm -f bitbean-cli$(EXEEXT) + $(AM_V_CXXLD)$(CXXLINK) $(bitbean_cli_OBJECTS) $(bitbean_cli_LDADD) $(LIBS) +bitbeand$(EXEEXT): $(bitbeand_OBJECTS) $(bitbeand_DEPENDENCIES) + @rm -f bitbeand$(EXEEXT) + $(AM_V_CXXLD)$(CXXLINK) $(bitbeand_OBJECTS) $(bitbeand_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) @@ -689,12 +689,12 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/alert.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/allocators.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base58.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bitcoin-cli.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bitcoind.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bitbean-cli.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bitbeand.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bloom.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chainparams.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/checkpoints.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coins.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/beans.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/core.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/crypter.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/db.Po@am__quote@ @@ -828,7 +828,7 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) mkid -fID $$unique tags: TAGS -TAGS: tags-recursive $(HEADERS) $(SOURCES) bitcoin-config.h.in $(TAGS_DEPENDENCIES) \ +TAGS: tags-recursive $(HEADERS) $(SOURCES) bitbean-config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ @@ -845,7 +845,7 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) bitcoin-config.h.in $(TAGS_DEPENDENCI set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ - list='$(SOURCES) $(HEADERS) bitcoin-config.h.in $(LISP) $(TAGS_FILES)'; \ + list='$(SOURCES) $(HEADERS) bitbean-config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ @@ -863,9 +863,9 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) bitcoin-config.h.in $(TAGS_DEPENDENCI fi; \ fi ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES) bitcoin-config.h.in $(TAGS_DEPENDENCIES) \ +CTAGS: ctags-recursive $(HEADERS) $(SOURCES) bitbean-config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) bitcoin-config.h.in $(LISP) $(TAGS_FILES)'; \ + list='$(SOURCES) $(HEADERS) bitbean-config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ @@ -943,7 +943,7 @@ distdir: $(DISTFILES) done check-am: all-am check: check-recursive -all-am: Makefile $(LIBRARIES) $(PROGRAMS) bitcoin-config.h +all-am: Makefile $(LIBRARIES) $(PROGRAMS) bitbean-config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)"; do \ @@ -1141,7 +1141,7 @@ leveldb/%.a: CC="$(CC)" PLATFORM=$(TARGET_OS) AR="$(AR)" $(LEVELDB_TARGET_FLAGS) \ OPT="$(CXXFLAGS) $(CPPFLAGS)" -qt/bitcoinstrings.cpp: $(libbitcoin_server_a_SOURCES) $(libbitcoin_common_a_SOURCES) $(libbitcoin_cli_a_SOURCES) +qt/bitbeanstrings.cpp: $(libbitbean_server_a_SOURCES) $(libbitbean_common_a_SOURCES) $(libbitbean_cli_a_SOURCES) @test -n $(XGETTEXT) || echo "xgettext is required for updating translations" @cd $(top_srcdir); XGETTEXT=$(XGETTEXT) share/qt/extract_strings_qt.py diff --git a/src/addrman.h b/src/addrman.h index 3afe0aa..1aab664 100644 --- a/src/addrman.h +++ b/src/addrman.h @@ -1,8 +1,8 @@ // Copyright (c) 2012 Pieter Wuille // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef _BITCOIN_ADDRMAN -#define _BITCOIN_ADDRMAN 1 +#ifndef _BITBEAN_ADDRMAN +#define _BITBEAN_ADDRMAN 1 #include "netbase.h" #include "protocol.h" diff --git a/src/alert.cpp b/src/alert.cpp index 23c8e3a..a41d942 100644 --- a/src/alert.cpp +++ b/src/alert.cpp @@ -19,13 +19,10 @@ using namespace std; map mapAlerts; CCriticalSection cs_mapAlerts; -static const char* pszMainKey = ""; +static const char* pszMainKey = "020dd8d110163315b5ed74293dcb6a69fc4a2ed0e549af37f69d4ecf99e1a21f40"; -// TestNet alerts pubKey -static const char* pszTestKey = ""; +static const char* pszTestKey = "029ce30d356cdbee7553659bdd7a0bea8088791dd57c2ae7c04d28dcdd3b786861"; -// TestNet alerts private key -// "308201130201010420b665cff1884e53da26376fd1b433812c9a5a8a4d5221533b15b9629789bb7e42a081a53081a2020101302c06072a8648ce3d0101022100fffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f300604010004010704410479be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8022100fffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141020101a1440342000471dc165db490094d35cde15b1f5d755fa6ad6f2b5ed0f340e3f17f57389c3c2af113a8cbcc885bde73305a553b5640c83021128008ddf882e856336269080496" void CUnsignedAlert::SetNull() { diff --git a/src/alert.h b/src/alert.h index 10fafc3..c926e85 100644 --- a/src/alert.h +++ b/src/alert.h @@ -1,10 +1,11 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef _BITCOINALERT_H_ -#define _BITCOINALERT_H_ 1 +#ifndef _BITBEANALERT_H_ +#define _BITBEANALERT_H_ 1 #include #include diff --git a/src/allocators.h b/src/allocators.h index 99afa10..a275930 100644 --- a/src/allocators.h +++ b/src/allocators.h @@ -1,9 +1,10 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_ALLOCATORS_H -#define BITCOIN_ALLOCATORS_H +#ifndef BITBEAN_ALLOCATORS_H +#define BITBEAN_ALLOCATORS_H #include #include diff --git a/src/base58.h b/src/base58.h index b8002a8..a734f15 100644 --- a/src/base58.h +++ b/src/base58.h @@ -1,5 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2009-2012 The Bitcoin Developers +// Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -12,8 +13,8 @@ // - E-mail usually won't line-break if there's no punctuation to break at. // - Double-clicking selects the whole number as one word if it's all alphanumeric. // -#ifndef BITCOIN_BASE58_H -#define BITCOIN_BASE58_H +#ifndef BITBEAN_BASE58_H +#define BITBEAN_BASE58_H #include #include @@ -258,19 +259,19 @@ class CBase58Data * Script-hash-addresses have version 85 (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 +class CBitbeanAddress; +class CBitbeanAddressVisitor : public boost::static_visitor { private: - CBitcoinAddress *addr; + CBitbeanAddress *addr; public: - CBitcoinAddressVisitor(CBitcoinAddress *addrIn) : addr(addrIn) { } + CBitbeanAddressVisitor(CBitbeanAddress *addrIn) : addr(addrIn) { } bool operator()(const CKeyID &id) const; bool operator()(const CScriptID &id) const; bool operator()(const CNoDestination &no) const; }; -class CBitcoinAddress : public CBase58Data +class CBitbeanAddress : public CBase58Data { public: enum @@ -293,7 +294,7 @@ class CBitcoinAddress : public CBase58Data bool Set(const CTxDestination &dest) { - return boost::apply_visitor(CBitcoinAddressVisitor(this), dest); + return boost::apply_visitor(CBitbeanAddressVisitor(this), dest); } bool IsValid() const @@ -326,21 +327,21 @@ class CBitcoinAddress : public CBase58Data return fExpectTestNet == fTestNet && vchData.size() == nExpectedSize; } - CBitcoinAddress() + CBitbeanAddress() { } - CBitcoinAddress(const CTxDestination &dest) + CBitbeanAddress(const CTxDestination &dest) { Set(dest); } - CBitcoinAddress(const std::string& strAddress) + CBitbeanAddress(const std::string& strAddress) { SetString(strAddress); } - CBitcoinAddress(const char* pszAddress) + CBitbeanAddress(const char* pszAddress) { SetString(pszAddress); } @@ -393,18 +394,18 @@ class CBitcoinAddress : public CBase58Data } }; -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; } +bool inline CBitbeanAddressVisitor::operator()(const CKeyID &id) const { return addr->Set(id); } +bool inline CBitbeanAddressVisitor::operator()(const CScriptID &id) const { return addr->Set(id); } +bool inline CBitbeanAddressVisitor::operator()(const CNoDestination &id) const { return false; } /** A base58-encoded secret key */ -class CBitcoinSecret : public CBase58Data +class CBitbeanSecret : public CBase58Data { public: void SetSecret(const CSecret& vchSecret, bool fCompressed) { assert(vchSecret.size() == 32); - SetData(128 + (fTestNet ? CBitcoinAddress::PUBKEY_ADDRESS_TEST : CBitcoinAddress::PUBKEY_ADDRESS), &vchSecret[0], vchSecret.size()); + SetData(128 + (fTestNet ? CBitbeanAddress::PUBKEY_ADDRESS_TEST : CBitbeanAddress::PUBKEY_ADDRESS), &vchSecret[0], vchSecret.size()); if (fCompressed) vchData.push_back(1); } @@ -423,10 +424,10 @@ class CBitcoinSecret : public CBase58Data bool fExpectTestNet = false; switch(nVersion) { - case (128 + CBitcoinAddress::PUBKEY_ADDRESS): + case (128 + CBitbeanAddress::PUBKEY_ADDRESS): break; - case (128 + CBitcoinAddress::PUBKEY_ADDRESS_TEST): + case (128 + CBitbeanAddress::PUBKEY_ADDRESS_TEST): fExpectTestNet = true; break; @@ -446,12 +447,12 @@ class CBitcoinSecret : public CBase58Data return SetString(strSecret.c_str()); } - CBitcoinSecret(const CSecret& vchSecret, bool fCompressed) + CBitbeanSecret(const CSecret& vchSecret, bool fCompressed) { SetSecret(vchSecret, fCompressed); } - CBitcoinSecret() + CBitbeanSecret() { } }; diff --git a/src/coincontrol.h b/src/beancontrol.h similarity index 86% rename from src/coincontrol.h rename to src/beancontrol.h index 236b586..9aac580 100644 --- a/src/coincontrol.h +++ b/src/beancontrol.h @@ -1,13 +1,13 @@ -#ifndef COINCONTROL_H -#define COINCONTROL_H +#ifndef BEANCONTROL_H +#define BEANCONTROL_H -/** Coin Control Features. */ -class CCoinControl +/** Bean Control Features. */ +class CBeanControl { public: CTxDestination destChange; - CCoinControl() + CBeanControl() { SetNull(); } @@ -54,4 +54,4 @@ class CCoinControl }; -#endif // COINCONTROL_H +#endif // BEANCONTROL_H diff --git a/src/bignum.h b/src/bignum.h index 2352e7b..7ddc67e 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -1,10 +1,11 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_BIGNUM_H -#define BITCOIN_BIGNUM_H +#ifndef BITBEAN_BIGNUM_H +#define BITBEAN_BIGNUM_H #include "serialize.h" #include "uint256.h" diff --git a/src/bitcoin-config.h.in b/src/bitbean-config.h.in similarity index 100% rename from src/bitcoin-config.h.in rename to src/bitbean-config.h.in diff --git a/src/bitcoinrpc.cpp b/src/bitbeanrpc.cpp similarity index 99% rename from src/bitcoinrpc.cpp rename to src/bitbeanrpc.cpp index fed350c..697538d 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitbeanrpc.cpp @@ -8,7 +8,7 @@ #include "sync.h" #include "ui_interface.h" #include "base58.h" -#include "bitcoinrpc.h" +#include "bitbeanrpc.h" #include "db.h" #undef printf @@ -98,7 +98,7 @@ int64_t AmountFromValue(const Value& value) double dAmount = value.get_real(); if (dAmount <= 0.0 || dAmount > MAX_MONEY) throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount"); - int64_t nAmount = roundint64(dAmount * COIN); + int64_t nAmount = roundint64(dAmount * bean); if (!MoneyRange(nAmount)) throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount"); return nAmount; @@ -106,7 +106,7 @@ int64_t AmountFromValue(const Value& value) Value ValueFromAmount(int64_t amount) { - return (double)amount / (double)COIN; + return (double)amount / (double)bean; } std::string HexBits(unsigned int nBits) @@ -495,7 +495,7 @@ bool HTTPAuthorized(map& mapHeaders) } // -// JSON-RPC protocol. Bitcoin speaks version 1.0 for maximum compatibility, +// JSON-RPC protocol. Bitbean speaks version 1.0 for maximum compatibility, // but uses JSON-RPC 1.1/2.0 standards for parts of the 1.0 standard that were // unspecified (HTTP errors and contents of 'error'). // diff --git a/src/bitcoinrpc.h b/src/bitbeanrpc.h similarity index 98% rename from src/bitcoinrpc.h rename to src/bitbeanrpc.h index 8495fc9..ab2b1a1 100644 --- a/src/bitcoinrpc.h +++ b/src/bitbeanrpc.h @@ -3,8 +3,8 @@ // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef _BITCOINRPC_H_ -#define _BITCOINRPC_H_ 1 +#ifndef _BITBEANRPC_H_ +#define _BITBEANRPC_H_ 1 #include #include @@ -30,7 +30,7 @@ enum HTTPStatusCode HTTP_INTERNAL_SERVER_ERROR = 500, }; -// Bitcoin RPC error codes +// Bitbean RPC error codes enum RPCErrorCode { // Standard JSON-RPC 2.0 errors @@ -51,7 +51,7 @@ enum RPCErrorCode RPC_DESERIALIZATION_ERROR = -22, // Error parsing or validating structure in raw format // P2P client errors - RPC_CLIENT_NOT_CONNECTED = -9, // Bitcoin is not connected + RPC_CLIENT_NOT_CONNECTED = -9, // Bitbean is not connected RPC_CLIENT_IN_INITIAL_DOWNLOAD = -10, // Still downloading initial blocks // Wallet errors @@ -100,7 +100,7 @@ class CRPCCommand }; /** - * Bitcoin RPC command dispatcher. + * Bitbean RPC command dispatcher. */ class CRPCTable { diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index bc8f7c1..92d30c8 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -1,4 +1,5 @@ // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -28,7 +29,8 @@ namespace Checkpoints static MapCheckpoints mapCheckpoints = boost::assign::map_list_of ( 0, hashGenesisBlock ) - (11111, uint256("0xdfa8f0f85cbffeb3edd67a1d1ab94c6407e33d1b4b7900bf7ced592d9cc3898a")) + (11111, uint256("0xdfa8f0f85cbffeb3edd67a1d1ab94c6407e33d1b4b7900bf7ced592d9cc3898a")) + (322748, uint256("0x191e1f49ceead4324ed96982c3bb3dd11acfb18c81cd0d7a4ea3ab4ffb733858")) ; // TestNet has no checkpoints @@ -67,7 +69,7 @@ namespace Checkpoints return NULL; } - // ppcoin: synchronized checkpoint (centrally broadcasted) + // ppbean: synchronized checkpoint (centrally broadcasted) uint256 hashSyncCheckpoint = 0; uint256 hashPendingCheckpoint = 0; CSyncCheckpoint checkpointMessage; @@ -75,7 +77,7 @@ namespace Checkpoints uint256 hashInvalidCheckpoint = 0; CCriticalSection cs_hashSyncCheckpoint; - // ppcoin: get last synchronized checkpoint + // ppbean: get last synchronized checkpoint CBlockIndex* GetLastSyncCheckpoint() { LOCK(cs_hashSyncCheckpoint); @@ -86,7 +88,7 @@ namespace Checkpoints return NULL; } - // ppcoin: only descendant of current sync-checkpoint is allowed + // ppbean: only descendant of current sync-checkpoint is allowed bool ValidateSyncCheckpoint(uint256 hashCheckpoint) { if (!mapBlockIndex.count(hashSyncCheckpoint)) @@ -239,7 +241,7 @@ namespace Checkpoints return false; } - // ppcoin: reset synchronized checkpoint to last hardened checkpoint + // ppbean: reset synchronized checkpoint to last hardened checkpoint bool ResetSyncCheckpoint() { LOCK(cs_hashSyncCheckpoint); @@ -345,17 +347,17 @@ namespace Checkpoints // sync-checkpoint should always be accepted block assert(mapBlockIndex.count(hashSyncCheckpoint)); const CBlockIndex* pindexSync = mapBlockIndex[hashSyncCheckpoint]; - return (nBestHeight >= pindexSync->nHeight + nCoinbaseMaturity || + return (nBestHeight >= pindexSync->nHeight + nBeanbaseMaturity || pindexSync->GetBlockTime() + nStakeMinAge < GetAdjustedTime()); } } -// ppcoin: sync-checkpoint master key +// ppbean: sync-checkpoint master key const std::string CSyncCheckpoint::strMasterPubKey = ""; std::string CSyncCheckpoint::strMasterPrivKey = ""; -// ppcoin: verify signature of sync-checkpoint message +// ppbean: verify signature of sync-checkpoint message bool CSyncCheckpoint::CheckSignature() { CKey key; @@ -370,7 +372,7 @@ bool CSyncCheckpoint::CheckSignature() return true; } -// ppcoin: process synchronized checkpoint +// ppbean: process synchronized checkpoint bool CSyncCheckpoint::ProcessSyncCheckpoint(CNode* pfrom) { if (!CheckSignature()) diff --git a/src/checkpoints.h b/src/checkpoints.h index 0bba6cd..f95a8bc 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -1,8 +1,9 @@ // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_CHECKPOINT_H -#define BITCOIN_CHECKPOINT_H +#ifndef BITBEAN_CHECKPOINT_H +#define BITBEAN_CHECKPOINT_H #include #include "net.h" @@ -61,7 +62,7 @@ namespace Checkpoints bool IsMatureSyncCheckpoint(); } -// ppcoin: synchronized checkpoint +// ppbean: synchronized checkpoint class CUnsignedSyncCheckpoint { public: diff --git a/src/clientversion.h b/src/clientversion.h index 94d53c2..84ea639 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -5,9 +5,9 @@ // client versioning // -// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it +// These need to be macros, as version.cpp's and bitbean-qt.rc's voodoo requires it #define CLIENT_VERSION_MAJOR 1 -#define CLIENT_VERSION_MINOR 0 +#define CLIENT_VERSION_MINOR 1 #define CLIENT_VERSION_REVISION 0 #define CLIENT_VERSION_BUILD 0 diff --git a/src/compat.h b/src/compat.h index d09ec4f..69e1d9e 100644 --- a/src/compat.h +++ b/src/compat.h @@ -1,9 +1,10 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef _BITCOIN_COMPAT_H -#define _BITCOIN_COMPAT_H 1 +#ifndef _BITBEAN_COMPAT_H +#define _BITBEAN_COMPAT_H 1 #ifdef WIN32 #define _WIN32_WINNT 0x0501 diff --git a/src/crypter.cpp b/src/crypter.cpp index 3a7f997..508e782 100644 --- a/src/crypter.cpp +++ b/src/crypter.cpp @@ -1,4 +1,5 @@ -// Copyright (c) 2009-2012 The Bitcoin Developers +// Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // 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/crypter.h b/src/crypter.h index 68b8803..4277ba6 100644 --- a/src/crypter.h +++ b/src/crypter.h @@ -1,4 +1,5 @@ -// Copyright (c) 2009-2012 The Bitcoin Developers +// Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef __CRYPTER_H__ diff --git a/src/db.cpp b/src/db.cpp index 03478ca..03a4891 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -1,5 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // 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/db.h b/src/db.h index 9a8af31..9ed931d 100644 --- a/src/db.h +++ b/src/db.h @@ -1,9 +1,10 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_DB_H -#define BITCOIN_DB_H +#ifndef BITBEAN_DB_H +#define BITBEAN_DB_H #include "main.h" @@ -323,4 +324,4 @@ class CAddrDB bool Read(CAddrMan& addr); }; -#endif // BITCOIN_DB_H +#endif // BITBEAN_DB_H diff --git a/src/init.cpp b/src/init.cpp index d653fec..53b9459 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1,16 +1,16 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "txdb.h" #include "walletdb.h" -#include "bitcoinrpc.h" +#include "bitbeanrpc.h" #include "net.h" #include "init.h" #include "util.h" #include "ui_interface.h" #include "checkpoints.h" -#include "zerocoin/ZeroTest.h" #include #include #include @@ -52,7 +52,7 @@ void ExitTimeout(void* parg) void StartShutdown() { #ifdef QT_GUI - // ensure we leave the Qt main loop for a clean GUI exit (Shutdown() is called in bitcoin.cpp afterwards) + // ensure we leave the Qt main loop for a clean GUI exit (Shutdown() is called in bitbean.cpp afterwards) uiInterface.QueueShutdown(); #else // Without UI, Shutdown() can simply be started in a new thread @@ -94,7 +94,7 @@ void Shutdown(void* parg) printf("BitBean exited\n\n"); fExit = true; #ifndef QT_GUI - // ensure non-UI client gets exited here, but let Bitcoin-Qt reach 'return 0;' in bitcoin.cpp + // ensure non-UI client gets exited here, but let Bitbean-Qt reach 'return 0;' in bitbean.cpp exit(0); #endif } @@ -134,7 +134,7 @@ bool AppInit(int argc, char* argv[]) // // Parameters // - // If Qt is used, parameters/bitcoin.conf are parsed in qt/bitcoin.cpp's main() + // If Qt is used, parameters/bitbean.conf are parsed in qt/bitbean.cpp's main() ParseParameters(argc, argv); if (!boost::filesystem::is_directory(GetDataDir(false))) { @@ -145,7 +145,7 @@ bool AppInit(int argc, char* argv[]) if (mapArgs.count("-?") || mapArgs.count("--help")) { - // First part of help message is specific to bitcoind / RPC client + // First part of help message is specific to bitbeand / RPC client std::string strUsage = _("BitBean version") + " " + FormatFullVersion() + "\n\n" + _("Usage:") + "\n" + " BitBeand [options] " + "\n" + @@ -187,7 +187,7 @@ int main(int argc, char* argv[]) { bool fRet = false; - // Connect bitcoind signal handlers + // Connect bitbeand signal handlers noui_connect(); fRet = AppInit(argc, argv); @@ -248,11 +248,10 @@ std::string HelpMessage() " -externalip= " + _("Specify your own public address") + "\n" + " -onlynet= " + _("Only connect to nodes in network (IPv4, IPv6 or Tor)") + "\n" + " -discover " + _("Discover own IP address (default: 1 when listening and no -externalip)") + "\n" + - " -irc " + _("Find peers using internet relay chat (default: 0)") + "\n" + " -listen " + _("Accept connections from outside (default: 1 if no -proxy or -connect)") + "\n" + " -bind= " + _("Bind to given address. Use [host]:port notation for IPv6") + "\n" + " -dnsseed " + _("Find peers using DNS lookup (default: 1)") + "\n" + - " -staking " + _("Stake your coins to support network and gain reward (default: 1)") + "\n" + + " -sprout " + _("Sprout your beans to support the network and grow new beans! (default: 1)") + "\n" + " -synctime " + _("Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1)") + "\n" + " -cppolicy " + _("Sync checkpoints policy (default: strict)") + "\n" + " -banscore= " + _("Threshold for disconnecting misbehaving peers (default: 100)") + "\n" + @@ -307,7 +306,7 @@ std::string HelpMessage() " -blockmaxsize= " + _("Set maximum block size in bytes (default: 250000)") + "\n" + " -blockprioritysize= " + _("Set maximum size of high-priority/low-fee transactions in bytes (default: 27000)") + "\n" + - "\n" + _("SSL options: (see the Bitcoin Wiki for SSL setup instructions)") + "\n" + + "\n" + _("SSL options: (see the Bitbean Wiki for SSL setup instructions)") + "\n" + " -rpcssl " + _("Use OpenSSL (https) for JSON-RPC connections") + "\n" + " -rpcsslcertificatechainfile= " + _("Server certificate file (default: server.cert)") + "\n" + " -rpcsslprivatekeyfile= " + _("Server private key (default: server.pem)") + "\n" + @@ -316,7 +315,7 @@ std::string HelpMessage() return strUsage; } -/** Initialize bitcoin. +/** Initialize bitbean. * @pre Parameters should be parsed and config file should be read. */ bool AppInit2() @@ -384,9 +383,6 @@ bool AppInit2() nDerivationMethodIndex = 0; fTestNet = GetBoolArg("-testnet"); - if (fTestNet) { - SoftSetBoolArg("-irc", true); - } if (mapArgs.count("-bind")) { // when specifying an explicit binding address, you want to listen on it @@ -463,7 +459,7 @@ bool AppInit2() { if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee)) return InitError(strprintf(_("Invalid amount for -paytxfee=: '%s'"), mapArgs["-paytxfee"].c_str())); - if (nTransactionFee > 0.25 * COIN) + if (nTransactionFee > 0.25 * bean) InitWarning(_("Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction.")); } @@ -485,7 +481,7 @@ bool AppInit2() if (strWalletFileName != boost::filesystem::basename(strWalletFileName) + boost::filesystem::extension(strWalletFileName)) return InitError(strprintf(_("Wallet %s resides outside data directory %s."), strWalletFileName.c_str(), strDataDir.c_str())); - // Make sure only a single Bitcoin process is using the data directory. + // Make sure only a single Bitbean process is using the data directory. boost::filesystem::path pathLockFile = GetDataDir() / ".lock"; FILE* file = fopen(pathLockFile.string().c_str(), "a"); // empty lock file; created if it doesn't exist. if (file) fclose(file); @@ -658,7 +654,7 @@ bool AppInit2() } } - if (mapArgs.count("-reservebalance")) // ppcoin: reserve balance amount + if (mapArgs.count("-reservebalance")) // ppbean: reserve balance amount { if (!ParseMoney(mapArgs["-reservebalance"], nReserveBalance)) { @@ -667,7 +663,7 @@ bool AppInit2() } } - if (mapArgs.count("-checkpointkey")) // ppcoin: checkpoint master priv key + if (mapArgs.count("-checkpointkey")) // ppbean: checkpoint master priv key { if (!Checkpoints::SetCheckpointPrivKey(GetArg("-checkpointkey", ""))) InitError(_("Unable to sign checkpoint, wrong checkpointkey?\n")); @@ -702,7 +698,7 @@ bool AppInit2() // as LoadBlockIndex can take several minutes, it's possible the user - // requested to kill bitcoin-qt during the last operation. If so, exit. + // requested to kill bitbean-qt during the last operation. If so, exit. // As the program has not fully started yet, Shutdown() is possibly overkill. if (fRequestShutdown) { @@ -740,16 +736,6 @@ bool AppInit2() return false; } - // ********************************************************* Testing Zerocoin - - - if (GetBoolArg("-zerotest", false)) - { - printf("\n=== ZeroCoin tests start ===\n"); - Test_RunAllTests(); - printf("=== ZeroCoin tests end ===\n\n"); - } - // ********************************************************* Step 8: load wallet uiInterface.InitMessage(_("Loading wallet...")); diff --git a/src/init.h b/src/init.h index 7a17622..b84c3bb 100644 --- a/src/init.h +++ b/src/init.h @@ -1,9 +1,10 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_INIT_H -#define BITCOIN_INIT_H +#ifndef BITBEAN_INIT_H +#define BITBEAN_INIT_H #include "wallet.h" diff --git a/src/irc.cpp b/src/irc.cpp deleted file mode 100644 index b62c0e6..0000000 --- a/src/irc.cpp +++ /dev/null @@ -1,405 +0,0 @@ -// Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2009-2012 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 "irc.h" -#include "net.h" -#include "strlcpy.h" -#include "base58.h" - -using namespace std; -using namespace boost; - -int nGotIRCAddresses = 0; - -void ThreadIRCSeed2(void* parg); - - - - -#pragma pack(push, 1) -struct ircaddr -{ - struct in_addr ip; - short port; -}; -#pragma pack(pop) - -string EncodeAddress(const CService& addr) -{ - struct ircaddr tmp; - if (addr.GetInAddr(&tmp.ip)) - { - tmp.port = htons(addr.GetPort()); - - vector vch(UBEGIN(tmp), UEND(tmp)); - return string("u") + EncodeBase58Check(vch); - } - return ""; -} - -bool DecodeAddress(string str, CService& addr) -{ - vector vch; - if (!DecodeBase58Check(str.substr(1), vch)) - return false; - - struct ircaddr tmp; - if (vch.size() != sizeof(tmp)) - return false; - memcpy(&tmp, &vch[0], sizeof(tmp)); - - addr = CService(tmp.ip, ntohs(tmp.port)); - return true; -} - - - - - - -static bool Send(SOCKET hSocket, const char* pszSend) -{ - if (strstr(pszSend, "PONG") != pszSend) - printf("IRC SENDING: %s\n", pszSend); - const char* psz = pszSend; - const char* pszEnd = psz + strlen(psz); - while (psz < pszEnd) - { - int ret = send(hSocket, psz, pszEnd - psz, MSG_NOSIGNAL); - if (ret < 0) - return false; - psz += ret; - } - return true; -} - -bool RecvLineIRC(SOCKET hSocket, string& strLine) -{ - while (true) - { - bool fRet = RecvLine(hSocket, strLine); - if (fRet) - { - if (fShutdown) - return false; - vector vWords; - ParseString(strLine, ' ', vWords); - if (vWords.size() >= 1 && vWords[0] == "PING") - { - strLine[1] = 'O'; - strLine += '\r'; - Send(hSocket, strLine.c_str()); - continue; - } - } - return fRet; - } -} - -int RecvUntil(SOCKET hSocket, const char* psz1, const char* psz2=NULL, const char* psz3=NULL, const char* psz4=NULL) -{ - while (true) - { - string strLine; - strLine.reserve(10000); - if (!RecvLineIRC(hSocket, strLine)) - return 0; - printf("IRC %s\n", strLine.c_str()); - if (psz1 && strLine.find(psz1) != string::npos) - return 1; - if (psz2 && strLine.find(psz2) != string::npos) - return 2; - if (psz3 && strLine.find(psz3) != string::npos) - return 3; - if (psz4 && strLine.find(psz4) != string::npos) - return 4; - } -} - -bool Wait(int nSeconds) -{ - if (fShutdown) - return false; - printf("IRC waiting %d seconds to reconnect\n", nSeconds); - for (int i = 0; i < nSeconds; i++) - { - if (fShutdown) - return false; - MilliSleep(1000); - } - return true; -} - -bool RecvCodeLine(SOCKET hSocket, const char* psz1, string& strRet) -{ - strRet.clear(); - while (true) - { - string strLine; - if (!RecvLineIRC(hSocket, strLine)) - return false; - - vector vWords; - ParseString(strLine, ' ', vWords); - if (vWords.size() < 2) - continue; - - if (vWords[1] == psz1) - { - printf("IRC %s\n", strLine.c_str()); - strRet = strLine; - return true; - } - } -} - -bool GetIPFromIRC(SOCKET hSocket, string strMyName, CNetAddr& ipRet) -{ - Send(hSocket, strprintf("USERHOST %s\r", strMyName.c_str()).c_str()); - - string strLine; - if (!RecvCodeLine(hSocket, "302", strLine)) - return false; - - vector vWords; - ParseString(strLine, ' ', vWords); - if (vWords.size() < 4) - return false; - - string str = vWords[3]; - if (str.rfind("@") == string::npos) - return false; - string strHost = str.substr(str.rfind("@")+1); - - // Hybrid IRC used by lfnet always returns IP when you userhost yourself, - // but in case another IRC is ever used this should work. - printf("GetIPFromIRC() got userhost %s\n", strHost.c_str()); - CNetAddr addr(strHost, true); - if (!addr.IsValid()) - return false; - ipRet = addr; - - return true; -} - - - -void ThreadIRCSeed(void* parg) -{ - // Make this thread recognisable as the IRC seeding thread - RenameThread("BitBean-ircseed"); - - try - { - ThreadIRCSeed2(parg); - } - catch (std::exception& e) { - PrintExceptionContinue(&e, "ThreadIRCSeed()"); - } catch (...) { - PrintExceptionContinue(NULL, "ThreadIRCSeed()"); - } - printf("ThreadIRCSeed exited\n"); -} - -void ThreadIRCSeed2(void* parg) -{ - // Don't connect to IRC if we won't use IPv4 connections. - if (IsLimited(NET_IPV4)) - return; - - // ... or if we won't make outbound connections and won't accept inbound ones. - if (mapArgs.count("-connect") && fNoListen) - return; - - // ... or if IRC is not enabled. - if (!GetBoolArg("-irc", false)) - return; - - printf("ThreadIRCSeed started\n"); - int nErrorWait = 10; - int nRetryWait = 10; - int nNameRetry = 0; - - while (!fShutdown) - { - CService addrConnect("92.243.23.21", 6667); // irc.lfnet.org - - CService addrIRC("irc.lfnet.org", 6667, true); - if (addrIRC.IsValid()) - addrConnect = addrIRC; - - SOCKET hSocket; - if (!ConnectSocket(addrConnect, hSocket)) - { - printf("IRC connect failed\n"); - nErrorWait = nErrorWait * 11 / 10; - if (Wait(nErrorWait += 60)) - continue; - else - return; - } - - if (!RecvUntil(hSocket, "Found your hostname", "using your IP address instead", "Couldn't look up your hostname", "ignoring hostname")) - { - closesocket(hSocket); - hSocket = INVALID_SOCKET; - nErrorWait = nErrorWait * 11 / 10; - if (Wait(nErrorWait += 60)) - continue; - else - return; - } - - CNetAddr addrIPv4("1.2.3.4"); // arbitrary IPv4 address to make GetLocal prefer IPv4 addresses - CService addrLocal; - string strMyName; - // Don't use our IP as our nick if we're not listening - // or if it keeps failing because the nick is already in use. - if (!fNoListen && GetLocal(addrLocal, &addrIPv4) && nNameRetry<3) - strMyName = EncodeAddress(GetLocalAddress(&addrConnect)); - if (strMyName == "") - strMyName = strprintf("x%"PRIu64"", GetRand(1000000000)); - - Send(hSocket, strprintf("NICK %s\r", strMyName.c_str()).c_str()); - Send(hSocket, strprintf("USER %s 8 * : %s\r", strMyName.c_str(), strMyName.c_str()).c_str()); - - int nRet = RecvUntil(hSocket, " 004 ", " 433 "); - if (nRet != 1) - { - closesocket(hSocket); - hSocket = INVALID_SOCKET; - if (nRet == 2) - { - printf("IRC name already in use\n"); - nNameRetry++; - Wait(10); - continue; - } - nErrorWait = nErrorWait * 11 / 10; - if (Wait(nErrorWait += 60)) - continue; - else - return; - } - nNameRetry = 0; - MilliSleep(500); - - // Get our external IP from the IRC server and re-nick before joining the channel - CNetAddr addrFromIRC; - if (GetIPFromIRC(hSocket, strMyName, addrFromIRC)) - { - printf("GetIPFromIRC() returned %s\n", addrFromIRC.ToString().c_str()); - // Don't use our IP as our nick if we're not listening - if (!fNoListen && addrFromIRC.IsRoutable()) - { - // IRC lets you to re-nick - AddLocal(addrFromIRC, LOCAL_IRC); - strMyName = EncodeAddress(GetLocalAddress(&addrConnect)); - Send(hSocket, strprintf("NICK %s\r", strMyName.c_str()).c_str()); - } - } - - if (fTestNet) { - Send(hSocket, "JOIN #BitBeanTEST\r"); - Send(hSocket, "WHO #BitBeanTEST\r"); - } else { - // randomly join #BitBean00-#BitBean05 - int channel_number = GetRandInt(5); - - // Channel number is always 0 for initial release - //int channel_number = 0; - Send(hSocket, strprintf("JOIN #BitBean%02d\r", channel_number).c_str()); - Send(hSocket, strprintf("WHO #BitBean%02d\r", channel_number).c_str()); - } - - int64_t nStart = GetTime(); - string strLine; - strLine.reserve(10000); - while (!fShutdown && RecvLineIRC(hSocket, strLine)) - { - if (strLine.empty() || strLine.size() > 900 || strLine[0] != ':') - continue; - - vector vWords; - ParseString(strLine, ' ', vWords); - if (vWords.size() < 2) - continue; - - char pszName[10000]; - pszName[0] = '\0'; - - if (vWords[1] == "352" && vWords.size() >= 8) - { - // index 7 is limited to 16 characters - // could get full length name at index 10, but would be different from join messages - strlcpy(pszName, vWords[7].c_str(), sizeof(pszName)); - printf("IRC got who\n"); - } - - if (vWords[1] == "JOIN" && vWords[0].size() > 1) - { - // :username!username@50000007.F000000B.90000002.IP JOIN :#channelname - strlcpy(pszName, vWords[0].c_str() + 1, sizeof(pszName)); - if (strchr(pszName, '!')) - *strchr(pszName, '!') = '\0'; - printf("IRC got join\n"); - } - - if (pszName[0] == 'u') - { - CAddress addr; - if (DecodeAddress(pszName, addr)) - { - addr.nTime = GetAdjustedTime(); - if (addrman.Add(addr, addrConnect, 51 * 60)) - printf("IRC got new address: %s\n", addr.ToString().c_str()); - nGotIRCAddresses++; - } - else - { - printf("IRC decode failed\n"); - } - } - } - closesocket(hSocket); - hSocket = INVALID_SOCKET; - - if (GetTime() - nStart > 20 * 60) - { - nErrorWait /= 3; - nRetryWait /= 3; - } - - nRetryWait = nRetryWait * 11 / 10; - if (!Wait(nRetryWait += 60)) - return; - } -} - - - - - - - - - - -#ifdef TEST -int main(int argc, char *argv[]) -{ - WSADATA wsadata; - if (WSAStartup(MAKEWORD(2,2), &wsadata) != NO_ERROR) - { - printf("Error at WSAStartup()\n"); - return false; - } - - ThreadIRCSeed(NULL); - - WSACleanup(); - return 0; -} -#endif diff --git a/src/irc.h b/src/irc.h deleted file mode 100644 index 119aeb3..0000000 --- a/src/irc.h +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2009-2012 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_IRC_H -#define BITCOIN_IRC_H - -void ThreadIRCSeed(void* parg); - -extern int nGotIRCAddresses; - -#endif diff --git a/src/json/json_spirit_value.h b/src/json/json_spirit_value.h index 13cc892..5fb9660 100644 --- a/src/json/json_spirit_value.h +++ b/src/json/json_spirit_value.h @@ -342,7 +342,7 @@ namespace json_spirit { std::ostringstream os; - ///// Bitcoin: Tell the types by name instead of by number + ///// Bitbean: Tell the types by name instead of by number os << "value is type " << Value_type_name[type()] << ", expected " << Value_type_name[vtype]; throw std::runtime_error( os.str() ); diff --git a/src/json/json_spirit_writer_template.h b/src/json/json_spirit_writer_template.h index 28c49dd..5847e96 100644 --- a/src/json/json_spirit_writer_template.h +++ b/src/json/json_spirit_writer_template.h @@ -28,7 +28,8 @@ namespace json_spirit template< class String_type > String_type non_printable_to_string( unsigned int c ) { - typedef typename String_type::value_type Char_type; + // Char_type locally defined but not used + // typedef typename String_type::value_type Char_type; String_type result( 6, '\\' ); @@ -125,7 +126,7 @@ namespace json_spirit case bool_type: output( value.get_bool() ); break; case int_type: output_int( value ); break; - /// Bitcoin: Added std::fixed and changed precision from 16 to 8 + /// Bitbean: Added std::fixed and changed precision from 16 to 8 case real_type: os_ << std::showpoint << std::fixed << std::setprecision(8) << value.get_real(); break; diff --git a/src/kernel.cpp b/src/kernel.cpp index 78606cf..56e56f5 100644 --- a/src/kernel.cpp +++ b/src/kernel.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2013 The PPCoin developers +// Copyright (c) 2012-2013 The PPBean developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -27,8 +27,8 @@ static std::map mapStakeModifierCheckpointsTestNet = int64_t GetWeight(int64_t nIntervalBeginning, int64_t nIntervalEnd) { // Kernel hash weight starts from 0 at the min age - // this change increases active coins participating the hash and helps - // to secure the network when proof-of-stake difficulty is low + // this change increases active beans participating the hash and helps + // to secure the network when proof-of-sprout difficulty is low return min(nIntervalEnd - nIntervalBeginning - nStakeMinAge, (int64_t)nStakeMaxAge); } @@ -109,7 +109,7 @@ static bool SelectBlockFromCandidates(vector >& vSortedBy } // Stake Modifier (hash modifier of proof-of-stake): -// The purpose of stake modifier is to prevent a txout (coin) owner from +// The purpose of stake modifier is to prevent a txout (bean) owner from // computing future proof-of-stake generated by this txout at the time // of transaction confirmation. To meet kernel protocol, the txout // must hash with a future stake modifier to generate the proof. @@ -209,7 +209,7 @@ bool ComputeNextStakeModifier(const CBlockIndex* pindexPrev, uint64_t& nStakeMod } // The stake modifier used to hash for a stake kernel is chosen as the stake -// modifier about a selection interval later than the coin generating the kernel +// modifier about a selection interval later than the bean generating the kernel static bool GetKernelStakeModifier(uint256 hashBlockFrom, uint64_t& nStakeModifier, int& nStakeModifierHeight, int64_t& nStakeModifierTime, bool fPrintProofOfStake) { nStakeModifier = 0; @@ -242,23 +242,23 @@ static bool GetKernelStakeModifier(uint256 hashBlockFrom, uint64_t& nStakeModifi return true; } -// ppcoin kernel protocol -// coinstake must meet hash target according to the protocol: +// ppbean kernel protocol +// beans sprouting must meet hash target according to the protocol: // kernel (input 0) must meet the formula -// hash(nStakeModifier + txPrev.block.nTime + txPrev.offset + txPrev.nTime + txPrev.vout.n + nTime) < bnTarget * nCoinDayWeight -// this ensures that the chance of getting a coinstake is proportional to the -// amount of coin age one owns. +// hash(nStakeModifier + txPrev.block.nTime + txPrev.offset + txPrev.nTime + txPrev.vout.n + nTime) < bnTarget * nBeanDayWeight +// this ensures that the chance of getting a newly sprouted bean is proportional to the +// amount of bean age one owns. // The reason this hash is chosen is the following: // nStakeModifier: scrambles computation to make it very difficult to precompute -// future proof-of-stake at the time of the coin's confirmation +// future proof-of-stake at the time of the bean's confirmation // txPrev.block.nTime: prevent nodes from guessing a good timestamp to // generate transaction for future advantage // txPrev.offset: offset of txPrev inside block, to reduce the chance of -// nodes generating coinstake at the same time -// txPrev.nTime: reduce the chance of nodes generating coinstake at the same +// nodes generating beansprout at the same time +// txPrev.nTime: reduce the chance of nodes generating beamstake at the same // time // txPrev.vout.n: output number of txPrev, to reduce the chance of nodes -// generating coinstake at the same time +// generating beansprout at the same time // block/tx hash should not be used here as they can be generated in vast // quantities so as to generate blocks faster, degrading the system back into // a proof-of-work situation. @@ -272,14 +272,14 @@ bool CheckStakeKernelHash(unsigned int nBits, const CBlock& blockFrom, unsigned if (nTimeBlockFrom + nStakeMinAge > nTimeTx) // Min age requirement return error("CheckStakeKernelHash() : min age violation"); - CBigNum bnTargetPerCoinDay; - bnTargetPerCoinDay.SetCompact(nBits); + CBigNum bnTargetPerBeanDay; + bnTargetPerBeanDay.SetCompact(nBits); int64_t nValueIn = txPrev.vout[prevout.n].nValue; uint256 hashBlockFrom = blockFrom.GetHash(); - CBigNum bnCoinDayWeight = CBigNum(nValueIn) * GetWeight((int64_t)txPrev.nTime, (int64_t)nTimeTx) / COIN / (24 * 60 * 60); - targetProofOfStake = (bnCoinDayWeight * bnTargetPerCoinDay).getuint256(); + CBigNum bnBeanDayWeight = CBigNum(nValueIn) * GetWeight((int64_t)txPrev.nTime, (int64_t)nTimeTx) / bean / (24 * 60 * 60); + targetProofOfStake = (bnBeanDayWeight * bnTargetPerBeanDay).getuint256(); // Calculate hash CDataStream ss(SER_GETHASH, 0); @@ -307,7 +307,7 @@ bool CheckStakeKernelHash(unsigned int nBits, const CBlock& blockFrom, unsigned } // Now check if proof-of-stake hash meets target protocol - if (CBigNum(hashProofOfStake) > bnCoinDayWeight * bnTargetPerCoinDay) + if (CBigNum(hashProofOfStake) > bnBeanDayWeight * bnTargetPerBeanDay) return false; if (fDebug && !fPrintProofOfStake) { @@ -324,13 +324,13 @@ bool CheckStakeKernelHash(unsigned int nBits, const CBlock& blockFrom, unsigned return true; } -// Check kernel hash target and coinstake signature +// Check kernel hash target and beanstake signature bool CheckProofOfStake(const CTransaction& tx, unsigned int nBits, uint256& hashProofOfStake, uint256& targetProofOfStake) { - if (!tx.IsCoinStake()) - return error("CheckProofOfStake() : called on non-coinstake %s", tx.GetHash().ToString().c_str()); + if (!tx.IsBeanStake()) + return error("CheckProofOfStake() : called on non-beansprout %s", tx.GetHash().ToString().c_str()); - // Kernel (input 0) must match the stake hash target per coin age (nBits) + // Kernel (input 0) must match the stake hash target per bean age (nBits) const CTxIn& txin = tx.vin[0]; // First try finding the previous transaction in database @@ -342,7 +342,7 @@ bool CheckProofOfStake(const CTransaction& tx, unsigned int nBits, uint256& hash // Verify signature if (!VerifySignature(txPrev, tx, 0, 0)) - return tx.DoS(100, error("CheckProofOfStake() : VerifySignature failed on coinstake %s", tx.GetHash().ToString().c_str())); + return tx.DoS(100, error("CheckProofOfStake() : VerifySignature failed on beansprout %s", tx.GetHash().ToString().c_str())); // Read block header CBlock block; @@ -350,13 +350,13 @@ bool CheckProofOfStake(const CTransaction& tx, unsigned int nBits, uint256& hash return fDebug? error("CheckProofOfStake() : read block failed") : false; // unable to read block of previous transaction if (!CheckStakeKernelHash(nBits, block, txindex.pos.nTxPos - txindex.pos.nBlockPos, txPrev, txin.prevout, tx.nTime, hashProofOfStake, targetProofOfStake, fDebug)) - return tx.DoS(1, error("CheckProofOfStake() : INFO: check kernel failed on coinstake %s, hashProof=%s", tx.GetHash().ToString().c_str(), hashProofOfStake.ToString().c_str())); // may occur during initial download or if behind on block chain sync + return tx.DoS(1, error("CheckProofOfStake() : INFO: check kernel failed on beansprout %s, hashProof=%s", tx.GetHash().ToString().c_str(), hashProofOfStake.ToString().c_str())); // may occur during initial download or if behind on block chain sync return true; } -// Check whether the coinstake timestamp meets protocol -bool CheckCoinStakeTimestamp(int64_t nTimeBlock, int64_t nTimeTx) +// Check whether the beansprout timestamp meets protocol +bool CheckBeanStakeTimestamp(int64_t nTimeBlock, int64_t nTimeTx) { // v0.3 protocol return (nTimeBlock == nTimeTx); diff --git a/src/kernel.h b/src/kernel.h index 1a5a23d..6464a2f 100644 --- a/src/kernel.h +++ b/src/kernel.h @@ -1,8 +1,8 @@ -// Copyright (c) 2012-2013 The PPCoin developers +// Copyright (c) 2012-2013 The PPBean developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef PPCOIN_KERNEL_H -#define PPCOIN_KERNEL_H +#ifndef PPbean_KERNEL_H +#define PPbean_KERNEL_H #include "main.h" @@ -20,12 +20,12 @@ bool ComputeNextStakeModifier(const CBlockIndex* pindexPrev, uint64_t& nStakeMod // Sets hashProofOfStake on success return bool CheckStakeKernelHash(unsigned int nBits, const CBlock& blockFrom, unsigned int nTxPrevOffset, const CTransaction& txPrev, const COutPoint& prevout, unsigned int nTimeTx, uint256& hashProofOfStake, uint256& targetProofOfStake, bool fPrintProofOfStake=false); -// Check kernel hash target and coinstake signature +// Check kernel hash target and beansprout signature // Sets hashProofOfStake on success return bool CheckProofOfStake(const CTransaction& tx, unsigned int nBits, uint256& hashProofOfStake, uint256& targetProofOfStake); -// Check whether the coinstake timestamp meets protocol -bool CheckCoinStakeTimestamp(int64_t nTimeBlock, int64_t nTimeTx); +// Check whether the beansprout timestamp meets protocol +bool CheckBeanStakeTimestamp(int64_t nTimeBlock, int64_t nTimeTx); // Get stake modifier checksum unsigned int GetStakeModifierChecksum(const CBlockIndex* pindex); @@ -36,4 +36,4 @@ bool CheckStakeModifierCheckpoints(int nHeight, unsigned int nStakeModifierCheck // Get time weight using supplied timestamps int64_t GetWeight(int64_t nIntervalBeginning, int64_t nIntervalEnd); -#endif // PPCOIN_KERNEL_H +#endif // PPbean_KERNEL_H diff --git a/src/key.cpp b/src/key.cpp index eac187c..7b0df27 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -1,4 +1,5 @@ // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // 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/key.h b/src/key.h index df09688..0283841 100644 --- a/src/key.h +++ b/src/key.h @@ -1,9 +1,10 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_KEY_H -#define BITCOIN_KEY_H +#ifndef BITBEAN_KEY_H +#define BITBEAN_KEY_H #include #include diff --git a/src/keystore.cpp b/src/keystore.cpp index 967c79a..9431d4e 100644 --- a/src/keystore.cpp +++ b/src/keystore.cpp @@ -1,5 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // 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/keystore.h b/src/keystore.h index ab369bb..ab65139 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -1,9 +1,10 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_KEYSTORE_H -#define BITCOIN_KEYSTORE_H +#ifndef BITBEAN_KEYSTORE_H +#define BITBEAN_KEYSTORE_H #include "crypter.h" #include "sync.h" @@ -29,7 +30,7 @@ class CKeyStore 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://en.bitbean.it/wiki/BIP_0013 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/build_detect_platform b/src/leveldb/build_detect_platform old mode 100644 new mode 100755 diff --git a/src/main.cpp b/src/main.cpp index ce72649..1a523fb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,5 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -11,7 +12,6 @@ #include "init.h" #include "ui_interface.h" #include "kernel.h" -#include "zerocoin/Zerocoin.h" #include #include #include @@ -36,7 +36,6 @@ unsigned int nTransactionsUpdated = 0; map mapBlockIndex; set > setStakeSeen; -libzerocoin::Params* ZCParams; CBigNum bnProofOfWorkLimit(~uint256(0) >> 20); // Starting Difficulty: results with 0,000244140625 proof-of-work difficulty CBigNum bnProofOfStakeLimit(~uint256(0) >> 20); @@ -52,7 +51,7 @@ unsigned int nStakeMinAge = 6 * 60 * 60; // BitBean - 6 hours unsigned int nStakeMaxAge = 6 * 60 * 60; // BitBean - 6 hours unsigned int nModifierInterval = 10 * 60; // BitBean - time to elapse before new modifier is computed -int nCoinbaseMaturity = 100; +int nBeanbaseMaturity = 100; CBlockIndex* pindexGenesisBlock = NULL; int nBestHeight = -1; @@ -72,8 +71,8 @@ set > setStakeSeenOrphan; map mapOrphanTransactions; map > mapOrphanTransactionsByPrev; -// Constant stuff for coinbase transactions we create: -CScript COINBASE_FLAGS; +// Constant stuff for beanbase transactions we create: +CScript beanBASE_FLAGS; const string strMessageMagic = "BitBean Signed Message:\n"; @@ -138,8 +137,8 @@ void SyncWithWallets(const CTransaction& tx, const CBlock* pblock, bool fUpdate, { if (!fConnect) { - // ppcoin: wallets need to refund inputs when disconnecting coinstake - if (tx.IsCoinStake()) + // ppbean: wallets need to refund inputs when disconnecting beansprout + if (tx.IsBeanStake()) { BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered) if (pwallet->IsFromMe(tx)) @@ -352,8 +351,8 @@ bool CTransaction::IsStandard() const // bool CTransaction::AreInputsStandard(const MapPrevTx& mapInputs) const { - if (IsCoinBase()) - return true; // Coinbases don't use vin normally + if (IsBeanBase()) + return true; // Beanbases don't use vin normally for (unsigned int i = 0; i < vin.size(); i++) { @@ -493,7 +492,7 @@ bool CTransaction::CheckTransaction() const for (unsigned int i = 0; i < vout.size(); i++) { const CTxOut& txout = vout[i]; - if (txout.IsEmpty() && !IsCoinBase() && !IsCoinStake()) + if (txout.IsEmpty() && !IsBeanBase() && !IsBeanStake()) return DoS(100, error("CTransaction::CheckTransaction() : txout empty for user transaction")); if (txout.nValue < 0) return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue negative")); @@ -513,10 +512,10 @@ bool CTransaction::CheckTransaction() const vInOutPoints.insert(txin.prevout); } - if (IsCoinBase()) + if (IsBeanBase()) { if (vin[0].scriptSig.size() < 2 || vin[0].scriptSig.size() > 100) - return DoS(100, error("CTransaction::CheckTransaction() : coinbase script size is invalid")); + return DoS(100, error("CTransaction::CheckTransaction() : beanbase script size is invalid")); } else { @@ -567,13 +566,13 @@ bool CTxMemPool::accept(CTxDB& txdb, CTransaction &tx, bool fCheckInputs, if (!tx.CheckTransaction()) return error("CTxMemPool::accept() : CheckTransaction failed"); - // Coinbase is only valid in a block, not as a loose transaction - if (tx.IsCoinBase()) - return tx.DoS(100, error("CTxMemPool::accept() : coinbase as individual tx")); + // Beanbase is only valid in a block, not as a loose transaction + if (tx.IsBeanBase()) + return tx.DoS(100, error("CTxMemPool::accept() : beanbase as individual tx")); - // ppcoin: coinstake is also only valid in a block, not as a loose transaction - if (tx.IsCoinStake()) - return tx.DoS(100, error("CTxMemPool::accept() : coinstake as individual tx")); + // ppbean: beansprout is also only valid in a block, not as a loose transaction + if (tx.IsBeanStake()) + return tx.DoS(100, error("CTxMemPool::accept() : beansprout as individual tx")); // To help v0.1.5 clients who would see it as a negative number if ((int64_t)tx.nLockTime > std::numeric_limits::max()) @@ -824,9 +823,9 @@ int CMerkleTx::GetDepthInMainChain(CBlockIndex* &pindexRet) const int CMerkleTx::GetBlocksToMaturity() const { - if (!(IsCoinBase() || IsCoinStake())) + if (!(IsBeanBase() || IsBeanStake())) return 0; - return max(0, (nCoinbaseMaturity+10) - GetDepthInMainChain()); + return max(0, (nBeanbaseMaturity+10) - GetDepthInMainChain()); } @@ -860,7 +859,7 @@ bool CWalletTx::AcceptWalletTransaction(CTxDB& txdb, bool fCheckInputs) // Add previous supporting transactions first BOOST_FOREACH(CMerkleTx& tx, vtxPrev) { - if (!(tx.IsCoinBase() || tx.IsCoinStake())) + if (!(tx.IsBeanBase() || tx.IsBeanStake())) { uint256 hash = tx.GetHash(); if (!mempool.exists(hash) && !txdb.ContainsTx(hash)) @@ -972,7 +971,7 @@ uint256 static GetOrphanRoot(const CBlock* pblock) return pblock->GetHash(); } -// ppcoin: find block wanted by given orphan block +// ppbean: find block wanted by given orphan block uint256 WantedByOrphan(const CBlock* pblockOrphan) { // Work back to the first block in the orphan chain @@ -981,10 +980,10 @@ uint256 WantedByOrphan(const CBlock* pblockOrphan) return pblockOrphan->hashPrevBlock; } -// miner's coin base reward +// miner's bean base reward int64_t GetProofOfWorkReward(int64_t nFees) { - int64_t nSubsidy = 100000 * COIN; + int64_t nSubsidy = 100000 * bean; if (fDebug && GetBoolArg("-printcreation")) printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy); @@ -992,14 +991,14 @@ int64_t GetProofOfWorkReward(int64_t nFees) return nSubsidy + nFees; } -// miner's coin stake reward based on coin age spent (coin-days) -int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees) +// miner's bean stake reward based on bean age spent (bean-days) +int64_t GetProofOfStakeReward(int64_t nBeanAge, int64_t nFees) { - // int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8); - int64_t nSubsidy = 1000 * COIN; + // int64_t nSubsidy = nBeanAge * bean_YEAR_REWARD * 33 / (365 * 33 + 8); + int64_t nSubsidy = 1000 * bean; if (fDebug && GetBoolArg("-printcreation")) - printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nCoinAge); + printf("GetProofOfStakeReward(): create=%s nBeanAge=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nBeanAge); return nSubsidy + nFees; } @@ -1034,7 +1033,7 @@ unsigned int ComputeMinStake(unsigned int nBase, int64_t nTime, unsigned int nBl } -// ppcoin: find last block index up to pindex +// ppbean: find last block index up to pindex const CBlockIndex* GetLastBlockIndex(const CBlockIndex* pindex, bool fProofOfStake) { while (pindex && pindex->pprev && (pindex->IsProofOfStake() != fProofOfStake)) @@ -1071,8 +1070,8 @@ unsigned int GetNextTargetRequired(const CBlockIndex* pindexLast, bool fProofOfS if (nActualSpacing < 0) nActualSpacing = nTargetSpacing; - // ppcoin: target change every block - // ppcoin: retarget with exponential moving toward target spacing + // ppbean: target change every block + // ppbean: retarget with exponential moving toward target spacing CBigNum bnNew; bnNew.SetCompact(pindexPrev->nBits); int64_t nInterval = nTargetTimespan / nTargetSpacing; @@ -1165,7 +1164,7 @@ void CBlock::UpdateTime(const CBlockIndex* pindexPrev) bool CTransaction::DisconnectInputs(CTxDB& txdb) { // Relinquish previous transactions' spent pointers - if (!IsCoinBase()) + if (!IsBeanBase()) { BOOST_FOREACH(const CTxIn& txin, vin) { @@ -1207,8 +1206,8 @@ bool CTransaction::FetchInputs(CTxDB& txdb, const map& mapTes // be dropped). If tx is definitely invalid, fInvalid will be set to true. fInvalid = false; - if (IsCoinBase()) - return true; // Coinbase transactions have no inputs to fetch. + if (IsBeanBase()) + return true; // Beanbase transactions have no inputs to fetch. for (unsigned int i = 0; i < vin.size(); i++) { @@ -1288,7 +1287,7 @@ const CTxOut& CTransaction::GetOutputFor(const CTxIn& input, const MapPrevTx& in int64_t CTransaction::GetValueIn(const MapPrevTx& inputs) const { - if (IsCoinBase()) + if (IsBeanBase()) return 0; int64_t nResult = 0; @@ -1302,7 +1301,7 @@ int64_t CTransaction::GetValueIn(const MapPrevTx& inputs) const unsigned int CTransaction::GetP2SHSigOpCount(const MapPrevTx& inputs) const { - if (IsCoinBase()) + if (IsBeanBase()) return 0; unsigned int nSigOps = 0; @@ -1320,9 +1319,9 @@ bool CTransaction::ConnectInputs(CTxDB& txdb, MapPrevTx inputs, map= txPrev.vout.size() || prevout.n >= txindex.vSpent.size()) return DoS(100, error("ConnectInputs() : %s prevout.n out of range %d %"PRIszu" %"PRIszu" prev tx %s\n%s", GetHash().ToString().substr(0,10).c_str(), prevout.n, txPrev.vout.size(), txindex.vSpent.size(), prevout.hash.ToString().substr(0,10).c_str(), txPrev.ToString().c_str())); - // If prev is coinbase or coinstake, check that it's matured - if (txPrev.IsCoinBase() || txPrev.IsCoinStake()) - for (const CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < nCoinbaseMaturity; pindex = pindex->pprev) + // If prev is beanbase or beansprout, check that it's matured + if (txPrev.IsBeanBase() || txPrev.IsBeanStake()) + for (const CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < nBeanbaseMaturity; pindex = pindex->pprev) if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile) - return error("ConnectInputs() : tried to spend %s at depth %d", txPrev.IsCoinBase() ? "coinbase" : "coinstake", pindexBlock->nHeight - pindex->nHeight); + return error("ConnectInputs() : tried to spend %s at depth %d", txPrev.IsBeanBase() ? "beanbase" : "beansprout", pindexBlock->nHeight - pindex->nHeight); - // ppcoin: check transaction timestamp + // ppbean: check transaction timestamp if (txPrev.nTime > nTime) return DoS(100, error("ConnectInputs() : transaction timestamp earlier than input transaction")); @@ -1390,7 +1389,7 @@ bool CTransaction::ConnectInputs(CTxDB& txdb, MapPrevTx inputs, map nReward) - return DoS(50, error("ConnectBlock() : coinbase reward exceeded (actual=%"PRId64" vs calculated=%"PRId64")", + return DoS(50, error("ConnectBlock() : beanbase reward exceeded (actual=%"PRId64" vs calculated=%"PRId64")", vtx[0].GetValueOut(), nReward)); } if (IsProofOfStake()) { - // ppcoin: coin stake tx earns reward instead of paying fee - uint64_t nCoinAge; - if (!vtx[1].GetCoinAge(txdb, nCoinAge)) - return error("ConnectBlock() : %s unable to get coin age for coinstake", vtx[1].GetHash().ToString().substr(0,10).c_str()); + // ppbean: bean stake tx earns reward instead of paying fee + uint64_t nBeanAge; + if (!vtx[1].GetBeanAge(txdb, nBeanAge)) + return error("ConnectBlock() : %s unable to get bean age for beansprout", vtx[1].GetHash().ToString().substr(0,10).c_str()); - int64_t nCalculatedStakeReward = GetProofOfStakeReward(nCoinAge, nFees); + int64_t nCalculatedStakeReward = GetProofOfStakeReward(nBeanAge, nFees); if (nStakeReward > nCalculatedStakeReward) - return DoS(100, error("ConnectBlock() : coinstake pays too much(actual=%"PRId64" vs calculated=%"PRId64")", nStakeReward, nCalculatedStakeReward)); + return DoS(100, error("ConnectBlock() : beansprout pays too much(actual=%"PRId64" vs calculated=%"PRId64")", nStakeReward, nCalculatedStakeReward)); } - // ppcoin: track money supply and mint amount info + // ppbean: track money supply and mint amount info pindex->nMint = nValueOut - nValueIn + nFees; pindex->nMoneySupply = (pindex->pprev? pindex->pprev->nMoneySupply : 0) + nValueOut - nValueIn; if (!txdb.WriteBlockIndex(CDiskBlockIndex(pindex))) @@ -1670,7 +1669,7 @@ bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew) // Queue memory transactions to resurrect BOOST_FOREACH(const CTransaction& tx, block.vtx) - if (!(tx.IsCoinBase() || tx.IsCoinStake())) + if (!(tx.IsBeanBase() || tx.IsBeanStake())) vResurrect.push_back(tx); } @@ -1869,19 +1868,19 @@ bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew) return true; } -// ppcoin: total coin age spent in transaction, in the unit of coin-days. -// Only those coins meeting minimum age requirement counts. As those +// ppbean: total bean age spent in transaction, in the unit of bean-days. +// Only those beans meeting minimum age requirement counts. As those // transactions not in main chain are not currently indexed so we -// might not find out about their coin age. Older transactions are +// might not find out about their bean age. Older transactions are // guaranteed to be in main chain by sync-checkpoint. This rule is -// introduced to help nodes establish a consistent view of the coin +// introduced to help nodes establish a consistent view of the bean // age (trust score) of competing branches. -bool CTransaction::GetCoinAge(CTxDB& txdb, uint64_t& nCoinAge) const +bool CTransaction::GetBeanAge(CTxDB& txdb, uint64_t& nBeanAge) const { - CBigNum bnCentSecond = 0; // coin age in the unit of cent-seconds - nCoinAge = 0; + CBigNum bnCentSecond = 0; // bean age in the unit of cent-seconds + nBeanAge = 0; - if (IsCoinBase()) + if (IsBeanBase()) return true; BOOST_FOREACH(const CTxIn& txin, vin) @@ -1899,41 +1898,41 @@ bool CTransaction::GetCoinAge(CTxDB& txdb, uint64_t& nCoinAge) const if (!block.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos, false)) return false; // unable to read block of previous transaction if (block.GetBlockTime() + nStakeMinAge > nTime) - continue; // only count coins meeting min age requirement + continue; // only count beans meeting min age requirement int64_t nValueIn = txPrev.vout[txin.prevout.n].nValue; bnCentSecond += CBigNum(nValueIn) * (nTime-txPrev.nTime) / CENT; - if (fDebug && GetBoolArg("-printcoinage")) - printf("coin age nValueIn=%"PRId64" nTimeDiff=%d bnCentSecond=%s\n", nValueIn, nTime - txPrev.nTime, bnCentSecond.ToString().c_str()); + if (fDebug && GetBoolArg("-printbeanage")) + printf("bean age nValueIn=%"PRId64" nTimeDiff=%d bnCentSecond=%s\n", nValueIn, nTime - txPrev.nTime, bnCentSecond.ToString().c_str()); } - CBigNum bnCoinDay = bnCentSecond * CENT / COIN / (24 * 60 * 60); - if (fDebug && GetBoolArg("-printcoinage")) - printf("coin age bnCoinDay=%s\n", bnCoinDay.ToString().c_str()); - nCoinAge = bnCoinDay.getuint64(); + CBigNum bnBeanDay = bnCentSecond * CENT / bean / (24 * 60 * 60); + if (fDebug && GetBoolArg("-printbeanage")) + printf("bean age bnBeanDay=%s\n", bnBeanDay.ToString().c_str()); + nBeanAge = bnBeanDay.getuint64(); return true; } -// ppcoin: total coin age spent in block, in the unit of coin-days. -bool CBlock::GetCoinAge(uint64_t& nCoinAge) const +// ppbean: total bean age spent in block, in the unit of bean-days. +bool CBlock::GetBeanAge(uint64_t& nBeanAge) const { - nCoinAge = 0; + nBeanAge = 0; CTxDB txdb("r"); BOOST_FOREACH(const CTransaction& tx, vtx) { - uint64_t nTxCoinAge; - if (tx.GetCoinAge(txdb, nTxCoinAge)) - nCoinAge += nTxCoinAge; + uint64_t nTxBeanAge; + if (tx.GetBeanAge(txdb, nTxBeanAge)) + nBeanAge += nTxBeanAge; else return false; } - if (nCoinAge == 0) // block coin age minimum 1 coin-day - nCoinAge = 1; - if (fDebug && GetBoolArg("-printcoinage")) - printf("block coin age total nCoinDays=%"PRId64"\n", nCoinAge); + if (nBeanAge == 0) // block bean age minimum 1 bean-day + nBeanAge = 1; + if (fDebug && GetBoolArg("-printbeanage")) + printf("block bean age total nBeanDays=%"PRId64"\n", nBeanAge); return true; } @@ -1956,17 +1955,17 @@ bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos, const u pindexNew->nHeight = pindexNew->pprev->nHeight + 1; } - // ppcoin: compute chain trust score + // ppbean: compute chain trust score pindexNew->nChainTrust = (pindexNew->pprev ? pindexNew->pprev->nChainTrust : 0) + pindexNew->GetBlockTrust(); - // ppcoin: compute stake entropy bit for stake modifier + // ppbean: compute stake entropy bit for stake modifier if (!pindexNew->SetStakeEntropyBit(GetStakeEntropyBit())) return error("AddToBlockIndex() : SetStakeEntropyBit() failed"); // Record proof hash value pindexNew->hashProof = hashProof; - // ppcoin: compute stake modifier + // ppbean: compute stake modifier uint64_t nStakeModifier = 0; bool fGeneratedStakeModifier = false; if (!ComputeNextStakeModifier(pindexNew->pprev, nStakeModifier, fGeneratedStakeModifier)) @@ -1997,10 +1996,10 @@ bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos, const u if (pindexNew == pindexBest) { - // Notify UI to display prev block's coinbase if it was ours - static uint256 hashPrevBestCoinBase; - UpdatedTransaction(hashPrevBestCoinBase); - hashPrevBestCoinBase = vtx[0].GetHash(); + // Notify UI to display prev block's beanbase if it was ours + static uint256 hashPrevBestBeanBase; + UpdatedTransaction(hashPrevBestBeanBase); + hashPrevBestBeanBase = vtx[0].GetHash(); } uiInterface.NotifyBlocksChanged(); @@ -2027,35 +2026,35 @@ bool CBlock::CheckBlock(bool fCheckPOW, bool fCheckMerkleRoot, bool fCheckSig) c if (GetBlockTime() > FutureDrift(GetAdjustedTime())) return error("CheckBlock() : block timestamp too far in the future"); - // First transaction must be coinbase, the rest must not be - if (vtx.empty() || !vtx[0].IsCoinBase()) - return DoS(100, error("CheckBlock() : first tx is not coinbase")); + // First transaction must be beanbase, the rest must not be + if (vtx.empty() || !vtx[0].IsBeanBase()) + return DoS(100, error("CheckBlock() : first tx is not beanbase")); for (unsigned int i = 1; i < vtx.size(); i++) - if (vtx[i].IsCoinBase()) - return DoS(100, error("CheckBlock() : more than one coinbase")); + if (vtx[i].IsBeanBase()) + return DoS(100, error("CheckBlock() : more than one beanbase")); - // Check coinbase timestamp + // Check beanbase timestamp if (GetBlockTime() > FutureDrift((int64_t)vtx[0].nTime)) - return DoS(50, error("CheckBlock() : coinbase timestamp is too early")); + return DoS(50, error("CheckBlock() : beanbase timestamp is too early")); if (IsProofOfStake()) { - // Coinbase output should be empty if proof-of-stake block + // Beanbase output should be empty if proof-of-stake block if (vtx[0].vout.size() != 1 || !vtx[0].vout[0].IsEmpty()) - return DoS(100, error("CheckBlock() : coinbase output not empty for proof-of-stake block")); + return DoS(100, error("CheckBlock() : beanbase output not empty for proof-of-stake block")); - // Second transaction must be coinstake, the rest must not be - if (vtx.empty() || !vtx[1].IsCoinStake()) - return DoS(100, error("CheckBlock() : second tx is not coinstake")); + // Second transaction must be beansprout, the rest must not be + if (vtx.empty() || !vtx[1].IsBeanStake()) + return DoS(100, error("CheckBlock() : second tx is not beansprout")); for (unsigned int i = 2; i < vtx.size(); i++) - if (vtx[i].IsCoinStake()) - return DoS(100, error("CheckBlock() : more than one coinstake")); + if (vtx[i].IsBeanStake()) + return DoS(100, error("CheckBlock() : more than one beansprout")); - // Check coinstake timestamp - if (!CheckCoinStakeTimestamp(GetBlockTime(), (int64_t)vtx[1].nTime)) - return DoS(50, error("CheckBlock() : coinstake timestamp violation nTimeBlock=%"PRId64" nTimeTx=%u", GetBlockTime(), vtx[1].nTime)); + // Check beansprout timestamp + if (!CheckBeanStakeTimestamp(GetBlockTime(), (int64_t)vtx[1].nTime)) + return DoS(50, error("CheckBlock() : beansprout timestamp violation nTimeBlock=%"PRId64" nTimeTx=%u", GetBlockTime(), vtx[1].nTime)); - // NovaCoin: check proof-of-stake block signature + // Bitbean: check proof-of-stake block signature if (fCheckSig && !CheckBlockSignature()) return DoS(100, error("CheckBlock() : bad proof-of-stake block signature")); } @@ -2066,7 +2065,7 @@ bool CBlock::CheckBlock(bool fCheckPOW, bool fCheckMerkleRoot, bool fCheckSig) c if (!tx.CheckTransaction()) return DoS(tx.nDoS, error("CheckBlock() : CheckTransaction failed")); - // ppcoin: check transaction timestamp + // ppbean: check transaction timestamp if (GetBlockTime() < (int64_t)tx.nTime) return DoS(50, error("CheckBlock() : block timestamp earlier than transaction timestamp")); } @@ -2135,7 +2134,7 @@ bool CBlock::AcceptBlock() return DoS(100, error("AcceptBlock() : rejected by hardened checkpoint lock-in at %d", nHeight)); uint256 hashProof; - // Verify hash target and signature of coinstake tx + // Verify hash target and signature of beansprout tx if (IsProofOfStake()) { uint256 targetProofOfStake; @@ -2160,11 +2159,11 @@ bool CBlock::AcceptBlock() if (CheckpointsMode == Checkpoints::ADVISORY && !cpSatisfies) strMiscWarning = _("WARNING: syncronized checkpoint violation detected, but skipped!"); - // Enforce rule that the coinbase starts with serialized block height + // Enforce rule that the beanbase starts with serialized block height CScript expect = CScript() << nHeight; if (vtx[0].vin[0].scriptSig.size() < expect.size() || !std::equal(expect.begin(), expect.end(), vtx[0].vin[0].scriptSig.begin())) - return DoS(100, error("AcceptBlock() : block height mismatch in coinbase")); + return DoS(100, error("AcceptBlock() : block height mismatch in beanbase")); // Write block to history file if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK, CLIENT_VERSION))) @@ -2186,7 +2185,7 @@ bool CBlock::AcceptBlock() pnode->PushInventory(CInv(MSG_BLOCK, hash)); } - // ppcoin: check pending sync-checkpoint + // ppbean: check pending sync-checkpoint Checkpoints::AcceptPendingSyncCheckpoint(); return true; @@ -2224,7 +2223,7 @@ bool ProcessBlock(CNode* pfrom, CBlock* pblock) if (mapOrphanBlocks.count(hash)) return error("ProcessBlock() : already have block (orphan) %s", hash.ToString().substr(0,20).c_str()); - // ppcoin: check proof-of-stake + // ppbean: check proof-of-stake // Limited duplicity on stake: prevents block flood attack // Duplicate stake allowed only when there is orphan child block if (pblock->IsProofOfStake() && setStakeSeen.count(pblock->GetProofOfStake()) && !mapOrphanBlocksByPrev.count(hash) && !Checkpoints::WantedByPendingSyncCheckpoint(hash)) @@ -2256,7 +2255,7 @@ bool ProcessBlock(CNode* pfrom, CBlock* pblock) } } - // ppcoin: ask for pending sync-checkpoint if any + // ppbean: ask for pending sync-checkpoint if any if (!IsInitialBlockDownload()) Checkpoints::AskForPendingSyncCheckpoint(pfrom); @@ -2265,7 +2264,7 @@ bool ProcessBlock(CNode* pfrom, CBlock* pblock) { printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().substr(0,20).c_str()); CBlock* pblock2 = new CBlock(*pblock); - // ppcoin: check proof-of-stake + // ppbean: check proof-of-stake if (pblock2->IsProofOfStake()) { // Limited duplicity on stake: prevents block flood attack @@ -2282,7 +2281,7 @@ bool ProcessBlock(CNode* pfrom, CBlock* pblock) if (pfrom) { pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2)); - // ppcoin: getblocks may not obtain the ancestor block rejected + // ppbean: getblocks may not obtain the ancestor block rejected // earlier by duplicate-stake check so we ask for it again directly if (!IsInitialBlockDownload()) pfrom->AskFor(CInv(MSG_BLOCK, WantedByOrphan(pblock2))); @@ -2316,14 +2315,14 @@ bool ProcessBlock(CNode* pfrom, CBlock* pblock) printf("ProcessBlock: ACCEPTED\n"); - // ppcoin: if responsible for sync-checkpoint send it + // ppbean: if responsible for sync-checkpoint send it if (pfrom && !CSyncCheckpoint::strMasterPrivKey.empty()) Checkpoints::SendSyncCheckpoint(Checkpoints::AutoSelectSyncCheckpoint()); return true; } -// novacoin: attempt to generate suitable proof-of-stake +// Bitbean: attempt to generate suitable proof-of-stake bool CBlock::SignBlock(CWallet& wallet, int64_t nFees) { // if we are trying to sign @@ -2336,21 +2335,21 @@ bool CBlock::SignBlock(CWallet& wallet, int64_t nFees) if (IsProofOfStake()) return true; - static int64_t nLastCoinStakeSearchTime = GetAdjustedTime(); // startup timestamp + static int64_t nLastBeanStakeSearchTime = GetAdjustedTime(); // startup timestamp CKey key; - CTransaction txCoinStake; - int64_t nSearchTime = txCoinStake.nTime; // search to current time + CTransaction txBeanStake; + int64_t nSearchTime = txBeanStake.nTime; // search to current time - if (nSearchTime > nLastCoinStakeSearchTime) + if (nSearchTime > nLastBeanStakeSearchTime) { - if (wallet.CreateCoinStake(wallet, nBits, nSearchTime-nLastCoinStakeSearchTime, nFees, txCoinStake, key)) + if (wallet.CreateBeanStake(wallet, nBits, nSearchTime-nLastBeanStakeSearchTime, nFees, txBeanStake, key)) { - if (txCoinStake.nTime >= max(pindexBest->GetPastTimeLimit()+1, PastDrift(pindexBest->GetBlockTime()))) + if (txBeanStake.nTime >= max(pindexBest->GetPastTimeLimit()+1, PastDrift(pindexBest->GetBlockTime()))) { - // make sure coinstake would meet timestamp protocol + // make sure beansprout would meet timestamp protocol // as it would be the same as the block timestamp - vtx[0].nTime = nTime = txCoinStake.nTime; + vtx[0].nTime = nTime = txBeanStake.nTime; nTime = max(pindexBest->GetPastTimeLimit()+1, GetMaxTransactionTime()); nTime = max(GetBlockTime(), PastDrift(pindexBest->GetBlockTime())); @@ -2359,15 +2358,15 @@ bool CBlock::SignBlock(CWallet& wallet, int64_t nFees) for (vector::iterator it = vtx.begin(); it != vtx.end();) if (it->nTime > nTime) { it = vtx.erase(it); } else { ++it; } - vtx.insert(vtx.begin() + 1, txCoinStake); + vtx.insert(vtx.begin() + 1, txBeanStake); hashMerkleRoot = BuildMerkleTree(); // append a signature to our block return key.Sign(GetHash(), vchBlockSig); } } - nLastCoinStakeSearchInterval = nSearchTime - nLastCoinStakeSearchTime; - nLastCoinStakeSearchTime = nSearchTime; + nLastBeanStakeSearchInterval = nSearchTime - nLastBeanStakeSearchTime; + nLastBeanStakeSearchTime = nSearchTime; } return false; @@ -2479,18 +2478,13 @@ bool LoadBlockIndex(bool fAllowNew) bnTrustedModulus.SetHex("f0d14cf72623dacfe738d0892b599be0f31052239cddd95a3f25101c801dc990453b38c9434efe3f372db39a32c2bb44cbaea72d62c8931fa785b0ec44531308df3e46069be5573e49bb29f4d479bfc3d162f57a5965db03810be7636da265bfced9c01a6b0296c77910ebdc8016f70174f0f18a57b3b971ac43a934c6aedbc5c866764a3622b5b7e3f9832b8b3f133c849dbcc0396588abcd1e41048555746e4823fb8aba5b3d23692c6857fccce733d6bb6ec1d5ea0afafecea14a0f6f798b6b27f77dc989c557795cc39a0940ef6bb29a7fc84135193a55bcfc2f01dd73efad1b69f45a55198bd0e6bef4d338e452f6a420f1ae2b1167b923f76633ab6e55"); bnProofOfWorkLimit = bnProofOfWorkLimitTestNet; // 16 bits PoW target limit for testnet nStakeMinAge = 1 * 60 * 60; // test net min age is 1 hour - nCoinbaseMaturity = 10; // test maturity is 10 blocks + nBeanbaseMaturity = 10; // test maturity is 10 blocks } else { bnTrustedModulus.SetHex("d01f952e1090a5a72a3eda261083256596ccc192935ae1454c2bafd03b09e6ed11811be9f3a69f5783bbbced8c6a0c56621f42c2d19087416facf2f13cc7ed7159d1c5253119612b8449f0c7f54248e382d30ecab1928dbf075c5425dcaee1a819aa13550e0f3227b8c685b14e0eae094d65d8a610a6f49fff8145259d1187e4c6a472fa5868b2b67f957cb74b787f4311dbc13c97a2ca13acdb876ff506ebecbb904548c267d68868e07a32cd9ed461fbc2f920e9940e7788fed2e4817f274df5839c2196c80abe5c486df39795186d7bc86314ae1e8342f3c884b158b4b05b4302754bf351477d35370bad6639b2195d30006b77bf3dbb28b848fd9ecff5662bf39dde0c974e83af51b0d3d642d43834827b8c3b189065514636b8f2a59c42ba9b4fc4975d4827a5d89617a3873e4b377b4d559ad165748632bd928439cfbc5a8ef49bc2220e0b15fb0aa302367d5e99e379a961c1bc8cf89825da5525e3c8f14d7d8acca2fa9c133a2176ae69874d8b1d38b26b9c694e211018005a97b40848681b9dd38feb2de141626fb82591aad20dc629b2b6421cef1227809551a0e4e943ab99841939877f18f2d9c0addc93cf672e26b02ed94da3e6d329e8ac8f3736eebbf37bb1a21e5aadf04ee8e3b542f876aa88b2adf2608bd86329b7f7a56fd0dc1c40b48188731d11082aea360c62a0840c2db3dad7178fd7e359317ae081"); } -#if 0 - // Set up the Zerocoin Params object - ZCParams = new libzerocoin::Params(bnTrustedModulus); -#endif - // // Load block index // @@ -2511,8 +2505,8 @@ bool LoadBlockIndex(bool fAllowNew) // MainNet: //CBlock(hash=000001faef25dec4fbcf906e6242621df2c183bf232f263d0ba5b101911e4563, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=12630d16a97f24b287c8c2594dda5fb98c9e6c70fc61d44191931ea2aa08dc90, nTime=1393221600, nBits=1e0fffff, nNonce=164482, vtx=1, vchBlockSig=) - // Coinbase(hash=12630d16a9, nTime=1393221600, ver=1, vin.size=1, vout.size=1, nLockTime=0) - // CTxIn(COutPoint(0000000000, 4294967295), coinbase 00012a24323020466562203230313420426974636f696e2041544d7320636f6d6520746f20555341) + // Beanbase(hash=12630d16a9, nTime=1393221600, ver=1, vin.size=1, vout.size=1, nLockTime=0) + // CTxIn(COutPoint(0000000000, 4294967295), beanbase 00012a24323020466562203230313420426974636f696e2041544d7320636f6d6520746f20555341) // CTxOut(empty) // vMerkleTree: 12630d16a9 //block.nTime = 1423862862 @@ -2523,8 +2517,8 @@ bool LoadBlockIndex(bool fAllowNew) // TestNet: //CBlock(hash=0000724595fb3b9609d441cbfb9577615c292abf07d996d3edabc48de843642d, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=12630d16a97f24b287c8c2594dda5fb98c9e6c70fc61d44191931ea2aa08dc90, nTime=1393221600, nBits=1f00ffff, nNonce=216178, vtx=1, vchBlockSig=) - // Coinbase(hash=12630d16a9, nTime=1393221600, ver=1, vin.size=1, vout.size=1, nLockTime=0) - // CTxIn(COutPoint(0000000000, 4294967295), coinbase 00012a24323020466562203230313420426974636f696e2041544d7320636f6d6520746f20555341) + // Beanbase(hash=12630d16a9, nTime=1393221600, ver=1, vin.size=1, vout.size=1, nLockTime=0) + // CTxIn(COutPoint(0000000000, 4294967295), beanbase 00012a24323020466562203230313420426974636f696e2041544d7320636f6d6520746f20555341) // CTxOut(empty) // vMerkleTree: 12630d16a9 @@ -2562,7 +2556,7 @@ bool LoadBlockIndex(bool fAllowNew) if (!block.AddToBlockIndex(nFile, nBlockPos, hashGenesisBlock)) return error("LoadBlockIndex() : genesis block not accepted"); - // ppcoin: initialize synchronized checkpoint + // ppbean: initialize synchronized checkpoint if (!Checkpoints::WriteSyncCheckpoint((!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet))) return error("LoadBlockIndex() : failed to init sync checkpoint"); } @@ -2950,7 +2944,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) cPeerBlockCounts.input(pfrom->nStartingHeight); - // ppcoin: ask for pending sync-checkpoint if any + // ppbean: ask for pending sync-checkpoint if any if (!IsInitialBlockDownload()) Checkpoints::AskForPendingSyncCheckpoint(pfrom); } @@ -3119,7 +3113,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) // Trigger them to send a getblocks request for the next batch of inventory if (inv.hash == pfrom->hashContinue) { - // ppcoin: send latest proof-of-work block to allow the + // ppbean: send latest proof-of-work block to allow the // download node to accept as orphan (proof-of-stake // block might be rejected by stake connection check) vector vInv; @@ -3178,7 +3172,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) if (pindex->GetBlockHash() == hashStop) { printf(" getblocks stopping at %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str()); - // ppcoin: tell downloading node about the latest block if it's + // ppbean: tell downloading node about the latest block if it's // without risk being rejected due to stake connection check if (hashStop != hashBestChain && pindex->GetBlockTime() + nStakeMinAge > pindexBest->GetBlockTime()) pfrom->PushInventory(CInv(MSG_BLOCK, hashBestChain)); diff --git a/src/main.h b/src/main.h index 652f381..219c4c5 100644 --- a/src/main.h +++ b/src/main.h @@ -1,16 +1,16 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_MAIN_H -#define BITCOIN_MAIN_H +#ifndef BITBEAN_MAIN_H +#define BITBEAN_MAIN_H #include "bignum.h" #include "sync.h" #include "net.h" #include "script.h" #include "scrypt.h" -#include "zerocoin/Zerocoin.h" #include "util.h" @@ -39,8 +39,8 @@ static const unsigned int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100; static const unsigned int MAX_INV_SZ = 50000; static const int64_t MIN_TX_FEE = 1000000; static const int64_t MIN_RELAY_TX_FEE = MIN_TX_FEE; -static const int64_t MAX_MONEY = 50000000000 * COIN; -static const int64_t COIN_YEAR_REWARD = 5 * CENT; // 5% per year +static const int64_t MAX_MONEY = 50000000000 * bean; +static const int64_t bean_YEAR_REWARD = 5 * CENT; // 5% per year inline bool MoneyRange(int64_t nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } // Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp. @@ -57,8 +57,7 @@ static const uint256 hashGenesisBlockTestNet("0x000009d2f828234d65299216e258242a inline int64_t PastDrift(int64_t nTime) { return nTime - 10 * 60; } // up to 10 minutes from the past inline int64_t FutureDrift(int64_t nTime) { return nTime + 10 * 60; } // up to 10 minutes from the future -extern libzerocoin::Params* ZCParams; -extern CScript COINBASE_FLAGS; +extern CScript beanBASE_FLAGS; extern CCriticalSection cs_main; extern std::map mapBlockIndex; extern std::set > setStakeSeen; @@ -67,7 +66,7 @@ extern unsigned int nTargetSpacing; extern unsigned int nStakeMinAge; extern unsigned int nStakeMaxAge; extern unsigned int nNodeLifespan; -extern int nCoinbaseMaturity; +extern int nBeanbaseMaturity; extern int nBestHeight; extern uint256 nBestChainTrust; extern uint256 nBestInvalidTrust; @@ -76,7 +75,7 @@ extern CBlockIndex* pindexBest; extern unsigned int nTransactionsUpdated; extern uint64_t nLastBlockTx; extern uint64_t nLastBlockSize; -extern int64_t nLastCoinStakeSearchInterval; +extern int64_t nLastBeanStakeSearchInterval; extern const std::string strMessageMagic; extern int64_t nTimeBestReceived; extern CCriticalSection cs_setpwalletRegistered; @@ -117,7 +116,7 @@ bool LoadExternalBlockFile(FILE* fileIn); bool CheckProofOfWork(uint256 hash, unsigned int nBits); unsigned int GetNextTargetRequired(const CBlockIndex* pindexLast, bool fProofOfStake); int64_t GetProofOfWorkReward(int64_t nFees); -int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees); +int64_t GetProofOfStakeReward(int64_t nBeanAge, int64_t nFees); unsigned int ComputeMinWork(unsigned int nBase, int64_t nTime); unsigned int ComputeMinStake(unsigned int nBase, int64_t nTime, unsigned int nBlockTime); int GetNumBlocksOfPeers(); @@ -315,7 +314,7 @@ class CTxIn str += "CTxIn("; str += prevout.ToString(); if (prevout.IsNull()) - str += strprintf(", coinbase %s", HexStr(scriptSig).c_str()); + str += strprintf(", beanbase %s", HexStr(scriptSig).c_str()); else str += strprintf(", scriptSig=%s", scriptSig.ToString().substr(0,24).c_str()); if (nSequence != std::numeric_limits::max()) @@ -524,15 +523,15 @@ class CTransaction return fNewer; } - bool IsCoinBase() const + bool IsBeanBase() const { return (vin.size() == 1 && vin[0].prevout.IsNull() && vout.size() >= 1); } - bool IsCoinStake() const + bool IsBeanStake() const { - // ppcoin: the coin stake transaction is marked with the first output empty + // ppbean: the bean stake transaction is marked with the first output empty return (vin.size() > 0 && (!vin[0].prevout.IsNull()) && vout.size() >= 2 && vout[0].IsEmpty()); } @@ -562,7 +561,7 @@ class CTransaction */ unsigned int GetP2SHSigOpCount(const MapPrevTx& mapInputs) const; - /** Amount of bitcoins spent by this transaction. + /** Amount of bitbeans spent by this transaction. @return sum of all outputs (note: does not include fees) */ int64_t GetValueOut() const @@ -577,7 +576,7 @@ class CTransaction return nValueOut; } - /** Amount of bitcoins coming in to this transaction + /** Amount of bitbeans coming in to this transaction Note that lightweight clients may not know anything besides the hash of previous transactions, so may not be able to calculate this. @@ -633,14 +632,14 @@ class CTransaction std::string ToStringShort() const { std::string str; - str += strprintf("%s %s", GetHash().ToString().c_str(), IsCoinBase()? "base" : (IsCoinStake()? "stake" : "user")); + str += strprintf("%s %s", GetHash().ToString().c_str(), IsBeanBase()? "base" : (IsBeanStake()? "stake" : "user")); return str; } std::string ToString() const { std::string str; - str += IsCoinBase()? "Coinbase" : (IsCoinStake()? "Coinstake" : "CTransaction"); + str += IsBeanBase()? "Beanbase" : (IsBeanStake()? "Beanstake" : "CTransaction"); str += strprintf("(hash=%s, nTime=%d, ver=%d, vin.size=%"PRIszu", vout.size=%"PRIszu", nLockTime=%d)\n", GetHash().ToString().substr(0,10).c_str(), nTime, @@ -696,7 +695,7 @@ class CTransaction bool ClientConnectInputs(); bool CheckTransaction() const; bool AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs=true, bool* pfMissingInputs=NULL); - bool GetCoinAge(CTxDB& txdb, uint64_t& nCoinAge) const; // ppcoin: get transaction coin age + bool GetBeanAge(CTxDB& txdb, uint64_t& nBeanAge) const; // ppbean: get transaction bean age protected: const CTxOut& GetOutputFor(const CTxIn& input, const MapPrevTx& inputs) const; @@ -825,7 +824,7 @@ class CTxIndex * and scan through nonce values to make the block's hash satisfy proof-of-work * requirements. When they solve the proof-of-work, they broadcast the block * to everyone and the block is added to the block chain. The first transaction - * in the block is a special one that creates a new coin owned by the creator + * in the block is a special one that creates a new bean owned by the creator * of the block. * * Blocks are appended to blk0001.dat files on disk. Their location on disk @@ -848,7 +847,7 @@ class CBlock // network and disk std::vector vtx; - // ppcoin: block signature - signed by one of the coin base txout[N]'s owner + // ppbean: block signature - signed by one of the bean base txout[N]'s owner std::vector vchBlockSig; // memory only @@ -937,10 +936,10 @@ class CBlock return nEntropyBit; } - // ppcoin: two types of block: proof-of-work or proof-of-stake + // ppbean: two types of block: proof-of-work or proof-of-stake bool IsProofOfStake() const { - return (vtx.size() > 1 && vtx[1].IsCoinStake()); + return (vtx.size() > 1 && vtx[1].IsBeanStake()); } bool IsProofOfWork() const @@ -953,7 +952,7 @@ class CBlock return IsProofOfStake()? std::make_pair(vtx[1].vin[0].prevout, vtx[1].nTime) : std::make_pair(COutPoint(), (unsigned int)0); } - // ppcoin: get max transaction timestamp + // ppbean: get max transaction timestamp int64_t GetMaxTransactionTime() const { int64_t maxTransactionTime = 0; @@ -1096,7 +1095,7 @@ class CBlock bool AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos, const uint256& hashProof); bool CheckBlock(bool fCheckPOW=true, bool fCheckMerkleRoot=true, bool fCheckSig=true) const; bool AcceptBlock(); - bool GetCoinAge(uint64_t& nCoinAge) const; // ppcoin: calculate total coin age spent in block + bool GetBeanAge(uint64_t& nBeanAge) const; // ppbean: calculate total bean age spent in block bool SignBlock(CWallet& keystore, int64_t nFees); bool CheckBlockSignature() const; @@ -1124,13 +1123,13 @@ class CBlockIndex CBlockIndex* pnext; unsigned int nFile; unsigned int nBlockPos; - uint256 nChainTrust; // ppcoin: trust score of block chain + uint256 nChainTrust; // ppbean: trust score of block chain int nHeight; int64_t nMint; int64_t nMoneySupply; - unsigned int nFlags; // ppcoin: block index flags + unsigned int nFlags; // ppbean: block index flags enum { BLOCK_PROOF_OF_STAKE = (1 << 0), // is proof-of-stake block diff --git a/src/makefile.bsd b/src/makefile.bsd index edfe755..b09ab32 100644 --- a/src/makefile.bsd +++ b/src/makefile.bsd @@ -1,4 +1,5 @@ # Copyright (c) 2009-2010 Satoshi Nakamoto +# Copyright (c) 2015 Bean Core www.bitbean.org # Distributed under the MIT/X11 software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -102,13 +103,12 @@ OBJS= \ obj/key.o \ obj/db.o \ obj/init.o \ - obj/irc.o \ obj/keystore.o \ obj/main.o \ obj/miner.o \ obj/net.o \ obj/protocol.o \ - obj/bitcoinrpc.o \ + obj/bitbeanrpc.o \ obj/rpcdump.o \ obj/rpcnet.o \ obj/rpcmining.o \ @@ -127,17 +127,7 @@ OBJS= \ obj/scrypt-arm.o \ obj/scrypt-x86.o \ obj/scrypt-x86_64.o \ - obj/zerocoin/Accumulator.o \ - obj/zerocoin/AccumulatorProofOfKnowledge.o \ - obj/zerocoin/Coin.o \ - obj/zerocoin/CoinSpend.o \ - obj/zerocoin/Commitment.o \ - obj/zerocoin/ParamGeneration.o \ - obj/zerocoin/Params.o \ - obj/zerocoin/SerialNumberSignatureOfKnowledge.o \ - obj/zerocoin/SpendMetaData.o \ - obj/zerocoin/ZeroTest.o - + all: BitBeand LIBS += $(CURDIR)/leveldb/libleveldb.a $(CURDIR)/leveldb/libmemenv.a @@ -172,12 +162,6 @@ obj/%.o: %.cpp -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \ rm -f $(@:%.o=%.d) -obj/zerocoin/%.o: zerocoin/%.cpp - $(CXX) -c $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $< - @cp $(@:%.o=%.d) $(@:%.o=%.P); \ - sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \ - -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \ - rm -f $(@:%.o=%.d) BitBeand: $(OBJS:obj/%=obj/%) $(LINK) $(xCXXFLAGS) -o $@ $^ $(xLDFLAGS) $(LIBS) @@ -185,9 +169,7 @@ BitBeand: $(OBJS:obj/%=obj/%) clean: -rm -f BitBeand -rm -f obj/*.o - -rm -f obj/zerocoin/*.o -rm -f obj/*.P - -rm -f obj/zerocoin/*.P -rm -f obj/build.h FORCE: diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index d33a0ad..ae8268d 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -1,4 +1,5 @@ # Copyright (c) 2009-2010 Satoshi Nakamoto +# Copyright (c) 2015 Bean Core www.bitbean.org # Distributed under the MIT/X11 software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -65,13 +66,12 @@ OBJS= \ obj/key.o \ obj/db.o \ obj/init.o \ - obj/irc.o \ obj/keystore.o \ obj/main.o \ obj/miner.o \ obj/net.o \ obj/protocol.o \ - obj/bitcoinrpc.o \ + obj/bitbeanrpc.o \ obj/rpcdump.o \ obj/rpcnet.o \ obj/rpcmining.o \ @@ -89,16 +89,7 @@ OBJS= \ obj/scrypt.o \ obj/scrypt-x86.o \ obj/scrypt-x86_64.o \ - obj/zerocoin/Accumulator.o \ - obj/zerocoin/AccumulatorProofOfKnowledge.o \ - obj/zerocoin/Coin.o \ - obj/zerocoin/CoinSpend.o \ - obj/zerocoin/Commitment.o \ - obj/zerocoin/ParamGeneration.o \ - obj/zerocoin/Params.o \ - obj/zerocoin/SerialNumberSignatureOfKnowledge.o \ - obj/zerocoin/SpendMetaData.o \ - obj/zerocoin/ZeroTest.o + all: BitBeand.exe @@ -118,8 +109,6 @@ DEFS += -DHAVE_BUILD_INFO obj/%.o: %.cpp $(HEADERS) $(CXX) -c $(CFLAGS) -o $@ $< -obj/zerocoin/%.o: zerocoin/%.cpp $(HEADERS) - $(CXX) -c $(CFLAGS) -o $@ $< BitBeand.exe: $(OBJS:obj/%=obj/%) $(CXX) $(CFLAGS) $(LDFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS) -lshlwapi @@ -133,7 +122,6 @@ obj/scrypt-x86_64.o: scrypt-x86_64.S clean: -rm -f obj/*.o - -rm -f obj/zerocoin/*.o -rm -f BitBeand.exe -rm -f obj/build.h cd leveldb && TARGET_OS=OS_WINDOWS_CROSSCOMPILE $(MAKE) clean && cd .. diff --git a/src/makefile.mingw b/src/makefile.mingw index 863219b..1536ec3 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -1,4 +1,5 @@ # Copyright (c) 2009-2010 Satoshi Nakamoto +# Copyright (c) Bean Core www.bitbean.org # Distributed under the MIT/X11 software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -61,13 +62,12 @@ OBJS= \ obj/key.o \ obj/db.o \ obj/init.o \ - obj/irc.o \ obj/keystore.o \ obj/main.o \ obj/miner.o \ obj/net.o \ obj/protocol.o \ - obj/bitcoinrpc.o \ + obj/bitbeanrpc.o \ obj/rpcdump.o \ obj/rpcnet.o \ obj/rpcmining.o \ @@ -85,16 +85,6 @@ OBJS= \ obj/scrypt.o \ obj/scrypt-x86.o \ obj/scrypt-x86_64.o \ - obj/zerocoin/Accumulator.o \ - obj/zerocoin/AccumulatorProofOfKnowledge.o \ - obj/zerocoin/Coin.o \ - obj/zerocoin/CoinSpend.o \ - obj/zerocoin/Commitment.o \ - obj/zerocoin/ParamGeneration.o \ - obj/zerocoin/Params.o \ - obj/zerocoin/SerialNumberSignatureOfKnowledge.o \ - obj/zerocoin/SpendMetaData.o \ - obj/zerocoin/ZeroTest.o all: BitBeand.exe @@ -109,8 +99,6 @@ obj/txdb-leveldb.o: leveldb/libleveldb.a obj/%.o: %.cpp $(HEADERS) g++ -c $(CFLAGS) -o $@ $< -obj/zerocoin/%.o: zerocoin/%.cpp - g++ -c $(CFLAGS) -o $@ $< obj/scrypt-x86.o: scrypt-x86.S $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $< @@ -124,6 +112,5 @@ BitBeand.exe: $(OBJS:obj/%=obj/%) clean: -del /Q BitBeand -del /Q obj\* - -del /Q obj\zerocoin\* FORCE: diff --git a/src/makefile.osx b/src/makefile.osx index 29c2c97..278de67 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -1,5 +1,6 @@ # -*- mode: Makefile; -*- # Copyright (c) 2011 Bitcoin Developers +# Copyright (c) Bean Core www.bitbean.org # Distributed under the MIT/X11 software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -71,13 +72,12 @@ OBJS= \ obj/key.o \ obj/db.o \ obj/init.o \ - obj/irc.o \ obj/keystore.o \ obj/main.o \ obj/miner.o \ obj/net.o \ obj/protocol.o \ - obj/bitcoinrpc.o \ + obj/bitbeanrpc.o \ obj/rpcdump.o \ obj/rpcnet.o \ obj/rpcmining.o \ @@ -95,17 +95,7 @@ OBJS= \ obj/scrypt.o \ obj/scrypt-x86.o \ obj/scrypt-x86_64.o \ - obj/zerocoin/Accumulator.o \ - obj/zerocoin/AccumulatorProofOfKnowledge.o \ - obj/zerocoin/Coin.o \ - obj/zerocoin/CoinSpend.o \ - obj/zerocoin/Commitment.o \ - obj/zerocoin/ParamGeneration.o \ - obj/zerocoin/Params.o \ - obj/zerocoin/SerialNumberSignatureOfKnowledge.o \ - obj/zerocoin/SpendMetaData.o \ - obj/zerocoin/ZeroTest.o - + ifndef USE_UPNP override USE_UPNP = - endif @@ -143,13 +133,6 @@ obj/%.o: %.cpp -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \ rm -f $(@:%.o=%.d) -obj/zerocoin/%.o: zerocoin/%.cpp - $(CXX) -c $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $< - @cp $(@:%.o=%.d) $(@:%.o=%.P); \ - sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \ - -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \ - rm -f $(@:%.o=%.d) - obj/scrypt-x86.o: scrypt-x86.S $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $< @@ -162,9 +145,7 @@ BitBeand: $(OBJS:obj/%=obj/%) clean: -rm -f BitBeand -rm -f obj/*.o - -rm -f obj/zerocoin/*.o -rm -f obj/*.P - -rm -f obj/zerocoin/*.P -rm -f obj/build.h FORCE: diff --git a/src/makefile.unix b/src/makefile.unix index 79778b4..75d3ffd 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -1,4 +1,5 @@ # Copyright (c) 2009-2010 Satoshi Nakamoto +# Copyright (c) 2015 Bean Core www.bitbean.org # Distributed under the MIT/X11 software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -108,13 +109,12 @@ OBJS= \ obj/key.o \ obj/db.o \ obj/init.o \ - obj/irc.o \ obj/keystore.o \ obj/miner.o \ obj/main.o \ obj/net.o \ obj/protocol.o \ - obj/bitcoinrpc.o \ + obj/bitbeanrpc.o \ obj/rpcdump.o \ obj/rpcnet.o \ obj/rpcmining.o \ @@ -133,16 +133,7 @@ OBJS= \ obj/scrypt-arm.o \ obj/scrypt-x86.o \ obj/scrypt-x86_64.o \ - obj/zerocoin/Accumulator.o \ - obj/zerocoin/AccumulatorProofOfKnowledge.o \ - obj/zerocoin/Coin.o \ - obj/zerocoin/CoinSpend.o \ - obj/zerocoin/Commitment.o \ - obj/zerocoin/ParamGeneration.o \ - obj/zerocoin/Params.o \ - obj/zerocoin/SerialNumberSignatureOfKnowledge.o \ - obj/zerocoin/SpendMetaData.o \ - obj/zerocoin/ZeroTest.o + all: BitBeand @@ -178,12 +169,6 @@ obj/%.o: %.cpp -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \ rm -f $(@:%.o=%.d) -obj/zerocoin/%.o: zerocoin/%.cpp - $(CXX) -c $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $< - @cp $(@:%.o=%.d) $(@:%.o=%.P); \ - sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \ - -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \ - rm -f $(@:%.o=%.d) BitBeand: $(OBJS:obj/%=obj/%) $(LINK) $(xCXXFLAGS) -o $@ $^ $(xLDFLAGS) $(LIBS) @@ -191,9 +176,7 @@ BitBeand: $(OBJS:obj/%=obj/%) clean: -rm -f BitBeand -rm -f obj/*.o - -rm -f obj/zerocoin/*.o -rm -f obj/*.P - -rm -f obj/zerocoin/*.P -rm -f obj/build.h FORCE: diff --git a/src/miner.cpp b/src/miner.cpp index 931468a..f825937 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -1,6 +1,7 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers -// Copyright (c) 2013 The NovaCoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org +// Copyright (c) 2013 The Novacoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -12,7 +13,7 @@ using namespace std; ////////////////////////////////////////////////////////////////////////////// // -// BitcoinMiner +// BitbeanMiner // extern unsigned int nMinerSleep; @@ -80,7 +81,7 @@ class COrphan uint64_t nLastBlockTx = 0; uint64_t nLastBlockSize = 0; -int64_t nLastCoinStakeSearchInterval = 0; +int64_t nLastBeanStakeSearchInterval = 0; // We want to sort transactions by priority and fee, so: typedef boost::tuple TxPriority; @@ -116,7 +117,7 @@ CBlock* CreateNewBlock(CWallet* pwallet, bool fProofOfStake, int64_t* pFees) CBlockIndex* pindexPrev = pindexBest; - // Create coinbase tx + // Create beanbase tx CTransaction txNew; txNew.vin.resize(1); txNew.vin[0].prevout.SetNull(); @@ -132,14 +133,14 @@ CBlock* CreateNewBlock(CWallet* pwallet, bool fProofOfStake, int64_t* pFees) } else { - // Height first in coinbase required for block.version=2 - txNew.vin[0].scriptSig = (CScript() << pindexPrev->nHeight+1) + COINBASE_FLAGS; + // Height first in beanbase required for block.version=2 + txNew.vin[0].scriptSig = (CScript() << pindexPrev->nHeight+1) + beanBASE_FLAGS; assert(txNew.vin[0].scriptSig.size() <= 100); txNew.vout[0].SetEmpty(); } - // Add our coinbase tx as first transaction + // Add our beanbase tx as first transaction pblock->vtx.push_back(txNew); // Largest block you're willing to create: @@ -184,7 +185,7 @@ CBlock* CreateNewBlock(CWallet* pwallet, bool fProofOfStake, int64_t* pFees) for (map::iterator mi = mempool.mapTx.begin(); mi != mempool.mapTx.end(); ++mi) { CTransaction& tx = (*mi).second; - if (tx.IsCoinBase() || tx.IsCoinStake() || !tx.IsFinal()) + if (tx.IsBeanBase() || tx.IsBeanStake() || !tx.IsFinal()) continue; COrphan* porphan = NULL; @@ -293,7 +294,7 @@ CBlock* CreateNewBlock(CWallet* pwallet, bool fProofOfStake, int64_t* pFees) // Prioritize by fee once past the priority size or we run out of high-priority // transactions: if (!fSortedByFee && - ((nBlockSize + nTxSize >= nBlockPrioritySize) || (dPriority < COIN * 144 / 250))) + ((nBlockSize + nTxSize >= nBlockPrioritySize) || (dPriority < bean * 144 / 250))) { fSortedByFee = true; comparer = TxPriorityCompare(fSortedByFee); @@ -388,8 +389,8 @@ 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; + unsigned int nHeight = pindexPrev->nHeight+1; // Height first in beanbase required for block.version=2 + pblock->vtx[0].vin[0].scriptSig = (CScript() << nHeight << CBigNum(nExtraNonce)) + beanBASE_FLAGS; assert(pblock->vtx[0].vin[0].scriptSig.size() <= 100); pblock->hashMerkleRoot = pblock->BuildMerkleTree(); @@ -489,7 +490,7 @@ bool CheckStake(CBlock* pblock, CWallet& wallet) if(!pblock->IsProofOfStake()) return error("CheckStake() : %s is not a proof-of-stake block", hashBlock.GetHex().c_str()); - // verify hash target and signature of coinstake tx + // verify hash target and signature of beansprout tx if (!CheckProofOfStake(pblock->vtx[1], pblock->nBits, proofHash, hashTarget)) return error("CheckStake() : proof-of-stake checking failed"); @@ -534,7 +535,7 @@ void StakeMiner(CWallet *pwallet) while (pwallet->IsLocked()) { - nLastCoinStakeSearchInterval = 0; + nLastBeanStakeSearchInterval = 0; MilliSleep(1000); if (fShutdown) return; @@ -542,7 +543,7 @@ void StakeMiner(CWallet *pwallet) while (vNodes.empty() || IsInitialBlockDownload()) { - nLastCoinStakeSearchInterval = 0; + nLastBeanStakeSearchInterval = 0; fTryToSync = true; MilliSleep(1000); if (fShutdown) diff --git a/src/miner.h b/src/miner.h index 597e08a..808642c 100644 --- a/src/miner.h +++ b/src/miner.h @@ -1,10 +1,11 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers -// Copyright (c) 2013 The NovaCoin developers +// Copyright (c) 2013 The Novacoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef NOVACOIN_MINER_H -#define NOVACOIN_MINER_H +#ifndef Bitbean_MINER_H +#define Bitbean_MINER_H #include "main.h" #include "wallet.h" @@ -27,4 +28,4 @@ bool CheckStake(CBlock* pblock, CWallet& wallet); /** Base sha256 mining transform */ void SHA256Transform(void* pstate, void* pinput, const void* pinit); -#endif // NOVACOIN_MINER_H +#endif // Bitbean_MINER_H diff --git a/src/mruset.h b/src/mruset.h index 3b8c30a..dc63f06 100644 --- a/src/mruset.h +++ b/src/mruset.h @@ -1,8 +1,9 @@ // Copyright (c) 2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_MRUSET_H -#define BITCOIN_MRUSET_H +#ifndef BITBEAN_MRUSET_H +#define BITBEAN_MRUSET_H #include #include diff --git a/src/net.cpp b/src/net.cpp index 7ba6d9b..edd6e1d 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1,9 +1,9 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#include "irc.h" #include "db.h" #include "net.h" #include "init.h" @@ -1232,9 +1232,9 @@ void MapPort() // The first name is used as information source for addrman. // The second name should resolve to a list of seed addresses. static const char *strDNSSeed[][2] = { - //{"rat4.BitBean.co", "seed.BitBean.co"}, - //{"maarx.BitBean.co", "seed2.BitBean.co"}, - //{"archon.darkfox.id.au", "foxy.seeds.darkfox.id.au"}, + {"bitbean.org", "stalk1.bitbean.org"}, + {"bitbean.org", "stalk2.bitbean.org"}, + {"bitbean.org", "stalk3.bitbean.org"}, }; void ThreadDNSAddressSeed(void* parg) @@ -1293,26 +1293,17 @@ void ThreadDNSAddressSeed2(void* parg) } - - - - - - - - - - unsigned int pnSeed[] = { - 0xdf4bd379, 0x7934d29b, 0x26bc02ad, 0x7ab743ad, 0x0ab3a7bc, - 0x375ab5bc, 0xc90b1617, 0x5352fd17, 0x5efc6c18, 0xccdc7d18, - 0x443d9118, 0x84031b18, 0x347c1e18, 0x86512418, 0xfcfe9031, - 0xdb5eb936, 0xef8d2e3a, 0xcf51f23c, 0x18ab663e, 0x36e0df40, - 0xde48b641, 0xad3e4e41, 0xd0f32b44, 0x09733b44, 0x6a51f545, - 0xe593ef48, 0xc5f5ef48, 0x96f4f148, 0xd354d34a, 0x36206f4c, - 0xceefe953, 0x50468c55, 0x89d38d55, 0x65e61a5a, 0x16b1b95d, - 0x702b135e, 0x0f57245e, 0xdaab5f5f, 0xba15ef63, + 0x72894883, 0x25ce1c2e, 0x7d2c66c7, 0x47b48368, 0xbb0d286c, + 0xdb433f6c, 0xed685e77, 0x72894883, 0x77398789, 0x42ef4c90, + 0x7b404c90, 0x67bd8f9b, 0xb5d3afad, 0x439df5ad, 0x57ec1ead, + 0x8e084dad, 0x9302a5bc, 0x904a06bd, 0xebbe6002, 0x570e6302, + 0xe9ed0bcc, 0x88ddbed5, 0x207ec118, 0x7780dc18, 0x730c922e, + 0xb423ad32, 0x07542441, 0x5d3cd742, 0x54036844, 0x0017f345, + 0xee907446, 0xaa4ae447, 0x2ca58c49, 0x2f2c9b49, 0x88457e4c, + 0x47695a4c, 0xcff37650, 0x05a8df53, 0xa50ac658, 0x4cdce55a, + 0xc9a6125c, 0xbd213360, 0xc9ded162, }; void DumpAddresses() @@ -1457,7 +1448,7 @@ void ThreadOpenConnections2(void* parg) if (fShutdown) return; - // Add seed nodes if IRC isn't working + // Add Beanstalk nodes if (addrman.size()==0 && (GetTime() - nStart > 60) && !fTestNet) { std::vector vAdd; @@ -1943,10 +1934,6 @@ void StartNode(void* parg) if (fUseUPnP) MapPort(); - // Get addresses from IRC and advertise ours - if (!NewThread(ThreadIRCSeed, NULL)) - printf("Error: NewThread(ThreadIRCSeed) failed\n"); - // Send and receive from sockets, accept connections if (!NewThread(ThreadSocketHandler, NULL)) printf("Error: NewThread(ThreadSocketHandler) failed\n"); @@ -1968,8 +1955,8 @@ void StartNode(void* parg) printf("Error; NewThread(ThreadDumpAddress) failed\n"); // Mine proof-of-stake blocks in the background - if (!GetBoolArg("-staking", true)) - printf("Staking disabled\n"); + if (!GetBoolArg("-sprout", true)) + printf("Sprouting disabled\n"); else if (!NewThread(ThreadStakeMiner, pwalletMain)) printf("Error: NewThread(ThreadStakeMiner) failed\n"); diff --git a/src/net.h b/src/net.h index 99b4e1c..598aef9 100644 --- a/src/net.h +++ b/src/net.h @@ -1,9 +1,10 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_NET_H -#define BITCOIN_NET_H +#ifndef BITBEAN_NET_H +#define BITBEAN_NET_H #include #include @@ -49,7 +50,6 @@ enum LOCAL_IF, // address a local interface listens on LOCAL_BIND, // address explicit bound to LOCAL_UPNP, // address reported by UPnP - LOCAL_IRC, // address reported by IRC (deprecated) LOCAL_HTTP, // address reported by whatismyip.com and similar LOCAL_MANUAL, // address explicitly specified (-externalip=) @@ -242,7 +242,7 @@ class CNode mruset setAddrKnown; bool fGetAddr; std::set setKnown; - uint256 hashCheckpointKnown; // ppcoin: known sent sync-checkpoint + uint256 hashCheckpointKnown; // ppbean: known sent sync-checkpoint // inventory based relay mruset setInventoryKnown; diff --git a/src/netbase.cpp b/src/netbase.cpp index 360932a..bb86ac9 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -1,5 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // 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/netbase.h b/src/netbase.h index e052e80..3207eb1 100644 --- a/src/netbase.h +++ b/src/netbase.h @@ -1,8 +1,9 @@ // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_NETBASE_H -#define BITCOIN_NETBASE_H +#ifndef BITBEAN_NETBASE_H +#define BITBEAN_NETBASE_H #include #include diff --git a/src/noui.cpp b/src/noui.cpp index 965b39d..1325946 100644 --- a/src/noui.cpp +++ b/src/noui.cpp @@ -1,10 +1,11 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "ui_interface.h" #include "init.h" -#include "bitcoinrpc.h" +#include "bitbeanrpc.h" #include @@ -22,7 +23,7 @@ static bool noui_ThreadSafeAskFee(int64_t nFeeRequired, const std::string& strCa void noui_connect() { - // Connect bitcoind signal handlers + // Connect bitbeand signal handlers uiInterface.ThreadSafeMessageBox.connect(noui_ThreadSafeMessageBox); uiInterface.ThreadSafeAskFee.connect(noui_ThreadSafeAskFee); } diff --git a/src/pbkdf2.cpp b/src/pbkdf2.cpp index 6d3f3dc..99daff3 100644 --- a/src/pbkdf2.cpp +++ b/src/pbkdf2.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2013 NovaCoin Developers +// Copyright (c) 2013 Novacoin Developers #include #include "pbkdf2.h" diff --git a/src/pbkdf2.h b/src/pbkdf2.h index 4c55fd9..2e26c0e 100644 --- a/src/pbkdf2.h +++ b/src/pbkdf2.h @@ -1,4 +1,4 @@ -// Copyright (c) 2013 NovaCoin Developers +// Copyright (c) 2013 Novacoin Developers #ifndef PBKDF2_H #define PBKDF2_H diff --git a/src/protocol.cpp b/src/protocol.cpp index 1bb578c..e7600f9 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -1,5 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // 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/protocol.h b/src/protocol.h index 846713c..5fdd9ab 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -1,5 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // 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/qt/aboutdialog.cpp b/src/qt/aboutdialog.cpp index 0b98bef..6bc40be 100644 --- a/src/qt/aboutdialog.cpp +++ b/src/qt/aboutdialog.cpp @@ -24,7 +24,7 @@ AboutDialog::~AboutDialog() delete ui; } -void AboutDialog::on_buttonBox_accepted() +void AboutDialog::on_closeButton_clicked() { close(); } diff --git a/src/qt/aboutdialog.h b/src/qt/aboutdialog.h index 2ed9e9e..6d429e7 100644 --- a/src/qt/aboutdialog.h +++ b/src/qt/aboutdialog.h @@ -22,7 +22,7 @@ class AboutDialog : public QDialog Ui::AboutDialog *ui; private slots: - void on_buttonBox_accepted(); + void on_closeButton_clicked(); }; #endif // ABOUTDIALOG_H diff --git a/src/qt/addressbookpage.cpp b/src/qt/addressbookpage.cpp index e20358c..d63f151 100644 --- a/src/qt/addressbookpage.cpp +++ b/src/qt/addressbookpage.cpp @@ -3,7 +3,7 @@ #include "addresstablemodel.h" #include "optionsmodel.h" -#include "bitcoingui.h" +#include "bitbeangui.h" #include "editaddressdialog.h" #include "csvmodelwriter.h" #include "guiutil.h" diff --git a/src/qt/addresstablemodel.cpp b/src/qt/addresstablemodel.cpp index 491e60e..8c03eff 100644 --- a/src/qt/addresstablemodel.cpp +++ b/src/qt/addresstablemodel.cpp @@ -61,7 +61,7 @@ class AddressTablePriv LOCK(wallet->cs_wallet); BOOST_FOREACH(const PAIRTYPE(CTxDestination, std::string)& item, wallet->mapAddressBook) { - const CBitcoinAddress& address = item.first; + const CBitbeanAddress& address = item.first; const std::string& strName = item.second; bool fMine = IsMine(*wallet, address.Get()); cachedAddressTable.append(AddressTableEntry(fMine ? AddressTableEntry::Receiving : AddressTableEntry::Sending, @@ -192,7 +192,7 @@ QVariant AddressTableModel::data(const QModelIndex &index, int role) const QFont font; if(index.column() == Address) { - font = GUIUtil::bitcoinAddressFont(); + font = GUIUtil::bitbeanAddressFont(); } return font; } @@ -229,11 +229,11 @@ bool AddressTableModel::setData(const QModelIndex &index, const QVariant &value, editStatus = NO_CHANGES; return false; } - wallet->SetAddressBookName(CBitcoinAddress(rec->address.toStdString()).Get(), value.toString().toStdString()); + wallet->SetAddressBookName(CBitbeanAddress(rec->address.toStdString()).Get(), value.toString().toStdString()); break; case Address: // Do nothing, if old address == new address - if(CBitcoinAddress(rec->address.toStdString()) == CBitcoinAddress(value.toString().toStdString())) + if(CBitbeanAddress(rec->address.toStdString()) == CBitbeanAddress(value.toString().toStdString())) { editStatus = NO_CHANGES; return false; @@ -246,7 +246,7 @@ bool AddressTableModel::setData(const QModelIndex &index, const QVariant &value, } // Check for duplicate addresses to prevent accidental deletion of addresses, if you try // to paste an existing address over another address (with a different label) - else if(wallet->mapAddressBook.count(CBitcoinAddress(value.toString().toStdString()).Get())) + else if(wallet->mapAddressBook.count(CBitbeanAddress(value.toString().toStdString()).Get())) { editStatus = DUPLICATE_ADDRESS; return false; @@ -257,9 +257,9 @@ bool AddressTableModel::setData(const QModelIndex &index, const QVariant &value, { LOCK(wallet->cs_wallet); // Remove old entry - wallet->DelAddressBookName(CBitcoinAddress(rec->address.toStdString()).Get()); + wallet->DelAddressBookName(CBitbeanAddress(rec->address.toStdString()).Get()); // Add new entry with new address - wallet->SetAddressBookName(CBitcoinAddress(value.toString().toStdString()).Get(), rec->label.toStdString()); + wallet->SetAddressBookName(CBitbeanAddress(value.toString().toStdString()).Get(), rec->label.toStdString()); } } break; @@ -314,7 +314,7 @@ QModelIndex AddressTableModel::index(int row, int column, const QModelIndex &par void AddressTableModel::updateEntry(const QString &address, const QString &label, bool isMine, int status) { - // Update address book model from Bitcoin core + // Update address book model from Bitbean core priv->updateEntry(address, label, isMine, status); } @@ -335,7 +335,7 @@ QString AddressTableModel::addRow(const QString &type, const QString &label, con // Check for duplicate addresses { LOCK(wallet->cs_wallet); - if(wallet->mapAddressBook.count(CBitcoinAddress(strAddress).Get())) + if(wallet->mapAddressBook.count(CBitbeanAddress(strAddress).Get())) { editStatus = DUPLICATE_ADDRESS; return QString(); @@ -358,7 +358,7 @@ QString AddressTableModel::addRow(const QString &type, const QString &label, con editStatus = KEY_GENERATION_FAILURE; return QString(); } - strAddress = CBitcoinAddress(newKey.GetID()).ToString(); + strAddress = CBitbeanAddress(newKey.GetID()).ToString(); } else { @@ -368,7 +368,7 @@ QString AddressTableModel::addRow(const QString &type, const QString &label, con // Add entry { LOCK(wallet->cs_wallet); - wallet->SetAddressBookName(CBitcoinAddress(strAddress).Get(), strLabel); + wallet->SetAddressBookName(CBitbeanAddress(strAddress).Get(), strLabel); } return QString::fromStdString(strAddress); } @@ -385,7 +385,7 @@ bool AddressTableModel::removeRows(int row, int count, const QModelIndex &parent } { LOCK(wallet->cs_wallet); - wallet->DelAddressBookName(CBitcoinAddress(rec->address.toStdString()).Get()); + wallet->DelAddressBookName(CBitbeanAddress(rec->address.toStdString()).Get()); } return true; } @@ -396,7 +396,7 @@ QString AddressTableModel::labelForAddress(const QString &address) const { { LOCK(wallet->cs_wallet); - CBitcoinAddress address_parsed(address.toStdString()); + CBitbeanAddress address_parsed(address.toStdString()); std::map::iterator mi = wallet->mapAddressBook.find(address_parsed.Get()); if (mi != wallet->mapAddressBook.end()) { diff --git a/src/qt/addresstablemodel.h b/src/qt/addresstablemodel.h index ae3e3b2..71922f1 100644 --- a/src/qt/addresstablemodel.h +++ b/src/qt/addresstablemodel.h @@ -20,7 +20,7 @@ class AddressTableModel : public QAbstractTableModel enum ColumnIndex { Label = 0, /**< User specified label */ - Address = 1 /**< Bitcoin address */ + Address = 1 /**< Bitbean address */ }; enum RoleIndex { diff --git a/src/qt/askpassphrasedialog.cpp b/src/qt/askpassphrasedialog.cpp index 8852a56..dfdcb86 100644 --- a/src/qt/askpassphrasedialog.cpp +++ b/src/qt/askpassphrasedialog.cpp @@ -32,7 +32,7 @@ AskPassphraseDialog::AskPassphraseDialog(Mode mode, QWidget *parent) : case Encrypt: // Ask passphrase x2 ui->passLabel1->hide(); ui->passEdit1->hide(); - ui->warningLabel->setText(tr("Enter the new passphrase to the wallet.
Please use a passphrase of 10 or more random characters, or eight or more words.")); + ui->warningLabel->setText(tr("Enter the new passphrase for your wallet.
Please use a passphrase of 10 or more random characters, or eight or more words.")); setWindowTitle(tr("Encrypt wallet")); break; case UnlockStaking: @@ -104,7 +104,7 @@ void AskPassphraseDialog::accept() break; } QMessageBox::StandardButton retval = QMessageBox::question(this, tr("Confirm wallet encryption"), - tr("Warning: If you encrypt your wallet and lose your passphrase, you will LOSE ALL OF YOUR COINS!") + "

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

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

" + tr("IMPORTANT: Any previous backups you have made of your wallet file " "should be replaced with the newly generated, encrypted wallet file. " diff --git a/src/qt/coincontroldialog.cpp b/src/qt/beancontroldialog.cpp similarity index 78% rename from src/qt/coincontroldialog.cpp rename to src/qt/beancontroldialog.cpp index f1008d4..093504d 100644 --- a/src/qt/coincontroldialog.cpp +++ b/src/qt/beancontroldialog.cpp @@ -1,12 +1,12 @@ -#include "coincontroldialog.h" -#include "ui_coincontroldialog.h" +#include "beancontroldialog.h" +#include "ui_beancontroldialog.h" #include "init.h" -#include "bitcoinunits.h" +#include "bitbeanunits.h" #include "walletmodel.h" #include "addresstablemodel.h" #include "optionsmodel.h" -#include "coincontrol.h" +#include "beancontrol.h" #include #include @@ -22,12 +22,12 @@ #include using namespace std; -QList CoinControlDialog::payAmounts; -CCoinControl* CoinControlDialog::coinControl = new CCoinControl(); +QList BeanControlDialog::payAmounts; +CBeanControl* BeanControlDialog::beanControl = new CBeanControl(); -CoinControlDialog::CoinControlDialog(QWidget *parent) : +BeanControlDialog::BeanControlDialog(QWidget *parent) : QDialog(parent), - ui(new Ui::CoinControlDialog), + ui(new Ui::BeanControlDialog), model(0) { ui->setupUi(this); @@ -56,8 +56,8 @@ CoinControlDialog::CoinControlDialog(QWidget *parent) : connect(copyLabelAction, SIGNAL(triggered()), this, SLOT(copyLabel())); connect(copyAmountAction, SIGNAL(triggered()), this, SLOT(copyAmount())); connect(copyTransactionHashAction, SIGNAL(triggered()), this, SLOT(copyTransactionHash())); - //connect(lockAction, SIGNAL(triggered()), this, SLOT(lockCoin())); - //connect(unlockAction, SIGNAL(triggered()), this, SLOT(unlockCoin())); + //connect(lockAction, SIGNAL(triggered()), this, SLOT(lockBean())); + //connect(unlockAction, SIGNAL(triggered()), this, SLOT(unlockBean())); // clipboard actions QAction *clipboardQuantityAction = new QAction(tr("Copy quantity"), this); @@ -78,14 +78,14 @@ CoinControlDialog::CoinControlDialog(QWidget *parent) : connect(clipboardLowOutputAction, SIGNAL(triggered()), this, SLOT(clipboardLowOutput())); connect(clipboardChangeAction, SIGNAL(triggered()), this, SLOT(clipboardChange())); - ui->labelCoinControlQuantity->addAction(clipboardQuantityAction); - ui->labelCoinControlAmount->addAction(clipboardAmountAction); - ui->labelCoinControlFee->addAction(clipboardFeeAction); - ui->labelCoinControlAfterFee->addAction(clipboardAfterFeeAction); - ui->labelCoinControlBytes->addAction(clipboardBytesAction); - ui->labelCoinControlPriority->addAction(clipboardPriorityAction); - ui->labelCoinControlLowOutput->addAction(clipboardLowOutputAction); - ui->labelCoinControlChange->addAction(clipboardChangeAction); + ui->labelBeanControlQuantity->addAction(clipboardQuantityAction); + ui->labelBeanControlAmount->addAction(clipboardAmountAction); + ui->labelBeanControlFee->addAction(clipboardFeeAction); + ui->labelBeanControlAfterFee->addAction(clipboardAfterFeeAction); + ui->labelBeanControlBytes->addAction(clipboardBytesAction); + ui->labelBeanControlPriority->addAction(clipboardPriorityAction); + ui->labelBeanControlLowOutput->addAction(clipboardLowOutputAction); + ui->labelBeanControlChange->addAction(clipboardChangeAction); // toggle tree/list mode connect(ui->radioTreeMode, SIGNAL(toggled(bool)), this, SLOT(radioTreeMode(bool))); @@ -120,12 +120,12 @@ CoinControlDialog::CoinControlDialog(QWidget *parent) : sortView(COLUMN_AMOUNT_INT64, Qt::DescendingOrder); } -CoinControlDialog::~CoinControlDialog() +BeanControlDialog::~BeanControlDialog() { delete ui; } -void CoinControlDialog::setModel(WalletModel *model) +void BeanControlDialog::setModel(WalletModel *model) { this->model = model; @@ -133,12 +133,12 @@ void CoinControlDialog::setModel(WalletModel *model) { updateView(); //updateLabelLocked(); - CoinControlDialog::updateLabels(model, this); + BeanControlDialog::updateLabels(model, this); } } // helper function str_pad -QString CoinControlDialog::strPad(QString s, int nPadLength, QString sPadding) +QString BeanControlDialog::strPad(QString s, int nPadLength, QString sPadding) { while (s.length() < nPadLength) s = sPadding + s; @@ -147,14 +147,14 @@ QString CoinControlDialog::strPad(QString s, int nPadLength, QString sPadding) } // ok button -void CoinControlDialog::buttonBoxClicked(QAbstractButton* button) +void BeanControlDialog::buttonBoxClicked(QAbstractButton* button) { if (ui->buttonBox->buttonRole(button) == QDialogButtonBox::AcceptRole) done(QDialog::Accepted); // closes the dialog } // (un)select all -void CoinControlDialog::buttonSelectAllClicked() +void BeanControlDialog::buttonSelectAllClicked() { Qt::CheckState state = Qt::Checked; for (int i = 0; i < ui->treeWidget->topLevelItemCount(); i++) @@ -170,11 +170,11 @@ void CoinControlDialog::buttonSelectAllClicked() if (ui->treeWidget->topLevelItem(i)->checkState(COLUMN_CHECKBOX) != state) ui->treeWidget->topLevelItem(i)->setCheckState(COLUMN_CHECKBOX, state); ui->treeWidget->setEnabled(true); - CoinControlDialog::updateLabels(model, this); + BeanControlDialog::updateLabels(model, this); } // context menu -void CoinControlDialog::showMenu(const QPoint &point) +void BeanControlDialog::showMenu(const QPoint &point) { QTreeWidgetItem *item = ui->treeWidget->itemAt(point); if(item) @@ -185,7 +185,7 @@ void CoinControlDialog::showMenu(const QPoint &point) if (item->text(COLUMN_TXHASH).length() == 64) // transaction hash is 64 characters (this means its a child node, so its not a parent node in tree mode) { copyTransactionHashAction->setEnabled(true); - //if (model->isLockedCoin(uint256(item->text(COLUMN_TXHASH).toStdString()), item->text(COLUMN_VOUT_INDEX).toUInt())) + //if (model->isLockedBean(uint256(item->text(COLUMN_TXHASH).toStdString()), item->text(COLUMN_VOUT_INDEX).toUInt())) //{ // lockAction->setEnabled(false); // unlockAction->setEnabled(true); @@ -209,13 +209,13 @@ void CoinControlDialog::showMenu(const QPoint &point) } // context menu action: copy amount -void CoinControlDialog::copyAmount() +void BeanControlDialog::copyAmount() { QApplication::clipboard()->setText(contextMenuItem->text(COLUMN_AMOUNT)); } // context menu action: copy label -void CoinControlDialog::copyLabel() +void BeanControlDialog::copyLabel() { if (ui->radioTreeMode->isChecked() && contextMenuItem->text(COLUMN_LABEL).length() == 0 && contextMenuItem->parent()) QApplication::clipboard()->setText(contextMenuItem->parent()->text(COLUMN_LABEL)); @@ -224,7 +224,7 @@ void CoinControlDialog::copyLabel() } // context menu action: copy address -void CoinControlDialog::copyAddress() +void BeanControlDialog::copyAddress() { if (ui->radioTreeMode->isChecked() && contextMenuItem->text(COLUMN_ADDRESS).length() == 0 && contextMenuItem->parent()) QApplication::clipboard()->setText(contextMenuItem->parent()->text(COLUMN_ADDRESS)); @@ -233,84 +233,84 @@ void CoinControlDialog::copyAddress() } // context menu action: copy transaction id -void CoinControlDialog::copyTransactionHash() +void BeanControlDialog::copyTransactionHash() { QApplication::clipboard()->setText(contextMenuItem->text(COLUMN_TXHASH)); } -// context menu action: lock coin -/*void CoinControlDialog::lockCoin() +// context menu action: lock bean +/*void BeanControlDialog::lockBean() { if (contextMenuItem->checkState(COLUMN_CHECKBOX) == Qt::Checked) contextMenuItem->setCheckState(COLUMN_CHECKBOX, Qt::Unchecked); COutPoint outpt(uint256(contextMenuItem->text(COLUMN_TXHASH).toStdString()), contextMenuItem->text(COLUMN_VOUT_INDEX).toUInt()); - model->lockCoin(outpt); + model->lockBean(outpt); contextMenuItem->setDisabled(true); contextMenuItem->setIcon(COLUMN_CHECKBOX, QIcon(":/icons/lock_closed")); updateLabelLocked(); }*/ -// context menu action: unlock coin -/*void CoinControlDialog::unlockCoin() +// context menu action: unlock bean +/*void BeanControlDialog::unlockBean() { COutPoint outpt(uint256(contextMenuItem->text(COLUMN_TXHASH).toStdString()), contextMenuItem->text(COLUMN_VOUT_INDEX).toUInt()); - model->unlockCoin(outpt); + model->unlockBean(outpt); contextMenuItem->setDisabled(false); contextMenuItem->setIcon(COLUMN_CHECKBOX, QIcon()); updateLabelLocked(); }*/ // copy label "Quantity" to clipboard -void CoinControlDialog::clipboardQuantity() +void BeanControlDialog::clipboardQuantity() { - QApplication::clipboard()->setText(ui->labelCoinControlQuantity->text()); + QApplication::clipboard()->setText(ui->labelBeanControlQuantity->text()); } // copy label "Amount" to clipboard -void CoinControlDialog::clipboardAmount() +void BeanControlDialog::clipboardAmount() { - QApplication::clipboard()->setText(ui->labelCoinControlAmount->text().left(ui->labelCoinControlAmount->text().indexOf(" "))); + QApplication::clipboard()->setText(ui->labelBeanControlAmount->text().left(ui->labelBeanControlAmount->text().indexOf(" "))); } // copy label "Fee" to clipboard -void CoinControlDialog::clipboardFee() +void BeanControlDialog::clipboardFee() { - QApplication::clipboard()->setText(ui->labelCoinControlFee->text().left(ui->labelCoinControlFee->text().indexOf(" "))); + QApplication::clipboard()->setText(ui->labelBeanControlFee->text().left(ui->labelBeanControlFee->text().indexOf(" "))); } // copy label "After fee" to clipboard -void CoinControlDialog::clipboardAfterFee() +void BeanControlDialog::clipboardAfterFee() { - QApplication::clipboard()->setText(ui->labelCoinControlAfterFee->text().left(ui->labelCoinControlAfterFee->text().indexOf(" "))); + QApplication::clipboard()->setText(ui->labelBeanControlAfterFee->text().left(ui->labelBeanControlAfterFee->text().indexOf(" "))); } // copy label "Bytes" to clipboard -void CoinControlDialog::clipboardBytes() +void BeanControlDialog::clipboardBytes() { - QApplication::clipboard()->setText(ui->labelCoinControlBytes->text()); + QApplication::clipboard()->setText(ui->labelBeanControlBytes->text()); } // copy label "Priority" to clipboard -void CoinControlDialog::clipboardPriority() +void BeanControlDialog::clipboardPriority() { - QApplication::clipboard()->setText(ui->labelCoinControlPriority->text()); + QApplication::clipboard()->setText(ui->labelBeanControlPriority->text()); } // copy label "Low output" to clipboard -void CoinControlDialog::clipboardLowOutput() +void BeanControlDialog::clipboardLowOutput() { - QApplication::clipboard()->setText(ui->labelCoinControlLowOutput->text()); + QApplication::clipboard()->setText(ui->labelBeanControlLowOutput->text()); } // copy label "Change" to clipboard -void CoinControlDialog::clipboardChange() +void BeanControlDialog::clipboardChange() { - QApplication::clipboard()->setText(ui->labelCoinControlChange->text().left(ui->labelCoinControlChange->text().indexOf(" "))); + QApplication::clipboard()->setText(ui->labelBeanControlChange->text().left(ui->labelBeanControlChange->text().indexOf(" "))); } // treeview: sort -void CoinControlDialog::sortView(int column, Qt::SortOrder order) +void BeanControlDialog::sortView(int column, Qt::SortOrder order) { sortColumn = column; sortOrder = order; @@ -319,7 +319,7 @@ void CoinControlDialog::sortView(int column, Qt::SortOrder order) } // treeview: clicked on header -void CoinControlDialog::headerSectionClicked(int logicalIndex) +void BeanControlDialog::headerSectionClicked(int logicalIndex) { if (logicalIndex == COLUMN_CHECKBOX) // click on most left column -> do nothing { @@ -346,41 +346,41 @@ void CoinControlDialog::headerSectionClicked(int logicalIndex) } // toggle tree mode -void CoinControlDialog::radioTreeMode(bool checked) +void BeanControlDialog::radioTreeMode(bool checked) { if (checked && model) updateView(); } // toggle list mode -void CoinControlDialog::radioListMode(bool checked) +void BeanControlDialog::radioListMode(bool checked) { if (checked && model) updateView(); } // checkbox clicked by user -void CoinControlDialog::viewItemChanged(QTreeWidgetItem* item, int column) +void BeanControlDialog::viewItemChanged(QTreeWidgetItem* item, int column) { if (column == COLUMN_CHECKBOX && item->text(COLUMN_TXHASH).length() == 64) // transaction hash is 64 characters (this means its a child node, so its not a parent node in tree mode) { COutPoint outpt(uint256(item->text(COLUMN_TXHASH).toStdString()), item->text(COLUMN_VOUT_INDEX).toUInt()); if (item->checkState(COLUMN_CHECKBOX) == Qt::Unchecked) - coinControl->UnSelect(outpt); + beanControl->UnSelect(outpt); else if (item->isDisabled()) // locked (this happens if "check all" through parent node) item->setCheckState(COLUMN_CHECKBOX, Qt::Unchecked); else - coinControl->Select(outpt); + beanControl->Select(outpt); // selection changed -> update labels if (ui->treeWidget->isEnabled()) // do not update on every click for (un)select all - CoinControlDialog::updateLabels(model, this); + BeanControlDialog::updateLabels(model, this); } } // helper function, return human readable label for priority number -QString CoinControlDialog::getPriorityLabel(double dPriority) +QString BeanControlDialog::getPriorityLabel(double dPriority) { if (dPriority > 576000ULL) // at least medium, this number is from AllowFree(), the other thresholds are kinda random { @@ -398,10 +398,10 @@ QString CoinControlDialog::getPriorityLabel(double dPriority) } // shows count of locked unspent outputs -/*void CoinControlDialog::updateLabelLocked() +/*void BeanControlDialog::updateLabelLocked() { vector vOutpts; - model->listLockedCoins(vOutpts); + model->listLockedBeans(vOutpts); if (vOutpts.size() > 0) { ui->labelLocked->setText(tr("(%1 locked)").arg(vOutpts.size())); @@ -410,7 +410,7 @@ QString CoinControlDialog::getPriorityLabel(double dPriority) else ui->labelLocked->setVisible(false); }*/ -void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) +void BeanControlDialog::updateLabels(WalletModel *model, QDialog* dialog) { if (!model) return; @@ -419,7 +419,7 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) bool fLowOutput = false; bool fDust = false; CTransaction txDummy; - foreach(const qint64 &amount, CoinControlDialog::payAmounts) + foreach(const qint64 &amount, BeanControlDialog::payAmounts) { nPayAmount += amount; @@ -444,10 +444,10 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) double dPriorityInputs = 0; unsigned int nQuantity = 0; - vector vCoinControl; + vector vBeanControl; vector vOutputs; - coinControl->ListSelected(vCoinControl); - model->getOutputs(vCoinControl, vOutputs); + beanControl->ListSelected(vBeanControl); + model->getOutputs(vBeanControl, vOutputs); BOOST_FOREACH(const COutput& out, vOutputs) { @@ -478,11 +478,11 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) if (nQuantity > 0) { // Bytes - nBytes = nBytesInputs + ((CoinControlDialog::payAmounts.size() > 0 ? CoinControlDialog::payAmounts.size() + 1 : 2) * 34) + 10; // always assume +1 output for change here + nBytes = nBytesInputs + ((BeanControlDialog::payAmounts.size() > 0 ? BeanControlDialog::payAmounts.size() + 1 : 2) * 34) + 10; // always assume +1 output for change here // Priority dPriority = dPriorityInputs / nBytes; - sPriorityLabel = CoinControlDialog::getPriorityLabel(dPriority); + sPriorityLabel = BeanControlDialog::getPriorityLabel(dPriority); // Fee int64_t nFee = nTransactionFee * (1 + (int64_t)nBytes / 1000); @@ -522,58 +522,58 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) } // actually update labels - int nDisplayUnit = BitcoinUnits::BTC; + int nDisplayUnit = BitbeanUnits::BitB; if (model && model->getOptionsModel()) nDisplayUnit = model->getOptionsModel()->getDisplayUnit(); - QLabel *l1 = dialog->findChild("labelCoinControlQuantity"); - QLabel *l2 = dialog->findChild("labelCoinControlAmount"); - QLabel *l3 = dialog->findChild("labelCoinControlFee"); - QLabel *l4 = dialog->findChild("labelCoinControlAfterFee"); - QLabel *l5 = dialog->findChild("labelCoinControlBytes"); - QLabel *l6 = dialog->findChild("labelCoinControlPriority"); - QLabel *l7 = dialog->findChild("labelCoinControlLowOutput"); - QLabel *l8 = dialog->findChild("labelCoinControlChange"); + QLabel *l1 = dialog->findChild("labelBeanControlQuantity"); + QLabel *l2 = dialog->findChild("labelBeanControlAmount"); + QLabel *l3 = dialog->findChild("labelBeanControlFee"); + QLabel *l4 = dialog->findChild("labelBeanControlAfterFee"); + QLabel *l5 = dialog->findChild("labelBeanControlBytes"); + QLabel *l6 = dialog->findChild("labelBeanControlPriority"); + QLabel *l7 = dialog->findChild("labelBeanControlLowOutput"); + QLabel *l8 = dialog->findChild("labelBeanControlChange"); // enable/disable "low output" and "change" - dialog->findChild("labelCoinControlLowOutputText")->setEnabled(nPayAmount > 0); - dialog->findChild("labelCoinControlLowOutput") ->setEnabled(nPayAmount > 0); - dialog->findChild("labelCoinControlChangeText") ->setEnabled(nPayAmount > 0); - dialog->findChild("labelCoinControlChange") ->setEnabled(nPayAmount > 0); + dialog->findChild("labelBeanControlLowOutputText")->setEnabled(nPayAmount > 0); + dialog->findChild("labelBeanControlLowOutput") ->setEnabled(nPayAmount > 0); + dialog->findChild("labelBeanControlChangeText") ->setEnabled(nPayAmount > 0); + dialog->findChild("labelBeanControlChange") ->setEnabled(nPayAmount > 0); // stats l1->setText(QString::number(nQuantity)); // Quantity - l2->setText(BitcoinUnits::formatWithUnit(nDisplayUnit, nAmount)); // Amount - l3->setText(BitcoinUnits::formatWithUnit(nDisplayUnit, nPayFee)); // Fee - l4->setText(BitcoinUnits::formatWithUnit(nDisplayUnit, nAfterFee)); // After Fee + l2->setText(BitbeanUnits::formatWithUnit(nDisplayUnit, nAmount)); // Amount + l3->setText(BitbeanUnits::formatWithUnit(nDisplayUnit, nPayFee)); // Fee + l4->setText(BitbeanUnits::formatWithUnit(nDisplayUnit, nAfterFee)); // After Fee l5->setText(((nBytes > 0) ? "~" : "") + QString::number(nBytes)); // Bytes l6->setText(sPriorityLabel); // Priority l7->setText((fLowOutput ? (fDust ? tr("DUST") : tr("yes")) : tr("no"))); // Low Output / Dust - l8->setText(BitcoinUnits::formatWithUnit(nDisplayUnit, nChange)); // Change + l8->setText(BitbeanUnits::formatWithUnit(nDisplayUnit, nChange)); // Change // turn labels "red" l5->setStyleSheet((nBytes >= 10000) ? "color:red;" : ""); // Bytes >= 10000 l6->setStyleSheet((dPriority <= 576000) ? "color:red;" : ""); // Priority < "medium" l7->setStyleSheet((fLowOutput) ? "color:red;" : ""); // Low Output = "yes" - l8->setStyleSheet((nChange > 0 && nChange < CENT) ? "color:red;" : ""); // Change < 0.01BTC + l8->setStyleSheet((nChange > 0 && nChange < CENT) ? "color:red;" : ""); // Change < 0.01BitB // tool tips - l5->setToolTip(tr("This label turns red, if the transaction size is bigger than 10000 bytes.\n\n This means a fee of at least %1 per kb is required.\n\n Can vary +/- 1 Byte per input.").arg(BitcoinUnits::formatWithUnit(nDisplayUnit, CENT))); - l6->setToolTip(tr("Transactions with higher priority get more likely into a block.\n\nThis label turns red, if the priority is smaller than \"medium\".\n\n This means a fee of at least %1 per kb is required.").arg(BitcoinUnits::formatWithUnit(nDisplayUnit, CENT))); - l7->setToolTip(tr("This label turns red, if any recipient receives an amount smaller than %1.\n\n This means a fee of at least %2 is required. \n\n Amounts below 0.546 times the minimum relay fee are shown as DUST.").arg(BitcoinUnits::formatWithUnit(nDisplayUnit, CENT)).arg(BitcoinUnits::formatWithUnit(nDisplayUnit, CENT))); - l8->setToolTip(tr("This label turns red, if the change is smaller than %1.\n\n This means a fee of at least %2 is required.").arg(BitcoinUnits::formatWithUnit(nDisplayUnit, CENT)).arg(BitcoinUnits::formatWithUnit(nDisplayUnit, CENT))); - dialog->findChild("labelCoinControlBytesText") ->setToolTip(l5->toolTip()); - dialog->findChild("labelCoinControlPriorityText") ->setToolTip(l6->toolTip()); - dialog->findChild("labelCoinControlLowOutputText")->setToolTip(l7->toolTip()); - dialog->findChild("labelCoinControlChangeText") ->setToolTip(l8->toolTip()); + l5->setToolTip(tr("This label turns red, if the transaction size is bigger than 10000 bytes.\n\n This means a fee of at least %1 per kb is required.\n\n Can vary +/- 1 Byte per input.").arg(BitbeanUnits::formatWithUnit(nDisplayUnit, CENT))); + l6->setToolTip(tr("Transactions with higher priority get more likely into a block.\n\nThis label turns red, if the priority is smaller than \"medium\".\n\n This means a fee of at least %1 per kb is required.").arg(BitbeanUnits::formatWithUnit(nDisplayUnit, CENT))); + l7->setToolTip(tr("This label turns red, if any recipient receives an amount smaller than %1.\n\n This means a fee of at least %2 is required. \n\n Amounts below 0.546 times the minimum relay fee are shown as DUST.").arg(BitbeanUnits::formatWithUnit(nDisplayUnit, CENT)).arg(BitbeanUnits::formatWithUnit(nDisplayUnit, CENT))); + l8->setToolTip(tr("This label turns red, if the change is smaller than %1.\n\n This means a fee of at least %2 is required.").arg(BitbeanUnits::formatWithUnit(nDisplayUnit, CENT)).arg(BitbeanUnits::formatWithUnit(nDisplayUnit, CENT))); + dialog->findChild("labelBeanControlBytesText") ->setToolTip(l5->toolTip()); + dialog->findChild("labelBeanControlPriorityText") ->setToolTip(l6->toolTip()); + dialog->findChild("labelBeanControlLowOutputText")->setToolTip(l7->toolTip()); + dialog->findChild("labelBeanControlChangeText") ->setToolTip(l8->toolTip()); // Insufficient funds - QLabel *label = dialog->findChild("labelCoinControlInsuffFunds"); + QLabel *label = dialog->findChild("labelBeanControlInsuffFunds"); if (label) label->setVisible(nChange < 0); } -void CoinControlDialog::updateView() +void BeanControlDialog::updateView() { bool treeMode = ui->radioTreeMode->isChecked(); @@ -583,17 +583,17 @@ void CoinControlDialog::updateView() QFlags flgCheckbox=Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsUserCheckable; QFlags flgTristate=Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsUserCheckable | Qt::ItemIsTristate; - int nDisplayUnit = BitcoinUnits::BTC; + int nDisplayUnit = BitbeanUnits::BitB; if (model && model->getOptionsModel()) nDisplayUnit = model->getOptionsModel()->getDisplayUnit(); - map > mapCoins; - model->listCoins(mapCoins); + map > mapBeans; + model->listBeans(mapBeans); - BOOST_FOREACH(PAIRTYPE(QString, vector) coins, mapCoins) + BOOST_FOREACH(PAIRTYPE(QString, vector) beans, mapBeans) { QTreeWidgetItem *itemWalletAddress = new QTreeWidgetItem(); - QString sWalletAddress = coins.first; + QString sWalletAddress = beans.first; QString sWalletLabel = ""; if (model->getAddressTableModel()) sWalletLabel = model->getAddressTableModel()->labelForAddress(sWalletAddress); @@ -622,7 +622,7 @@ void CoinControlDialog::updateView() double dPrioritySum = 0; int nChildren = 0; int nInputSum = 0; - BOOST_FOREACH(const COutput& out, coins.second) + BOOST_FOREACH(const COutput& out, beans.second) { int nInputSize = 148; // 180 if uncompressed public key nSum += out.tx->vout[out.i].nValue; @@ -639,9 +639,9 @@ void CoinControlDialog::updateView() QString sAddress = ""; if(ExtractDestination(out.tx->vout[out.i].scriptPubKey, outputAddress)) { - sAddress = CBitcoinAddress(outputAddress).ToString().c_str(); + sAddress = CBitbeanAddress(outputAddress).ToString().c_str(); - // if listMode or change => show bitcoin address. In tree mode, address is not shown again for direct wallet address outputs + // if listMode or change => show bitbean address. In tree mode, address is not shown again for direct wallet address outputs if (!treeMode || (!(sAddress == sWalletAddress))) itemOutput->setText(COLUMN_ADDRESS, sAddress); @@ -669,14 +669,14 @@ void CoinControlDialog::updateView() } // amount - itemOutput->setText(COLUMN_AMOUNT, BitcoinUnits::format(nDisplayUnit, out.tx->vout[out.i].nValue)); + itemOutput->setText(COLUMN_AMOUNT, BitbeanUnits::format(nDisplayUnit, out.tx->vout[out.i].nValue)); itemOutput->setText(COLUMN_AMOUNT_INT64, strPad(QString::number(out.tx->vout[out.i].nValue), 15, " ")); // padding so that sorting works correctly // date itemOutput->setText(COLUMN_DATE, QDateTime::fromTime_t(out.tx->GetTxTime()).toUTC().toString("yy-MM-dd hh:mm")); // immature PoS reward - if (out.tx->IsCoinStake() && out.tx->GetBlocksToMaturity() > 0 && out.tx->GetDepthInMainChain() > 0) { + if (out.tx->IsBeanStake() && out.tx->GetBlocksToMaturity() > 0 && out.tx->GetDepthInMainChain() > 0) { itemOutput->setBackground(COLUMN_CONFIRMATIONS, Qt::red); itemOutput->setDisabled(true); } @@ -686,7 +686,7 @@ void CoinControlDialog::updateView() // priority double dPriority = ((double)out.tx->vout[out.i].nValue / (nInputSize + 78)) * (out.nDepth+1); // 78 = 2 * 34 + 10 - itemOutput->setText(COLUMN_PRIORITY, CoinControlDialog::getPriorityLabel(dPriority)); + itemOutput->setText(COLUMN_PRIORITY, BeanControlDialog::getPriorityLabel(dPriority)); itemOutput->setText(COLUMN_PRIORITY_INT64, strPad(QString::number((int64_t)dPriority), 20, " ")); dPrioritySum += (double)out.tx->vout[out.i].nValue * (out.nDepth+1); nInputSum += nInputSize; @@ -698,17 +698,17 @@ void CoinControlDialog::updateView() // vout index itemOutput->setText(COLUMN_VOUT_INDEX, QString::number(out.i)); - // disable locked coins - /*if (model->isLockedCoin(txhash, out.i)) + // disable locked beans + /*if (model->isLockedBean(txhash, out.i)) { COutPoint outpt(txhash, out.i); - coinControl->UnSelect(outpt); // just to be sure + beanControl->UnSelect(outpt); // just to be sure itemOutput->setDisabled(true); itemOutput->setIcon(COLUMN_CHECKBOX, QIcon(":/icons/lock_closed")); }*/ // set checkbox - if (coinControl->IsSelected(txhash, out.i)) + if (beanControl->IsSelected(txhash, out.i)) itemOutput->setCheckState(COLUMN_CHECKBOX,Qt::Checked); } @@ -717,9 +717,9 @@ void CoinControlDialog::updateView() { dPrioritySum = dPrioritySum / (nInputSum + 78); itemWalletAddress->setText(COLUMN_CHECKBOX, "(" + QString::number(nChildren) + ")"); - itemWalletAddress->setText(COLUMN_AMOUNT, BitcoinUnits::format(nDisplayUnit, nSum)); + itemWalletAddress->setText(COLUMN_AMOUNT, BitbeanUnits::format(nDisplayUnit, nSum)); itemWalletAddress->setText(COLUMN_AMOUNT_INT64, strPad(QString::number(nSum), 15, " ")); - itemWalletAddress->setText(COLUMN_PRIORITY, CoinControlDialog::getPriorityLabel(dPrioritySum)); + itemWalletAddress->setText(COLUMN_PRIORITY, BeanControlDialog::getPriorityLabel(dPrioritySum)); itemWalletAddress->setText(COLUMN_PRIORITY_INT64, strPad(QString::number((int64_t)dPrioritySum), 20, " ")); } } diff --git a/src/qt/coincontroldialog.h b/src/qt/beancontroldialog.h similarity index 79% rename from src/qt/coincontroldialog.h rename to src/qt/beancontroldialog.h index 5d0a90b..c8a7664 100644 --- a/src/qt/coincontroldialog.h +++ b/src/qt/beancontroldialog.h @@ -1,5 +1,5 @@ -#ifndef COINCONTROLDIALOG_H -#define COINCONTROLDIALOG_H +#ifndef BEANCONTROLDIALOG_H +#define BEANCONTROLDIALOG_H #include #include @@ -11,30 +11,30 @@ #include namespace Ui { - class CoinControlDialog; + class BeanControlDialog; } class WalletModel; -class CCoinControl; +class CBeanControl; -class CoinControlDialog : public QDialog +class BeanControlDialog : public QDialog { Q_OBJECT public: - explicit CoinControlDialog(QWidget *parent = 0); - ~CoinControlDialog(); + explicit BeanControlDialog(QWidget *parent = 0); + ~BeanControlDialog(); void setModel(WalletModel *model); - // static because also called from sendcoinsdialog + // static because also called from sendbeansdialog static void updateLabels(WalletModel*, QDialog*); static QString getPriorityLabel(double); static QList payAmounts; - static CCoinControl *coinControl; + static CBeanControl *beanControl; private: - Ui::CoinControlDialog *ui; + Ui::BeanControlDialog *ui; WalletModel *model; int sortColumn; Qt::SortOrder sortOrder; @@ -70,8 +70,8 @@ private slots: void copyLabel(); void copyAddress(); void copyTransactionHash(); - //void lockCoin(); - //void unlockCoin(); + //void lockBean(); + //void unlockBean(); void clipboardQuantity(); void clipboardAmount(); void clipboardFee(); @@ -89,4 +89,4 @@ private slots: //void updateLabelLocked(); }; -#endif // COINCONTROLDIALOG_H +#endif // BEANCONTROLDIALOG_H diff --git a/src/qt/coincontroltreewidget.cpp b/src/qt/beancontroltreewidget.cpp similarity index 64% rename from src/qt/coincontroltreewidget.cpp rename to src/qt/beancontroltreewidget.cpp index aa75a49..27bae3b 100644 --- a/src/qt/coincontroltreewidget.cpp +++ b/src/qt/beancontroltreewidget.cpp @@ -1,13 +1,13 @@ -#include "coincontroltreewidget.h" -#include "coincontroldialog.h" +#include "beancontroltreewidget.h" +#include "beancontroldialog.h" -CoinControlTreeWidget::CoinControlTreeWidget(QWidget *parent) : +BeanControlTreeWidget::BeanControlTreeWidget(QWidget *parent) : QTreeWidget(parent) { } -void CoinControlTreeWidget::keyPressEvent(QKeyEvent *event) +void BeanControlTreeWidget::keyPressEvent(QKeyEvent *event) { if (event->key() == Qt::Key_Space) // press spacebar -> select checkbox { @@ -18,8 +18,8 @@ void CoinControlTreeWidget::keyPressEvent(QKeyEvent *event) else if (event->key() == Qt::Key_Escape) // press esc -> close dialog { event->ignore(); - CoinControlDialog *coinControlDialog = (CoinControlDialog*)this->parentWidget(); - coinControlDialog->done(QDialog::Accepted); + BeanControlDialog *beanControlDialog = (BeanControlDialog*)this->parentWidget(); + beanControlDialog->done(QDialog::Accepted); } else { diff --git a/src/qt/beancontroltreewidget.h b/src/qt/beancontroltreewidget.h new file mode 100644 index 0000000..f50c536 --- /dev/null +++ b/src/qt/beancontroltreewidget.h @@ -0,0 +1,17 @@ +#ifndef BEANCONTROLTREEWIDGET_H +#define BEANCONTROLTREEWIDGET_H + +#include +#include + +class BeanControlTreeWidget : public QTreeWidget { +Q_OBJECT + +public: + explicit BeanControlTreeWidget(QWidget *parent = 0); + +protected: + virtual void keyPressEvent(QKeyEvent *event); +}; + +#endif // BEANCONTROLTREEWIDGET_H \ No newline at end of file diff --git a/src/qt/bitcoin.cpp b/src/qt/bitbean.cpp similarity index 92% rename from src/qt/bitcoin.cpp rename to src/qt/bitbean.cpp index ab641f3..9b0ba59 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitbean.cpp @@ -1,7 +1,7 @@ /* * W.J. van der Laan 2011-2012 */ -#include "bitcoingui.h" +#include "bitbeangui.h" #include "clientmodel.h" #include "walletmodel.h" #include "optionsmodel.h" @@ -20,8 +20,8 @@ #include #include -#if defined(BITCOIN_NEED_QT_PLUGINS) && !defined(_BITCOIN_QT_PLUGINS_INCLUDED) -#define _BITCOIN_QT_PLUGINS_INCLUDED +#if defined(BITBEAN_NEED_QT_PLUGINS) && !defined(_BITBEAN_QT_PLUGINS_INCLUDED) +#define _BITBEAN_QT_PLUGINS_INCLUDED #define __INSURE__ #include Q_IMPORT_PLUGIN(qcncodecs) @@ -32,7 +32,7 @@ Q_IMPORT_PLUGIN(qtaccessiblewidgets) #endif // Need a global reference for the notifications to find the GUI -static BitcoinGUI *guiref; +static BitbeanGUI *guiref; static QSplashScreen *splashref; static void ThreadSafeMessageBox(const std::string& message, const std::string& caption, int style) @@ -98,7 +98,7 @@ static void QueueShutdown() */ static std::string Translate(const char* psz) { - return QCoreApplication::translate("bitcoin-core", psz).toStdString(); + return QCoreApplication::translate("bitbean-core", psz).toStdString(); } /* Handle runaway exceptions. Shows a message box with the problem and quits the program. @@ -106,11 +106,11 @@ static std::string Translate(const char* psz) static void handleRunawayException(std::exception *e) { PrintExceptionContinue(e, "Runaway exception"); - QMessageBox::critical(0, "Runaway exception", BitcoinGUI::tr("A fatal error occurred. BitBean can no longer continue safely and will quit.") + QString("\n\n") + QString::fromStdString(strMiscWarning)); + QMessageBox::critical(0, "Runaway exception", BitbeanGUI::tr("A fatal error occurred. BitBean can no longer continue safely and will quit.") + QString("\n\n") + QString::fromStdString(strMiscWarning)); exit(1); } -#ifndef BITCOIN_QT_TEST +#ifndef BITBEAN_QT_TEST int main(int argc, char *argv[]) { // Do this early as we don't want to bother initializing if we are just calling IPC @@ -122,7 +122,7 @@ int main(int argc, char *argv[]) QTextCodec::setCodecForCStrings(QTextCodec::codecForTr()); #endif - Q_INIT_RESOURCE(bitcoin); + Q_INIT_RESOURCE(bitbean); QApplication app(argc, argv); // Install global event filter that makes sure that long tooltips can be word-wrapped @@ -131,11 +131,11 @@ int main(int argc, char *argv[]) // Command-line options take precedence: ParseParameters(argc, argv); - // ... then bitcoin.conf: + // ... then bitbean.conf: if (!boost::filesystem::is_directory(GetDataDir(false))) { // This message can not be translated, as translation is not initialized yet - // (which not yet possible because lang=XX can be overridden in bitcoin.conf in the data directory) + // (which not yet possible because lang=XX can be overridden in bitbean.conf in the data directory) QMessageBox::critical(0, "BitBean", QString("Error: Specified data directory \"%1\" does not exist.").arg(QString::fromStdString(mapArgs["-datadir"]))); return 1; @@ -145,7 +145,7 @@ int main(int argc, char *argv[]) // Application identification (must be set before OptionsModel is initialized, // as it is used to locate QSettings) app.setOrganizationName("BitBean"); - //XXX app.setOrganizationDomain(""); + //XXX app.setOrganizationDomain("bitbean.org"); if(GetBoolArg("-testnet")) // Separate UI settings for testnet app.setApplicationName("BitBean-Qt-testnet"); else @@ -173,11 +173,11 @@ int main(int argc, char *argv[]) if (qtTranslator.load("qt_" + lang_territory, QLibraryInfo::location(QLibraryInfo::TranslationsPath))) app.installTranslator(&qtTranslator); - // Load e.g. bitcoin_de.qm (shortcut "de" needs to be defined in bitcoin.qrc) + // Load e.g. bitbean_de.qm (shortcut "de" needs to be defined in bitbean.qrc) if (translatorBase.load(lang, ":/translations/")) app.installTranslator(&translatorBase); - // Load e.g. bitcoin_de_DE.qm (shortcut "de_DE" needs to be defined in bitcoin.qrc) + // Load e.g. bitbean_de_DE.qm (shortcut "de_DE" needs to be defined in bitbean.qrc) if (translator.load(lang_territory, ":/translations/")) app.installTranslator(&translator); @@ -215,7 +215,7 @@ int main(int argc, char *argv[]) if (GUIUtil::GetStartOnSystemStartup()) GUIUtil::SetStartOnSystemStartup(true); - BitcoinGUI window; + BitbeanGUI window; guiref = &window; if(AppInit2()) { @@ -252,7 +252,7 @@ int main(int argc, char *argv[]) window.setWalletModel(0); guiref = 0; } - // Shutdown the core and its threads, but don't exit Bitcoin-Qt here + // Shutdown the core and its threads, but don't exit Bitbean-Qt here Shutdown(NULL); } else @@ -266,4 +266,4 @@ int main(int argc, char *argv[]) } return 0; } -#endif // BITCOIN_QT_TEST +#endif // BITBEAN_QT_TEST diff --git a/src/qt/bitbean.qrc b/src/qt/bitbean.qrc new file mode 100644 index 0000000..53fef8e --- /dev/null +++ b/src/qt/bitbean.qrc @@ -0,0 +1,95 @@ + + + res/icons/address-book.png + res/icons/quit.png + res/icons/send.png + res/icons/connect0_16.png + res/icons/connect1_16.png + res/icons/connect2_16.png + res/icons/connect3_16.png + res/icons/connect4_16.png + res/icons/transaction0.png + res/icons/transaction_conflicted.png + res/icons/clock1.png + res/icons/clock2.png + res/icons/clock3.png + res/icons/clock4.png + res/icons/clock5.png + res/icons/configure.png + res/icons/receive.png + res/icons/editpaste.png + res/icons/editcopy.png + res/icons/add.png + res/icons/history.png + res/icons/overview.png + res/icons/export.png + res/icons/remove.png + res/icons/tx_input.png + res/icons/tx_output.png + res/icons/tx_inout.png + res/icons/lock_closed.png + res/icons/lock_open.png + res/icons/key.png + res/icons/filesave.png + res/icons/qrcode.png + res/icons/debugwindow.png + res/icons/staking_off.png + res/icons/staking_on.png + res/icons/bitbean-80.png + res/icons/bitbean-16.png + res/icons/beans-confirmed.png + res/icons/checkmark.png + res/icons/sprout.png + res/icons/signmessage.png + res/icons/verifymessage.png + + + res/images/about.png + res/images/BeanSky.png + res/images/Bean2Moon.png + + + res/movies/bitbean_spinner.mng + + + locale/bitbean_ar.ts + locale/bitbean_ca_ES.ts + locale/bitbean_cs.ts + locale/bitbean_da.ts + locale/bitbean_de.ts + locale/bitbean_el_GR.ts + locale/bitbean_en.ts + locale/bitbean_eo.ts + locale/bitbean_es_CL.ts + locale/bitbean_es_DO.ts + locale/bitbean_es.ts + locale/bitbean_fa.ts + locale/bitbean_fi.ts + locale/bitbean_fr_CA.ts + locale/bitbean_fr.ts + locale/bitbean_gl.ts + locale/bitbean_he.ts + locale/bitbean_hr.ts + locale/bitbean_hu.ts + locale/bitbean_it.ts + locale/bitbean_ja.ts + locale/bitbean_ka.ts + locale/bitbean_ko_KR.ts + locale/bitbean_lt.ts + locale/bitbean_nb.ts + locale/bitbean_nl.ts + locale/bitbean_pam.ts + locale/bitbean_pl.ts + locale/bitbean_pt_BR.ts + locale/bitbean_pt_PT.ts + locale/bitbean_ro_RO.ts + locale/bitbean_ru.ts + locale/bitbean_sk.ts + locale/bitbean_sl_SI.ts + locale/bitbean_sv.ts + locale/bitbean_tr.ts + locale/bitbean_uk.ts + locale/bitbean_zh_CN.ts + locale/bitbean_zh_TW.ts + + diff --git a/src/qt/bitcoinaddressvalidator.cpp b/src/qt/bitbeanaddressvalidator.cpp similarity index 91% rename from src/qt/bitcoinaddressvalidator.cpp rename to src/qt/bitbeanaddressvalidator.cpp index 5136ea0..e88c0d3 100644 --- a/src/qt/bitcoinaddressvalidator.cpp +++ b/src/qt/bitbeanaddressvalidator.cpp @@ -1,4 +1,4 @@ -#include "bitcoinaddressvalidator.h" +#include "bitbeanaddressvalidator.h" /* Base58 characters are: "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz" @@ -13,12 +13,12 @@ - '0' and 'O' to 'o' */ -BitcoinAddressValidator::BitcoinAddressValidator(QObject *parent) : +BitbeanAddressValidator::BitbeanAddressValidator(QObject *parent) : QValidator(parent) { } -QValidator::State BitcoinAddressValidator::validate(QString &input, int &pos) const +QValidator::State BitbeanAddressValidator::validate(QString &input, int &pos) const { // Correction for(int idx=0; idx /** Base48 entry widget validator. Corrects near-miss characters and refuses characters that are no part of base48. */ -class BitcoinAddressValidator : public QValidator +class BitbeanAddressValidator : public QValidator { Q_OBJECT public: - explicit BitcoinAddressValidator(QObject *parent = 0); + explicit BitbeanAddressValidator(QObject *parent = 0); State validate(QString &input, int &pos) const; @@ -21,4 +21,4 @@ public slots: }; -#endif // BITCOINADDRESSVALIDATOR_H +#endif // BITBEANADDRESSVALIDATOR_H diff --git a/src/qt/bitcoinamountfield.cpp b/src/qt/bitbeanamountfield.cpp similarity index 75% rename from src/qt/bitcoinamountfield.cpp rename to src/qt/bitbeanamountfield.cpp index 9514ec8..dfedd62 100644 --- a/src/qt/bitcoinamountfield.cpp +++ b/src/qt/bitbeanamountfield.cpp @@ -1,6 +1,6 @@ -#include "bitcoinamountfield.h" +#include "bitbeanamountfield.h" #include "qvaluecombobox.h" -#include "bitcoinunits.h" +#include "bitbeanunits.h" #include "guiconstants.h" @@ -14,7 +14,7 @@ #include #include -BitcoinAmountField::BitcoinAmountField(QWidget *parent): +BitbeanAmountField::BitbeanAmountField(QWidget *parent): QWidget(parent), amount(0), currentUnit(-1) { amount = new QDoubleSpinBox(this); @@ -27,7 +27,7 @@ BitcoinAmountField::BitcoinAmountField(QWidget *parent): QHBoxLayout *layout = new QHBoxLayout(this); layout->addWidget(amount); unit = new QValueComboBox(this); - unit->setModel(new BitcoinUnits(this)); + unit->setModel(new BitbeanUnits(this)); layout->addWidget(unit); layout->addStretch(1); layout->setContentsMargins(0,0,0,0); @@ -45,7 +45,7 @@ BitcoinAmountField::BitcoinAmountField(QWidget *parent): unitChanged(unit->currentIndex()); } -void BitcoinAmountField::setText(const QString &text) +void BitbeanAmountField::setText(const QString &text) { if (text.isEmpty()) amount->clear(); @@ -53,18 +53,18 @@ void BitcoinAmountField::setText(const QString &text) amount->setValue(text.toDouble()); } -void BitcoinAmountField::clear() +void BitbeanAmountField::clear() { amount->clear(); unit->setCurrentIndex(0); } -bool BitcoinAmountField::validate() +bool BitbeanAmountField::validate() { bool valid = true; if (amount->value() == 0.0) valid = false; - if (valid && !BitcoinUnits::parse(currentUnit, text(), 0)) + if (valid && !BitbeanUnits::parse(currentUnit, text(), 0)) valid = false; setValid(valid); @@ -72,7 +72,7 @@ bool BitcoinAmountField::validate() return valid; } -void BitcoinAmountField::setValid(bool valid) +void BitbeanAmountField::setValid(bool valid) { if (valid) amount->setStyleSheet(""); @@ -80,7 +80,7 @@ void BitcoinAmountField::setValid(bool valid) amount->setStyleSheet(STYLE_INVALID); } -QString BitcoinAmountField::text() const +QString BitbeanAmountField::text() const { if (amount->text().isEmpty()) return QString(); @@ -88,7 +88,7 @@ QString BitcoinAmountField::text() const return amount->text(); } -bool BitcoinAmountField::eventFilter(QObject *object, QEvent *event) +bool BitbeanAmountField::eventFilter(QObject *object, QEvent *event) { if (event->type() == QEvent::FocusIn) { @@ -109,16 +109,16 @@ bool BitcoinAmountField::eventFilter(QObject *object, QEvent *event) return QWidget::eventFilter(object, event); } -QWidget *BitcoinAmountField::setupTabChain(QWidget *prev) +QWidget *BitbeanAmountField::setupTabChain(QWidget *prev) { QWidget::setTabOrder(prev, amount); return amount; } -qint64 BitcoinAmountField::value(bool *valid_out) const +qint64 BitbeanAmountField::value(bool *valid_out) const { qint64 val_out = 0; - bool valid = BitcoinUnits::parse(currentUnit, text(), &val_out); + bool valid = BitbeanUnits::parse(currentUnit, text(), &val_out); if(valid_out) { *valid_out = valid; @@ -126,18 +126,18 @@ qint64 BitcoinAmountField::value(bool *valid_out) const return val_out; } -void BitcoinAmountField::setValue(qint64 value) +void BitbeanAmountField::setValue(qint64 value) { - setText(BitcoinUnits::format(currentUnit, value)); + setText(BitbeanUnits::format(currentUnit, value)); } -void BitcoinAmountField::unitChanged(int idx) +void BitbeanAmountField::unitChanged(int idx) { // Use description tooltip for current unit for the combobox unit->setToolTip(unit->itemData(idx, Qt::ToolTipRole).toString()); // Determine new unit ID - int newUnit = unit->itemData(idx, BitcoinUnits::UnitRole).toInt(); + int newUnit = unit->itemData(idx, BitbeanUnits::UnitRole).toInt(); // Parse current value and convert to new unit bool valid = false; @@ -146,8 +146,8 @@ void BitcoinAmountField::unitChanged(int idx) currentUnit = newUnit; // Set max length after retrieving the value, to prevent truncation - amount->setDecimals(BitcoinUnits::decimals(currentUnit)); - amount->setMaximum(qPow(10, BitcoinUnits::amountDigits(currentUnit)) - qPow(10, -amount->decimals())); + amount->setDecimals(BitbeanUnits::decimals(currentUnit)); + amount->setMaximum(qPow(10, BitbeanUnits::amountDigits(currentUnit)) - qPow(10, -amount->decimals())); if(valid) { @@ -162,7 +162,7 @@ void BitcoinAmountField::unitChanged(int idx) setValid(true); } -void BitcoinAmountField::setDisplayUnit(int newUnit) +void BitbeanAmountField::setDisplayUnit(int newUnit) { unit->setValue(newUnit); } diff --git a/src/qt/bitcoinamountfield.h b/src/qt/bitbeanamountfield.h similarity index 85% rename from src/qt/bitcoinamountfield.h rename to src/qt/bitbeanamountfield.h index 66792e0..5896082 100644 --- a/src/qt/bitcoinamountfield.h +++ b/src/qt/bitbeanamountfield.h @@ -1,5 +1,5 @@ -#ifndef BITCOINFIELD_H -#define BITCOINFIELD_H +#ifndef BITBEANFIELD_H +#define BITBEANFIELD_H #include @@ -8,14 +8,14 @@ class QDoubleSpinBox; class QValueComboBox; QT_END_NAMESPACE -/** Widget for entering bitcoin amounts. +/** Widget for entering bitbean amounts. */ -class BitcoinAmountField: public QWidget +class BitbeanAmountField: public QWidget { Q_OBJECT Q_PROPERTY(qint64 value READ value WRITE setValue NOTIFY textChanged USER true) public: - explicit BitcoinAmountField(QWidget *parent = 0); + explicit BitbeanAmountField(QWidget *parent = 0); qint64 value(bool *valid=0) const; void setValue(qint64 value); @@ -57,4 +57,4 @@ private slots: }; -#endif // BITCOINFIELD_H +#endif // BITBEANFIELD_H diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitbeangui.cpp similarity index 77% rename from src/qt/bitcoingui.cpp rename to src/qt/bitbeangui.cpp index 73909d8..2a13371 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitbeangui.cpp @@ -1,13 +1,13 @@ /* - * Qt4 bitcoin GUI. + * Qt4 bitbean GUI. * * W.J. van der Laan 2011-2012 * The Bitcoin Developers 2011-2012 */ -#include "bitcoingui.h" +#include "bitbeangui.h" #include "transactiontablemodel.h" #include "addressbookpage.h" -#include "sendcoinsdialog.h" +#include "sendbeansdialog.h" #include "signverifymessagedialog.h" #include "optionsdialog.h" #include "aboutdialog.h" @@ -19,7 +19,7 @@ #include "addresstablemodel.h" #include "transactionview.h" #include "overviewpage.h" -#include "bitcoinunits.h" +#include "bitbeanunits.h" #include "guiconstants.h" #include "askpassphrasedialog.h" #include "notificator.h" @@ -32,7 +32,9 @@ #endif #include +#if QT_VERSION < 0x050000 #include +#endif #include #include #include @@ -51,19 +53,25 @@ #include #include #include +#if QT_VERSION < 0x050000 #include +#else +#include +#endif #include #include +#if QT_VERSION < 0x050000 #include +#endif #include #include extern CWallet* pwalletMain; -extern int64_t nLastCoinStakeSearchInterval; +extern int64_t nLastBeanStakeSearchInterval; double GetPoSKernelPS(); -BitcoinGUI::BitcoinGUI(QWidget *parent): +BitbeanGUI::BitbeanGUI(QWidget *parent): QMainWindow(parent), clientModel(0), walletModel(0), @@ -78,10 +86,12 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): nWeight(0) { resize(850, 550); - setWindowTitle(tr("BitBean") + " - " + tr("Wallet")); + setWindowTitle(tr("BitBean") + " - " + tr("Vault")); + // qApp->setStyleSheet("QMainWindow { background-image:url(:images/bkg);border:none; } #frame { } QToolBar QLabel:item { padding-top: 0px;padding-bottom: 0px;spacing: 10px;} #spacer { background: transparent;border:none; } #toolbar2 { border:none;width:0px;hight:0px;padding-top:40px;padding-bottom:0px; background-color: transparent; } QMenu { background-color: #d3eeaf; color: black; } QMenu::item { color: black; background: transparent; } QMenu::item:selected { background-color: #9fd555; } QMenuBar { background-color: #d3eeaf; color: black; } QMenuBar::item { font-size:12px;padding-bottom:3px;padding-top:3px;padding-left:15px;padding-right:15px;color: black; background-color: white; } QMenuBar::item:selected { background-color:qlineargradient(x1: 0, y1: 0, x2: 0.5, y2: 0.5,stop: 0 rgba(211,238,175,45), stop: 1 rgba(159,213,85,45)); }"); + qApp->setStyleSheet("QMainWindow { background-image:url(:images/bkg);border:none; } QProgressBar { background: transparent; border: 1px solid grey; border-radius: 7px; padding: 1px; text-align: center; } QProgressBar::chunk { background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #d3eeaf, stop: 1 #9fd555); border-radius: 7px; margin: 0px; } QMenu { background-color: #d3eeaf; color: black; } QMenu::item { color: black; background: transparent; } QMenu::item:selected { background-color: #9fd555; } QMenuBar { background-color: #d3eeaf; color: black; } QPushButton {background-color: #d3eeaf; } QLineEdit { background-color: white; } "); #ifndef Q_OS_MAC - qApp->setWindowIcon(QIcon(":icons/bitcoin")); - setWindowIcon(QIcon(":icons/bitcoin")); + qApp->setWindowIcon(QIcon(":icons/bitbean")); + setWindowIcon(QIcon(":icons/bitbean")); #else setUnifiedTitleAndToolBarOnMac(true); QApplication::setAttribute(Qt::AA_DontShowIconsInMenus); @@ -112,9 +122,9 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): addressBookPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::SendingTab); - receiveCoinsPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::ReceivingTab); + receiveBeansPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::ReceivingTab); - sendCoinsPage = new SendCoinsDialog(this); + sendBeansPage = new SendBeansDialog(this); signVerifyMessageDialog = new SignVerifyMessageDialog(this); @@ -122,8 +132,8 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): centralWidget->addWidget(overviewPage); centralWidget->addWidget(transactionsPage); centralWidget->addWidget(addressBookPage); - centralWidget->addWidget(receiveCoinsPage); - centralWidget->addWidget(sendCoinsPage); + centralWidget->addWidget(receiveBeansPage); + centralWidget->addWidget(sendBeansPage); setCentralWidget(centralWidget); // Create status bar @@ -171,7 +181,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): QString curStyle = qApp->style()->metaObject()->className(); if(curStyle == "QWindowsStyle" || curStyle == "QWindowsXPStyle") { - progressBar->setStyleSheet("QProgressBar { background-color: #e8e8e8; border: 1px solid grey; border-radius: 7px; padding: 1px; text-align: center; } QProgressBar::chunk { background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #FF8000, stop: 1 orange); border-radius: 7px; margin: 0px; }"); + // progressBar->setStyleSheet("QProgressBar { background-color: #ffffff; border: 1px solid grey; border-radius: 7px; padding: 1px; text-align: center; } QProgressBar::chunk { background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #d3eeaf, stop: 1 #9fd555); border-radius: 7px; margin: 0px; }"); } statusBar()->addWidget(progressBarLabel); @@ -192,13 +202,13 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): // Clicking on "Verify Message" in the address book sends you to the verify message tab connect(addressBookPage, SIGNAL(verifyMessage(QString)), this, SLOT(gotoVerifyMessageTab(QString))); - // Clicking on "Sign Message" in the receive coins page sends you to the sign message tab - connect(receiveCoinsPage, SIGNAL(signMessage(QString)), this, SLOT(gotoSignMessageTab(QString))); + // Clicking on "Sign Message" in the receive beans page sends you to the sign message tab + connect(receiveBeansPage, SIGNAL(signMessage(QString)), this, SLOT(gotoSignMessageTab(QString))); gotoOverviewPage(); } -BitcoinGUI::~BitcoinGUI() +BitbeanGUI::~BitbeanGUI() { if(trayIcon) // Hide tray icon, as deleting will let it linger until quit (on Ubuntu) trayIcon->hide(); @@ -207,7 +217,7 @@ BitcoinGUI::~BitcoinGUI() #endif } -void BitcoinGUI::createActions() +void BitbeanGUI::createActions() { QActionGroup *tabGroup = new QActionGroup(this); @@ -217,17 +227,17 @@ void BitcoinGUI::createActions() overviewAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_1)); tabGroup->addAction(overviewAction); - sendCoinsAction = new QAction(QIcon(":/icons/send"), tr("&Send coins"), this); - sendCoinsAction->setToolTip(tr("Send coins to a BitBean address")); - sendCoinsAction->setCheckable(true); - sendCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2)); - tabGroup->addAction(sendCoinsAction); + sendBeansAction = new QAction(QIcon(":/icons/send"), tr("&Send Beans"), this); + sendBeansAction->setToolTip(tr("Send Beans to a BitBean address")); + sendBeansAction->setCheckable(true); + sendBeansAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2)); + tabGroup->addAction(sendBeansAction); - receiveCoinsAction = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receive coins"), this); - receiveCoinsAction->setToolTip(tr("Show the list of addresses for receiving payments")); - receiveCoinsAction->setCheckable(true); - receiveCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_3)); - tabGroup->addAction(receiveCoinsAction); + receiveBeansAction = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receive Beans"), this); + receiveBeansAction->setToolTip(tr("Show the list of addresses for receiving payments")); + receiveBeansAction->setCheckable(true); + receiveBeansAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_3)); + tabGroup->addAction(receiveBeansAction); historyAction = new QAction(QIcon(":/icons/history"), tr("&Transactions"), this); historyAction->setToolTip(tr("Browse transaction history")); @@ -243,10 +253,10 @@ void BitcoinGUI::createActions() connect(overviewAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized())); connect(overviewAction, SIGNAL(triggered()), this, SLOT(gotoOverviewPage())); - connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized())); - connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(gotoSendCoinsPage())); - connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized())); - connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(gotoReceiveCoinsPage())); + connect(sendBeansAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized())); + connect(sendBeansAction, SIGNAL(triggered()), this, SLOT(gotoSendBeansPage())); + connect(receiveBeansAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized())); + connect(receiveBeansAction, SIGNAL(triggered()), this, SLOT(gotoReceiveBeansPage())); connect(historyAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized())); connect(historyAction, SIGNAL(triggered()), this, SLOT(gotoHistoryPage())); connect(addressBookAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized())); @@ -256,7 +266,7 @@ void BitcoinGUI::createActions() quitAction->setToolTip(tr("Quit application")); quitAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q)); quitAction->setMenuRole(QAction::QuitRole); - aboutAction = new QAction(QIcon(":/icons/bitcoin"), tr("&About BitBean"), this); + aboutAction = new QAction(QIcon(":/icons/bitbean"), tr("&About BitBean"), this); aboutAction->setToolTip(tr("Show information about BitBean")); aboutAction->setMenuRole(QAction::AboutRole); aboutQtAction = new QAction(QIcon(":/trolltech/qmessagebox/images/qtlogo-64.png"), tr("About &Qt"), this); @@ -265,7 +275,7 @@ void BitcoinGUI::createActions() optionsAction = new QAction(QIcon(":/icons/options"), tr("&Options..."), this); optionsAction->setToolTip(tr("Modify configuration options for BitBean")); optionsAction->setMenuRole(QAction::PreferencesRole); - toggleHideAction = new QAction(QIcon(":/icons/bitcoin"), tr("&Show / Hide"), this); + toggleHideAction = new QAction(QIcon(":/icons/bitbean"), tr("&Show / Hide"), this); encryptWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Encrypt Wallet..."), this); encryptWalletAction->setToolTip(tr("Encrypt or decrypt wallet")); encryptWalletAction->setCheckable(true); @@ -277,8 +287,8 @@ void BitcoinGUI::createActions() unlockWalletAction->setToolTip(tr("Unlock wallet")); lockWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Lock Wallet"), this); lockWalletAction->setToolTip(tr("Lock wallet")); - signMessageAction = new QAction(QIcon(":/icons/edit"), tr("Sign &message..."), this); - verifyMessageAction = new QAction(QIcon(":/icons/transaction_0"), tr("&Verify message..."), this); + signMessageAction = new QAction(QIcon(":/icons/signmessage"), tr("Sign &message..."), this); + verifyMessageAction = new QAction(QIcon(":/icons/verifymessage"), tr("&Verify message..."), this); exportAction = new QAction(QIcon(":/icons/export"), tr("&Export..."), this); exportAction->setToolTip(tr("Export the data in the current tab to a file")); @@ -299,7 +309,7 @@ void BitcoinGUI::createActions() connect(verifyMessageAction, SIGNAL(triggered()), this, SLOT(gotoVerifyMessageTab())); } -void BitcoinGUI::createMenuBar() +void BitbeanGUI::createMenuBar() { #ifdef Q_OS_MAC // Create a decoupled menu bar on Mac which stays even if the window is closed @@ -333,13 +343,13 @@ void BitcoinGUI::createMenuBar() help->addAction(aboutQtAction); } -void BitcoinGUI::createToolBars() +void BitbeanGUI::createToolBars() { QToolBar *toolbar = addToolBar(tr("Tabs toolbar")); toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); toolbar->addAction(overviewAction); - toolbar->addAction(sendCoinsAction); - toolbar->addAction(receiveCoinsAction); + toolbar->addAction(sendBeansAction); + toolbar->addAction(receiveBeansAction); toolbar->addAction(historyAction); toolbar->addAction(addressBookAction); @@ -348,7 +358,7 @@ void BitcoinGUI::createToolBars() toolbar2->addAction(exportAction); } -void BitcoinGUI::setClientModel(ClientModel *clientModel) +void BitbeanGUI::setClientModel(ClientModel *clientModel) { this->clientModel = clientModel; if(clientModel) @@ -358,10 +368,10 @@ void BitcoinGUI::setClientModel(ClientModel *clientModel) { setWindowTitle(windowTitle() + QString(" ") + tr("[testnet]")); #ifndef Q_OS_MAC - qApp->setWindowIcon(QIcon(":icons/bitcoin_testnet")); - setWindowIcon(QIcon(":icons/bitcoin_testnet")); + qApp->setWindowIcon(QIcon(":icons/bitbean_testnet")); + setWindowIcon(QIcon(":icons/bitbean_testnet")); #else - MacDockIconHandler::instance()->setIcon(QIcon(":icons/bitcoin_testnet")); + MacDockIconHandler::instance()->setIcon(QIcon(":icons/bitbean_testnet")); #endif if(trayIcon) { @@ -385,11 +395,11 @@ void BitcoinGUI::setClientModel(ClientModel *clientModel) rpcConsole->setClientModel(clientModel); addressBookPage->setOptionsModel(clientModel->getOptionsModel()); - receiveCoinsPage->setOptionsModel(clientModel->getOptionsModel()); + receiveBeansPage->setOptionsModel(clientModel->getOptionsModel()); } } -void BitcoinGUI::setWalletModel(WalletModel *walletModel) +void BitbeanGUI::setWalletModel(WalletModel *walletModel) { this->walletModel = walletModel; if(walletModel) @@ -402,8 +412,8 @@ void BitcoinGUI::setWalletModel(WalletModel *walletModel) overviewPage->setModel(walletModel); addressBookPage->setModel(walletModel->getAddressTableModel()); - receiveCoinsPage->setModel(walletModel->getAddressTableModel()); - sendCoinsPage->setModel(walletModel); + receiveBeansPage->setModel(walletModel->getAddressTableModel()); + sendBeansPage->setModel(walletModel); signVerifyMessageDialog->setModel(walletModel); setEncryptionStatus(walletModel->getEncryptionStatus()); @@ -418,7 +428,7 @@ void BitcoinGUI::setWalletModel(WalletModel *walletModel) } } -void BitcoinGUI::createTrayIcon() +void BitbeanGUI::createTrayIcon() { QMenu *trayIconMenu; #ifndef Q_OS_MAC @@ -440,8 +450,8 @@ void BitcoinGUI::createTrayIcon() // Configuration of the tray icon (or dock icon) icon menu trayIconMenu->addAction(toggleHideAction); trayIconMenu->addSeparator(); - trayIconMenu->addAction(sendCoinsAction); - trayIconMenu->addAction(receiveCoinsAction); + trayIconMenu->addAction(sendBeansAction); + trayIconMenu->addAction(receiveBeansAction); trayIconMenu->addSeparator(); trayIconMenu->addAction(signMessageAction); trayIconMenu->addAction(verifyMessageAction); @@ -457,7 +467,7 @@ void BitcoinGUI::createTrayIcon() } #ifndef Q_OS_MAC -void BitcoinGUI::trayIconActivated(QSystemTrayIcon::ActivationReason reason) +void BitbeanGUI::trayIconActivated(QSystemTrayIcon::ActivationReason reason) { if(reason == QSystemTrayIcon::Trigger) { @@ -467,7 +477,7 @@ void BitcoinGUI::trayIconActivated(QSystemTrayIcon::ActivationReason reason) } #endif -void BitcoinGUI::optionsClicked() +void BitbeanGUI::optionsClicked() { if(!clientModel || !clientModel->getOptionsModel()) return; @@ -476,14 +486,14 @@ void BitcoinGUI::optionsClicked() dlg.exec(); } -void BitcoinGUI::aboutClicked() +void BitbeanGUI::aboutClicked() { AboutDialog dlg; dlg.setModel(clientModel); dlg.exec(); } -void BitcoinGUI::setNumConnections(int count) +void BitbeanGUI::setNumConnections(int count) { QString icon; switch(count) @@ -498,7 +508,7 @@ void BitcoinGUI::setNumConnections(int count) labelConnectionsIcon->setToolTip(tr("%n active connection(s) to BitBean network", "", count)); } -void BitcoinGUI::setNumBlocks(int count, int nTotalBlocks) +void BitbeanGUI::setNumBlocks(int count, int nTotalBlocks) { // don't show / hide progress bar and its label if we have no connection to the network if (!clientModel || clientModel->getNumConnections() == 0) @@ -603,7 +613,7 @@ void BitcoinGUI::setNumBlocks(int count, int nTotalBlocks) progressBar->setToolTip(tooltip); } -void BitcoinGUI::error(const QString &title, const QString &message, bool modal) +void BitbeanGUI::error(const QString &title, const QString &message, bool modal) { // Report errors from network/worker thread if(modal) @@ -614,7 +624,7 @@ void BitcoinGUI::error(const QString &title, const QString &message, bool modal) } } -void BitcoinGUI::changeEvent(QEvent *e) +void BitbeanGUI::changeEvent(QEvent *e) { QMainWindow::changeEvent(e); #ifndef Q_OS_MAC // Ignored on Mac @@ -633,7 +643,7 @@ void BitcoinGUI::changeEvent(QEvent *e) #endif } -void BitcoinGUI::closeEvent(QCloseEvent *event) +void BitbeanGUI::closeEvent(QCloseEvent *event) { if(clientModel) { @@ -648,20 +658,20 @@ void BitcoinGUI::closeEvent(QCloseEvent *event) QMainWindow::closeEvent(event); } -void BitcoinGUI::askFee(qint64 nFeeRequired, bool *payFee) +void BitbeanGUI::askFee(qint64 nFeeRequired, bool *payFee) { QString strMessage = tr("This transaction is over the size limit. You can still send it for a fee of %1, " "which goes to the nodes that process your transaction and helps to support the network. " "Do you want to pay the fee?").arg( - BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, nFeeRequired)); + BitbeanUnits::formatWithUnit(BitbeanUnits::BitB, nFeeRequired)); QMessageBox::StandardButton retval = QMessageBox::question( this, tr("Confirm transaction fee"), strMessage, QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Yes); *payFee = (retval == QMessageBox::Yes); } -void BitcoinGUI::incomingTransaction(const QModelIndex & parent, int start, int end) +void BitbeanGUI::incomingTransaction(const QModelIndex & parent, int start, int end) { if(!walletModel || !clientModel) return; @@ -690,13 +700,13 @@ void BitcoinGUI::incomingTransaction(const QModelIndex & parent, int start, int "Type: %3\n" "Address: %4\n") .arg(date) - .arg(BitcoinUnits::formatWithUnit(walletModel->getOptionsModel()->getDisplayUnit(), amount, true)) + .arg(BitbeanUnits::formatWithUnit(walletModel->getOptionsModel()->getDisplayUnit(), amount, true)) .arg(type) .arg(address), icon); } } -void BitcoinGUI::gotoOverviewPage() +void BitbeanGUI::gotoOverviewPage() { overviewAction->setChecked(true); centralWidget->setCurrentWidget(overviewPage); @@ -705,7 +715,7 @@ void BitcoinGUI::gotoOverviewPage() disconnect(exportAction, SIGNAL(triggered()), 0, 0); } -void BitcoinGUI::gotoHistoryPage() +void BitbeanGUI::gotoHistoryPage() { historyAction->setChecked(true); centralWidget->setCurrentWidget(transactionsPage); @@ -715,7 +725,7 @@ void BitcoinGUI::gotoHistoryPage() connect(exportAction, SIGNAL(triggered()), transactionView, SLOT(exportClicked())); } -void BitcoinGUI::gotoAddressBookPage() +void BitbeanGUI::gotoAddressBookPage() { addressBookAction->setChecked(true); centralWidget->setCurrentWidget(addressBookPage); @@ -725,26 +735,26 @@ void BitcoinGUI::gotoAddressBookPage() connect(exportAction, SIGNAL(triggered()), addressBookPage, SLOT(exportClicked())); } -void BitcoinGUI::gotoReceiveCoinsPage() +void BitbeanGUI::gotoReceiveBeansPage() { - receiveCoinsAction->setChecked(true); - centralWidget->setCurrentWidget(receiveCoinsPage); + receiveBeansAction->setChecked(true); + centralWidget->setCurrentWidget(receiveBeansPage); exportAction->setEnabled(true); disconnect(exportAction, SIGNAL(triggered()), 0, 0); - connect(exportAction, SIGNAL(triggered()), receiveCoinsPage, SLOT(exportClicked())); + connect(exportAction, SIGNAL(triggered()), receiveBeansPage, SLOT(exportClicked())); } -void BitcoinGUI::gotoSendCoinsPage() +void BitbeanGUI::gotoSendBeansPage() { - sendCoinsAction->setChecked(true); - centralWidget->setCurrentWidget(sendCoinsPage); + sendBeansAction->setChecked(true); + centralWidget->setCurrentWidget(sendBeansPage); exportAction->setEnabled(false); disconnect(exportAction, SIGNAL(triggered()), 0, 0); } -void BitcoinGUI::gotoSignMessageTab(QString addr) +void BitbeanGUI::gotoSignMessageTab(QString addr) { // call show() in showTab_SM() signVerifyMessageDialog->showTab_SM(true); @@ -753,7 +763,7 @@ void BitcoinGUI::gotoSignMessageTab(QString addr) signVerifyMessageDialog->setAddress_SM(addr); } -void BitcoinGUI::gotoVerifyMessageTab(QString addr) +void BitbeanGUI::gotoVerifyMessageTab(QString addr) { // call show() in showTab_VM() signVerifyMessageDialog->showTab_VM(true); @@ -762,14 +772,14 @@ void BitcoinGUI::gotoVerifyMessageTab(QString addr) signVerifyMessageDialog->setAddress_VM(addr); } -void BitcoinGUI::dragEnterEvent(QDragEnterEvent *event) +void BitbeanGUI::dragEnterEvent(QDragEnterEvent *event) { // Accept only URIs if(event->mimeData()->hasUrls()) event->acceptProposedAction(); } -void BitcoinGUI::dropEvent(QDropEvent *event) +void BitbeanGUI::dropEvent(QDropEvent *event) { if(event->mimeData()->hasUrls()) { @@ -777,13 +787,13 @@ void BitcoinGUI::dropEvent(QDropEvent *event) QList uris = event->mimeData()->urls(); foreach(const QUrl &uri, uris) { - if (sendCoinsPage->handleURI(uri.toString())) + if (sendBeansPage->handleURI(uri.toString())) nValidUrisFound++; } // if valid URIs were found if (nValidUrisFound) - gotoSendCoinsPage(); + gotoSendBeansPage(); else notificator->notify(Notificator::Warning, tr("URI handling"), tr("URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters.")); } @@ -791,19 +801,19 @@ void BitcoinGUI::dropEvent(QDropEvent *event) event->acceptProposedAction(); } -void BitcoinGUI::handleURI(QString strURI) +void BitbeanGUI::handleURI(QString strURI) { // URI has to be valid - if (sendCoinsPage->handleURI(strURI)) + if (sendBeansPage->handleURI(strURI)) { showNormalIfMinimized(); - gotoSendCoinsPage(); + gotoSendBeansPage(); } else notificator->notify(Notificator::Warning, tr("URI handling"), tr("URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters.")); } -void BitcoinGUI::setEncryptionStatus(int status) +void BitbeanGUI::setEncryptionStatus(int status) { switch(status) { @@ -838,7 +848,7 @@ void BitcoinGUI::setEncryptionStatus(int status) } } -void BitcoinGUI::encryptWallet(bool status) +void BitbeanGUI::encryptWallet(bool status) { if(!walletModel) return; @@ -850,7 +860,7 @@ void BitcoinGUI::encryptWallet(bool status) setEncryptionStatus(walletModel->getEncryptionStatus()); } -void BitcoinGUI::backupWallet() +void BitbeanGUI::backupWallet() { QString saveDir = QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation); QString filename = QFileDialog::getSaveFileName(this, tr("Backup Wallet"), saveDir, tr("Wallet Data (*.dat)")); @@ -861,14 +871,14 @@ void BitcoinGUI::backupWallet() } } -void BitcoinGUI::changePassphrase() +void BitbeanGUI::changePassphrase() { AskPassphraseDialog dlg(AskPassphraseDialog::ChangePass, this); dlg.setModel(walletModel); dlg.exec(); } -void BitcoinGUI::unlockWallet() +void BitbeanGUI::unlockWallet() { if(!walletModel) return; @@ -883,7 +893,7 @@ void BitcoinGUI::unlockWallet() } } -void BitcoinGUI::lockWallet() +void BitbeanGUI::lockWallet() { if(!walletModel) return; @@ -891,7 +901,7 @@ void BitcoinGUI::lockWallet() walletModel->setWalletLocked(true); } -void BitcoinGUI::showNormalIfMinimized(bool fToggleHidden) +void BitbeanGUI::showNormalIfMinimized(bool fToggleHidden) { // activateWindow() (sometimes) helps with keyboard focus on Windows if (isHidden()) @@ -913,12 +923,12 @@ void BitcoinGUI::showNormalIfMinimized(bool fToggleHidden) hide(); } -void BitcoinGUI::toggleHidden() +void BitbeanGUI::toggleHidden() { showNormalIfMinimized(true); } -void BitcoinGUI::updateWeight() +void BitbeanGUI::updateWeight() { if (!pwalletMain) return; @@ -935,48 +945,52 @@ void BitcoinGUI::updateWeight() pwalletMain->GetStakeWeight(*pwalletMain, nMinWeight, nMaxWeight, nWeight); } -void BitcoinGUI::updateStakingIcon() +void BitbeanGUI::updateStakingIcon() { - updateWeight(); - - if (nLastCoinStakeSearchInterval && nWeight) + // Mitigate freezing of inital block downloads, as updateWeight requires mutex lock + if (nLastBeanStakeSearchInterval && pwalletMain && !IsInitialBlockDownload()) { - uint64_t nNetworkWeight = GetPoSKernelPS(); - unsigned nEstimateTime = nTargetSpacing * nNetworkWeight / nWeight; + updateWeight(); - QString text; - if (nEstimateTime < 60) - { - text = tr("%n second(s)", "", nEstimateTime); - } - else if (nEstimateTime < 60*60) - { - text = tr("%n minute(s)", "", nEstimateTime/60); - } - else if (nEstimateTime < 24*60*60) + if (nLastBeanStakeSearchInterval && nWeight) { - text = tr("%n hour(s)", "", nEstimateTime/(60*60)); + uint64_t nNetworkWeight = GetPoSKernelPS(); + unsigned nEstimateTime = nTargetSpacing * nNetworkWeight / nWeight; + + QString text; + if (nEstimateTime < 60) + { + text = tr("%n second(s)", "", nEstimateTime); + } + else if (nEstimateTime < 60*60) + { + text = tr("%n minute(s)", "", nEstimateTime/60); + } + else if (nEstimateTime < 24*60*60) + { + text = tr("%n hour(s)", "", nEstimateTime/(60*60)); + } + else + { + text = tr("%n day(s)", "", nEstimateTime/(60*60*24)); + } + + labelStakingIcon->setPixmap(QIcon(":/icons/staking_on").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE)); + labelStakingIcon->setToolTip(tr("Staking.
Your weight is %1
Network weight is %2
Expected time to earn reward is %3").arg(nWeight).arg(nNetworkWeight).arg(text)); } else { - text = tr("%n day(s)", "", nEstimateTime/(60*60*24)); + labelStakingIcon->setPixmap(QIcon(":/icons/staking_off").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE)); + if (pwalletMain && pwalletMain->IsLocked()) + labelStakingIcon->setToolTip(tr("Not staking because wallet is locked")); + else if (vNodes.empty()) + labelStakingIcon->setToolTip(tr("Not staking because wallet is offline")); + else if (IsInitialBlockDownload()) + labelStakingIcon->setToolTip(tr("Not staking because wallet is syncing")); + else if (!nWeight) + labelStakingIcon->setToolTip(tr("Not staking because you don't have mature beans")); + else + labelStakingIcon->setToolTip(tr("Not staking")); } - - labelStakingIcon->setPixmap(QIcon(":/icons/staking_on").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE)); - labelStakingIcon->setToolTip(tr("Staking.
Your weight is %1
Network weight is %2
Expected time to earn reward is %3").arg(nWeight).arg(nNetworkWeight).arg(text)); - } - else - { - labelStakingIcon->setPixmap(QIcon(":/icons/staking_off").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE)); - if (pwalletMain && pwalletMain->IsLocked()) - labelStakingIcon->setToolTip(tr("Not staking because wallet is locked")); - else if (vNodes.empty()) - labelStakingIcon->setToolTip(tr("Not staking because wallet is offline")); - else if (IsInitialBlockDownload()) - labelStakingIcon->setToolTip(tr("Not staking because wallet is syncing")); - else if (!nWeight) - labelStakingIcon->setToolTip(tr("Not staking because you don't have mature coins")); - else - labelStakingIcon->setToolTip(tr("Not staking")); } } diff --git a/src/qt/bitcoingui.h b/src/qt/bitbeangui.h similarity index 89% rename from src/qt/bitcoingui.h rename to src/qt/bitbeangui.h index 69fc298..ea0d8ff 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitbeangui.h @@ -1,5 +1,5 @@ -#ifndef BITCOINGUI_H -#define BITCOINGUI_H +#ifndef BITBEANGUI_H +#define BITBEANGUI_H #include #include @@ -12,7 +12,7 @@ class WalletModel; class TransactionView; class OverviewPage; class AddressBookPage; -class SendCoinsDialog; +class SendBeansDialog; class SignVerifyMessageDialog; class Notificator; class RPCConsole; @@ -29,22 +29,22 @@ class QUrl; QT_END_NAMESPACE /** - Bitcoin GUI main class. This class represents the main window of the Bitcoin UI. It communicates with both the client and + Bitbean GUI main class. This class represents the main window of the Bitbean UI. It communicates with both the client and wallet models to give the user an up-to-date view of the current core state. */ -class BitcoinGUI : public QMainWindow +class BitbeanGUI : public QMainWindow { Q_OBJECT public: - explicit BitcoinGUI(QWidget *parent = 0); - ~BitcoinGUI(); + explicit BitbeanGUI(QWidget *parent = 0); + ~BitbeanGUI(); /** Set the client model. The client model represents the part of the core that communicates with the P2P network, and is wallet-agnostic. */ void setClientModel(ClientModel *clientModel); /** Set the wallet model. - The wallet model represents a bitcoin wallet, and offers access to the list of transactions, address book and sending + The wallet model represents a bitbean wallet, and offers access to the list of transactions, address book and sending functionality. */ void setWalletModel(WalletModel *walletModel); @@ -64,8 +64,8 @@ class BitcoinGUI : public QMainWindow OverviewPage *overviewPage; QWidget *transactionsPage; AddressBookPage *addressBookPage; - AddressBookPage *receiveCoinsPage; - SendCoinsDialog *sendCoinsPage; + AddressBookPage *receiveBeansPage; + SendBeansDialog *sendBeansPage; SignVerifyMessageDialog *signVerifyMessageDialog; QLabel *labelEncryptionIcon; @@ -79,12 +79,12 @@ class BitcoinGUI : public QMainWindow QAction *overviewAction; QAction *historyAction; QAction *quitAction; - QAction *sendCoinsAction; + QAction *sendBeansAction; QAction *addressBookAction; QAction *signMessageAction; QAction *verifyMessageAction; QAction *aboutAction; - QAction *receiveCoinsAction; + QAction *receiveBeansAction; QAction *optionsAction; QAction *toggleHideAction; QAction *exportAction; @@ -145,10 +145,10 @@ private slots: void gotoHistoryPage(); /** Switch to address book page */ void gotoAddressBookPage(); - /** Switch to receive coins page */ - void gotoReceiveCoinsPage(); - /** Switch to send coins page */ - void gotoSendCoinsPage(); + /** Switch to receive beans page */ + void gotoReceiveBeansPage(); + /** Switch to send beans page */ + void gotoSendBeansPage(); /** Show Sign/Verify Message dialog and switch to sign message tab */ void gotoSignMessageTab(QString addr = ""); diff --git a/src/qt/bitbeanstrings.cpp b/src/qt/bitbeanstrings.cpp new file mode 100644 index 0000000..9c33e4d --- /dev/null +++ b/src/qt/bitbeanstrings.cpp @@ -0,0 +1,201 @@ +#include +// Automatically generated by extract_strings.py +#ifdef __GNUC__ +#define UNUSED __attribute__((unused)) +#else +#define UNUSED +#endif +static const char UNUSED *bitbean_strings[] = {QT_TRANSLATE_NOOP("bitbean-core", "To use the %s option"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"%s, you must set a rpcpassword in the configuration file:\n" +" %s\n" +"It is recommended you use the following random password:\n" +"rpcuser=BitBeanrpc\n" +"rpcpassword=%s\n" +"(you do not need to remember this password)\n" +"The username and password MUST NOT be the same.\n" +"If the file does not exist, create it with owner-readable-only file " +"permissions.\n" +"It is also recommended to set alertnotify so you are notified of problems;\n" +"for example: alertnotify=echo %%s | mail -s \"BitBean Alert\" admin@foo." +"com\n"), +QT_TRANSLATE_NOOP("bitbean-core", "Error"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"An error occurred while setting up the RPC port %u for listening on IPv6, " +"falling back to IPv4: %s"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"An error occurred while setting up the RPC port %u for listening on IPv4: %s"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"You must set rpcpassword= in the configuration file:\n" +"%s\n" +"If the file does not exist, create it with owner-readable-only file " +"permissions."), +QT_TRANSLATE_NOOP("bitbean-core", "BitBean version"), +QT_TRANSLATE_NOOP("bitbean-core", "Usage:"), +QT_TRANSLATE_NOOP("bitbean-core", "Send command to -server or BitBeand"), +QT_TRANSLATE_NOOP("bitbean-core", "List commands"), +QT_TRANSLATE_NOOP("bitbean-core", "Get help for a command"), +QT_TRANSLATE_NOOP("bitbean-core", "BitBean"), +QT_TRANSLATE_NOOP("bitbean-core", "Options:"), +QT_TRANSLATE_NOOP("bitbean-core", "This help message"), +QT_TRANSLATE_NOOP("bitbean-core", "Specify configuration file (default: BitBean.conf)"), +QT_TRANSLATE_NOOP("bitbean-core", "Specify pid file (default: BitBeand.pid)"), +QT_TRANSLATE_NOOP("bitbean-core", "Specify data directory"), +QT_TRANSLATE_NOOP("bitbean-core", "Specify wallet file (within data directory)"), +QT_TRANSLATE_NOOP("bitbean-core", "Set database cache size in megabytes (default: 25)"), +QT_TRANSLATE_NOOP("bitbean-core", "Set database disk log size in megabytes (default: 100)"), +QT_TRANSLATE_NOOP("bitbean-core", "Specify connection timeout in milliseconds (default: 5000)"), +QT_TRANSLATE_NOOP("bitbean-core", "Connect through socks proxy"), +QT_TRANSLATE_NOOP("bitbean-core", "Select the version of socks proxy to use (4-5, default: 5)"), +QT_TRANSLATE_NOOP("bitbean-core", "Use proxy to reach tor hidden services (default: same as -proxy)"), +QT_TRANSLATE_NOOP("bitbean-core", "Allow DNS lookups for -addnode, -seednode and -connect"), +QT_TRANSLATE_NOOP("bitbean-core", "Listen for connections on (default: 15714 or testnet: 25714)"), +QT_TRANSLATE_NOOP("bitbean-core", "Maintain at most connections to peers (default: 125)"), +QT_TRANSLATE_NOOP("bitbean-core", "Add a node to connect to and attempt to keep the connection open"), +QT_TRANSLATE_NOOP("bitbean-core", "Connect only to the specified node(s)"), +QT_TRANSLATE_NOOP("bitbean-core", "Connect to a node to retrieve peer addresses, and disconnect"), +QT_TRANSLATE_NOOP("bitbean-core", "Specify your own public address"), +QT_TRANSLATE_NOOP("bitbean-core", "Only connect to nodes in network (IPv4, IPv6 or Tor)"), +QT_TRANSLATE_NOOP("bitbean-core", "Discover own IP address (default: 1 when listening and no -externalip)"), +QT_TRANSLATE_NOOP("bitbean-core", "Find peers using internet relay chat (default: 0)"), +QT_TRANSLATE_NOOP("bitbean-core", "Accept connections from outside (default: 1 if no -proxy or -connect)"), +QT_TRANSLATE_NOOP("bitbean-core", "Bind to given address. Use [host]:port notation for IPv6"), +QT_TRANSLATE_NOOP("bitbean-core", "Find peers using DNS lookup (default: 1)"), +QT_TRANSLATE_NOOP("bitbean-core", "Stake your beans to support network and gain reward (default: 1)"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Sync time with other nodes. Disable if time on your system is precise e.g. " +"syncing with NTP (default: 1)"), +QT_TRANSLATE_NOOP("bitbean-core", "Sync checkpoints policy (default: strict)"), +QT_TRANSLATE_NOOP("bitbean-core", "Threshold for disconnecting misbehaving peers (default: 100)"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Number of seconds to keep misbehaving peers from reconnecting (default: " +"86400)"), +QT_TRANSLATE_NOOP("bitbean-core", "Maximum per-connection receive buffer, *1000 bytes (default: 5000)"), +QT_TRANSLATE_NOOP("bitbean-core", "Maximum per-connection send buffer, *1000 bytes (default: 1000)"), +QT_TRANSLATE_NOOP("bitbean-core", "Use UPnP to map the listening port (default: 1 when listening)"), +QT_TRANSLATE_NOOP("bitbean-core", "Use UPnP to map the listening port (default: 0)"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Detach block and address databases. Increases shutdown time (default: 0)"), +QT_TRANSLATE_NOOP("bitbean-core", "Fee per KB to add to transactions you send"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"When creating transactions, ignore inputs with value less than this " +"(default: 0.01)"), +QT_TRANSLATE_NOOP("bitbean-core", "Accept command line and JSON-RPC commands"), +QT_TRANSLATE_NOOP("bitbean-core", "Run in the background as a daemon and accept commands"), +QT_TRANSLATE_NOOP("bitbean-core", "Use the test network"), +QT_TRANSLATE_NOOP("bitbean-core", "Output extra debugging information. Implies all other -debug* options"), +QT_TRANSLATE_NOOP("bitbean-core", "Output extra network debugging information"), +QT_TRANSLATE_NOOP("bitbean-core", "Prepend debug output with timestamp"), +QT_TRANSLATE_NOOP("bitbean-core", "Shrink debug.log file on client startup (default: 1 when no -debug)"), +QT_TRANSLATE_NOOP("bitbean-core", "Send trace/debug info to console instead of debug.log file"), +QT_TRANSLATE_NOOP("bitbean-core", "Send trace/debug info to debugger"), +QT_TRANSLATE_NOOP("bitbean-core", "Username for JSON-RPC connections"), +QT_TRANSLATE_NOOP("bitbean-core", "Password for JSON-RPC connections"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Listen for JSON-RPC connections on (default: 15715 or testnet: 25715)"), +QT_TRANSLATE_NOOP("bitbean-core", "Allow JSON-RPC connections from specified IP address"), +QT_TRANSLATE_NOOP("bitbean-core", "Send commands to node running on (default: 127.0.0.1)"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Execute command when the best block changes (%s in cmd is replaced by block " +"hash)"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Execute command when a wallet transaction changes (%s in cmd is replaced by " +"TxID)"), +QT_TRANSLATE_NOOP("bitbean-core", "Require a confirmations for change (default: 0)"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Enforce transaction scripts to use canonical PUSH operators (default: 1)"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Execute command when a relevant alert is received (%s in cmd is replaced by " +"message)"), +QT_TRANSLATE_NOOP("bitbean-core", "Upgrade wallet to latest format"), +QT_TRANSLATE_NOOP("bitbean-core", "Set key pool size to (default: 100)"), +QT_TRANSLATE_NOOP("bitbean-core", "Rescan the block chain for missing wallet transactions"), +QT_TRANSLATE_NOOP("bitbean-core", "Attempt to recover private keys from a corrupt wallet.dat"), +QT_TRANSLATE_NOOP("bitbean-core", "How many blocks to check at startup (default: 2500, 0 = all)"), +QT_TRANSLATE_NOOP("bitbean-core", "How thorough the block verification is (0-6, default: 1)"), +QT_TRANSLATE_NOOP("bitbean-core", "Imports blocks from external blk000?.dat file"), +QT_TRANSLATE_NOOP("bitbean-core", "Block creation options:"), +QT_TRANSLATE_NOOP("bitbean-core", "Set minimum block size in bytes (default: 0)"), +QT_TRANSLATE_NOOP("bitbean-core", "Set maximum block size in bytes (default: 250000)"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Set maximum size of high-priority/low-fee transactions in bytes (default: " +"27000)"), +QT_TRANSLATE_NOOP("bitbean-core", "SSL options: (see the Bitbean Wiki for SSL setup instructions)"), +QT_TRANSLATE_NOOP("bitbean-core", "Use OpenSSL (https) for JSON-RPC connections"), +QT_TRANSLATE_NOOP("bitbean-core", "Server certificate file (default: server.cert)"), +QT_TRANSLATE_NOOP("bitbean-core", "Server private key (default: server.pem)"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:" +"@STRENGTH)"), +QT_TRANSLATE_NOOP("bitbean-core", "Invalid amount for -paytxfee=: '%s'"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Warning: -paytxfee is set very high! This is the transaction fee you will " +"pay if you send a transaction."), +QT_TRANSLATE_NOOP("bitbean-core", "Invalid amount for -mininput=: '%s'"), +QT_TRANSLATE_NOOP("bitbean-core", "Wallet %s resides outside data directory %s."), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Cannot obtain a lock on data directory %s. BitBean is probably already " +"running."), +QT_TRANSLATE_NOOP("bitbean-core", "Verifying database integrity..."), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Error initializing database environment %s! To recover, BACKUP THAT " +"DIRECTORY, then remove everything from it except for wallet.dat."), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as " +"wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect " +"you should restore from a backup."), +QT_TRANSLATE_NOOP("bitbean-core", "wallet.dat corrupt, salvage failed"), +QT_TRANSLATE_NOOP("bitbean-core", "Unknown -socks proxy version requested: %i"), +QT_TRANSLATE_NOOP("bitbean-core", "Unknown network specified in -onlynet: '%s'"), +QT_TRANSLATE_NOOP("bitbean-core", "Invalid -proxy address: '%s'"), +QT_TRANSLATE_NOOP("bitbean-core", "Invalid -tor address: '%s'"), +QT_TRANSLATE_NOOP("bitbean-core", "Cannot resolve -bind address: '%s'"), +QT_TRANSLATE_NOOP("bitbean-core", "Failed to listen on any port. Use -listen=0 if you want this."), +QT_TRANSLATE_NOOP("bitbean-core", "Cannot resolve -externalip address: '%s'"), +QT_TRANSLATE_NOOP("bitbean-core", "Invalid amount for -reservebalance="), +QT_TRANSLATE_NOOP("bitbean-core", "Unable to sign checkpoint, wrong checkpointkey?\n"), +QT_TRANSLATE_NOOP("bitbean-core", "Loading block index..."), +QT_TRANSLATE_NOOP("bitbean-core", "Error loading blkindex.dat"), +QT_TRANSLATE_NOOP("bitbean-core", "Loading wallet..."), +QT_TRANSLATE_NOOP("bitbean-core", "Error loading wallet.dat: Wallet corrupted"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Warning: error reading wallet.dat! All keys read correctly, but transaction " +"data or address book entries might be missing or incorrect."), +QT_TRANSLATE_NOOP("bitbean-core", "Error loading wallet.dat: Wallet requires newer version of BitBean"), +QT_TRANSLATE_NOOP("bitbean-core", "Wallet needed to be rewritten: restart BitBean to complete"), +QT_TRANSLATE_NOOP("bitbean-core", "Error loading wallet.dat"), +QT_TRANSLATE_NOOP("bitbean-core", "Cannot downgrade wallet"), +QT_TRANSLATE_NOOP("bitbean-core", "Cannot initialize keypool"), +QT_TRANSLATE_NOOP("bitbean-core", "Cannot write default address"), +QT_TRANSLATE_NOOP("bitbean-core", "Rescanning..."), +QT_TRANSLATE_NOOP("bitbean-core", "Importing blockchain data file."), +QT_TRANSLATE_NOOP("bitbean-core", "Importing bootstrap blockchain data file."), +QT_TRANSLATE_NOOP("bitbean-core", "Loading addresses..."), +QT_TRANSLATE_NOOP("bitbean-core", "Error: could not start node"), +QT_TRANSLATE_NOOP("bitbean-core", "Done loading"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Unable to bind to %s on this computer. BitBean is probably already running."), +QT_TRANSLATE_NOOP("bitbean-core", "Unable to bind to %s on this computer (bind returned error %d, %s)"), +QT_TRANSLATE_NOOP("bitbean-core", "Error: Wallet locked, unable to create transaction "), +QT_TRANSLATE_NOOP("bitbean-core", "Error: Wallet unlocked for staking only, unable to create transaction."), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Error: This transaction requires a transaction fee of at least %s because of " +"its amount, complexity, or use of recently received funds "), +QT_TRANSLATE_NOOP("bitbean-core", "Error: Transaction creation failed "), +QT_TRANSLATE_NOOP("bitbean-core", "Sending..."), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Error: The transaction was rejected. This might happen if some of the beans " +"in your wallet were already spent, such as if you used a copy of wallet.dat " +"and beans were spent in the copy but not marked as spent here."), +QT_TRANSLATE_NOOP("bitbean-core", "Invalid amount"), +QT_TRANSLATE_NOOP("bitbean-core", "Insufficient funds"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"Warning: Please check that your computer's date and time are correct! If " +"your clock is wrong BitBean will not work properly."), +QT_TRANSLATE_NOOP("bitbean-core", "Warning: This version is obsolete, upgrade required!"), +QT_TRANSLATE_NOOP("bitbean-core", "WARNING: syncronized checkpoint violation detected, but skipped!"), +QT_TRANSLATE_NOOP("bitbean-core", "Warning: Disk space is low!"), +QT_TRANSLATE_NOOP("bitbean-core", "" +"WARNING: Invalid checkpoint found! Displayed transactions may not be " +"correct! You may need to upgrade, or notify developers."), +}; \ No newline at end of file diff --git a/src/qt/bitcoinunits.cpp b/src/qt/bitbeanunits.cpp similarity index 57% rename from src/qt/bitcoinunits.cpp rename to src/qt/bitbeanunits.cpp index 16cc204..360e04b 100644 --- a/src/qt/bitcoinunits.cpp +++ b/src/qt/bitbeanunits.cpp @@ -1,101 +1,115 @@ -#include "bitcoinunits.h" +#include "bitbeanunits.h" #include -BitcoinUnits::BitcoinUnits(QObject *parent): +BitbeanUnits::BitbeanUnits(QObject *parent): QAbstractListModel(parent), unitlist(availableUnits()) { } -QList BitcoinUnits::availableUnits() +QList BitbeanUnits::availableUnits() { - QList unitlist; - unitlist.append(BTC); - unitlist.append(mBTC); - unitlist.append(uBTC); + QList unitlist; + unitlist.append(Sprout); + unitlist.append(BitB); + unitlist.append(mBitB); + unitlist.append(uBitB); + unitlist.append(nokat); return unitlist; } -bool BitcoinUnits::valid(int unit) +bool BitbeanUnits::valid(int unit) { switch(unit) { - case BTC: - case mBTC: - case uBTC: + case Sprout: + case BitB: + case mBitB: + case uBitB: + case nokat: return true; default: return false; } } -QString BitcoinUnits::name(int unit) +QString BitbeanUnits::name(int unit) { switch(unit) { - case BTC: return QString("BITB"); - case mBTC: return QString("mBITB"); - case uBTC: return QString::fromUtf8("μBITB"); + case Sprout: return QString("SPROUT"); + case BitB: return QString("BITB"); + case mBitB: return QString("mBITB"); + case uBitB: return QString::fromUtf8("μBITB"); + case nokat: return QString("NOKAT"); default: return QString("???"); } } -QString BitcoinUnits::description(int unit) +QString BitbeanUnits::description(int unit) { switch(unit) { - case BTC: return QString("BitBeans"); - case mBTC: return QString("Milli-BitBeans (1 / 1,000)"); - case uBTC: return QString("Micro-BitBeans (1 / 1,000,000)"); + case Sprout: return QString("Sprout (1,000 BitBeans)"); + case BitB: return QString("BitBean"); + case mBitB: return QString("Milli-BitBean (1 / 1,000)"); + case uBitB: return QString("Micro-BitBean (1 / 1,000,000)"); + case nokat: return QString("Nokat (1 / 100,000,000)"); default: return QString("???"); } } -qint64 BitcoinUnits::factor(int unit) +qint64 BitbeanUnits::factor(int unit) { switch(unit) { - case BTC: return 100000000; - case mBTC: return 100000; - case uBTC: return 100; + case Sprout: return 100000000000; + case BitB: return 100000000; + case mBitB: return 100000; + case uBitB: return 100; + case nokat: return 1; default: return 100000000; } } -int BitcoinUnits::amountDigits(int unit) +int BitbeanUnits::amountDigits(int unit) { switch(unit) { - case BTC: return 8; // 21,000,000 (# digits, without commas) - case mBTC: return 11; // 21,000,000,000 - case uBTC: return 14; // 21,000,000,000,000 + case Sprout: return 5; + case BitB: return 8; // 21,000,000 (# digits, without commas) + case mBitB: return 11; // 21,000,000,000 + case uBitB: return 14; // 21,000,000,000,000 + case nokat: return 16; default: return 0; } } -int BitcoinUnits::decimals(int unit) +int BitbeanUnits::decimals(int unit) { switch(unit) { - case BTC: return 8; - case mBTC: return 5; - case uBTC: return 2; + case Sprout: return 11; + case BitB: return 8; + case mBitB: return 5; + case uBitB: return 2; + case nokat: return 0; default: return 0; } } -QString BitcoinUnits::format(int unit, qint64 n, bool fPlus) +QString BitbeanUnits::format(int unit, qint64 n, bool fPlus) { // Note: not using straight sprintf here because we do NOT want // localized number formatting. if(!valid(unit)) return QString(); // Refuse to format invalid unit - qint64 coin = factor(unit); + qint64 bean = factor(unit); int num_decimals = decimals(unit); qint64 n_abs = (n > 0 ? n : -n); - qint64 quotient = n_abs / coin; - qint64 remainder = n_abs % coin; + qint64 quotient = n_abs / bean; + qint64 remainder = n_abs % bean; QString quotient_str = QString::number(quotient); QString remainder_str = QString::number(remainder).rightJustified(num_decimals, '0'); @@ -112,12 +126,12 @@ QString BitcoinUnits::format(int unit, qint64 n, bool fPlus) return quotient_str + QString(".") + remainder_str; } -QString BitcoinUnits::formatWithUnit(int unit, qint64 amount, bool plussign) +QString BitbeanUnits::formatWithUnit(int unit, qint64 amount, bool plussign) { return format(unit, amount, plussign) + QString(" ") + name(unit); } -bool BitcoinUnits::parse(int unit, const QString &value, qint64 *val_out) +bool BitbeanUnits::parse(int unit, const QString &value, qint64 *val_out) { if(!valid(unit) || value.isEmpty()) return false; // Refuse to parse invalid unit or empty string @@ -154,13 +168,13 @@ bool BitcoinUnits::parse(int unit, const QString &value, qint64 *val_out) return ok; } -int BitcoinUnits::rowCount(const QModelIndex &parent) const +int BitbeanUnits::rowCount(const QModelIndex &parent) const { Q_UNUSED(parent); return unitlist.size(); } -QVariant BitcoinUnits::data(const QModelIndex &index, int role) const +QVariant BitbeanUnits::data(const QModelIndex &index, int role) const { int row = index.row(); if(row >= 0 && row < unitlist.size()) diff --git a/src/qt/bitcoinunits.h b/src/qt/bitbeanunits.h similarity index 70% rename from src/qt/bitcoinunits.h rename to src/qt/bitbeanunits.h index 9b7c9e1..ca768a2 100644 --- a/src/qt/bitcoinunits.h +++ b/src/qt/bitbeanunits.h @@ -1,25 +1,27 @@ -#ifndef BITCOINUNITS_H -#define BITCOINUNITS_H +#ifndef BITBEANUNITS_H +#define BITBEANUNITS_H #include #include -/** Bitcoin unit definitions. Encapsulates parsing and formatting +/** Bitbean unit definitions. Encapsulates parsing and formatting and serves as list model for drop-down selection boxes. */ -class BitcoinUnits: public QAbstractListModel +class BitbeanUnits: public QAbstractListModel { public: - explicit BitcoinUnits(QObject *parent); + explicit BitbeanUnits(QObject *parent); - /** Bitcoin units. - @note Source: https://en.bitcoin.it/wiki/Units . Please add only sensible ones + /** Bitbean units. + @note Please add only sensible ones */ enum Unit { - BTC, - mBTC, - uBTC + Sprout, + BitB, + mBitB, + uBitB, + nokat }; //! @name Static API @@ -36,7 +38,7 @@ class BitcoinUnits: public QAbstractListModel static QString description(int unit); //! Number of Satoshis (1e-8) per unit static qint64 factor(int unit); - //! Number of amount digits (to represent max number of coins) + //! Number of amount digits (to represent max number of beans) static int amountDigits(int unit); //! Number of decimals left static int decimals(int unit); @@ -44,7 +46,7 @@ class BitcoinUnits: public QAbstractListModel static QString format(int unit, qint64 amount, bool plussign=false); //! Format as string (with unit) static QString formatWithUnit(int unit, qint64 amount, bool plussign=false); - //! Parse string to coin amount + //! Parse string to bean amount static bool parse(int unit, const QString &value, qint64 *val_out); ///@} @@ -59,8 +61,8 @@ class BitcoinUnits: public QAbstractListModel QVariant data(const QModelIndex &index, int role) const; ///@} private: - QList unitlist; + QList unitlist; }; -typedef BitcoinUnits::Unit BitcoinUnit; +typedef BitbeanUnits::Unit BitbeanUnit; -#endif // BITCOINUNITS_H +#endif // BITBEANUNITS_H diff --git a/src/qt/bitcoin.qrc b/src/qt/bitcoin.qrc deleted file mode 100644 index 3fa8559..0000000 --- a/src/qt/bitcoin.qrc +++ /dev/null @@ -1,95 +0,0 @@ - - - res/icons/novacoin-80.png - res/icons/address-book.png - res/icons/quit.png - res/icons/send.png - res/icons/novacoin-16.png - res/icons/connect0_16.png - res/icons/connect1_16.png - res/icons/connect2_16.png - res/icons/connect3_16.png - res/icons/connect4_16.png - res/icons/transaction0.png - res/icons/transaction2.png - res/icons/transaction_conflicted.png - res/icons/clock1.png - res/icons/clock2.png - res/icons/clock3.png - res/icons/clock4.png - res/icons/clock5.png - res/icons/configure.png - res/icons/receive.png - res/icons/editpaste.png - res/icons/editcopy.png - res/icons/add.png - res/icons/novacoin-80.png - res/icons/novacoin-16.png - res/icons/edit.png - res/icons/history.png - res/icons/overview.png - res/icons/export.png - res/icons/synced.png - res/icons/remove.png - res/icons/tx_mined.png - res/icons/tx_input.png - res/icons/tx_output.png - res/icons/tx_inout.png - res/icons/lock_closed.png - res/icons/lock_open.png - res/icons/key.png - res/icons/filesave.png - res/icons/qrcode.png - res/icons/debugwindow.png - res/icons/staking_off.png - res/icons/staking_on.png - - - res/images/about.png - res/images/splash3.png - - - res/movies/update_spinner.mng - - - locale/bitcoin_ar.ts - locale/bitcoin_ca_ES.ts - locale/bitcoin_cs.ts - locale/bitcoin_da.ts - locale/bitcoin_de.ts - locale/bitcoin_el_GR.ts - locale/bitcoin_en.ts - locale/bitcoin_eo.ts - locale/bitcoin_es_CL.ts - locale/bitcoin_es_DO.ts - locale/bitcoin_es.ts - locale/bitcoin_fa.ts - locale/bitcoin_fi.ts - locale/bitcoin_fr_CA.ts - locale/bitcoin_fr.ts - locale/bitcoin_gl.ts - locale/bitcoin_he.ts - locale/bitcoin_hr.ts - locale/bitcoin_hu.ts - locale/bitcoin_it.ts - locale/bitcoin_ja.ts - locale/bitcoin_ka.ts - locale/bitcoin_ko_KR.ts - locale/bitcoin_lt.ts - locale/bitcoin_nb.ts - locale/bitcoin_nl.ts - locale/bitcoin_pam.ts - locale/bitcoin_pl.ts - locale/bitcoin_pt_BR.ts - locale/bitcoin_pt_PT.ts - locale/bitcoin_ro_RO.ts - locale/bitcoin_ru.ts - locale/bitcoin_sk.ts - locale/bitcoin_sl_SI.ts - locale/bitcoin_sv.ts - locale/bitcoin_tr.ts - locale/bitcoin_uk.ts - locale/bitcoin_zh_CN.ts - locale/bitcoin_zh_TW.ts - - diff --git a/src/qt/bitcoinstrings.cpp b/src/qt/bitcoinstrings.cpp deleted file mode 100644 index 0138dea..0000000 --- a/src/qt/bitcoinstrings.cpp +++ /dev/null @@ -1,201 +0,0 @@ -#include -// Automatically generated by extract_strings.py -#ifdef __GNUC__ -#define UNUSED __attribute__((unused)) -#else -#define UNUSED -#endif -static const char UNUSED *bitcoin_strings[] = {QT_TRANSLATE_NOOP("bitcoin-core", "To use the %s option"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"%s, you must set a rpcpassword in the configuration file:\n" -" %s\n" -"It is recommended you use the following random password:\n" -"rpcuser=BitBeanrpc\n" -"rpcpassword=%s\n" -"(you do not need to remember this password)\n" -"The username and password MUST NOT be the same.\n" -"If the file does not exist, create it with owner-readable-only file " -"permissions.\n" -"It is also recommended to set alertnotify so you are notified of problems;\n" -"for example: alertnotify=echo %%s | mail -s \"BitBean Alert\" admin@foo." -"com\n"), -QT_TRANSLATE_NOOP("bitcoin-core", "Error"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"An error occurred while setting up the RPC port %u for listening on IPv6, " -"falling back to IPv4: %s"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"An error occurred while setting up the RPC port %u for listening on IPv4: %s"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"You must set rpcpassword= in the configuration file:\n" -"%s\n" -"If the file does not exist, create it with owner-readable-only file " -"permissions."), -QT_TRANSLATE_NOOP("bitcoin-core", "BitBean version"), -QT_TRANSLATE_NOOP("bitcoin-core", "Usage:"), -QT_TRANSLATE_NOOP("bitcoin-core", "Send command to -server or BitBeand"), -QT_TRANSLATE_NOOP("bitcoin-core", "List commands"), -QT_TRANSLATE_NOOP("bitcoin-core", "Get help for a command"), -QT_TRANSLATE_NOOP("bitcoin-core", "BitBean"), -QT_TRANSLATE_NOOP("bitcoin-core", "Options:"), -QT_TRANSLATE_NOOP("bitcoin-core", "This help message"), -QT_TRANSLATE_NOOP("bitcoin-core", "Specify configuration file (default: BitBean.conf)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Specify pid file (default: BitBeand.pid)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Specify data directory"), -QT_TRANSLATE_NOOP("bitcoin-core", "Specify wallet file (within data directory)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Set database cache size in megabytes (default: 25)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Set database disk log size in megabytes (default: 100)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Specify connection timeout in milliseconds (default: 5000)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Connect through socks proxy"), -QT_TRANSLATE_NOOP("bitcoin-core", "Select the version of socks proxy to use (4-5, default: 5)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Use proxy to reach tor hidden services (default: same as -proxy)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Allow DNS lookups for -addnode, -seednode and -connect"), -QT_TRANSLATE_NOOP("bitcoin-core", "Listen for connections on (default: 15714 or testnet: 25714)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Maintain at most connections to peers (default: 125)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Add a node to connect to and attempt to keep the connection open"), -QT_TRANSLATE_NOOP("bitcoin-core", "Connect only to the specified node(s)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Connect to a node to retrieve peer addresses, and disconnect"), -QT_TRANSLATE_NOOP("bitcoin-core", "Specify your own public address"), -QT_TRANSLATE_NOOP("bitcoin-core", "Only connect to nodes in network (IPv4, IPv6 or Tor)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Discover own IP address (default: 1 when listening and no -externalip)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Find peers using internet relay chat (default: 0)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Accept connections from outside (default: 1 if no -proxy or -connect)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Bind to given address. Use [host]:port notation for IPv6"), -QT_TRANSLATE_NOOP("bitcoin-core", "Find peers using DNS lookup (default: 1)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Stake your coins to support network and gain reward (default: 1)"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Sync time with other nodes. Disable if time on your system is precise e.g. " -"syncing with NTP (default: 1)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Sync checkpoints policy (default: strict)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Threshold for disconnecting misbehaving peers (default: 100)"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Number of seconds to keep misbehaving peers from reconnecting (default: " -"86400)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Maximum per-connection receive buffer, *1000 bytes (default: 5000)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Maximum per-connection send buffer, *1000 bytes (default: 1000)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Use UPnP to map the listening port (default: 1 when listening)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Use UPnP to map the listening port (default: 0)"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Detach block and address databases. Increases shutdown time (default: 0)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Fee per KB to add to transactions you send"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"When creating transactions, ignore inputs with value less than this " -"(default: 0.01)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Accept command line and JSON-RPC commands"), -QT_TRANSLATE_NOOP("bitcoin-core", "Run in the background as a daemon and accept commands"), -QT_TRANSLATE_NOOP("bitcoin-core", "Use the test network"), -QT_TRANSLATE_NOOP("bitcoin-core", "Output extra debugging information. Implies all other -debug* options"), -QT_TRANSLATE_NOOP("bitcoin-core", "Output extra network debugging information"), -QT_TRANSLATE_NOOP("bitcoin-core", "Prepend debug output with timestamp"), -QT_TRANSLATE_NOOP("bitcoin-core", "Shrink debug.log file on client startup (default: 1 when no -debug)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Send trace/debug info to console instead of debug.log file"), -QT_TRANSLATE_NOOP("bitcoin-core", "Send trace/debug info to debugger"), -QT_TRANSLATE_NOOP("bitcoin-core", "Username for JSON-RPC connections"), -QT_TRANSLATE_NOOP("bitcoin-core", "Password for JSON-RPC connections"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Listen for JSON-RPC connections on (default: 15715 or testnet: 25715)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Allow JSON-RPC connections from specified IP address"), -QT_TRANSLATE_NOOP("bitcoin-core", "Send commands to node running on (default: 127.0.0.1)"), -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", "" -"Execute command when a wallet transaction changes (%s in cmd is replaced by " -"TxID)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Require a confirmations for change (default: 0)"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Enforce transaction scripts to use canonical PUSH operators (default: 1)"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Execute command when a relevant alert is received (%s in cmd is replaced by " -"message)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Upgrade wallet to latest format"), -QT_TRANSLATE_NOOP("bitcoin-core", "Set key pool size to (default: 100)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Rescan the block chain for missing wallet transactions"), -QT_TRANSLATE_NOOP("bitcoin-core", "Attempt to recover private keys from a corrupt wallet.dat"), -QT_TRANSLATE_NOOP("bitcoin-core", "How many blocks to check at startup (default: 2500, 0 = all)"), -QT_TRANSLATE_NOOP("bitcoin-core", "How thorough the block verification is (0-6, default: 1)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Imports blocks from external blk000?.dat file"), -QT_TRANSLATE_NOOP("bitcoin-core", "Block creation options:"), -QT_TRANSLATE_NOOP("bitcoin-core", "Set minimum block size in bytes (default: 0)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Set maximum block size in bytes (default: 250000)"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Set maximum size of high-priority/low-fee transactions in bytes (default: " -"27000)"), -QT_TRANSLATE_NOOP("bitcoin-core", "SSL options: (see the Bitcoin Wiki for SSL setup instructions)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Use OpenSSL (https) for JSON-RPC connections"), -QT_TRANSLATE_NOOP("bitcoin-core", "Server certificate file (default: server.cert)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Server private key (default: server.pem)"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:" -"@STRENGTH)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -paytxfee=: '%s'"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Warning: -paytxfee is set very high! This is the transaction fee you will " -"pay if you send a transaction."), -QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -mininput=: '%s'"), -QT_TRANSLATE_NOOP("bitcoin-core", "Wallet %s resides outside data directory %s."), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Cannot obtain a lock on data directory %s. BitBean is probably already " -"running."), -QT_TRANSLATE_NOOP("bitcoin-core", "Verifying database integrity..."), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Error initializing database environment %s! To recover, BACKUP THAT " -"DIRECTORY, then remove everything from it except for wallet.dat."), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as " -"wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect " -"you should restore from a backup."), -QT_TRANSLATE_NOOP("bitcoin-core", "wallet.dat corrupt, salvage failed"), -QT_TRANSLATE_NOOP("bitcoin-core", "Unknown -socks proxy version requested: %i"), -QT_TRANSLATE_NOOP("bitcoin-core", "Unknown network specified in -onlynet: '%s'"), -QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -proxy address: '%s'"), -QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -tor address: '%s'"), -QT_TRANSLATE_NOOP("bitcoin-core", "Cannot resolve -bind address: '%s'"), -QT_TRANSLATE_NOOP("bitcoin-core", "Failed to listen on any port. Use -listen=0 if you want this."), -QT_TRANSLATE_NOOP("bitcoin-core", "Cannot resolve -externalip address: '%s'"), -QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -reservebalance="), -QT_TRANSLATE_NOOP("bitcoin-core", "Unable to sign checkpoint, wrong checkpointkey?\n"), -QT_TRANSLATE_NOOP("bitcoin-core", "Loading block index..."), -QT_TRANSLATE_NOOP("bitcoin-core", "Error loading blkindex.dat"), -QT_TRANSLATE_NOOP("bitcoin-core", "Loading wallet..."), -QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet corrupted"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Warning: error reading wallet.dat! All keys read correctly, but transaction " -"data or address book entries might be missing or incorrect."), -QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet requires newer version of BitBean"), -QT_TRANSLATE_NOOP("bitcoin-core", "Wallet needed to be rewritten: restart BitBean to complete"), -QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat"), -QT_TRANSLATE_NOOP("bitcoin-core", "Cannot downgrade wallet"), -QT_TRANSLATE_NOOP("bitcoin-core", "Cannot initialize keypool"), -QT_TRANSLATE_NOOP("bitcoin-core", "Cannot write default address"), -QT_TRANSLATE_NOOP("bitcoin-core", "Rescanning..."), -QT_TRANSLATE_NOOP("bitcoin-core", "Importing blockchain data file."), -QT_TRANSLATE_NOOP("bitcoin-core", "Importing bootstrap blockchain data file."), -QT_TRANSLATE_NOOP("bitcoin-core", "Loading addresses..."), -QT_TRANSLATE_NOOP("bitcoin-core", "Error: could not start node"), -QT_TRANSLATE_NOOP("bitcoin-core", "Done loading"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Unable to bind to %s on this computer. BitBean is probably already running."), -QT_TRANSLATE_NOOP("bitcoin-core", "Unable to bind to %s on this computer (bind returned error %d, %s)"), -QT_TRANSLATE_NOOP("bitcoin-core", "Error: Wallet locked, unable to create transaction "), -QT_TRANSLATE_NOOP("bitcoin-core", "Error: Wallet unlocked for staking only, unable to create transaction."), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Error: This transaction requires a transaction fee of at least %s because of " -"its amount, complexity, or use of recently received funds "), -QT_TRANSLATE_NOOP("bitcoin-core", "Error: Transaction creation failed "), -QT_TRANSLATE_NOOP("bitcoin-core", "Sending..."), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Error: The transaction was rejected. This might happen if some of the coins " -"in your wallet were already spent, such as if you used a copy of wallet.dat " -"and coins were spent in the copy but not marked as spent here."), -QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount"), -QT_TRANSLATE_NOOP("bitcoin-core", "Insufficient funds"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"Warning: Please check that your computer's date and time are correct! If " -"your clock is wrong BitBean will not work properly."), -QT_TRANSLATE_NOOP("bitcoin-core", "Warning: This version is obsolete, upgrade required!"), -QT_TRANSLATE_NOOP("bitcoin-core", "WARNING: syncronized checkpoint violation detected, but skipped!"), -QT_TRANSLATE_NOOP("bitcoin-core", "Warning: Disk space is low!"), -QT_TRANSLATE_NOOP("bitcoin-core", "" -"WARNING: Invalid checkpoint found! Displayed transactions may not be " -"correct! You may need to upgrade, or notify developers."), -}; \ No newline at end of file diff --git a/src/qt/clientmodel.h b/src/qt/clientmodel.h index 70d816b..2c975a6 100644 --- a/src/qt/clientmodel.h +++ b/src/qt/clientmodel.h @@ -13,7 +13,7 @@ class QDateTime; class QTimer; QT_END_NAMESPACE -/** Model for Bitcoin network client. */ +/** Model for Bitbean network client. */ class ClientModel : public QObject { Q_OBJECT diff --git a/src/qt/coincontroltreewidget.h b/src/qt/coincontroltreewidget.h deleted file mode 100644 index d981f72..0000000 --- a/src/qt/coincontroltreewidget.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef COINCONTROLTREEWIDGET_H -#define COINCONTROLTREEWIDGET_H - -#include -#include - -class CoinControlTreeWidget : public QTreeWidget { -Q_OBJECT - -public: - explicit CoinControlTreeWidget(QWidget *parent = 0); - -protected: - virtual void keyPressEvent(QKeyEvent *event); -}; - -#endif // COINCONTROLTREEWIDGET_H \ No newline at end of file diff --git a/src/qt/forms/aboutdialog.ui b/src/qt/forms/aboutdialog.ui index 54edd96..59a9467 100644 --- a/src/qt/forms/aboutdialog.ui +++ b/src/qt/forms/aboutdialog.ui @@ -10,11 +10,190 @@ 319 + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 0 + 0 + 128 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + About BitBean - - + + + :/icons/bitbean:/icons/bitbean + + + false + + + @@ -23,77 +202,27 @@ - :/images/about + :/images/about - - + + - - - Qt::Vertical - - - - 20 - 40 - + + + + Liberation Sans + 10 + 75 + true + - - - - - - - - IBeamCursor - - - <b>BitBean</b> version - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse - - - - - - - IBeamCursor - - - 0.3.666-beta - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - IBeamCursor - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers + <b>BitBean</b> version Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -101,23 +230,18 @@ Copyright © 2014 The BitBean developers
- + + + + Liberation Sans + 10 + + IBeamCursor - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or <a href="http://www.opensource.org/licenses/mit-license.php">http://www.opensource.org/licenses/mit-license.php</a>. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (<a href="https://www.openssl.org/">https://www.openssl.org/</a>) and cryptographic software written by Eric Young (<a href="mailto:eay@cryptsoft.com">eay@cryptsoft.com</a>) and UPnP software written by Thomas Bernard. - - - Qt::RichText - - - true + 1.1.01-beta Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -125,67 +249,156 @@ This product includes software developed by the OpenSSL Project for use in the O - + - Qt::Vertical + Qt::Horizontal - 20 - 40 + 40 + 20 - - - - Qt::Horizontal - - - QDialogButtonBox::Ok - - - + + + + Qt::Vertical + + + + 468 + 1 + + + + + + + + + Liberation Sans + 10 + + + + IBeamCursor + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: @</span>brunopro79</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + Qt::RichText + + + true + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse + + + + + + + Qt::Horizontal + + + + 188 + 20 + + + + + + + + + 0 + 0 + + + + Qt::TabFocus + + + Close Window + + + Qt::LeftToRight + + + &Close + + + + :/icons/quit:/icons/quit + + + false + + + + + + + Qt::Horizontal + + + + 187 + 20 + + + + + + + + Qt::Vertical + + + + 468 + 2 + + + + + + + + + Liberation Sans + 10 + + + + IBeamCursor + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse + + + - + - - - buttonBox - accepted() - AboutDialog - accept() - - - 360 - 308 - - - 157 - 274 - - - - - buttonBox - rejected() - AboutDialog - reject() - - - 428 - 308 - - - 286 - 274 - - - - + diff --git a/src/qt/forms/addressbookpage.ui b/src/qt/forms/addressbookpage.ui index d6195cb..fd4d261 100644 --- a/src/qt/forms/addressbookpage.ui +++ b/src/qt/forms/addressbookpage.ui @@ -6,16 +6,194 @@ 0 0 - 760 + 848 380 + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 0 + 0 + 128 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + Address Book + + + Liberation Sans + 12 + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. @@ -59,6 +237,12 @@ + + + Sans Serif + 9 + + Create a new address @@ -66,13 +250,19 @@ &New Address - + :/icons/add:/icons/add + + + Sans Serif + 9 + + Copy the currently selected address to the system clipboard @@ -80,24 +270,36 @@ &Copy Address - + :/icons/editcopy:/icons/editcopy + + + Sans Serif + 9 + + Show &QR Code - + :/icons/qrcode:/icons/qrcode + + + Sans Serif + 9 + + Sign a message to prove you own a BitBean address @@ -105,13 +307,21 @@ Sign &Message - - :/icons/edit:/icons/edit + + :/icons/signmessage:/icons/signmessage + + + Sans Serif + 9 + 50 + false + + Verify a message to ensure it was signed with a specified BitBean address @@ -119,13 +329,19 @@ &Verify Message - - :/icons/transaction_0:/icons/transaction_0 + + :/icons/verifymessage:/icons/verifymessage + + + Sans Serif + 9 + + Delete the currently selected address from the list @@ -133,7 +349,7 @@ &Delete - + :/icons/remove:/icons/remove @@ -159,6 +375,12 @@ 0 + + + Sans Serif + 9 + + QDialogButtonBox::Ok @@ -169,7 +391,7 @@ - + diff --git a/src/qt/forms/askpassphrasedialog.ui b/src/qt/forms/askpassphrasedialog.ui index 02ea8ff..ccdd32c 100644 --- a/src/qt/forms/askpassphrasedialog.ui +++ b/src/qt/forms/askpassphrasedialog.ui @@ -22,9 +22,191 @@ 0 + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 0 + 0 + 128 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + Liberation Sans + 10 + + Passphrase Dialog + + + :/icons/bitbean:/icons/bitbean + @@ -43,6 +225,12 @@ + + + Liberation Sans + 10 + + Enter passphrase @@ -57,6 +245,12 @@ + + + Liberation Sans + 10 + + New passphrase @@ -71,6 +265,12 @@ + + + Liberation Sans + 10 + + Repeat new passphrase @@ -104,21 +304,27 @@ true + + false + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. For staking only - - false - - + + + + Sans Serif + 9 + + Qt::Horizontal @@ -129,7 +335,9 @@ - + + + buttonBox diff --git a/src/qt/forms/coincontroldialog.ui b/src/qt/forms/beancontroldialog.ui similarity index 56% rename from src/qt/forms/coincontroldialog.ui rename to src/qt/forms/beancontroldialog.ui index fcc3036..3a00291 100644 --- a/src/qt/forms/coincontroldialog.ui +++ b/src/qt/forms/beancontroldialog.ui @@ -1,7 +1,7 @@ - CoinControlDialog - + BeanControlDialog + 0 @@ -10,8 +10,153 @@ 500 + + + + + + + 159 + 213 + 85 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 159 + 213 + 85 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + - Coin Control + Bean Control @@ -23,7 +168,7 @@ 10 - + 10 @@ -37,7 +182,15 @@ 6 - + + + + Liberation Sans + 12 + 75 + true + + font-weight:bold; @@ -47,11 +200,11 @@ - + Monospace - 10 + 12 @@ -69,7 +222,15 @@ - + + + + Liberation Sans + 12 + 75 + true + + font-weight:bold; @@ -79,11 +240,11 @@ - + Monospace - 10 + 12 @@ -103,7 +264,7 @@ - + 10 @@ -117,7 +278,15 @@ 6 - + + + + Liberation Sans + 12 + 75 + true + + font-weight:bold; @@ -127,11 +296,11 @@ - + Monospace - 10 + 12 @@ -149,7 +318,15 @@ - + + + + Liberation Sans + 12 + 75 + true + + font-weight:bold; @@ -159,11 +336,11 @@ - + Monospace - 10 + 12 @@ -183,7 +360,7 @@ - + 10 @@ -197,7 +374,15 @@ 6 - + + + + Liberation Sans + 12 + 75 + true + + font-weight:bold; @@ -207,11 +392,11 @@ - + Monospace - 10 + 12 @@ -229,10 +414,16 @@ - + false + + + 75 + true + + font-weight:bold; @@ -242,14 +433,14 @@ - + false Monospace - 10 + 12 @@ -269,7 +460,7 @@ - + 10 @@ -283,7 +474,15 @@ 6 - + + + + Liberation Sans + 12 + 75 + true + + font-weight:bold; @@ -293,11 +492,11 @@ - + Monospace - 10 + 12 @@ -315,10 +514,16 @@ - + false + + + 75 + true + + font-weight:bold; @@ -328,14 +533,14 @@ - + false Monospace - 10 + 12 @@ -379,7 +584,7 @@ 41 - + 14 @@ -404,6 +609,12 @@ 0 + + + Liberation Sans + 12 + + Tree mode @@ -420,6 +631,12 @@ 0 + + + Liberation Sans + 12 + + List mode @@ -443,7 +660,13 @@ - + + + + Liberation Sans + 11 + + Qt::CustomContextMenu @@ -527,21 +750,172 @@ 0 + + + + + + + 159 + 213 + 85 + + + + + + + 255 + 255 + 255 + + + + + + + 159 + 213 + 85 + + + + + + + 159 + 213 + 85 + + + + + + + 159 + 213 + 85 + + + + + + + + + 159 + 213 + 85 + + + + + + + 255 + 255 + 255 + + + + + + + 159 + 213 + 85 + + + + + + + 159 + 213 + 85 + + + + + + + 159 + 213 + 85 + + + + + + + + + 159 + 213 + 85 + + + + + + + 159 + 213 + 85 + + + + + + + 159 + 213 + 85 + + + + + + + 159 + 213 + 85 + + + + + + + 159 + 213 + 85 + + + + + + + + Qt::LeftToRight + Qt::Horizontal QDialogButtonBox::Ok + + true + - CoinControlTreeWidget + BeanControlTreeWidget QTreeWidget -
coincontroltreewidget.h
+
beancontroltreewidget.h
diff --git a/src/qt/forms/conf.ui b/src/qt/forms/conf.ui new file mode 100644 index 0000000..c6c96dd --- /dev/null +++ b/src/qt/forms/conf.ui @@ -0,0 +1,464 @@ + + + Conf + + + + 0 + 0 + 480 + 403 + + + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + Liberation Mono + 10 + + + + Welcome to the BitBean Vault + + + + :/icons/bitbean:/icons/bitbean + + + + + + + true + + + + QLabel { font-style:italic; } + + + Welcome to the BitBean Vault! + + + Qt::AlignCenter + + + true + + + + + + + + 80 + 80 + + + + + + + :/icons/bitbean + + + Qt::AlignCenter + + + + + + + + Liberation Sans + 10 + + + + As this is the first time BitBean Vault is launched, you can choose where you would like to store its data. + + + true + + + + + + + + Liberation Sans + 10 + + + + BitBean Vault will download and store a copy of the Bean Stalk. A minimum of %1GB of data will be needed to store data in this directory, and it will need to expand as the Bean Stalk grows over time. The BitBean Vault will also be stored in this directory. + + + true + + + + + + + + Liberation Sans + 10 + + + + Use the default data directory + + + + + + + + Liberation Sans + 10 + + + + Use a custom data directory: + + + + + + + 0 + + + QLayout::SetDefaultConstraint + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 60 + 20 + + + + + + + + QLayout::SetDefaultConstraint + + + + + + + + + + + 0 + 0 + + + + + 30 + 16777215 + + + + + + + false + + + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 20 + 5 + + + + + + + + + 1 + 0 + + + + + + + true + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 20 + 5 + + + + + + + + + 0 + 0 + + + + Qt::RichText + + + true + + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + Qt::LeftToRight + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + true + + + + + + + + + + + buttonBox + accepted() + Conf + accept() + + + 20 + 20 + + + 20 + 20 + + + + + buttonBox + rejected() + Conf + reject() + + + 20 + 20 + + + 20 + 20 + + + + + diff --git a/src/qt/forms/editaddressdialog.ui b/src/qt/forms/editaddressdialog.ui index b4a4c1b..18971a5 100644 --- a/src/qt/forms/editaddressdialog.ui +++ b/src/qt/forms/editaddressdialog.ui @@ -10,6 +10,184 @@ 126 + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 0 + 0 + 128 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + Liberation Sans + 12 + + Edit Address @@ -55,8 +233,14 @@ - + + + + Sans Serif + 9 + + Qt::Horizontal diff --git a/src/qt/forms/optionsdialog.ui b/src/qt/forms/optionsdialog.ui index d9c0bb0..2aa51bb 100644 --- a/src/qt/forms/optionsdialog.ui +++ b/src/qt/forms/optionsdialog.ui @@ -10,6 +10,212 @@ 380 + + + + + + + 211 + 238 + 175 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 106 + 104 + 100 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 0 + 0 + 128 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + Liberation Sans + 12 + true + + Options @@ -19,6 +225,13 @@ + + + Liberation Sans + 12 + false + + QTabWidget::North @@ -33,7 +246,7 @@ - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee of 5 BITB recommended. Fees help support the BitBean network. Qt::PlainText @@ -59,7 +272,7 @@ - + @@ -79,7 +292,7 @@ - Reserved amount does not participate in staking and is therefore spendable at any time. + Reserved amount does not participate in sprouting and is therefore spendable at any time. Qt::PlainText @@ -105,7 +318,7 @@ - + @@ -123,7 +336,7 @@ - + Automatically start BitBean after logging in to the system. @@ -373,7 +586,7 @@ - Choose the default subdivision unit to show in the interface and when sending coins. + Choose the default subdivision unit to show in the interface and when sending beans. @@ -390,12 +603,12 @@ - + - Whether to show coin control features or not. + Whether to show bean control features or not. - Display coin &control features (experts only!) + Display bean &control features (experts only!) @@ -465,16 +678,75 @@ + + + + + + + 0 + 0 + 0 + + + + + + + + + 0 + 0 + 0 + + + + + + + + + 106 + 104 + 100 + + + + + + + + + Sans Serif + 9 + false + + &OK + + + :/icons/receiving_addresses:/icons/receiving_addresses + + + + Sans Serif + 9 + false + + &Cancel + + + :/icons/quit:/icons/quit + false @@ -482,9 +754,20 @@ + + + Sans Serif + 9 + false + + &Apply + + + :/icons/synced:/icons/synced + false @@ -496,9 +779,10 @@ - BitcoinAmountField + BitbeanAmountField QSpinBox -
bitcoinamountfield.h
+
bitbeanamountfield.h
+ 1
QValueComboBox @@ -511,6 +795,8 @@
qvalidatedlineedit.h
- + + +
diff --git a/src/qt/forms/overviewpage.ui b/src/qt/forms/overviewpage.ui index f375639..3b121bf 100644 --- a/src/qt/forms/overviewpage.ui +++ b/src/qt/forms/overviewpage.ui @@ -6,15 +6,247 @@ 0 0 - 573 - 342 + 643 + 410 + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 159 + 213 + 85 + + + + + + + 0 + 0 + 0 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 159 + 213 + 85 + + + + + + + 0 + 0 + 0 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 0 + 0 + 128 + + + + + + + 0 + 0 + 0 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + Liberation Sans + 10 + + Form - - + + @@ -28,21 +260,33 @@ - + - 11 + Liberation Sans + 14 75 + true true - Wallet + Bean Vault + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + Liberation Sans + 10 + true + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. @@ -50,10 +294,10 @@ QLabel { color: red; } - (out of sync) + (Not Syncronized) - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop @@ -84,16 +328,25 @@ 12 - + + + + Liberation Sans + 12 + false + + - Available: + Spendable: - + + Liberation Sans + 12 75 true @@ -105,7 +358,7 @@ Your current spendable balance - 0 BC + 0 BitB Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -113,16 +366,24 @@ - + + + + Liberation Sans + 12 + + - Stake: + Sprouting: - + + Liberation Sans + 12 75 true @@ -131,10 +392,10 @@ IBeamCursor - Total of coins that was staked, and do not yet count toward the current balance + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> - 0 BC + 0 BitB Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -142,9 +403,15 @@ - + + + + Liberation Sans + 12 + + - Pending: + Unconfirmed: @@ -152,6 +419,8 @@ + Liberation Sans + 12 75 true @@ -160,10 +429,10 @@ IBeamCursor - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> - 0 BC + 0 BitB Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -172,6 +441,12 @@ + + + Liberation Sans + 12 + + Immature: @@ -181,15 +456,17 @@ + Liberation Sans + 12 75 true - Mined balance that has not yet matured + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> - 0 BC + 0 BitB Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -205,6 +482,12 @@ + + + Liberation Sans + 12 + + Total: @@ -214,6 +497,8 @@ + Liberation Sans + 12 75 true @@ -222,10 +507,10 @@ IBeamCursor - Your current total balance + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> - 0 BTC + 0 BitB Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse @@ -238,24 +523,188 @@ - - - Qt::Vertical + + + + Liberation Sans + 14 + 75 + true + - - - 20 - 40 - + + BitBean Network - + + + + + + 12 + 50 + false + + + + Bean Stalk Height: + + + + + + + + 12 + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + 0 + + + + + + + + 12 + 50 + false + + + + Sprouting Difficulty: + + + + + + + + 12 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + 0 + + + + + + + + 12 + 50 + false + + + + Bean Weight: + + + + + + + + 12 + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + 0 + + + + + + + + 12 + 50 + false + + + + Connections: + + + + + + + + 12 + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + 0 + + + + + + + + 12 + 50 + false + + + + Total Beans: + + + + + + + + 12 + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + 0 + + + + + - + + + true + + + + 0 + 0 + + + + + 16777200 + 16777215 + + QFrame::StyledPanel @@ -267,13 +716,31 @@ + + + Liberation Sans + 14 + 75 + true + + - <b>Recent transactions</b> + <html><head/><body><p>New Transactions</p></body></html> + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + Liberation Sans + 10 + true + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. @@ -281,10 +748,10 @@ QLabel { color: red; } - (out of sync) + (Not Syncronized) - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing @@ -305,6 +772,12 @@ + + + Liberation Sans + 10 + + QListView { background: transparent; } @@ -315,29 +788,19 @@ Qt::ScrollBarAlwaysOff - Qt::ScrollBarAlwaysOff + Qt::ScrollBarAsNeeded QAbstractItemView::NoSelection + + QListView::Adjust + - - - - Qt::Vertical - - - - 20 - 40 - - - - diff --git a/src/qt/forms/qrcodedialog.ui b/src/qt/forms/qrcodedialog.ui index 52e9db3..b5e38c6 100644 --- a/src/qt/forms/qrcodedialog.ui +++ b/src/qt/forms/qrcodedialog.ui @@ -7,9 +7,187 @@ 0 0 340 - 530 + 563 + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 0 + 0 + 128 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + Liberation Sans + 12 + + QR Code Dialog @@ -53,6 +231,11 @@ 50 + + + Monospace + + true @@ -69,6 +252,11 @@ true + + + false + + Request Payment @@ -140,7 +328,7 @@ - + false @@ -150,6 +338,11 @@ 0 + + + Monospace + + @@ -171,9 +364,19 @@ + + + Sans Serif + 9 + + &Save As... + + + :/icons/filesave:/icons/filesave + @@ -185,12 +388,15 @@ - BitcoinAmountField + BitbeanAmountField QSpinBox -
bitcoinamountfield.h
+
bitbeanamountfield.h
+ 1
- + + + chkReqPayment diff --git a/src/qt/forms/rpcconsole.ui b/src/qt/forms/rpcconsole.ui index 1434f7d..64b5407 100644 --- a/src/qt/forms/rpcconsole.ui +++ b/src/qt/forms/rpcconsole.ui @@ -6,451 +6,755 @@ 0 0 - 740 - 450 + 745 + 614 + + + 0 + 0 + + + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 0 + 0 + 128 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + Liberation Sans + 12 + + BitBean - Debug window - - - - - 0 + + + true + + + + 9 + 9 + 731 + 545 + + + + Qt::DefaultContextMenu + + + 0 + + + + &Information + + + + 12 - - - &Information - - - - 12 - - - - - - 75 - true - - - - BitBean Core - - - - - - - Client name - - - - - - - IBeamCursor - - - N/A - - - Qt::PlainText - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse - - - - - - - Client version - - - - - - - IBeamCursor - - - N/A - - - Qt::PlainText - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse - - - - - - - Using OpenSSL version - - - 10 - - - - - - - IBeamCursor - - - N/A - - - Qt::PlainText - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse - - - - - - - Build date - - - - - - - IBeamCursor - - - N/A - - - Qt::PlainText - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse - - - - - - - Startup time - - - - - - - IBeamCursor - - - N/A - - - Qt::PlainText - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse - - - - - - - - 75 - true - - - - Network - - - - - - - Number of connections - - - - - - - IBeamCursor - - - N/A - - - Qt::PlainText - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse - - - - - - - On testnet - - - - - - - false - - - - - - - - - - - 75 - true - - - - Block chain - - - - - - - Current number of blocks - - - - - - - IBeamCursor - - - N/A - - - Qt::PlainText - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse - - - - - - - Estimated total blocks - - - - - - - IBeamCursor - - - N/A - - - Qt::PlainText - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse - - - - - + + + + + 75 + true + + + + BitBean Core + + + + + + + + 0 + 0 + + + + Client name + + + + + + + IBeamCursor + + + N/A + + + Qt::PlainText + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse + + + + + + + Client version + + + + + + + IBeamCursor + + + N/A + + + Qt::PlainText + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse + + + + + + + Using OpenSSL version + + + 10 + + + + + + + IBeamCursor + + + N/A + + + Qt::PlainText + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse + + + + + + + Build date + + + + + + + IBeamCursor + + + N/A + + + Qt::PlainText + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse + + + + + + + Startup time + + + + + + + IBeamCursor + + + N/A + + + Qt::PlainText + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse + + + + + + + + 75 + true + + + + Network + + + + + + + Number of connections + + + + + + + IBeamCursor + + + N/A + + + Qt::PlainText + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse + + + + + + + On testnet + + + + + + + false + + + + + + + + + + + 75 + true + + + + Block chain + + + + + + + Current number of blocks + + + + + + + IBeamCursor + + + N/A + + + Qt::PlainText + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse + + + + + + + Estimated total blocks + + + + + + + IBeamCursor + + + N/A + + + Qt::PlainText + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse + + + + + + + Last block time + + + + + + + IBeamCursor + + + N/A + + + Qt::PlainText + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse + + + + + + + Qt::Vertical + + + + 20 + 20 + + + + + + + + + 75 + true + + + + Debug log file + + + + + + + + 0 + 0 + + + + + Sans Serif + 9 + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + + + &Open + + + + :/icons/overview:/icons/overview + + + false + + + + + + + + 0 + 0 + + + + + Sans Serif + 9 + + + + Open BitBean Configuration file from the current data directory + + + &Edit Config File + + + + :/icons/signmessage:/icons/signmessage + + + false + + + + + + + + 75 + true + + + + Command-line options + + + + + + + + 0 + 0 + + + + + Sans Serif + 9 + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + + + &Show + + + + :/icons/debugwindow:/icons/debugwindow + + + false + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + &Console + + + + 3 + + + + + + 0 + 100 + + + + true + + + false + + + 2 + + + + + + + 3 + + + - Last block time + > - - - - IBeamCursor - - - N/A - - - Qt::PlainText - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse - - + + - - - - Qt::Vertical - - + + + - 20 - 20 + 24 + 24 - - - - - - - 75 - true - - - - Debug log file - - - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - - - &Open - - - false - - - - - - - - 75 - true - + Clear console - Command-line options + - - - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + + + :/icons/remove:/icons/remove - - &Show + + Ctrl+L false - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - &Console - - - - 3 - - - - - - 0 - 100 - - - - true - - - false - - - 2 - - - - - - - 3 - - - - - > - - - - - - - - - - - 24 - 24 - - - - Clear console - - - - - - - :/icons/remove:/icons/remove - - - Ctrl+L - - - false - - - - - - - - - + + + + + + + true + + + + 330 + 570 + 80 + 33 + + + + + 0 + 0 + + + + + Sans Serif + 9 + + + + Qt::TabFocus + + + Close window + + + &Close + + + + :/icons/quit:/icons/quit + + + false + + + closeButton + tabWidget - + diff --git a/src/qt/forms/sendcoinsdialog.ui b/src/qt/forms/sendbeansdialog.ui similarity index 63% rename from src/qt/forms/sendcoinsdialog.ui rename to src/qt/forms/sendbeansdialog.ui index af88648..e31c06e 100644 --- a/src/qt/forms/sendcoinsdialog.ui +++ b/src/qt/forms/sendbeansdialog.ui @@ -1,7 +1,7 @@ - SendCoinsDialog - + SendBeansDialog + 0 @@ -10,15 +10,139 @@ 400 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + Liberation Sans + 10 + + - Send Coins + Send Beans 8 - + 0 @@ -37,9 +161,9 @@ QFrame::Sunken - + - -1 + 6 0 @@ -54,7 +178,7 @@ 6 - + 0 @@ -65,12 +189,12 @@ 10 - + 15 - + 0 @@ -79,6 +203,8 @@ + Liberation Sans + 10 75 true @@ -87,14 +213,14 @@ font-weight:bold; - Coin Control Features + Bean Control Features - + 8 @@ -102,17 +228,69 @@ 10 - + + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + + + Sans Serif + 9 + + Inputs... + + + :/icons/receiving_addresses:/icons/receiving_addresses + - + + + + 12 + + automatically selected @@ -122,7 +300,7 @@ - + 75 @@ -141,7 +319,7 @@ - + Qt::Horizontal @@ -156,7 +334,7 @@ - + 0 @@ -172,12 +350,12 @@ - + 0 - + 20 @@ -188,7 +366,7 @@ 10 - + 10 @@ -205,7 +383,15 @@ 6 - + + + + Liberation Sans + 10 + 75 + true + + font-weight:bold; @@ -218,7 +404,7 @@ - + Monospace @@ -243,7 +429,15 @@ - + + + + Liberation Sans + 10 + 75 + true + + font-weight:bold; @@ -253,7 +447,7 @@ - + Monospace @@ -277,7 +471,7 @@ - + 10 @@ -294,7 +488,15 @@ 6 - + + + + Liberation Sans + 10 + 75 + true + + font-weight:bold; @@ -307,7 +509,7 @@ - + Monospace @@ -329,7 +531,15 @@ - + + + + Liberation Sans + 10 + 75 + true + + font-weight:bold; @@ -339,7 +549,7 @@ - + Monospace @@ -363,7 +573,7 @@ - + 10 @@ -380,7 +590,15 @@ 6 - + + + + Liberation Sans + 10 + 75 + true + + font-weight:bold; @@ -393,7 +611,7 @@ - + Monospace @@ -415,7 +633,15 @@ - + + + + Liberation Sans + 10 + 75 + true + + font-weight:bold; @@ -425,7 +651,7 @@ - + Monospace @@ -449,7 +675,7 @@ - + 10 @@ -466,7 +692,15 @@ 6 - + + + + Liberation Sans + 10 + 75 + true + + font-weight:bold; @@ -479,7 +713,7 @@ - + Monospace @@ -501,7 +735,15 @@ - + + + + Liberation Sans + 10 + 75 + true + + font-weight:bold; @@ -511,7 +753,7 @@ - + Monospace @@ -540,7 +782,7 @@ - + 12 @@ -554,14 +796,19 @@ 5 - + + + + 12 + + custom change address - + false @@ -574,7 +821,7 @@ - + 0 @@ -598,7 +845,7 @@ - + Qt::Vertical @@ -625,8 +872,8 @@ 0 0 - 830 - 165 + 828 + 144 @@ -661,6 +908,49 @@ + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + + + Sans Serif + 9 + + Send to multiple recipients at once @@ -668,7 +958,7 @@ Add &Recipient - + :/icons/add:/icons/add @@ -684,6 +974,49 @@ 0 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + + + Sans Serif + 9 + + Remove all transaction fields @@ -691,7 +1024,7 @@ Clear &All - + :/icons/remove:/icons/remove @@ -715,6 +1048,13 @@ 0 + + + 12 + 75 + true + + Balance: @@ -728,6 +1068,12 @@ 0 + + + Monospace + 12 + + IBeamCursor @@ -762,6 +1108,49 @@ 0 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + + + Sans Serif + 9 + + Confirm the send action @@ -769,7 +1158,7 @@ S&end - + :/icons/send:/icons/send @@ -782,7 +1171,7 @@ - + diff --git a/src/qt/forms/sendbeansentry.ui b/src/qt/forms/sendbeansentry.ui new file mode 100644 index 0000000..2e49229 --- /dev/null +++ b/src/qt/forms/sendbeansentry.ui @@ -0,0 +1,520 @@ + + + SendBeansEntry + + + + 0 + 0 + 729 + 136 + + + + + + + + + 0 + 0 + 0 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 0 + 0 + 0 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 0 + 0 + 0 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 0 + 0 + 0 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 159 + 213 + 85 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 0 + 0 + 128 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + Liberation Sans + 10 + + + + Form + + + + :/icons/bitbean:/icons/bitbean + + + QFrame::StyledPanel + + + QFrame::Sunken + + + + 12 + + + + + + 12 + + + + A&mount: + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + payAmount + + + + + + + + 12 + + + + Pay &To: + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + payTo + + + + + + + + Monospace + 12 + + + + + + + + 0 + + + + + true + + + + Monospace + 12 + + + + Enter a label for this address to add it to your address book + + + + + + + + + + 12 + + + + &Label: + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + addAsLabel + + + + + + + 0 + + + + + + Monospace + 12 + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + 34 + + + + + + + Choose address from address book + + + + + + + :/icons/address-book:/icons/address-book + + + Alt+A + + + + + + + Paste address from clipboard + + + + + + + :/icons/editpaste:/icons/editpaste + + + Alt+P + + + + + + + Remove this recipient + + + + + + + :/icons/remove:/icons/remove + + + + + + + + + + BitbeanAmountField + QSpinBox +
bitbeanamountfield.h
+ 1 +
+ + QValidatedLineEdit + QLineEdit +
qvalidatedlineedit.h
+
+
+ + + + +
diff --git a/src/qt/forms/sendcoinsentry.ui b/src/qt/forms/sendcoinsentry.ui deleted file mode 100644 index 67915b0..0000000 --- a/src/qt/forms/sendcoinsentry.ui +++ /dev/null @@ -1,169 +0,0 @@ - - - SendCoinsEntry - - - - 0 - 0 - 729 - 136 - - - - Form - - - QFrame::StyledPanel - - - QFrame::Sunken - - - - 12 - - - - - A&mount: - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - payAmount - - - - - - - Pay &To: - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - payTo - - - - - - - - - - 0 - - - - - true - - - Enter a label for this address to add it to your address book - - - - - - - - - &Label: - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - addAsLabel - - - - - - - 0 - - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - 34 - - - - - - - Choose address from address book - - - - - - - :/icons/address-book:/icons/address-book - - - Alt+A - - - - - - - Paste address from clipboard - - - - - - - :/icons/editpaste:/icons/editpaste - - - Alt+P - - - - - - - Remove this recipient - - - - - - - :/icons/remove:/icons/remove - - - - - - - - - - QValidatedLineEdit - QLineEdit -
qvalidatedlineedit.h
-
- - BitcoinAmountField - QLineEdit -
bitcoinamountfield.h
- 1 -
-
- - - - -
diff --git a/src/qt/forms/signverifymessagedialog.ui b/src/qt/forms/signverifymessagedialog.ui index cd629e4..58b6b21 100644 --- a/src/qt/forms/signverifymessagedialog.ui +++ b/src/qt/forms/signverifymessagedialog.ui @@ -10,6 +10,184 @@ 380 + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 0 + 0 + 128 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + Liberation Sans + 12 + + Signatures - Sign / Verify a Message @@ -29,6 +207,11 @@ + + + 10 + + 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. @@ -64,7 +247,7 @@ - + :/icons/address-book:/icons/address-book @@ -84,7 +267,7 @@ - + :/icons/editpaste:/icons/editpaste @@ -130,7 +313,7 @@ - + :/icons/editcopy:/icons/editcopy @@ -144,6 +327,12 @@ + + + Sans Serif + 9 + + Sign the message to prove you own this BitBean address @@ -151,8 +340,8 @@ &Sign Message - - :/icons/edit:/icons/edit + + :/icons/signmessage:/icons/signmessage false @@ -161,6 +350,12 @@ + + + Sans Serif + 9 + + Reset all sign message fields @@ -168,7 +363,7 @@ Clear &All - + :/icons/remove:/icons/remove @@ -176,6 +371,26 @@ + + + + + Sans Serif + 9 + + + + Close Window + + + &Cancel + + + + :/icons/quit:/icons/quit + + + @@ -229,6 +444,14 @@ + + + 10 + 50 + false + false + + 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. @@ -267,7 +490,7 @@ - + :/icons/address-book:/icons/address-book @@ -290,6 +513,12 @@ + + + Sans Serif + 9 + + Verify the message to ensure it was signed with the specified BitBean address @@ -297,8 +526,8 @@ &Verify Message - - :/icons/transaction_0:/icons/transaction_0 + + :/icons/verifymessage:/icons/verifymessage false @@ -307,6 +536,12 @@ + + + Sans Serif + 9 + + Reset all verify message fields @@ -314,7 +549,7 @@ Clear &All - + :/icons/remove:/icons/remove @@ -322,6 +557,26 @@ + + + + + Sans Serif + 9 + + + + Close window + + + &Cancel + + + + :/icons/quit:/icons/quit + + + @@ -380,7 +635,7 @@ - + diff --git a/src/qt/forms/transactiondescdialog.ui b/src/qt/forms/transactiondescdialog.ui index b38dffc..a91a121 100644 --- a/src/qt/forms/transactiondescdialog.ui +++ b/src/qt/forms/transactiondescdialog.ui @@ -10,65 +10,248 @@ 250 + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 255 + 255 + 255 + + + + + + + 211 + 238 + 175 + + + + + + + 159 + 213 + 85 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + 0 + 0 + 128 + + + + + + + 211 + 238 + 175 + + + + + + + 211 + 238 + 175 + + + + + + + + + Liberation Sans + 12 + + Transaction details - - - - - This pane shows a detailed description of the transaction + + + + + Qt::Horizontal - - true + + + 252 + 20 + + + + + + + + + 0 + 0 + + + + Qt::TabFocus + + + &Close + + + + :/icons/quit:/icons/quit - - + + Qt::Horizontal - - QDialogButtonBox::Close + + + 252 + 20 + + + + + + + + This pane shows a detailed description of the transaction + + + true - - - - buttonBox - accepted() - TransactionDescDialog - accept() - - - 248 - 254 - - - 157 - 274 - - - - - buttonBox - rejected() - TransactionDescDialog - reject() - - - 316 - 260 - - - 286 - 274 - - - - + + + + diff --git a/src/qt/guiconstants.h b/src/qt/guiconstants.h index 405ba39..aef2011 100644 --- a/src/qt/guiconstants.h +++ b/src/qt/guiconstants.h @@ -7,7 +7,7 @@ static const int MODEL_UPDATE_DELAY = 500; /* AskPassphraseDialog -- Maximum passphrase length */ static const int MAX_PASSPHRASE_SIZE = 1024; -/* BitcoinGUI -- Size of icons in status bar */ +/* BitbeanGUI -- Size of icons in status bar */ static const int STATUSBAR_ICONSIZE = 16; /* Invalid field background style */ diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index a1ab5d6..e7bad0a 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -1,7 +1,7 @@ #include "guiutil.h" -#include "bitcoinaddressvalidator.h" +#include "bitbeanaddressvalidator.h" #include "walletmodel.h" -#include "bitcoinunits.h" +#include "bitbeanunits.h" #include "util.h" #include "init.h" @@ -52,7 +52,7 @@ QString dateTimeStr(qint64 nTime) return dateTimeStr(QDateTime::fromTime_t((qint32)nTime)); } -QFont bitcoinAddressFont() +QFont bitbeanAddressFont() { QFont font("Monospace"); #if QT_VERSION >= 0x040800 @@ -65,9 +65,9 @@ QFont bitcoinAddressFont() void setupAddressWidget(QLineEdit *widget, QWidget *parent) { - widget->setMaxLength(BitcoinAddressValidator::MaxAddressLength); - widget->setValidator(new BitcoinAddressValidator(parent)); - widget->setFont(bitcoinAddressFont()); + widget->setMaxLength(BitbeanAddressValidator::MaxAddressLength); + widget->setValidator(new BitbeanAddressValidator(parent)); + widget->setFont(bitbeanAddressFont()); } void setupAmountWidget(QLineEdit *widget, QWidget *parent) @@ -79,13 +79,13 @@ void setupAmountWidget(QLineEdit *widget, QWidget *parent) widget->setAlignment(Qt::AlignRight|Qt::AlignVCenter); } -bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out) +bool parseBitbeanURI(const QUrl &uri, SendBeansRecipient *out) { - // NovaCoin: check prefix + // Bitbean: check prefix if(uri.scheme() != QString("BitBean")) return false; - SendCoinsRecipient rv; + SendBeansRecipient rv; rv.address = uri.path(); rv.amount = 0; QList > items = uri.queryItems(); @@ -107,7 +107,7 @@ bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out) { if(!i->second.isEmpty()) { - if(!BitcoinUnits::parse(BitcoinUnits::BTC, i->second, &rv.amount)) + if(!BitbeanUnits::parse(BitbeanUnits::BitB, i->second, &rv.amount)) { return false; } @@ -125,18 +125,18 @@ bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out) return true; } -bool parseBitcoinURI(QString uri, SendCoinsRecipient *out) +bool parseBitbeanURI(QString uri, SendBeansRecipient *out) { // Convert BitBean:// to BitBean: // - // Cannot handle this later, because bitcoin:// will cause Qt to see the part after // as host, + // Cannot handle this later, because bitbean:// will cause Qt to see the part after // as host, // which will lower-case it (and thus invalidate the address). if(uri.startsWith("BitBean://")) { uri.replace(0, 12, "BitBean:"); } QUrl uriInstance(uri); - return parseBitcoinURI(uriInstance, out); + return parseBitbeanURI(uriInstance, out); } QString HtmlEscape(const QString& str, bool fMultiLine) @@ -250,6 +250,15 @@ void openDebugLogfile() QDesktopServices::openUrl(QUrl::fromLocalFile(QString::fromStdString(pathDebug.string()))); } +void openConfigfile() +{ + boost::filesystem::path pathConf = GetDataDir() / "bitbean.conf"; + + /* Open bitbean.conf with the associated application */ + if (boost::filesystem::exists(pathConf)) + QDesktopServices::openUrl(QUrl::fromLocalFile(QString::fromStdString(pathConf.string()))); +} + ToolTipToRichTextFilter::ToolTipToRichTextFilter(int size_threshold, QObject *parent) : QObject(parent), size_threshold(size_threshold) { @@ -282,7 +291,7 @@ boost::filesystem::path static StartupShortcutPath() bool GetStartOnSystemStartup() { - // check for Bitcoin.lnk + // check for Bitbean.lnk return boost::filesystem::exists(StartupShortcutPath()); } @@ -293,7 +302,7 @@ bool SetStartOnSystemStartup(bool fAutoStart) if (fAutoStart) { - CoInitialize(NULL); + beanitialize(NULL); // Get a pointer to the IShellLink interface. IShellLink* psl = NULL; @@ -397,7 +406,7 @@ bool SetStartOnSystemStartup(bool fAutoStart) boost::filesystem::ofstream optionFile(GetAutostartFilePath(), std::ios_base::out|std::ios_base::trunc); if (!optionFile.good()) return false; - // Write a bitcoin.desktop file to the autostart directory: + // Write a bitbean.desktop file to the autostart directory: optionFile << "[Desktop Entry]\n"; optionFile << "Type=Application\n"; optionFile << "Name=BitBean\n"; diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index b303b49..aa55526 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -13,9 +13,9 @@ class QDateTime; class QUrl; class QAbstractItemView; QT_END_NAMESPACE -class SendCoinsRecipient; +class SendBeansRecipient; -/** Utility functions used by the Bitcoin Qt UI. +/** Utility functions used by the Bitbean Qt UI. */ namespace GUIUtil { @@ -23,17 +23,17 @@ namespace GUIUtil QString dateTimeStr(const QDateTime &datetime); QString dateTimeStr(qint64 nTime); - // Render Bitcoin addresses in monospace font - QFont bitcoinAddressFont(); + // Render Bitbean addresses in monospace font + QFont bitbeanAddressFont(); // Set up widgets for address and amounts void setupAddressWidget(QLineEdit *widget, QWidget *parent); void setupAmountWidget(QLineEdit *widget, QWidget *parent); // Parse "BitBean:" URI into recipient object, return true on successful parsing - // See Bitcoin URI definition discussion here: https://bitcointalk.org/index.php?topic=33490.0 - bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out); - bool parseBitcoinURI(QString uri, SendCoinsRecipient *out); + // See Bitbean URI definition discussion here: https://bitbeantalk.org/index.php?topic=33490.0 + bool parseBitbeanURI(const QUrl &uri, SendBeansRecipient *out); + bool parseBitbeanURI(QString uri, SendBeansRecipient *out); // HTML escaping for rich text controls QString HtmlEscape(const QString& str, bool fMultiLine=false); @@ -74,6 +74,9 @@ namespace GUIUtil // Open debug.log void openDebugLogfile(); + // Open BitBean.conf + void openConfigfile(); + /** Qt event filter that intercepts ToolTipChange events, and replaces the tooltip with a rich text representation if needed. This assures that Qt can word-wrap long tooltip messages. Tooltips longer than the provided size threshold (in characters) are wrapped. @@ -95,7 +98,7 @@ namespace GUIUtil bool GetStartOnSystemStartup(); bool SetStartOnSystemStartup(bool fAutoStart); - /** Help message for Bitcoin-Qt, shown with --help. */ + /** Help message for Bitbean-Qt, shown with --help. */ class HelpMessageBox : public QMessageBox { Q_OBJECT diff --git a/src/qt/locale/bitcoin_af_ZA.qm b/src/qt/locale/bitbean_af_ZA.qm similarity index 53% rename from src/qt/locale/bitcoin_af_ZA.qm rename to src/qt/locale/bitbean_af_ZA.qm index 2fa0f31..ba4ce0c 100644 Binary files a/src/qt/locale/bitcoin_af_ZA.qm and b/src/qt/locale/bitbean_af_ZA.qm differ diff --git a/src/qt/locale/bitcoin_af_ZA.ts b/src/qt/locale/bitbean_af_ZA.ts similarity index 61% rename from src/qt/locale/bitcoin_af_ZA.ts rename to src/qt/locale/bitbean_af_ZA.ts index 374b645..996ca4a 100644 --- a/src/qt/locale/bitcoin_af_ZA.ts +++ b/src/qt/locale/bitbean_af_ZA.ts @@ -1,135 +1,138 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + Double-click to edit address or label Dubbel-klik om die adres of etiket te wysig - + Create a new address Skep 'n nuwe adres - + Copy the currently selected address to the system clipboard Maak 'n kopie van die huidige adres na die stelsel klipbord - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete &Verwyder Copy &Label - + &Edit - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. - + @@ -153,34 +156,34 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -229,24 +232,29 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + @@ -255,12 +263,7 @@ This product includes software developed by the OpenSSL Project for use in the O Die beursie is nou bewaak - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -298,337 +301,589 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet passphrase was successfully changed. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - Sinchroniseer met die netwerk ... + + Bean Control + - - &Overview - &Oorsig + + Quantity: + - - Show general overview of wallet - Wys algemene oorsig van die beursie + + Bytes: + - - &Transactions - &Transaksies + + Amount: + Bedrag: - - Browse transaction history - Besoek transaksie geskiedenis + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - S&luit af + + Tree mode + - - Quit application - Sluit af + + List mode + - - Show information about BitBean - + + Amount + Bedrag - - About &Qt - + + Label + Etiket - - Show information about Qt - Wys inligting oor Qt + + Address + Adres - - &Options... - &Opsies + + Date + Datum - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - + Confirmed + - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Maak kopie van adres - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + Kopieer bedrag - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - Beursie + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Lêer + + DUST + - - &Settings - &Instellings + + yes + - - &Help - &Hulp + + no + - - Tabs toolbar - Blad nutsbalk + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (geen etiket) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + &Oorsig - - - %n second(s) ago - + + + Show general overview of wallet + Wys algemene oorsig van die beursie - - &Unlock Wallet... - + + &Send Beans + - - - %n minute(s) ago - + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transaksies + + + + Browse transaction history + Besoek transaksie geskiedenis + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + S&luit af + + + + Quit application + Sluit af + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + + + + + Show information about Qt + Wys inligting oor Qt + + + + &Options... + &Opsies + + + + Modify configuration options for BitBean + + + + + &Show / Hide + + + + + &Encrypt Wallet... + + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + + + + + Backup wallet to another location + + + + + &Change Passphrase... + + + + + Change the passphrase used for wallet encryption + + + + + &Unlock Wallet... + + + + + Unlock wallet + Sluit beursie oop + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + + + + + &Verify message... + + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + + + + + Open debugging and diagnostic console + + + + + &File + &Lêer + + + + &Settings + &Instellings + + + + &Help + &Hulp + + + + Tabs toolbar + Blad nutsbalk + + + + Actions toolbar + + + + + + [testnet] + + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + Sinchroniseer met die netwerk ... + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + %n minute(s) ago + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - + Catching up... - + Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - + Incoming transaction - + @@ -637,369 +892,237 @@ Amount: %2 Type: %3 Address: %4 - + URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + Wallet is <b>encrypted</b> and currently <b>locked</b> - + Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - + + + + %n day(s) - - - - - Not staking - - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + + + - - - ClientModel - - Network Alert - - - - - CoinControlDialog - - - Coin Control - - - - - Quantity: - - - - - Bytes: - - - - - Amount: - Bedrag: - - - - Priority: - - - - - Fee: - - - - - Low Output: - - - - - no - - - - - After Fee: - - - - - Change: - - - - - (un)select all - - - - - Tree mode - - - - - List mode - - - - - Amount - Bedrag - - - - Label - - - - - Address - Adres - - - - Date - Datum - - - - Confirmations - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - Confirmed - + + Not staking because wallet is locked + - - Priority - + + Not staking because wallet is offline + - - Copy address - Maak kopie van adres + + Not staking because wallet is syncing + - - Copy label - + + Not staking because you don't have mature beans + - - - Copy amount - Kopieer bedrag + + Not staking + + + + BitcoinGUI - - Copy transaction ID - + Synchronizing with network... + Sinchroniseer met die netwerk ... - - Copy quantity - + &Overview + &Oorsig - - Copy fee - + Show general overview of wallet + Wys algemene oorsig van die beursie - - Copy after fee - + &Transactions + &Transaksies - - Copy bytes - + Browse transaction history + Besoek transaksie geskiedenis - - Copy priority - + E&xit + S&luit af - - Copy low output - + Quit application + Sluit af - - Copy change - + Show information about Qt + Wys inligting oor Qt - - highest - + &Options... + &Opsies - - high - + Wallet + Beursie - - medium-high - + &File + &Lêer - - medium - + &Settings + &Instellings - - low-medium - + &Help + &Hulp - - low - + Tabs toolbar + Blad nutsbalk + + + ClientModel - - lowest - + + Network Alert + + + + CoinControlDialog - - DUST - + Amount: + Bedrag: - - yes - + Amount + Bedrag - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Address + Adres - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Date + Datum - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Copy address + Maak kopie van adres - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy amount + Kopieer bedrag - - (no label) - (geen etiket) - - - - change from %1 (%2) - - - - - (change) - + (geen etiket) EditAddressDialog - + Edit Address - + &Label - + The label associated with this address book entry - + &Address - + The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1024,12 +1147,12 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is already in the address book. - + The entered address "%1" is not a valid BitBean address. - + @@ -1039,412 +1162,484 @@ This label turns red, if the priority is smaller than "medium". New key generation failed. - + GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Gebruik: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Opsies - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - + &Cancel - + &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + The supplied proxy address is invalid. - + OverviewPage - + Form Vorm - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - Beursie + Beursie - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: - + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + - Mined balance that has not yet matured - + Bean Stalk Height: + - - Total: - + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + - - Your current total balance - + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + - - <b>Recent transactions</b> - <b>Onlangse transaksies</b> + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + Total: + - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Recent transactions</b> + <b>Onlangse transaksies</b> - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Bedrag: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1458,188 +1653,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Stuur Munstukke + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - Bedrag: + Bedrag: @@ -1647,274 +1842,305 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Stuur aan vele ontvangers op eens + Stuur aan vele ontvangers op eens Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - Balans: + Balans: 123.456 BC - + Confirm the send action - + S&end - S&tuur + S&tuur - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - Kopieer bedrag + Kopieer bedrag Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (geen etiket) + (geen etiket) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Vorm - + A&mount: - + Pay &To: - + - + Enter a label for this address to add it to your address book - + &Label: - + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + Stuur Munstukke + + + Amount: + Bedrag: + + + Send to multiple recipients at once + Stuur aan vele ontvangers op eens + + + Balance: + Balans: + + + S&end + S&tuur + + + Copy amount + Kopieer bedrag + + + (no label) + (geen etiket) SignVerifyMessageDialog - + Signatures - Sign / Verify a Message - + @@ -1925,108 +2151,108 @@ This label turns red, if the priority is smaller than "medium". 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2034,59 +2260,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2094,42 +2320,48 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - + Open for %n block(s) - + + + + conflicted - + %1/offline - + %1/unconfirmed - + %1 confirmations - + Status - + , broadcast through %n node(s) - + + + + @@ -2139,12 +2371,12 @@ This label turns red, if the priority is smaller than "medium". Source - + Generated - + @@ -2182,7 +2414,10 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - + + + + @@ -2215,7 +2450,7 @@ This label turns red, if the priority is smaller than "medium". Comment - + @@ -2224,23 +2459,23 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + @@ -2260,7 +2495,7 @@ This label turns red, if the priority is smaller than "medium". , has not been successfully broadcast yet - + @@ -2271,14 +2506,14 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details - + This pane shows a detailed description of the transaction - + @@ -2306,52 +2541,55 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - + Confirmed (%1 confirmations) - + Open for %n more block(s) - + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + This block was not received by any other nodes and will probably not be accepted! - + Generated but not accepted - + @@ -2375,8 +2613,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - Gemyn + Gemyn @@ -2386,7 +2628,7 @@ This label turns red, if the priority is smaller than "medium". Transaction status. Hover over this field to show number of confirmations. - + @@ -2401,12 +2643,12 @@ This label turns red, if the priority is smaller than "medium". Destination address of transaction. - + Amount removed from or added to balance. - + @@ -2475,7 +2717,7 @@ This label turns red, if the priority is smaller than "medium". Enter address or label to search - + @@ -2490,7 +2732,7 @@ This label turns red, if the priority is smaller than "medium". Copy label - + @@ -2500,32 +2742,32 @@ This label turns red, if the priority is smaller than "medium". Copy transaction ID - + Edit label - + Show transaction details - + Export Transaction Data - + Comma separated file (*.csv) - + Confirmed - + @@ -2560,12 +2802,12 @@ This label turns red, if the priority is smaller than "medium". Error exporting - + Could not write to file %1. - + @@ -2583,693 +2825,744 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core + + + To use the %s option + + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Fout + - + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + + + + BitBean version - + Usage: - Gebruik: + Gebruik: Send command to -server or BitBeand - + List commands - + Get help for a command - + - + + BitBean + + + + Options: - Opsies: + Opsies: - + + This help message + Hierdie help boodskap + + + Specify configuration file (default: BitBean.conf) - + Specify pid file (default: BitBeand.pid) - + - - Specify wallet file (within data directory) - + + Specify data directory + - - Specify data directory - + + Specify wallet file (within data directory) + - + Set database cache size in megabytes (default: 25) - + Set database disk log size in megabytes (default: 100) - + - + + Specify connection timeout in milliseconds (default: 5000) + + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) - + Maintain at most <n> connections to peers (default: 125) - Onderhou op die meeste <n> konneksies na eweknieë (standaard: 125) + Onderhou op die meeste <n> konneksies na eweknieë (standaard: 125) - + + Add a node to connect to and attempt to keep the connection open + + + + + Connect only to the specified node(s) + + + + Connect to a node to retrieve peer addresses, and disconnect - + Specify your own public address - + - - Bind to given address. Use [host]:port notation for IPv6 - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Stake your coins to support network and gain reward (default: 1) - + + Discover own IP address (default: 1 when listening and no -externalip) + - - Threshold for disconnecting misbehaving peers (default: 100) - + + Find peers using internet relay chat (default: 0) + - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Accept connections from outside (default: 1 if no -proxy or -connect) + - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - + + Bind to given address. Use [host]:port notation for IPv6 + - - Detach block and address databases. Increases shutdown time (default: 0) - + + Find peers using DNS lookup (default: 1) + - - 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. - + + Stake your beans to support network and gain reward (default: 1) + - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Sync checkpoints policy (default: strict) + - - Accept command line and JSON-RPC commands - + + Threshold for disconnecting misbehaving peers (default: 100) + - - Error: Transaction creation failed - + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Error: Wallet locked, unable to create transaction - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Importing blockchain data file. - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - Importing bootstrap blockchain data file. - + Use UPnP to map the listening port (default: 1 when listening) + - - Run in the background as a daemon and accept commands - + + Use UPnP to map the listening port (default: 0) + - Use the test network - Gebruik die toets netwerk + Detach block and address databases. Increases shutdown time (default: 0) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Fee per KB to add to transactions you send + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Accept command line and JSON-RPC commands + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Run in the background as a daemon and accept commands + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Use the test network + Gebruik die toets netwerk - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Output extra debugging information. Implies all other -debug* options + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Output extra network debugging information + - - 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. - + + Prepend debug output with timestamp + - - Attempt to recover private keys from a corrupt wallet.dat - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Block creation options: - + + Send trace/debug info to console instead of debug.log file + - - Connect only to the specified node(s) - + + Send trace/debug info to debugger + - - Discover own IP address (default: 1 when listening and no -externalip) - + + Username for JSON-RPC connections + - - Failed to listen on any port. Use -listen=0 if you want this. - + + Password for JSON-RPC connections + - - Find peers using DNS lookup (default: 1) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - - Sync checkpoints policy (default: strict) - + + Allow JSON-RPC connections from specified IP address + - - Invalid -tor address: '%s' - + + Send commands to node running on <ip> (default: 127.0.0.1) + - - Invalid amount for -reservebalance=<amount> - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Require a confirmations for change (default: 0) + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - - Output extra debugging information. Implies all other -debug* options - + + Upgrade wallet to latest format + - Output extra network debugging information - + Set key pool size to <n> (default: 100) + - Prepend debug output with timestamp - + Rescan the block chain for missing wallet transactions + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Attempt to recover private keys from a corrupt wallet.dat + - - Select the version of socks proxy to use (4-5, default: 5) - + + How many blocks to check at startup (default: 2500, 0 = all) + - - Send trace/debug info to console instead of debug.log file - + + How thorough the block verification is (0-6, default: 1) + - Send trace/debug info to debugger - + Imports blocks from external blk000?.dat file + - - Set maximum block size in bytes (default: 250000) - + + Block creation options: + - + Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - + - - Specify connection timeout in milliseconds (default: 5000) - + + Set maximum block size in bytes (default: 250000) + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Use UPnP to map the listening port (default: 0) - + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - - Use UPnP to map the listening port (default: 1 when listening) - + + Use OpenSSL (https) for JSON-RPC connections + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Server certificate file (default: server.cert) + - - Username for JSON-RPC connections - + + Server private key (default: server.pem) + - - Verifying database integrity... - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Invalid amount for -paytxfee=<amount>: '%s' + - Warning: Disk space is low! - - - - - Warning: This version is obsolete, upgrade required! - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - wallet.dat corrupt, salvage failed - + + Invalid amount for -mininput=<amount>: '%s' + - - Password for JSON-RPC connections - + + Wallet %s resides outside data directory %s. + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Find peers using internet relay chat (default: 0) - + + Verifying database integrity... + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + 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. + - - Allow JSON-RPC connections from specified IP address - + + wallet.dat corrupt, salvage failed + - Send commands to node running on <ip> (default: 127.0.0.1) - + Unknown -socks proxy version requested: %i + - Execute command when the best block changes (%s in cmd is replaced by block hash) - + Unknown network specified in -onlynet: '%s' + - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + + Invalid -proxy address: '%s' + - - Require a confirmations for change (default: 0) - + + Invalid -tor address: '%s' + - Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Cannot resolve -bind address: '%s' + - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + + Failed to listen on any port. Use -listen=0 if you want this. + - - Upgrade wallet to latest format - + + Cannot resolve -externalip address: '%s' + - Set key pool size to <n> (default: 100) - + Invalid amount for -reservebalance=<amount> + - Rescan the block chain for missing wallet transactions - + Unable to sign checkpoint, wrong checkpointkey? + + - - How many blocks to check at startup (default: 2500, 0 = all) - + + Loading block index... + Laai blok indeks... - How thorough the block verification is (0-6, default: 1) - + Error loading blkindex.dat + - Imports blocks from external blk000?.dat file - + Loading wallet... + Laai beursie... - - Use OpenSSL (https) for JSON-RPC connections - + + Error loading wallet.dat: Wallet corrupted + - Server certificate file (default: server.cert) - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - - Server private key (default: server.pem) - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + Wallet needed to be rewritten: restart BitBean to complete + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Error loading wallet.dat + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Cannot downgrade wallet + - - This help message - Hierdie help boodskap + + Cannot initialize keypool + - - Wallet %s resides outside data directory %s. - + + Cannot write default address + - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + Rescanning... + - - BitBean - + + Importing blockchain data file. + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Importing bootstrap blockchain data file. + - - Connect through socks proxy - + + Loading addresses... + Laai adresse... - - Allow DNS lookups for -addnode, -seednode and -connect - + + Error: could not start node + - - Loading addresses... - Laai adresse... + + Done loading + Klaar gelaai - - Error loading blkindex.dat - + + Unable to bind to %s on this computer. BitBean is probably already running. + - Error loading wallet.dat: Wallet corrupted - + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Error loading wallet.dat: Wallet requires newer version of BitBean - + + Error: Wallet locked, unable to create transaction + - Wallet needed to be rewritten: restart BitBean to complete - + Error: Wallet unlocked for staking only, unable to create transaction. + - Error loading wallet.dat - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Invalid -proxy address: '%s' - + + Error: Transaction creation failed + - - Unknown network specified in -onlynet: '%s' - + + Sending... + - - Unknown -socks proxy version requested: %i - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - Cannot resolve -bind address: '%s' - + Invalid amount + Ongeldige bedrag - - Cannot resolve -externalip address: '%s' - + + Insufficient funds + Onvoldoende fondse - - Invalid amount for -paytxfee=<amount>: '%s' - + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Error: could not start node - + + Warning: This version is obsolete, upgrade required! + - - Sending... - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Invalid amount - Ongeldige bedrag + + Warning: Disk space is low! + - Insufficient funds - Onvoldoende fondse + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Loading block index... - Laai blok indeks... + Usage: + Gebruik: - - Add a node to connect to and attempt to keep the connection open - + Options: + Opsies: - - Unable to bind to %s on this computer. BitBean is probably already running. - + Maintain at most <n> connections to peers (default: 125) + Onderhou op die meeste <n> konneksies na eweknieë (standaard: 125) - - Fee per KB to add to transactions you send - + Use the test network + Gebruik die toets netwerk - - Invalid amount for -mininput=<amount>: '%s' - + This help message + Hierdie help boodskap - - Loading wallet... - Laai beursie... + Loading addresses... + Laai adresse... - - Cannot downgrade wallet - + Invalid amount + Ongeldige bedrag - - Cannot initialize keypool - + Insufficient funds + Onvoldoende fondse - - Cannot write default address - + Loading block index... + Laai blok indeks... - - Rescanning... - + Loading wallet... + Laai beursie... - Done loading - Klaar gelaai - - - - To use the %s option - + Klaar gelaai - 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. - + Fout - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_ar.qm b/src/qt/locale/bitbean_ar.qm new file mode 100644 index 0000000..43896dc Binary files /dev/null and b/src/qt/locale/bitbean_ar.qm differ diff --git a/src/qt/locale/bitcoin_ar.ts b/src/qt/locale/bitbean_ar.ts similarity index 55% rename from src/qt/locale/bitcoin_ar.ts rename to src/qt/locale/bitbean_ar.ts index 453206f..8e10dcd 100644 --- a/src/qt/locale/bitcoin_ar.ts +++ b/src/qt/locale/bitbean_ar.ts @@ -1,78 +1,81 @@ - + + + +UTF-8 AboutDialog - + About BitBean عن البلاك كوين - + <b>BitBean</b> version جزء البلاك كوين - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book كتاب العنوان - + Double-click to edit address or label أنقر على الماوس مرتين لتعديل العنوان - + Create a new address انشأ عنوان جديد - + Copy the currently selected address to the system clipboard قم بنسخ العنوان المختار لحافظة النظام - + &New Address &عنوان جديد - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. هذه هي عناوين البلاك كوين لاستقبال الدفعات. يمكن أن تعطي عنوان مختلف لكل مرسل من اجل أن تتابع من يرسل لك. - + &Copy Address انسخ العنوان - + Show &QR Code اظهار &رمز الاستجابة السريعة - + Sign a message to prove you own a BitBean address التوقيع علي رسالة لاثبات بانك تملك عنوان البلاك كوين @@ -82,12 +85,12 @@ This product includes software developed by the OpenSSL Project for use in the O وقع &الرسالة - + Delete the currently selected address from the list خذف العنوان الحالي التي تم اختياره من القائمة - + Verify a message to ensure it was signed with a specified BitBean address تحقق من الرسالة لتثبت بانه تم توقيعه بعنوان بلاك كوين محدد @@ -97,7 +100,7 @@ This product includes software developed by the OpenSSL Project for use in the O &تحقق الرسالة - + &Delete &أمسح @@ -119,7 +122,7 @@ This product includes software developed by the OpenSSL Project for use in the O Comma separated file (*.csv) - + @@ -153,34 +156,34 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog حوار كلمة المرور - + Enter passphrase ادخل كلمة المرور - + New passphrase عبارة مرور جديدة - + Repeat new passphrase ادخل الجملة السرية مرة أخرى - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -228,25 +231,34 @@ This product includes software developed by the OpenSSL Project for use in the O تأكيد التشفير المحفظة - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - تخذير : اذا تم تشفير المحفظة وضيعت كلمة المرور, لن تستطيع الحصول علي البلاك كوين + تخذير : اذا تم تشفير المحفظة وضيعت كلمة المرور, لن تستطيع الحصول علي البلاك كوين - + Are you sure you wish to encrypt your wallet? هل انت متأكد من رغبتك في تشفير المحفظة؟ - + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + @@ -255,12 +267,11 @@ This product includes software developed by the OpenSSL Project for use in the O محفظة مشفرة - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - بلاك كوين + بلاك كوين - + @@ -304,333 +315,609 @@ This product includes software developed by the OpenSSL Project for use in the O - BitcoinGUI + BeanControlDialog - - Sign &message... - التوقيع و الرسائل - - - - Synchronizing with network... - مزامنة مع شبكة ... + + Bean Control + - - &Overview - نظرة عامة + + Quantity: + الكمية: - - Show general overview of wallet - إظهار نظرة عامة على المحفظة + + Bytes: + - - &Transactions - المعاملات + + Amount: + المبلغ: - - Browse transaction history - تصفح التاريخ المعاملات + + Priority: + اهمية: - - &Address Book - &كتاب العنوان + + Fee: + رسوم: - - Edit the list of stored addresses and labels - تعديل قائمة العنوان المحفوظة + + Low Output: + - - &Receive coins - &استقبال البلاك كوين + + After Fee: + بعد الرسوم: - - Show the list of addresses for receiving payments - اظهار قائمة العناوين التي تستقبل التعاملات + + Change: + تغيير: - - &Send coins - &ارسال البلاك كوين + + (un)select all + - - E&xit - خروج + + Tree mode + - - Quit application - الخروج من التطبيق + + List mode + - - Show information about BitBean - اظهار المعلومات عن البلاك كوين + + Amount + المبلغ - - About &Qt - عن + + Label + وصف - - Show information about Qt - اظهر المعلومات + + Address + عنوان - - &Options... - خيارات ... + + Date + التاريخ - - &Encrypt Wallet... - تشفير المحفظة + + Confirmations + - &Backup Wallet... - حفظ ودعم المحفظة + Confirmed + تأكيد - - &Change Passphrase... - تغيير كلمة المرور - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + انسخ عنوان - - &Export... - &تصدير... + + Copy label + انسخ التسمية - - Send coins to a BitBean address - ارسال البلاك كوين الي عنوان اخر + + + Copy amount + نسخ الكمية - - Modify configuration options for BitBean - تعديل خيارات التكوين للبلاك كوين + + Copy transaction ID + نسخ رقم المعاملة - - Export the data in the current tab to a file - ارسال البيانات الحالية الي ملف + + Copy quantity + - - Encrypt or decrypt wallet - تشفير او فك التشفير للمحفظة + + Copy fee + - - Backup wallet to another location - احفظ نسخة احتياطية للمحفظة في مكان آخر + + Copy after fee + - - Change the passphrase used for wallet encryption - تغيير عبارة المرور المستخدمة لتشفير المحفظة + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - تأكيد الرسالة + + Copy change + - - BitBean - البلاك كوين + + highest + - - Wallet - محفظة + + high + - - &About BitBean - عن البلاك كوين + + medium-high + - - &Show / Hide - اظهار/ اخفاء + + medium + - - Unlock wallet - فتح المحفظة + + low-medium + - &Lock Wallet - قفل المحفظة + low + - Lock wallet - قفل المحفظة + lowest + - - &File - ملف + + DUST + - - &Settings - الاعدادات + + yes + نعم - - &Help - مساعدة + + no + لا - - Tabs toolbar - شريط أدوات علامات التبويب + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - برنامج البلاك كوين + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (لا وصف) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + خطا فادح! بلاك كوين لا يمكن أن يستمر جاري الاغلاق - - Not staking because wallet is offline - + + BitBean + البلاك كوين - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + نظرة عامة - - - %n second(s) ago - + + + Show general overview of wallet + إظهار نظرة عامة على المحفظة + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + اظهار قائمة العناوين التي تستقبل التعاملات + + + + &Transactions + المعاملات + + + + Browse transaction history + تصفح التاريخ المعاملات + + + + &Address Book + &كتاب العنوان + + + + Edit the list of stored addresses and labels + تعديل قائمة العنوان المحفوظة + + + + E&xit + خروج + + + + Quit application + الخروج من التطبيق + + + + &About BitBean + عن البلاك كوين + + + + Show information about BitBean + اظهار المعلومات عن البلاك كوين + + + + About &Qt + عن + + + + Show information about Qt + اظهر المعلومات + + + + &Options... + خيارات ... + + + + Modify configuration options for BitBean + تعديل خيارات التكوين للبلاك كوين + + + + &Show / Hide + اظهار/ اخفاء + + + + &Encrypt Wallet... + تشفير المحفظة + + + + Encrypt or decrypt wallet + تشفير او فك التشفير للمحفظة + + + + &Backup Wallet... + حفظ ودعم المحفظة + + + + Backup wallet to another location + احفظ نسخة احتياطية للمحفظة في مكان آخر + + + + &Change Passphrase... + تغيير كلمة المرور + + + + Change the passphrase used for wallet encryption + تغيير عبارة المرور المستخدمة لتشفير المحفظة - + &Unlock Wallet... - + + + + + Unlock wallet + + + + + &Lock Wallet + قفل المحفظة + + + + Lock wallet + قفل المحفظة + + + + Sign &message... + التوقيع و الرسائل + + + + &Verify message... + تأكيد الرسالة + + + + &Export... + &تصدير... + + + + Export the data in the current tab to a file + ارسال البيانات الحالية الي ملف + + + + &Debug window + + + + + Open debugging and diagnostic console + + + + + &File + ملف + + + + &Settings + الاعدادات + + + + &Help + مساعدة + + + + Tabs toolbar + شريط أدوات علامات التبويب + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + برنامج البلاك كوين + + + + %n active connection(s) to BitBean network + + + + + + + + + + + + Synchronizing with network... + مزامنة مع شبكة ... - + + ~%n block(s) remaining + + + + + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + + + + %n minute(s) ago - + + + + + + + + %n hour(s) ago - + + + + + + + + %n day(s) ago - + + + + + + + + Up to date - محين + محين Catching up... - اللحاق بالركب ... + اللحاق بالركب ... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - تأكيد رسوم المعاملة + تأكيد رسوم المعاملة Sent transaction - المعاملات المرسلة + المعاملات المرسلة Incoming transaction - المعاملات واردة + المعاملات واردة @@ -639,359 +926,439 @@ Amount: %2 Type: %3 Address: %4 - + URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - المحفظة مشفرة و مفتوحة حاليا + المحفظة مشفرة و مفتوحة حاليا Wallet is <b>encrypted</b> and currently <b>locked</b> - المحفظة مشفرة و مقفلة حاليا + المحفظة مشفرة و مقفلة حاليا Backup Wallet - النسخ الاحتياطي للمحفظة + النسخ الاحتياطي للمحفظة Wallet Data (*.dat) - بيانات المحفظة (*.dat) + بيانات المحفظة (*.dat) Backup Failed - فشل الدعم + فشل الدعم There was an error trying to save the wallet data to the new location. - خطا في محاولة حفظ بيانات الحفظة في مكان جديد + خطا في محاولة حفظ بيانات الحفظة في مكان جديد - + %n second(s) - + + + + + + + + %n minute(s) - + + + + + + + + %n hour(s) - + + + + + + + + %n day(s) - + + + + + + + + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - خطا فادح! بلاك كوين لا يمكن أن يستمر جاري الاغلاق + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - تحذير الشبكة + + Not staking because wallet is offline + + + + + Not staking because wallet is syncing + + + + + Not staking because you don't have mature beans + + + + + Not staking + - CoinControlDialog + BitcoinGUI - - Coin Control - سيطرة الكوين + Sign &message... + التوقيع و الرسائل - - Quantity: - الكمية: + Synchronizing with network... + مزامنة مع شبكة ... - - Bytes: - + &Overview + نظرة عامة - - Amount: - المبلغ: + Show general overview of wallet + إظهار نظرة عامة على المحفظة - - Priority: - اهمية: + &Transactions + المعاملات - - Fee: - رسوم: + Browse transaction history + تصفح التاريخ المعاملات - - Low Output: - + &Address Book + &كتاب العنوان - - no - لا + Edit the list of stored addresses and labels + تعديل قائمة العنوان المحفوظة - - After Fee: - بعد الرسوم: + &Receive coins + &استقبال البلاك كوين - - Change: - تغيير: + Show the list of addresses for receiving payments + اظهار قائمة العناوين التي تستقبل التعاملات - - (un)select all - + &Send coins + &ارسال البلاك كوين - - Tree mode - + E&xit + خروج - - List mode - + Quit application + الخروج من التطبيق - - Amount - المبلغ + Show information about BitBean + اظهار المعلومات عن البلاك كوين - - Label - + About &Qt + عن - - Address - عنوان + Show information about Qt + اظهر المعلومات - - Date - التاريخ + &Options... + خيارات ... - - Confirmations - + &Encrypt Wallet... + تشفير المحفظة - - Confirmed - تأكيد + &Backup Wallet... + حفظ ودعم المحفظة - - Priority - + &Change Passphrase... + تغيير كلمة المرور - - Copy address - انسخ عنوان + &Export... + &تصدير... - - Copy label - انسخ التسمية + Send coins to a BitBean address + ارسال البلاك كوين الي عنوان اخر - - - Copy amount - نسخ الكمية + Modify configuration options for BitBean + تعديل خيارات التكوين للبلاك كوين - - Copy transaction ID - + Export the data in the current tab to a file + ارسال البيانات الحالية الي ملف - - Copy quantity - + Encrypt or decrypt wallet + تشفير او فك التشفير للمحفظة - - Copy fee - + Backup wallet to another location + احفظ نسخة احتياطية للمحفظة في مكان آخر - - Copy after fee - + Change the passphrase used for wallet encryption + تغيير عبارة المرور المستخدمة لتشفير المحفظة - - Copy bytes - + &Verify message... + تأكيد الرسالة - - Copy priority - + BitBean + البلاك كوين - - Copy low output - + Wallet + محفظة + + + &About BitBean + عن البلاك كوين + + + &Show / Hide + اظهار/ اخفاء + + + Unlock wallet + فتح المحفظة + + + &Lock Wallet + قفل المحفظة + + + Lock wallet + قفل المحفظة + + + &File + ملف + + + &Settings + الاعدادات + + + &Help + مساعدة + + + Tabs toolbar + شريط أدوات علامات التبويب + + + [testnet] + [testnet] + + + BitBean client + برنامج البلاك كوين + + + Up to date + محين + + + Catching up... + اللحاق بالركب ... + + + Confirm transaction fee + تأكيد رسوم المعاملة + + + Sent transaction + المعاملات المرسلة + + + Incoming transaction + المعاملات واردة + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + المحفظة مشفرة و مفتوحة حاليا + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + المحفظة مشفرة و مقفلة حاليا + + + Backup Wallet + النسخ الاحتياطي للمحفظة + + + Wallet Data (*.dat) + بيانات المحفظة (*.dat) + + + Backup Failed + فشل الدعم + + + There was an error trying to save the wallet data to the new location. + خطا في محاولة حفظ بيانات الحفظة في مكان جديد + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + خطا فادح! بلاك كوين لا يمكن أن يستمر جاري الاغلاق + + + + ClientModel + + + Network Alert + تحذير الشبكة + + + CoinControlDialog - - Copy change - + Coin Control + سيطرة الكوين - - highest - + Quantity: + الكمية: - - high - + Amount: + المبلغ: - - medium-high - + Priority: + اهمية: - - medium - + Fee: + رسوم: - - low-medium - + no + لا - - low - + After Fee: + بعد الرسوم: - - lowest - + Change: + تغيير: - - DUST - + Amount + المبلغ - - yes - نعم + Address + عنوان - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Date + التاريخ - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Confirmed + تأكيد - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Copy address + انسخ عنوان - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy label + انسخ التسمية - - - (no label) - (لا وصف) + Copy amount + نسخ الكمية - - change from %1 (%2) - + yes + نعم - - (change) - + (no label) + (لا وصف) EditAddressDialog - + Edit Address عدل العنوان &Label - + The label associated with this address book entry - + @@ -1001,7 +1368,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1032,7 +1399,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1048,73 +1415,73 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + المستخدم command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options خيارات ... - + &Main الرئيسي - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee ادفع &رسوم المعاملة - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + @@ -1129,17 +1496,17 @@ This label turns red, if the priority is smaller than "medium". &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1149,52 +1516,52 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &Port: - + Port of the proxy (e.g. 9050) - + SOCKS &Version: - + SOCKS version of the proxy (e.g. 5) - + @@ -1204,70 +1571,70 @@ This label turns red, if the priority is smaller than "medium". 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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - عرض العناوين في قائمة الصفقة + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + عرض العناوين في قائمة الصفقة - + &OK تم @@ -1279,7 +1646,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1290,13 +1657,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1307,78 +1674,150 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form نمودج - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - محفظة + محفظة - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: غير ناضجة + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + - Mined balance that has not yet matured - + Bean Stalk Height: + - - Total: - الكامل: + + Sprouting Difficulty: + - - Your current total balance - + + Bean Weight: + - - <b>Recent transactions</b> - اخر المعملات + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + Total: + الكامل: - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Recent transactions</b> + اخر المعملات - + out of sync خارج المزامنه @@ -1387,65 +1826,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + المبلغ: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name اسم العميل @@ -1476,12 +1915,12 @@ This label turns red, if the priority is smaller than "medium". Using OpenSSL version - + Startup time - + @@ -1496,27 +1935,27 @@ This label turns red, if the priority is smaller than "medium". On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + @@ -1526,22 +1965,22 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + @@ -1551,98 +1990,98 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - إرسال Coins + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + الكمية: 0 - + Bytes: - + Amount: - + المبلغ: @@ -1650,272 +2089,350 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + اهمية: medium - + Fee: - + رسوم: Low Output: - + no - + لا After Fee: - + بعد الرسوم: Change - + custom change address - + Send to multiple recipients at once - إرسال إلى عدة مستلمين في وقت واحد + إرسال إلى عدة مستلمين في وقت واحد Add &Recipient - + Remove all transaction fields - + Clear &All - مسح الكل + مسح الكل Balance: - الرصيد: + الرصيد: 123.456 BC - + Confirm the send action - تأكيد الإرسال + تأكيد الإرسال S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + ادخال عنوان البلاك كوين (مثلا 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) Copy quantity - + Copy amount - نسخ الكمية + نسخ الكمية Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - تأكيد الإرسال Coins + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Duplicate address found, can only send to each address once per send operation. - + + + + + Error: Transaction creation failed. + + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + + + + + (no label) + (لا وصف) + + + + WARNING: unknown change address + + + + + SendBeansEntry + + + Form + نمودج + + + + A&mount: + + + + + Pay &To: + ادفع الى + + + + + Enter a label for this address to add it to your address book + إدخال تسمية لهذا العنوان لإضافته إلى دفتر العناوين الخاص بك + + + + &Label: + + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + العنوان لارسال المعاملة الي (مثلا 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + اختيار عنوان من كتاب العناوين + + + + Alt+A + Alt+A + + + + Paste address from clipboard + انسخ العنوان من لوحة المفاتيح + + + + Alt+P + Alt+P + + + + Remove this recipient + خذف هذا المستخدم + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + ادخال عنوان البلاك كوين (مثلا 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + SendCoinsDialog + + Send Coins + إرسال Coins + + + Send to multiple recipients at once + إرسال إلى عدة مستلمين في وقت واحد + + + Clear &All + مسح الكل + + + Balance: + الرصيد: - - Error: Transaction creation failed. - + Confirm the send action + تأكيد الإرسال - - 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. - + Copy amount + نسخ الكمية - - WARNING: Invalid BitBean address - + Confirm send coins + تأكيد الإرسال Coins - - (no label) - (لا وصف) + The amount to pay must be larger than 0. + المبلغ المدفوع يجب ان يكون اكبر من 0 - - WARNING: unknown change address - + (no label) + (لا وصف) SendCoinsEntry - - Form - - - - - A&mount: - - - - Pay &To: - ادفع الى + ادفع الى - - Enter a label for this address to add it to your address book - إدخال تسمية لهذا العنوان لإضافته إلى دفتر العناوين الخاص بك + إدخال تسمية لهذا العنوان لإضافته إلى دفتر العناوين الخاص بك - - &Label: - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - العنوان لارسال المعاملة الي (مثلا 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + العنوان لارسال المعاملة الي (مثلا 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Choose address from address book - اختيار عنوان من كتاب العناوين + اختيار عنوان من كتاب العناوين - Alt+A - Alt+A + Alt+A - Paste address from clipboard - انسخ العنوان من لوحة المفاتيح + انسخ العنوان من لوحة المفاتيح - Alt+P - Alt+P + Alt+P - Remove this recipient - خذف هذا المستخدم + خذف هذا المستخدم - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - ادخال عنوان البلاك كوين (مثلا 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + ادخال عنوان البلاك كوين (مثلا 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) SignVerifyMessageDialog - + Signatures - Sign / Verify a Message التواقيع - التوقيع /تأكيد الرسالة @@ -1928,12 +2445,12 @@ This label turns red, if the priority is smaller than "medium". 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -1960,22 +2477,22 @@ This label turns red, if the priority is smaller than "medium". Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + Reset all sign message fields - + @@ -1987,43 +2504,43 @@ This label turns red, if the priority is smaller than "medium". &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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + ادخال عنوان البلاك كوين (مثلا 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) Click "Sign Message" to generate signature - + Enter BitBean signature - + @@ -2048,7 +2565,7 @@ This label turns red, if the priority is smaller than "medium". Wallet unlock was cancelled. - + @@ -2068,18 +2585,18 @@ This label turns red, if the priority is smaller than "medium". The signature could not be decoded. - + Please check the signature and try again. - + The signature did not match the message digest. - + @@ -2102,12 +2619,19 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + + + + + conflicted - + @@ -2132,7 +2656,14 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - + + + + + + + + @@ -2171,7 +2702,7 @@ This label turns red, if the priority is smaller than "medium". label - + @@ -2180,12 +2711,19 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + + + + + + @@ -2208,12 +2746,12 @@ This label turns red, if the priority is smaller than "medium". Net amount - + Message - + @@ -2227,13 +2765,13 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + @@ -2243,7 +2781,7 @@ This label turns red, if the priority is smaller than "medium". Inputs - + @@ -2274,7 +2812,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details تفاصيل المعاملة @@ -2319,7 +2857,14 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + + + + + + @@ -2329,22 +2874,22 @@ This label turns red, if the priority is smaller than "medium". Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2378,8 +2923,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - Mined + Mined @@ -2467,812 +3016,991 @@ This label turns red, if the priority is smaller than "medium". - Mined - Mined + 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 Data + تصدير بيانات المعاملة + + + + Comma separated file (*.csv) + + + + + Confirmed + تأكيد + + + + Date + التاريخ + + + + Type + النوع + + + + Label + وصف + + + + Address + عنوان + + + + Amount + المبلغ + + + + ID + العنوان + + + + Error exporting + خطا في التصدير + + + + Could not write to file %1. + لا يمكن الكتابة الي الملف %1. + + + + Range: + نطاق: + + + + to + الى + + + + WalletModel + + + Sending... + ارسال.... + + + + bitbean-core + + + To use the %s option + + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + خطأ + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + + + + + BitBean version + جزع البلاك كوين + + + + Usage: + المستخدم + + + + Send command to -server or BitBeand + + + + + List commands + اعرض الأوامر + + + + Get help for a command + مساعدة في كتابة الاوامر + + + + BitBean + البلاك كوين + + + + Options: + خيارات: + + + + This help message + رسالة المساعدة هذه + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + حدد موقع مجلد المعلومات او data directory + + + + Specify wallet file (within data directory) + + + + + Set database cache size in megabytes (default: 25) + ضع حجم كاش قاعدة البيانات بالميجابايت (الافتراضي: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + - Other - اخرى + Connect through socks proxy + - - Enter address or label to search - ادخل عنوان أووصف للبحث + + Select the version of socks proxy to use (4-5, default: 5) + - - Min amount - الكمية الادني + + Use proxy to reach tor hidden services (default: same as -proxy) + - - Copy address - انسخ عنوان + + Allow DNS lookups for -addnode, -seednode and -connect + - Copy label - انسخ التسمية + Listen for connections on <port> (default: 15714 or testnet: 25714) + - Copy amount - نسخ الكمية + Maintain at most <n> connections to peers (default: 125) + - Copy transaction ID - نسخ رقم المعاملة + Add a node to connect to and attempt to keep the connection open + - Edit label - عدل الوصف + Connect only to the specified node(s) + - Show transaction details - اظهار تفاصيل المعاملة + Connect to a node to retrieve peer addresses, and disconnect + - - Export Transaction Data - تصدير بيانات المعاملة + + Specify your own public address + حدد عنوانك العام هنا - Comma separated file (*.csv) - + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Confirmed - تأكيد + + Discover own IP address (default: 1 when listening and no -externalip) + - Date - التاريخ + Find peers using internet relay chat (default: 0) + - Type - النوع + Accept connections from outside (default: 1 if no -proxy or -connect) + قبول الاتصالات من خارج - Label - وصف + Bind to given address. Use [host]:port notation for IPv6 + - Address - عنوان + Find peers using DNS lookup (default: 1) + - Amount - المبلغ + Stake your beans to support network and gain reward (default: 1) + - ID - العنوان + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Error exporting - خطا في التصدير + + Sync checkpoints policy (default: strict) + - - Could not write to file %1. - لا يمكن الكتابة الي الملف %1. + + Threshold for disconnecting misbehaving peers (default: 100) + - - Range: - نطاق: + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - to - الى + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - - WalletModel - - Sending... - ارسال.... + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - - bitcoin-core - - BitBean version - جزع البلاك كوين + + Use UPnP to map the listening port (default: 1 when listening) + - Usage: - المستخدم + Use UPnP to map the listening port (default: 0) + - Send command to -server or BitBeand - + Detach block and address databases. Increases shutdown time (default: 0) + - - List commands - اعرض الأوامر + + Fee per KB to add to transactions you send + - Get help for a command - مساعدة في كتابة الاوامر + When creating transactions, ignore inputs with value less than this (default: 0.01) + عند - - Options: - خيارات: + + Accept command line and JSON-RPC commands + - - Specify configuration file (default: BitBean.conf) - + + Run in the background as a daemon and accept commands + - Specify pid file (default: BitBeand.pid) - + Use the test network + استخدم التحقق من الشبكه - - Specify wallet file (within data directory) - + + Output extra debugging information. Implies all other -debug* options + - - Specify data directory - حدد موقع مجلد المعلومات او data directory + + Output extra network debugging information + - - Set database cache size in megabytes (default: 25) - ضع حجم كاش قاعدة البيانات بالميجابايت (الافتراضي: 25) + + Prepend debug output with timestamp + - Set database disk log size in megabytes (default: 100) - + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Send trace/debug info to console instead of debug.log file + - Maintain at most <n> connections to peers (default: 125) - + Send trace/debug info to debugger + - - Connect to a node to retrieve peer addresses, and disconnect - + + Username for JSON-RPC connections + - Specify your own public address - حدد عنوانك العام هنا + Password for JSON-RPC connections + - - Bind to given address. Use [host]:port notation for IPv6 - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - Stake your coins to support network and gain reward (default: 1) - + Allow JSON-RPC connections from specified IP address + - - Threshold for disconnecting misbehaving peers (default: 100) - + + Send commands to node running on <ip> (default: 127.0.0.1) + - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + - - Detach block and address databases. Increases shutdown time (default: 0) - + + Require a confirmations for change (default: 0) + - - 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. - + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - - 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 relevant alert is received (%s in cmd is replaced by message) + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Upgrade wallet to latest format + ارقاء المحفظة الي اخر نسخة - - Accept command line and JSON-RPC commands - + + Set key pool size to <n> (default: 100) + - - Error: Transaction creation failed - تحذير صناعة المعاملة فشلت + + Rescan the block chain for missing wallet transactions + اعادة بحث سلسلة الكتلة لايجاد معالمات المحفظة - - Error: Wallet locked, unable to create transaction - خطا : المحفظة مقفلة, لا يمكن عمل المعاملة + + Attempt to recover private keys from a corrupt wallet.dat + محاولة استرجاع المفاتيح الخاصة من wallet.dat الغير صالح - - Importing blockchain data file. - استيراد بيانات ملف سلسلة الكتل + + How many blocks to check at startup (default: 2500, 0 = all) + كمية الكتل التي تريد ان تبحث عنه عند بداية البرنامج (التلقائي 2500, 0 = الكل) - Importing bootstrap blockchain data file. - + How thorough the block verification is (0-6, default: 1) + كمية تأكيد الكتل (0-6 التلقائي 1) - - Run in the background as a daemon and accept commands - + + Imports blocks from external blk000?.dat file + نقل كتل من ملف blk000.dat خارجي - Use the test network - استخدم التحقق من الشبكه + Block creation options: + خيارات صناعة الكتل - - Accept connections from outside (default: 1 if no -proxy or -connect) - قبول الاتصالات من خارج + + Set minimum block size in bytes (default: 0) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Set maximum block size in bytes (default: 250000) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Use OpenSSL (https) for JSON-RPC connections + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - تحذير : تأكد من ساعة وتاريخ الكمبيوتر! اذا ساعة غير صحيحة بلاك كوين لن يعمل بشكل صحيح + + Server certificate file (default: server.cert) + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - تحذير : خطا في قراءة wallet.dat! كل المفاتيح تم قرائتة بشكل صحيح لكن بيانات الصفقة او إدخالات كتاب العنوان غير صحيحة او غير موجودة + + Server private key (default: server.pem) + - - 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.{timestamp}.bak %s في ; اذا حسابك او صفقاتك غير صحيح يجب عليك استعادة النسخ الاحتياطي + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Attempt to recover private keys from a corrupt wallet.dat - محاولة استرجاع المفاتيح الخاصة من wallet.dat الغير صالح + + Invalid amount for -paytxfee=<amount>: '%s' + - - Block creation options: - خيارات صناعة الكتل + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - Connect only to the specified node(s) - + + Invalid amount for -mininput=<amount>: '%s' + - - Discover own IP address (default: 1 when listening and no -externalip) - + + Wallet %s resides outside data directory %s. + - - Failed to listen on any port. Use -listen=0 if you want this. - فشل في الاستماع على أي منفذ. استخدام الاستماع = 0 إذا كنت تريد هذا. + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Find peers using DNS lookup (default: 1) - + + Verifying database integrity... + - - Sync checkpoints policy (default: strict) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Invalid -tor address: '%s' - + + 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.{timestamp}.bak %s في ; اذا حسابك او صفقاتك غير صحيح يجب عليك استعادة النسخ الاحتياطي - Invalid amount for -reservebalance=<amount> - + wallet.dat corrupt, salvage failed + wallet.dat غير صالح لا يمكن الاسترجاع + + + + Unknown -socks proxy version requested: %i + + + + + Unknown network specified in -onlynet: '%s' + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Invalid -proxy address: '%s' + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Invalid -tor address: '%s' + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Cannot resolve -bind address: '%s' + - - Output extra debugging information. Implies all other -debug* options - + + Failed to listen on any port. Use -listen=0 if you want this. + فشل في الاستماع على أي منفذ. استخدام الاستماع = 0 إذا كنت تريد هذا. - Output extra network debugging information - + Cannot resolve -externalip address: '%s' + - Prepend debug output with timestamp - + Invalid amount for -reservebalance=<amount> + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Unable to sign checkpoint, wrong checkpointkey? + + - - Select the version of socks proxy to use (4-5, default: 5) - + + Loading block index... + - - Send trace/debug info to console instead of debug.log file - + + Error loading blkindex.dat + خظا في تحميل blkindex.dat - Send trace/debug info to debugger - + Loading wallet... + تحميل المحفظه - - Set maximum block size in bytes (default: 250000) - + + Error loading wallet.dat: Wallet corrupted + خطأ عند تنزيل wallet.dat: المحفظة تالفة - - Set minimum block size in bytes (default: 0) - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + تحذير : خطا في قراءة wallet.dat! كل المفاتيح تم قرائتة بشكل صحيح لكن بيانات الصفقة او إدخالات كتاب العنوان غير صحيحة او غير موجودة - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Specify connection timeout in milliseconds (default: 5000) - + + Wallet needed to be rewritten: restart BitBean to complete + المحفظة يجب أن يعاد كتابته : أعد البلاك كوين لتكتمل - - Unable to sign checkpoint, wrong checkpointkey? - - + + Error loading wallet.dat + خطأ عند تنزيل wallet.dat - - Use UPnP to map the listening port (default: 0) - + + Cannot downgrade wallet + لا يمكن خفض المحفظة - - Use UPnP to map the listening port (default: 1 when listening) - + + Cannot initialize keypool + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Cannot write default address + لا يمكن كتابة العنوان الافتراضي - - Username for JSON-RPC connections - + + Rescanning... + إعادة مسح - - Verifying database integrity... - + + Importing blockchain data file. + استيراد بيانات ملف سلسلة الكتل - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Importing bootstrap blockchain data file. + - Warning: Disk space is low! - تحذير : مساحة القرص منخفض + Loading addresses... + تحميل العنوان - - Warning: This version is obsolete, upgrade required! - تحذير هذا الجزء قديم, التجديد مطلوب + + Error: could not start node + - - wallet.dat corrupt, salvage failed - wallet.dat غير صالح لا يمكن الاسترجاع + + Done loading + انتهاء التحميل - - Password for JSON-RPC connections - + + Unable to bind to %s on this computer. BitBean is probably already running. + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Find peers using internet relay chat (default: 0) - + + Error: Wallet locked, unable to create transaction + خطا : المحفظة مقفلة, لا يمكن عمل المعاملة - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - عند + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Allow JSON-RPC connections from specified IP address - + + Error: Transaction creation failed + تحذير صناعة المعاملة فشلت - Send commands to node running on <ip> (default: 127.0.0.1) - + Sending... + ارسال.... - Execute command when the best block changes (%s in cmd is replaced by block hash) - + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + + Invalid amount + مبلغ خاطئ - - Require a confirmations for change (default: 0) - + + Insufficient funds + حسابك لا يكفي - Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + تحذير : تأكد من ساعة وتاريخ الكمبيوتر! اذا ساعة غير صحيحة بلاك كوين لن يعمل بشكل صحيح - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + + Warning: This version is obsolete, upgrade required! + تحذير هذا الجزء قديم, التجديد مطلوب - - Upgrade wallet to latest format - ارقاء المحفظة الي اخر نسخة + + WARNING: syncronized checkpoint violation detected, but skipped! + - Set key pool size to <n> (default: 100) - + Warning: Disk space is low! + تحذير : مساحة القرص منخفض - Rescan the block chain for missing wallet transactions - اعادة بحث سلسلة الكتلة لايجاد معالمات المحفظة + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - How many blocks to check at startup (default: 2500, 0 = all) - كمية الكتل التي تريد ان تبحث عنه عند بداية البرنامج (التلقائي 2500, 0 = الكل) + BitBean version + جزع البلاك كوين - - How thorough the block verification is (0-6, default: 1) - كمية تأكيد الكتل (0-6 التلقائي 1) + Usage: + المستخدم - - Imports blocks from external blk000?.dat file - نقل كتل من ملف blk000.dat خارجي + List commands + اعرض الأوامر - - Use OpenSSL (https) for JSON-RPC connections - + Get help for a command + مساعدة في كتابة الاوامر - - Server certificate file (default: server.cert) - + Options: + خيارات: - - Server private key (default: server.pem) - + Specify data directory + حدد موقع مجلد المعلومات او data directory - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + Set database cache size in megabytes (default: 25) + ضع حجم كاش قاعدة البيانات بالميجابايت (الافتراضي: 25) - - Error: Wallet unlocked for staking only, unable to create transaction. - + Specify your own public address + حدد عنوانك العام هنا - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + Error: Transaction creation failed + تحذير صناعة المعاملة فشلت - - This help message - رسالة المساعدة هذه + Error: Wallet locked, unable to create transaction + خطا : المحفظة مقفلة, لا يمكن عمل المعاملة - - Wallet %s resides outside data directory %s. - + Importing blockchain data file. + استيراد بيانات ملف سلسلة الكتل - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + Use the test network + استخدم التحقق من الشبكه - - BitBean - البلاك كوين + Accept connections from outside (default: 1 if no -proxy or -connect) + قبول الاتصالات من خارج - - Unable to bind to %s on this computer (bind returned error %d, %s) - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + تحذير : تأكد من ساعة وتاريخ الكمبيوتر! اذا ساعة غير صحيحة بلاك كوين لن يعمل بشكل صحيح - - Connect through socks proxy - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + تحذير : خطا في قراءة wallet.dat! كل المفاتيح تم قرائتة بشكل صحيح لكن بيانات الصفقة او إدخالات كتاب العنوان غير صحيحة او غير موجودة - - Allow DNS lookups for -addnode, -seednode and -connect - + 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.{timestamp}.bak %s في ; اذا حسابك او صفقاتك غير صحيح يجب عليك استعادة النسخ الاحتياطي - - Loading addresses... - تحميل العنوان + Attempt to recover private keys from a corrupt wallet.dat + محاولة استرجاع المفاتيح الخاصة من wallet.dat الغير صالح - - Error loading blkindex.dat - خظا في تحميل blkindex.dat + Block creation options: + خيارات صناعة الكتل - - Error loading wallet.dat: Wallet corrupted - خطأ عند تنزيل wallet.dat: المحفظة تالفة + Failed to listen on any port. Use -listen=0 if you want this. + فشل في الاستماع على أي منفذ. استخدام الاستماع = 0 إذا كنت تريد هذا. - - Error loading wallet.dat: Wallet requires newer version of BitBean - + Warning: Disk space is low! + تحذير : مساحة القرص منخفض - - Wallet needed to be rewritten: restart BitBean to complete - المحفظة يجب أن يعاد كتابته : أعد البلاك كوين لتكتمل + Warning: This version is obsolete, upgrade required! + تحذير هذا الجزء قديم, التجديد مطلوب - - Error loading wallet.dat - خطأ عند تنزيل wallet.dat + wallet.dat corrupt, salvage failed + wallet.dat غير صالح لا يمكن الاسترجاع - - Invalid -proxy address: '%s' - + When creating transactions, ignore inputs with value less than this (default: 0.01) + عند - - Unknown network specified in -onlynet: '%s' - + Upgrade wallet to latest format + ارقاء المحفظة الي اخر نسخة - - Unknown -socks proxy version requested: %i - + Rescan the block chain for missing wallet transactions + اعادة بحث سلسلة الكتلة لايجاد معالمات المحفظة - - Cannot resolve -bind address: '%s' - + How many blocks to check at startup (default: 2500, 0 = all) + كمية الكتل التي تريد ان تبحث عنه عند بداية البرنامج (التلقائي 2500, 0 = الكل) - - Cannot resolve -externalip address: '%s' - + How thorough the block verification is (0-6, default: 1) + كمية تأكيد الكتل (0-6 التلقائي 1) - - Invalid amount for -paytxfee=<amount>: '%s' - + Imports blocks from external blk000?.dat file + نقل كتل من ملف blk000.dat خارجي - - Error: could not start node - + This help message + رسالة المساعدة هذه - - Sending... - ارسال.... + BitBean + البلاك كوين - - Invalid amount - مبلغ خاطئ + Loading addresses... + تحميل العنوان - - Insufficient funds - حسابك لا يكفي + Error loading blkindex.dat + خظا في تحميل blkindex.dat - - Loading block index... - + Error loading wallet.dat: Wallet corrupted + خطأ عند تنزيل wallet.dat: المحفظة تالفة - - Add a node to connect to and attempt to keep the connection open - + Wallet needed to be rewritten: restart BitBean to complete + المحفظة يجب أن يعاد كتابته : أعد البلاك كوين لتكتمل - - Unable to bind to %s on this computer. BitBean is probably already running. - + Error loading wallet.dat + خطأ عند تنزيل wallet.dat - - Fee per KB to add to transactions you send - + Sending... + ارسال.... - - Invalid amount for -mininput=<amount>: '%s' - + Invalid amount + مبلغ خاطئ - - Loading wallet... - تحميل المحفظه + Insufficient funds + حسابك لا يكفي - - Cannot downgrade wallet - لا يمكن خفض المحفظة + Loading wallet... + تحميل المحفظه - - Cannot initialize keypool - + 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_be_BY.qm b/src/qt/locale/bitbean_be_BY.qm similarity index 57% rename from src/qt/locale/bitcoin_be_BY.qm rename to src/qt/locale/bitbean_be_BY.qm index 94246e0..efcf8d2 100644 Binary files a/src/qt/locale/bitcoin_be_BY.qm and b/src/qt/locale/bitbean_be_BY.qm differ diff --git a/src/qt/locale/bitcoin_be_BY.ts b/src/qt/locale/bitbean_be_BY.ts similarity index 56% rename from src/qt/locale/bitcoin_be_BY.ts rename to src/qt/locale/bitbean_be_BY.ts index a3700fe..47baba6 100644 --- a/src/qt/locale/bitcoin_be_BY.ts +++ b/src/qt/locale/bitbean_be_BY.ts @@ -1,120 +1,123 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + Double-click to edit address or label Двайны клік для рэдагавання адрасу ці пазнакі - + Create a new address Стварыць новы адрас - + Copy the currently selected address to the system clipboard Капіяваць пазначаны адрас у сістэмны буфер абмену - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete Выдаліць Copy &Label - + &Edit - + Export Address Book Data - + @@ -124,12 +127,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -153,34 +156,34 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog - + - + Enter passphrase Увядзіце кодавую фразу - + New passphrase Новая кодавая фраза - + Repeat new passphrase Паўтарыце новую кодавую фразу - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -229,24 +232,29 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + @@ -255,12 +263,7 @@ This product includes software developed by the OpenSSL Project for use in the O Гаманец зашыфраваны - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -298,337 +301,595 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet passphrase was successfully changed. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - Сінхранізацыя з сецівам... + + Bean Control + - - &Overview - Агляд + + Quantity: + - - Show general overview of wallet - Паказвае агульныя звесткі аб гаманцы + + Bytes: + - - &Transactions - Транзакцыі + + Amount: + - - Browse transaction history - Праглядзець гісторыю транзакцый + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - Выйсці + + Tree mode + - - Quit application - Выйсці з праграмы + + List mode + - - Show information about BitBean - + + Amount + Колькасць - - About &Qt - Аб Qt + + Label + Пазнака - - Show information about Qt - Паказаць інфармацыю аб Qt + + Address + Адрас - - &Options... - Опцыі... + + Date + Дата - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - + Confirmed + Пацверджана - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Капіяваць адрас - - &Export... - + + Copy label + Капіяваць пазнаку - - Send coins to a BitBean address - + + + Copy amount + Капіяваць колькасць - - Modify configuration options for BitBean - + + Copy transaction ID + Капіяваць ID транзакцыі - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - Зрабіце копію гаманца ў іншае месца + + Copy after fee + - - Change the passphrase used for wallet encryption - Змяніць пароль шыфравання гаманца + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - Ф&айл + + DUST + - - &Settings - Наладкі + + yes + - - &Help - Дапамога + + no + - - Tabs toolbar - + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + непазначаны - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + - - Not staking because wallet is locked - + + (change) + + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - + + Vault + - - - %n second(s) ago - + + + &Overview + Агляд - - &Unlock Wallet... - + + Show general overview of wallet + Паказвае агульныя звесткі аб гаманцы - - - %n minute(s) ago - + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + Транзакцыі + + + + Browse transaction history + Праглядзець гісторыю транзакцый + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + Выйсці + + + + Quit application + Выйсці з праграмы + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + Аб Qt + + + + Show information about Qt + Паказаць інфармацыю аб Qt + + + + &Options... + Опцыі... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + + + + + &Encrypt Wallet... + + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + + + + + Backup wallet to another location + Зрабіце копію гаманца ў іншае месца + + + + &Change Passphrase... + + + + + Change the passphrase used for wallet encryption + Змяніць пароль шыфравання гаманца + + + + &Unlock Wallet... + + + + + Unlock wallet + Разблакаваць гаманец + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + + + + + &Verify message... + + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + + + + + Open debugging and diagnostic console + + + + + &File + Ф&айл + + + + &Settings + Наладкі + + + + &Help + Дапамога + + + + Tabs toolbar + + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + + Synchronizing with network... + Сінхранізацыя з сецівам... + + + + ~%n block(s) remaining + + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + + %n minute(s) ago + + + + + %n hour(s) ago - + + + + + %n day(s) ago - + + + + + Up to date - Сінхранізавана + Сінхранізавана Catching up... - Наганяем... + Наганяем... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Дасланыя транзакцыі + Дасланыя транзакцыі Incoming transaction - Прынятыя транзакцыі + Прынятыя транзакцыі @@ -637,7 +898,7 @@ Amount: %2 Type: %3 Address: %4 - Дата: %1 + Дата: %1 Колькасць: %2 Тып: %3 Адрас: %4 @@ -647,341 +908,265 @@ Address: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Гаманец <b>зашыфраваны</b> і зараз <b>разблакаваны</b> + Гаманец <b>зашыфраваны</b> і зараз <b>разблакаваны</b> Wallet is <b>encrypted</b> and currently <b>locked</b> - Гаманец <b>зашыфраваны</b> і зараз <b>заблакаваны</b> + Гаманец <b>зашыфраваны</b> і зараз <b>заблакаваны</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + + %n minute(s) - + + + + + %n hour(s) - + + + + + %n day(s) - - - - - Not staking - - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - - - - - ClientModel - - - Network Alert - - - - - CoinControlDialog - - - Coin Control - - - - - Quantity: - + + + + + - - Bytes: - - - - - Amount: - - - - - Priority: - - - - - Fee: - - - - - Low Output: - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - no - + + Not staking because wallet is locked + - - After Fee: - + + Not staking because wallet is offline + - - Change: - + + Not staking because wallet is syncing + - - (un)select all - + + Not staking because you don't have mature beans + - - Tree mode - + + Not staking + + + + BitcoinGUI - - List mode - + Synchronizing with network... + Сінхранізацыя з сецівам... - - Amount - Колькасць + &Overview + Агляд - - Label - + Show general overview of wallet + Паказвае агульныя звесткі аб гаманцы - - Address - Адрас + &Transactions + Транзакцыі - - Date - Дата + Browse transaction history + Праглядзець гісторыю транзакцый - - Confirmations - + E&xit + Выйсці - - Confirmed - Пацверджана + Quit application + Выйсці з праграмы - - Priority - + About &Qt + Аб Qt - - Copy address - Капіяваць адрас + Show information about Qt + Паказаць інфармацыю аб Qt - - Copy label - Капіяваць пазнаку + &Options... + Опцыі... - - - Copy amount - Капіяваць колькасць + Backup wallet to another location + Зрабіце копію гаманца ў іншае месца - - Copy transaction ID - Капіяваць ID транзакцыі + Change the passphrase used for wallet encryption + Змяніць пароль шыфравання гаманца - - Copy quantity - + &File + Ф&айл - - Copy fee - + &Settings + Наладкі - - Copy after fee - + &Help + Дапамога - - Copy bytes - + [testnet] + [testnet] - - Copy priority - + Up to date + Сінхранізавана - - Copy low output - + Catching up... + Наганяем... - - Copy change - + Sent transaction + Дасланыя транзакцыі - - highest - + Incoming transaction + Прынятыя транзакцыі - - high - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Дата: %1 +Колькасць: %2 +Тып: %3 +Адрас: %4 + - - medium-high - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Гаманец <b>зашыфраваны</b> і зараз <b>разблакаваны</b> - - medium - + Wallet is <b>encrypted</b> and currently <b>locked</b> + Гаманец <b>зашыфраваны</b> і зараз <b>заблакаваны</b> + + + ClientModel - - low-medium - + + Network Alert + + + + CoinControlDialog - - low - + Amount + Колькасць - - lowest - + Address + Адрас - - DUST - + Date + Дата - - yes - + Confirmed + Пацверджана - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Copy address + Капіяваць адрас - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Copy label + Капіяваць пазнаку - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Copy amount + Капіяваць колькасць - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy transaction ID + Капіяваць ID транзакцыі - - (no label) - непазначаны - - - - change from %1 (%2) - - - - - (change) - + непазначаны EditAddressDialog - + Edit Address Рэдагаваць Адрас @@ -993,7 +1178,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1003,7 +1188,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1033,7 +1218,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1049,406 +1234,474 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Ужыванне: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Опцыі - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - + &Cancel - + &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + The supplied proxy address is invalid. - + OverviewPage - + Form Форма - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - - - - - Wallet - + - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: - + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + - Mined balance that has not yet matured - + Bean Stalk Height: + - - Total: - + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + - - Your current total balance - + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + - - <b>Recent transactions</b> - <b>Нядаўнія транзаццыі</b> + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + Total: + - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Recent transactions</b> + <b>Нядаўнія транзаццыі</b> - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1462,188 +1715,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Даслаць Манеты + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - + @@ -1651,296 +1904,362 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Даслаць адразу некалькім атрымальнікам + Даслаць адразу некалькім атрымальнікам Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - Баланс: + Баланс: 123.456 BC - + Confirm the send action - Пацвердзіць дасыланне + Пацвердзіць дасыланне S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - Капіяваць колькасць + Капіяваць колькасць Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - Пацвердзіць дасыланне манет + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Duplicate address found, can only send to each address once per send operation. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - непазначаны + непазначаны WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Форма - + A&mount: - Колькасць: + Колькасць: Pay &To: - Заплаціць да: + Заплаціць да: - + Enter a label for this address to add it to your address book - Увядзіце пазнаку гэтаму адрасу, каб дадаць яго ў адрасную кнігу + Увядзіце пазнаку гэтаму адрасу, каб дадаць яго ў адрасную кнігу &Label: - Пазнака: + Пазнака: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Уставіць адрас з буферу абмена + Уставіць адрас з буферу абмена Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + Даслаць Манеты + + + Send to multiple recipients at once + Даслаць адразу некалькім атрымальнікам + + + Balance: + Баланс: + + + Confirm the send action + Пацвердзіць дасыланне + + + Copy amount + Капіяваць колькасць + + + Confirm send coins + Пацвердзіць дасыланне манет + + + The amount to pay must be larger than 0. + Велічыня плацяжу мае быць больш за 0. + + + (no label) + непазначаны + + + + SendCoinsEntry + + A&mount: + Колькасць: + + + Pay &To: + Заплаціць да: + + + Enter a label for this address to add it to your address book + Увядзіце пазнаку гэтаму адрасу, каб дадаць яго ў адрасную кнігу + + + &Label: + Пазнака: + + + Alt+A + Alt+A + + + Paste address from clipboard + Уставіць адрас з буферу абмена + + + Alt+P + Alt+P 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1961,76 +2280,76 @@ This label turns red, if the priority is smaller than "medium". Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2038,59 +2357,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2098,22 +2417,26 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - + Open for %n block(s) - + + + + + conflicted - + %1/offline - + @@ -2128,12 +2451,16 @@ This label turns red, if the priority is smaller than "medium". Status - + , broadcast through %n node(s) - + + + + + @@ -2143,36 +2470,36 @@ This label turns red, if the priority is smaller than "medium". Source - + Generated - + From - + To - + own address - + label - + @@ -2181,17 +2508,21 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + + + not accepted - + @@ -2199,52 +2530,52 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + @@ -2254,12 +2585,12 @@ This label turns red, if the priority is smaller than "medium". true - + false - + @@ -2275,7 +2606,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Дэталі транзакцыі @@ -2310,7 +2641,7 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - + @@ -2320,32 +2651,36 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2379,8 +2714,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - Здабыта + Здабыта @@ -2462,818 +2801,957 @@ This label turns red, if the priority is smaller than "medium". Даслана да - - To yourself - Да сябе + + 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 Data + + + + + Comma separated file (*.csv) + Коскамі падзелены файл (*.csv) + + + + Confirmed + Пацверджана + + + + Date + Дата + + + + Type + Тып + + + + Label + Пазнака + + + + Address + Адрас + + + + Amount + Колькасць + + + + ID + ID + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + Прамежак: + + + + to + да + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Памылка + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + + + + + BitBean version + + + + + Usage: + Ужыванне: + + + + Send command to -server or BitBeand + + + + + List commands + Спіс каманд + + + + Get help for a command + Атрымаць дапамогу для каманды + + + + BitBean + + + + + Options: + Опцыі: - Mined - Здабыта + This help message + - Other - Іншыя + Specify configuration file (default: BitBean.conf) + - - Enter address or label to search - Увядзіце адрас ці пазнаку для пошуку + + Specify pid file (default: BitBeand.pid) + - - Min amount - Мін. колькасць + + Specify data directory + Вызначыць каталог даных - - Copy address - Капіяваць адрас + + Specify wallet file (within data directory) + - Copy label - Капіяваць пазнаку + Set database cache size in megabytes (default: 25) + Пазначыць памер кэшу базы звестак у мегабайтах (тыпова: 25) - Copy amount - Капіяваць колькасць + Set database disk log size in megabytes (default: 100) + - Copy transaction ID - Капіяваць ID транзакцыі + Specify connection timeout in milliseconds (default: 5000) + - Edit label - Рэдагаваць пазнаку + Connect through socks proxy + - Show transaction details - + Select the version of socks proxy to use (4-5, default: 5) + - - Export Transaction Data - + + Use proxy to reach tor hidden services (default: same as -proxy) + - Comma separated file (*.csv) - Коскамі падзелены файл (*.csv) + Allow DNS lookups for -addnode, -seednode and -connect + - - Confirmed - Пацверджана + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - Date - Дата + Maintain at most <n> connections to peers (default: 125) + Трымаць не больш за <n> злучэнняў на асобу (зыходна: 125) - Type - Тып + Add a node to connect to and attempt to keep the connection open + - Label - Пазнака + Connect only to the specified node(s) + - Address - Адрас + Connect to a node to retrieve peer addresses, and disconnect + - Amount - Колькасць + Specify your own public address + - ID - ID + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Error exporting - + + Discover own IP address (default: 1 when listening and no -externalip) + - - Could not write to file %1. - + + Find peers using internet relay chat (default: 0) + - - Range: - Прамежак: + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - to - да + + Bind to given address. Use [host]:port notation for IPv6 + - - - WalletModel - - Sending... - + + Find peers using DNS lookup (default: 1) + - - - bitcoin-core - - BitBean version - + + Stake your beans to support network and gain reward (default: 1) + - Usage: - Ужыванне: + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Send command to -server or BitBeand - + + Sync checkpoints policy (default: strict) + - List commands - Спіс каманд + Threshold for disconnecting misbehaving peers (default: 100) + Парог для адлучэння злаўмысных карыстальнікаў (тыпова: 100) - Get help for a command - Атрымаць дапамогу для каманды + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Колькасць секунд для ўстрымання асобаў да перадалучэння (заходна: 86400) - - Options: - Опцыі: + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Specify configuration file (default: BitBean.conf) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - Specify pid file (default: BitBeand.pid) - + Use UPnP to map the listening port (default: 1 when listening) + - - Specify wallet file (within data directory) - + + Use UPnP to map the listening port (default: 0) + - - Specify data directory - Вызначыць каталог даных + + Detach block and address databases. Increases shutdown time (default: 0) + - Set database cache size in megabytes (default: 25) - Пазначыць памер кэшу базы звестак у мегабайтах (тыпова: 25) + Fee per KB to add to transactions you send + - Set database disk log size in megabytes (default: 100) - + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Accept command line and JSON-RPC commands + Прымаць камандны радок і JSON-RPC каманды - Maintain at most <n> connections to peers (default: 125) - Трымаць не больш за <n> злучэнняў на асобу (зыходна: 125) + Run in the background as a daemon and accept commands + Запусціць у фоне як дэман і прымаць каманды - - Connect to a node to retrieve peer addresses, and disconnect - + + Use the test network + Ужываць тэставае сеціва - Specify your own public address - + Output extra debugging information. Implies all other -debug* options + - - Bind to given address. Use [host]:port notation for IPv6 - + + Output extra network debugging information + - - Stake your coins to support network and gain reward (default: 1) - + + Prepend debug output with timestamp + - - Threshold for disconnecting misbehaving peers (default: 100) - Парог для адлучэння злаўмысных карыстальнікаў (тыпова: 100) + + Shrink debug.log file on client startup (default: 1 when no -debug) + - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Колькасць секунд для ўстрымання асобаў да перадалучэння (заходна: 86400) + Send trace/debug info to console instead of debug.log file + Слаць trace/debug звесткі ў кансоль замест файла debug.log - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - + + Send trace/debug info to debugger + - - Detach block and address databases. Increases shutdown time (default: 0) - + + Username for JSON-RPC connections + Імя карыстальника для JSON-RPC злучэнняў - - 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. - + + Password for JSON-RPC connections + Пароль для JSON-RPC злучэнняў - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Allow JSON-RPC connections from specified IP address + Дазволіць JSON-RPC злучэнні з пэўнага IP адрасу - - Accept command line and JSON-RPC commands - Прымаць камандны радок і JSON-RPC каманды + + Send commands to node running on <ip> (default: 127.0.0.1) + Адпраўляць каманды вузлу на <ip> (зыходна: 127.0.0.1) - - Error: Transaction creation failed - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Выканаць каманду калі лепшы блок зменіцца (%s замяняецца на хэш блока) - - Error: Wallet locked, unable to create transaction - + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + - - Importing blockchain data file. - + + Require a confirmations for change (default: 0) + - Importing bootstrap blockchain data file. - + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - - Run in the background as a daemon and accept commands - Запусціць у фоне як дэман і прымаць каманды + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + + + + + Upgrade wallet to latest format + Абнавіць гаманец на новы фармат - Use the test network - Ужываць тэставае сеціва + Set key pool size to <n> (default: 100) + Устанавіць памер фонда ключоў у <n> (тыпова: 100) - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Rescan the block chain for missing wallet transactions + Перасканаваць ланцуг блокаў дзеля пошуку адсутных транзакцый - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Attempt to recover private keys from a corrupt wallet.dat + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + How many blocks to check at startup (default: 2500, 0 = all) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + How thorough the block verification is (0-6, default: 1) + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Imports blocks from external blk000?.dat file + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Block creation options: + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Set minimum block size in bytes (default: 0) + - - 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. - + + Set maximum block size in bytes (default: 250000) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Block creation options: - + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - - Connect only to the specified node(s) - + + Use OpenSSL (https) for JSON-RPC connections + Ужываць OpenSSL (https) для JSON-RPC злучэнняў - - Discover own IP address (default: 1 when listening and no -externalip) - + + Server certificate file (default: server.cert) + Файл-сертыфікат сервера (зыходна: server.cert) - - Failed to listen on any port. Use -listen=0 if you want this. - + + Server private key (default: server.pem) + Прыватны ключ сервера (зыходна: server.pem) - - Find peers using DNS lookup (default: 1) - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Sync checkpoints policy (default: strict) - + + Invalid amount for -paytxfee=<amount>: '%s' + - - Invalid -tor address: '%s' - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - Invalid amount for -reservebalance=<amount> - + + Invalid amount for -mininput=<amount>: '%s' + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Wallet %s resides outside data directory %s. + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Verifying database integrity... + - - Output extra debugging information. Implies all other -debug* options - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Output extra network debugging information - + + 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. + - - Prepend debug output with timestamp - + + wallet.dat corrupt, salvage failed + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Unknown -socks proxy version requested: %i + - - Select the version of socks proxy to use (4-5, default: 5) - + + Unknown network specified in -onlynet: '%s' + - - Send trace/debug info to console instead of debug.log file - Слаць trace/debug звесткі ў кансоль замест файла debug.log + + Invalid -proxy address: '%s' + - Send trace/debug info to debugger - + Invalid -tor address: '%s' + - - Set maximum block size in bytes (default: 250000) - + + Cannot resolve -bind address: '%s' + - - Set minimum block size in bytes (default: 0) - + + Failed to listen on any port. Use -listen=0 if you want this. + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Cannot resolve -externalip address: '%s' + - - Specify connection timeout in milliseconds (default: 5000) - + + Invalid amount for -reservebalance=<amount> + - + Unable to sign checkpoint, wrong checkpointkey? - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Loading block index... + Загружаем індэкс блокаў... - - Username for JSON-RPC connections - Імя карыстальника для JSON-RPC злучэнняў + + Error loading blkindex.dat + - - Verifying database integrity... - + + Loading wallet... + Загружаем гаманец... - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Error loading wallet.dat: Wallet corrupted + Памылка загрузкі wallet.dat: гаманец пашкоджаны - Warning: Disk space is low! - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - - Warning: This version is obsolete, upgrade required! - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - wallet.dat corrupt, salvage failed - + + Wallet needed to be rewritten: restart BitBean to complete + - - Password for JSON-RPC connections - Пароль для JSON-RPC злучэнняў + + Error loading wallet.dat + Памылка загрузкі wallet.dat - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Cannot downgrade wallet + - - Find peers using internet relay chat (default: 0) - + + Cannot initialize keypool + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Cannot write default address + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Rescanning... + Перасканаванне... - - Allow JSON-RPC connections from specified IP address - Дазволіць JSON-RPC злучэнні з пэўнага IP адрасу + + Importing blockchain data file. + - Send commands to node running on <ip> (default: 127.0.0.1) - Адпраўляць каманды вузлу на <ip> (зыходна: 127.0.0.1) + Importing bootstrap blockchain data file. + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Выканаць каманду калі лепшы блок зменіцца (%s замяняецца на хэш блока) + Loading addresses... + Загружаем адрасы... - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + + Error: could not start node + - - Require a confirmations for change (default: 0) - + + Done loading + Загрузка выканана - Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Unable to bind to %s on this computer. BitBean is probably already running. + - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Upgrade wallet to latest format - Абнавіць гаманец на новы фармат + + Error: Wallet locked, unable to create transaction + - Set key pool size to <n> (default: 100) - Устанавіць памер фонда ключоў у <n> (тыпова: 100) + Error: Wallet unlocked for staking only, unable to create transaction. + - Rescan the block chain for missing wallet transactions - Перасканаваць ланцуг блокаў дзеля пошуку адсутных транзакцый + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - How many blocks to check at startup (default: 2500, 0 = all) - + + Error: Transaction creation failed + - How thorough the block verification is (0-6, default: 1) - + Sending... + - Imports blocks from external blk000?.dat file - + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Use OpenSSL (https) for JSON-RPC connections - Ужываць OpenSSL (https) для JSON-RPC злучэнняў + + Invalid amount + Памылковая колькасць - Server certificate file (default: server.cert) - Файл-сертыфікат сервера (зыходна: server.cert) + Insufficient funds + Недастаткова сродкаў - Server private key (default: server.pem) - Прыватны ключ сервера (зыходна: server.pem) + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + + Warning: This version is obsolete, upgrade required! + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: Disk space is low! + - - This help message - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Wallet %s resides outside data directory %s. - + Usage: + Ужыванне: - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + List commands + Спіс каманд - - BitBean - + Get help for a command + Атрымаць дапамогу для каманды - - Unable to bind to %s on this computer (bind returned error %d, %s) - + Options: + Опцыі: - - Connect through socks proxy - + Specify data directory + Вызначыць каталог даных - - Allow DNS lookups for -addnode, -seednode and -connect - + Set database cache size in megabytes (default: 25) + Пазначыць памер кэшу базы звестак у мегабайтах (тыпова: 25) - - Loading addresses... - Загружаем адрасы... + Maintain at most <n> connections to peers (default: 125) + Трымаць не больш за <n> злучэнняў на асобу (зыходна: 125) - - Error loading blkindex.dat - + Threshold for disconnecting misbehaving peers (default: 100) + Парог для адлучэння злаўмысных карыстальнікаў (тыпова: 100) - - Error loading wallet.dat: Wallet corrupted - Памылка загрузкі wallet.dat: гаманец пашкоджаны + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Колькасць секунд для ўстрымання асобаў да перадалучэння (заходна: 86400) - - Error loading wallet.dat: Wallet requires newer version of BitBean - + Accept command line and JSON-RPC commands + Прымаць камандны радок і JSON-RPC каманды - - Wallet needed to be rewritten: restart BitBean to complete - + Run in the background as a daemon and accept commands + Запусціць у фоне як дэман і прымаць каманды - - Error loading wallet.dat - Памылка загрузкі wallet.dat + Use the test network + Ужываць тэставае сеціва - - Invalid -proxy address: '%s' - + Send trace/debug info to console instead of debug.log file + Слаць trace/debug звесткі ў кансоль замест файла debug.log - - Unknown network specified in -onlynet: '%s' - + Username for JSON-RPC connections + Імя карыстальника для JSON-RPC злучэнняў - - Unknown -socks proxy version requested: %i - + Password for JSON-RPC connections + Пароль для JSON-RPC злучэнняў - - Cannot resolve -bind address: '%s' - + Allow JSON-RPC connections from specified IP address + Дазволіць JSON-RPC злучэнні з пэўнага IP адрасу - - Cannot resolve -externalip address: '%s' - + Send commands to node running on <ip> (default: 127.0.0.1) + Адпраўляць каманды вузлу на <ip> (зыходна: 127.0.0.1) - - Invalid amount for -paytxfee=<amount>: '%s' - + Execute command when the best block changes (%s in cmd is replaced by block hash) + Выканаць каманду калі лепшы блок зменіцца (%s замяняецца на хэш блока) - - Error: could not start node - + Upgrade wallet to latest format + Абнавіць гаманец на новы фармат - - Sending... - + Set key pool size to <n> (default: 100) + Устанавіць памер фонда ключоў у <n> (тыпова: 100) - - Invalid amount - Памылковая колькасць + Rescan the block chain for missing wallet transactions + Перасканаваць ланцуг блокаў дзеля пошуку адсутных транзакцый - - Insufficient funds - Недастаткова сродкаў + Use OpenSSL (https) for JSON-RPC connections + Ужываць OpenSSL (https) для JSON-RPC злучэнняў - - Loading block index... - Загружаем індэкс блокаў... + Server certificate file (default: server.cert) + Файл-сертыфікат сервера (зыходна: server.cert) - - Add a node to connect to and attempt to keep the connection open - + Server private key (default: server.pem) + Прыватны ключ сервера (зыходна: server.pem) - - Unable to bind to %s on this computer. BitBean is probably already running. - + Loading addresses... + Загружаем адрасы... - - Fee per KB to add to transactions you send - + Error loading wallet.dat: Wallet corrupted + Памылка загрузкі wallet.dat: гаманец пашкоджаны - - Invalid amount for -mininput=<amount>: '%s' - + Error loading wallet.dat + Памылка загрузкі wallet.dat - - Loading wallet... - Загружаем гаманец... + Invalid amount + Памылковая колькасць - - Cannot downgrade wallet - + Insufficient funds + Недастаткова сродкаў - - Cannot initialize keypool - + Loading block index... + Загружаем індэкс блокаў... - - Cannot write default address - + Loading wallet... + Загружаем гаманец... - 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.qm b/src/qt/locale/bitbean_bg.qm similarity index 53% rename from src/qt/locale/bitcoin_bg.qm rename to src/qt/locale/bitbean_bg.qm index c2009fd..18f5167 100644 Binary files a/src/qt/locale/bitcoin_bg.qm and b/src/qt/locale/bitbean_bg.qm differ diff --git a/src/qt/locale/bitcoin_bg.ts b/src/qt/locale/bitbean_bg.ts similarity index 60% rename from src/qt/locale/bitcoin_bg.ts rename to src/qt/locale/bitbean_bg.ts index 90d1144..6124dd2 100644 --- a/src/qt/locale/bitcoin_bg.ts +++ b/src/qt/locale/bitbean_bg.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Това е експериментален софтуер. Разпространява се под MIT/X11 софтуерен лиценз, виж COPYING или http://www.opensource.org/licenses/mit-license.php. @@ -37,72 +49,72 @@ This product includes software developed by the OpenSSL Project for use in the O AddressBookPage - + Address Book - + - + Double-click to edit address or label Двоен клик за редакция на адрес или име - + Create a new address Създаване на нов адрес - + Copy the currently selected address to the system clipboard Копирай избрания адрес - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &Копирай - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list Изтрий избрания адрес от списъка - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + &Провери - + &Delete &Изтрий @@ -119,7 +131,7 @@ This product includes software developed by the OpenSSL Project for use in the O Export Address Book Data - + @@ -129,12 +141,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -158,34 +170,34 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog - + - + Enter passphrase Въведи парола - + New passphrase Нова парола - + Repeat new passphrase Още веднъж - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -234,24 +246,29 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + @@ -260,12 +277,7 @@ This product includes software developed by the OpenSSL Project for use in the O Портфейлът е криптиран - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -307,333 +319,585 @@ This product includes software developed by the OpenSSL Project for use in the O - BitcoinGUI - - - Sign &message... - Подписване на &съобщение... - + BeanControlDialog - - Synchronizing with network... - Синхронизиране с мрежата... + + Bean Control + - - &Overview - &Баланс + + Quantity: + - - Show general overview of wallet - Обобщена информация за портфейла + + Bytes: + - - &Transactions - &Транзакции + + Amount: + Сума: - - Browse transaction history - История на транзакциите + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - Из&ход + + Tree mode + - - Quit application - Изход от приложението + + List mode + - - Show information about BitBean - + + Amount + Сума - - About &Qt - За &Qt + + Label + Име - - Show information about Qt - Покажи информация за Qt + + Address + Адрес - - &Options... - &Опции... + + Date + Дата - - &Encrypt Wallet... - &Криптиране на портфейла... + + Confirmations + - &Backup Wallet... - &Запазване на портфейла... + Confirmed + Потвърдени - - &Change Passphrase... - &Смяна на паролата... - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Копирай адрес - - &Export... - + + Copy label + Копирай име - - Send coins to a BitBean address - + + + Copy amount + Копирай сума - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - Променя паролата за портфейла + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - &Проверка на съобщение... + + Copy change + - - BitBean - + + highest + - - Wallet - Портфейл + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Файл + + DUST + - - &Settings - &Настройки + + yes + - - &Help - &Помощ + + no + - - Tabs toolbar - Раздели + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (без име) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + &Баланс - - - %n second(s) ago - + + + Show general overview of wallet + Обобщена информация за портфейла - - &Unlock Wallet... - + + &Send Beans + - - - %n minute(s) ago - + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Транзакции + + + + Browse transaction history + История на транзакциите + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + Из&ход + + + + Quit application + Изход от приложението + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + За &Qt + + + + Show information about Qt + Покажи информация за Qt + + + + &Options... + &Опции... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + + + + + &Encrypt Wallet... + &Криптиране на портфейла... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &Запазване на портфейла... + + + + Backup wallet to another location + + + + + &Change Passphrase... + &Смяна на паролата... + + + + Change the passphrase used for wallet encryption + Променя паролата за портфейла + + + + &Unlock Wallet... + + + + + Unlock wallet + Отключване на портфейла + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Подписване на &съобщение... + + + + &Verify message... + &Проверка на съобщение... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + + + + + Open debugging and diagnostic console + + + + + &File + &Файл + + + + &Settings + &Настройки + + + + &Help + &Помощ + + + + Tabs toolbar + Раздели + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + Синхронизиране с мрежата... + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + %n minute(s) ago + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - Синхронизиран + Синхронизиран Catching up... - Зарежда блокове... + Зарежда блокове... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Изходяща транзакция + Изходяща транзакция Incoming transaction - Входяща транзакция + Входяща транзакция @@ -642,347 +906,279 @@ Amount: %2 Type: %3 Address: %4 - + URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Портфейлът е <b>криптиран</b> и <b>отключен</b> + Портфейлът е <b>криптиран</b> и <b>отключен</b> Wallet is <b>encrypted</b> and currently <b>locked</b> - Портфейлът е <b>криптиран</b> и <b>заключен</b> + Портфейлът е <b>криптиран</b> и <b>заключен</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - + + + + %n day(s) - + + + + - - Not staking - - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - - - - - ClientModel - - - Network Alert - - - - - CoinControlDialog - - - Coin Control - - - - - Quantity: - - - - - Bytes: - - - - - Amount: - Сума: + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - Priority: - + + Not staking because wallet is locked + - - Fee: - + + Not staking because wallet is offline + - - Low Output: - + + Not staking because wallet is syncing + - - no - + + Not staking because you don't have mature beans + - - After Fee: - + + Not staking + + + + BitcoinGUI - - Change: - + Sign &message... + Подписване на &съобщение... - - (un)select all - + Synchronizing with network... + Синхронизиране с мрежата... - - Tree mode - + &Overview + &Баланс - - List mode - + Show general overview of wallet + Обобщена информация за портфейла - - Amount - Сума + &Transactions + &Транзакции - - Label - + Browse transaction history + История на транзакциите - - Address - Адрес + E&xit + Из&ход - - Date - Дата + Quit application + Изход от приложението - - Confirmations - + About &Qt + За &Qt - - Confirmed - Потвърдени + Show information about Qt + Покажи информация за Qt - - Priority - + &Options... + &Опции... - - Copy address - Копирай адрес + &Encrypt Wallet... + &Криптиране на портфейла... - - Copy label - Копирай име + &Backup Wallet... + &Запазване на портфейла... - - - Copy amount - Копирай сума + &Change Passphrase... + &Смяна на паролата... - - Copy transaction ID - + Change the passphrase used for wallet encryption + Променя паролата за портфейла - - Copy quantity - + &Verify message... + &Проверка на съобщение... - - Copy fee - + Wallet + Портфейл - - Copy after fee - + &File + &Файл - - Copy bytes - + &Settings + &Настройки - - Copy priority - + &Help + &Помощ - - - Copy low output - + + Tabs toolbar + Раздели - - Copy change - + [testnet] + [testnet] - - highest - + Up to date + Синхронизиран - - high - + Catching up... + Зарежда блокове... - - medium-high - + Sent transaction + Изходяща транзакция - - medium - + Incoming transaction + Входяща транзакция - - low-medium - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Портфейлът е <b>криптиран</b> и <b>отключен</b> - - low - + Wallet is <b>encrypted</b> and currently <b>locked</b> + Портфейлът е <b>криптиран</b> и <b>заключен</b> + + + ClientModel - - lowest - + + Network Alert + + + + CoinControlDialog - - DUST - + Amount: + Сума: - - yes - + Amount + Сума - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Address + Адрес - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Date + Дата - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Confirmed + Потвърдени - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy address + Копирай адрес - - - (no label) - (без име) + Copy label + Копирай име - - change from %1 (%2) - + Copy amount + Копирай сума - - (change) - + (no label) + (без име) EditAddressDialog - + Edit Address Редактиране на адрес @@ -994,7 +1190,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1004,7 +1200,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1034,7 +1230,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1050,98 +1246,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Използване: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Опции - + &Main &Основни - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee &Такса за изходяща транзакция - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1151,7 +1347,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1161,42 +1357,42 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &Port: - + Port of the proxy (e.g. 9050) - + SOCKS &Version: - + SOCKS version of the proxy (e.g. 5) - + @@ -1236,7 +1432,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1245,60 +1441,64 @@ This label turns red, if the priority is smaller than "medium". - Choose the default subdivision unit to show in the interface and when sending coins. - Изберете единиците, показвани по подразбиране в интерфейса. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - Показвай и адресите в списъка с транзакции + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + Choose the default subdivision unit to show in the interface and when sending coins. + Изберете единиците, показвани по подразбиране в интерфейса. + + + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + Показвай и адресите в списъка с транзакции - + &OK - + &Cancel - + &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + @@ -1309,78 +1509,150 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Форма - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - Портфейл + Портфейл - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: - + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + - Mined balance that has not yet matured - + Bean Stalk Height: + - - Total: - + + Sprouting Difficulty: + - - Your current total balance - + + Bean Weight: + - - <b>Recent transactions</b> - <b>Последни транзакции</b> + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + Total: + - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Recent transactions</b> + <b>Последни транзакции</b> - + out of sync несинхронизиран @@ -1389,67 +1661,67 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Сума: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1468,22 +1740,22 @@ This label turns red, if the priority is smaller than "medium". Client version - + &Information - + Using OpenSSL version - + Startup time - + @@ -1493,82 +1765,82 @@ This label turns red, if the priority is smaller than "medium". Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1578,7 +1850,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1588,63 +1860,63 @@ This label turns red, if the priority is smaller than "medium". Type <b>help</b> for an overview of available commands. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Изпращане + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - Сума: + Сума: @@ -1652,272 +1924,358 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Изпращане към повече от един получател + Изпращане към повече от един получател Add &Recipient - Добави &получател + Добави &получател Remove all transaction fields - + Clear &All - &Изчисти + &Изчисти Balance: - Баланс: + Баланс: 123.456 BC - + Confirm the send action - Потвърдете изпращането + Потвърдете изпращането S&end - И&зпрати + И&зпрати - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - Копирай сума + Копирай сума Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - Потвърждаване + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Duplicate address found, can only send to each address once per send operation. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (без име) + (без име) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Форма - + A&mount: - С&ума: + С&ума: Pay &To: - Плати &На: + Плати &На: - + Enter a label for this address to add it to your address book - Въведете име за този адрес, за да го добавите в списъка с адреси + Въведете име за този адрес, за да го добавите в списъка с адреси &Label: - &Име: + &Име: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Вмъкни от клипборда + Alt+P + Alt+P + + + + Remove this recipient + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Send Coins + Изпращане + + + Amount: + Сума: + + + Send to multiple recipients at once + Изпращане към повече от един получател + + + Add &Recipient + Добави &получател + + + Clear &All + &Изчисти + + + Balance: + Баланс: + + + Confirm the send action + Потвърдете изпращането + + + S&end + И&зпрати + + + Copy amount + Копирай сума + + + Confirm send coins + Потвърждаване + + + The recipient address is not valid, please recheck. + Невалиден адрес на получателя. + + + The amount to pay must be larger than 0. + Сумата трябва да е по-голяма от 0. + + + (no label) + (без име) + + + + SendCoinsEntry + + A&mount: + С&ума: + + + Pay &To: + Плати &На: + + + Enter a label for this address to add it to your address book + Въведете име за този адрес, за да го добавите в списъка с адреси + + + &Label: + &Име: + + Alt+A - Alt+A + Alt+A - Paste address from clipboard - Вмъкни от клипборда + Вмъкни от клипборда - Alt+P - Alt+P - - - - Remove this recipient - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message Подпиши / Провери съобщение @@ -1935,13 +2293,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1972,12 +2330,12 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + Reset all sign message fields - + @@ -1994,28 +2352,28 @@ This label turns red, if the priority is smaller than "medium". 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2025,7 +2383,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2045,12 +2403,12 @@ This label turns red, if the priority is smaller than "medium". The entered address does not refer to a key. - + Wallet unlock was cancelled. - + @@ -2104,12 +2462,15 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + conflicted - + @@ -2134,7 +2495,10 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - + + + + @@ -2187,12 +2551,15 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - + + + + not accepted - + @@ -2229,13 +2596,13 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + @@ -2245,7 +2612,7 @@ This label turns red, if the priority is smaller than "medium". Inputs - + @@ -2276,7 +2643,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Транзакция @@ -2321,32 +2688,35 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2376,12 +2746,16 @@ This label turns red, if the priority is smaller than "medium". Payment to yourself - + + SPROUT + + + Mined - Емитирани + Емитирани @@ -2505,7 +2879,7 @@ This label turns red, if the priority is smaller than "medium". Copy transaction ID - + @@ -2515,12 +2889,12 @@ This label turns red, if the priority is smaller than "medium". Show transaction details - + Export Transaction Data - + @@ -2565,12 +2939,12 @@ This label turns red, if the priority is smaller than "medium". Error exporting - + Could not write to file %1. - + @@ -2588,693 +2962,796 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core + + + To use the %s option + + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Грешка + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + + - + BitBean version - + Usage: - Използване: + Използване: Send command to -server or BitBeand - + List commands - Вписване на команди + Вписване на команди Get help for a command - Получете помощ за команда + Получете помощ за команда - + + BitBean + + + + Options: - Опции: + Опции: - + + This help message + Това помощно съобщение + + + Specify configuration file (default: BitBean.conf) - + Specify pid file (default: BitBeand.pid) - + - - Specify wallet file (within data directory) - + + Specify data directory + Определете директория за данните - - Specify data directory - Определете директория за данните + + Specify wallet file (within data directory) + - + Set database cache size in megabytes (default: 25) - + Set database disk log size in megabytes (default: 100) - + - + + Specify connection timeout in milliseconds (default: 5000) + + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) - + Maintain at most <n> connections to peers (default: 125) - + - + + Add a node to connect to and attempt to keep the connection open + + + + + Connect only to the specified node(s) + + + + Connect to a node to retrieve peer addresses, and disconnect - + Specify your own public address - + - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + + Discover own IP address (default: 1 when listening and no -externalip) + + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 - + - - Stake your coins to support network and gain reward (default: 1) - + + Find peers using DNS lookup (default: 1) + - + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + Threshold for disconnecting misbehaving peers (default: 100) - Праг на прекъсване на връзката при непорядъчно държащи се пиъри (по подразбиране:100) + Праг на прекъсване на връзката при непорядъчно държащи се пиъри (по подразбиране:100) Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Брой секунди до възтановяване на връзката за зле държащите се пиъри (по подразбиране:86400) + Брой секунди до възтановяване на връзката за зле държащите се пиъри (по подразбиране:86400) - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Detach block and address databases. Increases shutdown time (default: 0) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - 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. - + + Use UPnP to map the listening port (default: 1 when listening) + - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Use UPnP to map the listening port (default: 0) + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - + Accept command line and JSON-RPC commands - + - - Error: Transaction creation failed - + + Run in the background as a daemon and accept commands + - - Error: Wallet locked, unable to create transaction - + + Use the test network + Използвайте тестовата мрежа - - Importing blockchain data file. - + + Output extra debugging information. Implies all other -debug* options + - Importing bootstrap blockchain data file. - + Output extra network debugging information + - - Run in the background as a daemon and accept commands - + + Prepend debug output with timestamp + - Use the test network - Използвайте тестовата мрежа + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Send trace/debug info to console instead of debug.log file + Изпрати локализиращата или дебъг информацията към конзолата, вместо файлът debug.log - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Send trace/debug info to debugger + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Username for JSON-RPC connections + Потребителско име за JSON-RPC връзките - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Password for JSON-RPC connections + Парола за JSON-RPC връзките - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Allow JSON-RPC connections from specified IP address + Разреши JSON-RPC връзките от отучнен IP адрес - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Send commands to node running on <ip> (default: 127.0.0.1) + Изпрати команди до възел функциониращ на <ip> (По подразбиране: 127.0.0.1) - - 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. - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + - - Block creation options: - + + Require a confirmations for change (default: 0) + - - Connect only to the specified node(s) - + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - - Discover own IP address (default: 1 when listening and no -externalip) - + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - - Failed to listen on any port. Use -listen=0 if you want this. - + + Upgrade wallet to latest format + - - Find peers using DNS lookup (default: 1) - + + Set key pool size to <n> (default: 100) + - - Sync checkpoints policy (default: strict) - + + Rescan the block chain for missing wallet transactions + Повторно сканиране на блок-връзка за липсващи портефейлни транзакции - - Invalid -tor address: '%s' - + + Attempt to recover private keys from a corrupt wallet.dat + - - Invalid amount for -reservebalance=<amount> - + + How many blocks to check at startup (default: 2500, 0 = all) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + How thorough the block verification is (0-6, default: 1) + + + + + Imports blocks from external blk000?.dat file + + + + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Set maximum block size in bytes (default: 250000) + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Output extra debugging information. Implies all other -debug* options - + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - Output extra network debugging information - + Use OpenSSL (https) for JSON-RPC connections + Използвайте OpenSSL (https) за JSON-RPC връзките - Prepend debug output with timestamp - + Server certificate file (default: server.cert) + Сертификатен файл на сървъра (По подразбиране:server.cert) - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Server private key (default: server.pem) + Поверителен ключ за сървъра (default: server.pem) - - Select the version of socks proxy to use (4-5, default: 5) - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Send trace/debug info to console instead of debug.log file - Изпрати локализиращата или дебъг информацията към конзолата, вместо файлът debug.log + + Invalid amount for -paytxfee=<amount>: '%s' + - Send trace/debug info to debugger - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - Set maximum block size in bytes (default: 250000) - + + Invalid amount for -mininput=<amount>: '%s' + - - Set minimum block size in bytes (default: 0) - + + Wallet %s resides outside data directory %s. + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Specify connection timeout in milliseconds (default: 5000) - + + Verifying database integrity... + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Use UPnP to map the listening port (default: 0) - + + 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. + - - Use UPnP to map the listening port (default: 1 when listening) - + + wallet.dat corrupt, salvage failed + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Unknown -socks proxy version requested: %i + - - Username for JSON-RPC connections - Потребителско име за JSON-RPC връзките + + Unknown network specified in -onlynet: '%s' + - - Verifying database integrity... - + + Invalid -proxy address: '%s' + Невалиден -proxy address: '%s' - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Invalid -tor address: '%s' + - Warning: Disk space is low! - + Cannot resolve -bind address: '%s' + - - Warning: This version is obsolete, upgrade required! - + + Failed to listen on any port. Use -listen=0 if you want this. + - - wallet.dat corrupt, salvage failed - + + Cannot resolve -externalip address: '%s' + - - Password for JSON-RPC connections - Парола за JSON-RPC връзките + + Invalid amount for -reservebalance=<amount> + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + Unable to sign checkpoint, wrong checkpointkey? - - - - - Find peers using internet relay chat (default: 0) - + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Loading block index... + Зареждане на блок индекса... - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Error loading blkindex.dat + - - Allow JSON-RPC connections from specified IP address - Разреши JSON-RPC връзките от отучнен IP адрес + + Loading wallet... + Зареждане на портфейла... - Send commands to node running on <ip> (default: 127.0.0.1) - Изпрати команди до възел функциониращ на <ip> (По подразбиране: 127.0.0.1) + Error loading wallet.dat: Wallet corrupted + - Execute command when the best block changes (%s in cmd is replaced by block hash) - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Require a confirmations for change (default: 0) - + + Wallet needed to be rewritten: restart BitBean to complete + - Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Error loading wallet.dat + - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + + Cannot downgrade wallet + - - Upgrade wallet to latest format - + + Cannot initialize keypool + - Set key pool size to <n> (default: 100) - + Cannot write default address + - Rescan the block chain for missing wallet transactions - Повторно сканиране на блок-връзка за липсващи портефейлни транзакции + Rescanning... + Преразглеждане на последовтелността от блокове... - - How many blocks to check at startup (default: 2500, 0 = all) - + + Importing blockchain data file. + - How thorough the block verification is (0-6, default: 1) - + Importing bootstrap blockchain data file. + - Imports blocks from external blk000?.dat file - + Loading addresses... + Зареждане на адресите... - - Use OpenSSL (https) for JSON-RPC connections - Използвайте OpenSSL (https) за JSON-RPC връзките + + Error: could not start node + - Server certificate file (default: server.cert) - Сертификатен файл на сървъра (По подразбиране:server.cert) + Done loading + Зареждането е завършено - Server private key (default: server.pem) - Поверителен ключ за сървъра (default: server.pem) + Unable to bind to %s on this computer. BitBean is probably already running. + + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + Error: Wallet locked, unable to create transaction + - + Error: Wallet unlocked for staking only, unable to create transaction. - + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - This help message - Това помощно съобщение + + Error: Transaction creation failed + - - Wallet %s resides outside data directory %s. - + + Sending... + - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - BitBean - + + Invalid amount + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Insufficient funds + - - Connect through socks proxy - + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - Allow DNS lookups for -addnode, -seednode and -connect - + Warning: This version is obsolete, upgrade required! + - - Loading addresses... - Зареждане на адресите... + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Error loading blkindex.dat - + + Warning: Disk space is low! + - - Error loading wallet.dat: Wallet corrupted - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Error loading wallet.dat: Wallet requires newer version of BitBean - + Usage: + Използване: - - Wallet needed to be rewritten: restart BitBean to complete - + List commands + Вписване на команди - - Error loading wallet.dat - + Get help for a command + Получете помощ за команда - - Invalid -proxy address: '%s' - Невалиден -proxy address: '%s' + Options: + Опции: - - Unknown network specified in -onlynet: '%s' - + Specify data directory + Определете директория за данните - - Unknown -socks proxy version requested: %i - + Threshold for disconnecting misbehaving peers (default: 100) + Праг на прекъсване на връзката при непорядъчно държащи се пиъри (по подразбиране:100) - - Cannot resolve -bind address: '%s' - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Брой секунди до възтановяване на връзката за зле държащите се пиъри (по подразбиране:86400) - - Cannot resolve -externalip address: '%s' - + Use the test network + Използвайте тестовата мрежа - - Invalid amount for -paytxfee=<amount>: '%s' - + Send trace/debug info to console instead of debug.log file + Изпрати локализиращата или дебъг информацията към конзолата, вместо файлът debug.log - - Error: could not start node - + Username for JSON-RPC connections + Потребителско име за JSON-RPC връзките - - Sending... - + Password for JSON-RPC connections + Парола за JSON-RPC връзките - - Invalid amount - + Allow JSON-RPC connections from specified IP address + Разреши JSON-RPC връзките от отучнен IP адрес - - Insufficient funds - + Send commands to node running on <ip> (default: 127.0.0.1) + Изпрати команди до възел функциониращ на <ip> (По подразбиране: 127.0.0.1) - - Loading block index... - Зареждане на блок индекса... + Rescan the block chain for missing wallet transactions + Повторно сканиране на блок-връзка за липсващи портефейлни транзакции - - Add a node to connect to and attempt to keep the connection open - + Use OpenSSL (https) for JSON-RPC connections + Използвайте OpenSSL (https) за JSON-RPC връзките - - Unable to bind to %s on this computer. BitBean is probably already running. - + Server certificate file (default: server.cert) + Сертификатен файл на сървъра (По подразбиране:server.cert) - - Fee per KB to add to transactions you send - + Server private key (default: server.pem) + Поверителен ключ за сървъра (default: server.pem) - - Invalid amount for -mininput=<amount>: '%s' - + This help message + Това помощно съобщение - - Loading wallet... - Зареждане на портфейла... + Loading addresses... + Зареждане на адресите... - - Cannot downgrade wallet - + Invalid -proxy address: '%s' + Невалиден -proxy address: '%s' - - Cannot initialize keypool - + Loading block index... + Зареждане на блок индекса... - - Cannot write default address - + Loading wallet... + Зареждане на портфейла... - 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.qm b/src/qt/locale/bitbean_bs.qm similarity index 84% rename from src/qt/locale/bitcoin_bs.qm rename to src/qt/locale/bitbean_bs.qm index 89a73a4..9a64ab8 100644 Binary files a/src/qt/locale/bitcoin_bs.qm and b/src/qt/locale/bitbean_bs.qm differ diff --git a/src/qt/locale/bitcoin_hr.ts b/src/qt/locale/bitbean_bs.ts similarity index 60% rename from src/qt/locale/bitcoin_hr.ts rename to src/qt/locale/bitbean_bs.ts index e62b262..5568ad6 100644 --- a/src/qt/locale/bitcoin_hr.ts +++ b/src/qt/locale/bitbean_bs.ts @@ -1,135 +1,138 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + Double-click to edit address or label - Dvostruki klik za uređivanje adrese ili oznake + - + Create a new address - Dodajte novu adresu + - + Copy the currently selected address to the system clipboard - Kopiraj trenutno odabranu adresu u međuspremnik + - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - &Kopirati adresu + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete - &Brisanje + Copy &Label - Kopirati &oznaku + &Edit - &Izmjeniti + Export Address Book Data - + Comma separated file (*.csv) - Datoteka vrijednosti odvojenih zarezom (*. csv) + Error exporting - + Could not write to file %1. - + @@ -137,1318 +140,1418 @@ This product includes software developed by the OpenSSL Project for use in the O Label - Oznaka + Address - Adresa + (no label) - (bez oznake) + AskPassphraseDialog - + Passphrase Dialog - + - + Enter passphrase - Unesite lozinku + - + New passphrase - Nova lozinka + - + Repeat new passphrase - Ponovite novu lozinku + - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - 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 COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - Jeste li sigurni da želite šifrirati svoj novčanik? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - Upozorenje: Tipka Caps Lock je uključena! + Wallet encrypted - Novčanik šifriran - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - + - + 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. + - BitcoinGUI - - - Sign &message... - &Potpišite poruku... - + BeanControlDialog - - Synchronizing with network... - Usklađivanje s mrežom ... + + Bean Control + - - &Overview - &Pregled + + Quantity: + - - Show general overview of wallet - Prikaži opći pregled novčanika + + Bytes: + - - &Transactions - &Transakcije + + Amount: + - - Browse transaction history - Pretraži povijest transakcija + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - &Izlaz + + Tree mode + - - Quit application - Izlazak iz programa + + List mode + - - Show information about BitBean - + + Amount + - - About &Qt - Više o &Qt + + Label + - - Show information about Qt - Prikaži informacije o Qt + + Address + - - &Options... - &Postavke + + Date + - - &Encrypt Wallet... - &Šifriraj novčanik... + + Confirmations + - &Backup Wallet... - &Backup novčanika... + Confirmed + - - &Change Passphrase... - &Promijena lozinke... - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - Napravite sigurnosnu kopiju novčanika na drugoj lokaciji + + Copy after fee + - - Change the passphrase used for wallet encryption - Promijenite lozinku za šifriranje novčanika + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - &Potvrdite poruku... + + Copy change + - - BitBean - + + highest + - - Wallet - Novčanik + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Datoteka + + DUST + - - &Settings - &Konfiguracija + + yes + - - &Help - &Pomoć + + no + - - Tabs toolbar - Traka kartica + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + - - - %n second(s) ago - + + + Show general overview of wallet + - - &Unlock Wallet... - + + &Send Beans + - - - %n minute(s) ago - - - - - %n hour(s) ago - - - - - %n day(s) ago - + + + Send Beans to a BitBean address + - - Up to date - Ažurno + + &Receive Beans + - - Catching up... - Ažuriranje... + + Show the list of addresses for receiving payments + - - Last received block was generated %1. - + + &Transactions + - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + + Browse transaction history + - Confirm transaction fee - + &Address Book + - - Sent transaction - Poslana transakcija + + Edit the list of stored addresses and labels + - - Incoming transaction - Dolazna transakcija + + E&xit + - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Datum:%1 -Iznos:%2 -Tip:%3 -Adresa:%4 - + Quit application + - - - URI handling - + + &About BitBean + - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + + Show information about BitBean + - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Novčanik je <b>šifriran</b> i trenutno <b>otključan</b> + + About &Qt + - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Novčanik je <b>šifriran</b> i trenutno <b>zaključan</b> + + Show information about Qt + - - Backup Wallet - + + &Options... + - - Wallet Data (*.dat) - + + Modify configuration options for BitBean + - - Backup Failed - + + &Show / Hide + - - There was an error trying to save the wallet data to the new location. - - - - - %n second(s) - - - - - %n minute(s) - - - - - %n hour(s) - - - - - %n day(s) - + + &Encrypt Wallet... + - - Not staking - + + Encrypt or decrypt wallet + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + &Backup Wallet... + - - - ClientModel - - Network Alert - + + Backup wallet to another location + - - - CoinControlDialog - - Coin Control - + + &Change Passphrase... + - - Quantity: - + + Change the passphrase used for wallet encryption + - - Bytes: - + + &Unlock Wallet... + - - Amount: - Iznos: + + Unlock wallet + - - Priority: - + + &Lock Wallet + - - Fee: - + + Lock wallet + - - Low Output: - + + Sign &message... + - - no - + + &Verify message... + - - After Fee: - + + &Export... + - - Change: - + + Export the data in the current tab to a file + - - (un)select all - + + &Debug window + - - Tree mode - + + Open debugging and diagnostic console + - - List mode - + + &File + - - Amount - Iznos + + &Settings + - - Label - + + &Help + - - Address - Adresa + + Tabs toolbar + - - Date - Datum + + Actions toolbar + - - Confirmations - + + + [testnet] + - - Confirmed - Potvrđeno + + + BitBean client + - - - Priority - + + + %n active connection(s) to BitBean network + + + + + - - Copy address - Kopirati adresu + + Synchronizing with network... + - - - Copy label - Kopirati oznaku + + + ~%n block(s) remaining + + + + + - - - Copy amount - Kopiraj iznos + + Downloaded %1 of %2 blocks of transaction history (%3% done). + - - Copy transaction ID - + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + + %n minute(s) ago + + + + + + + + + %n hour(s) ago + + + + + + + + + %n day(s) ago + + + + + - - Copy quantity - + + Up to date + - - Copy fee - + + Catching up... + - - Copy after fee - + + Last received block was generated %1. + - - Copy bytes - + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + - - Copy priority - + + Confirm transaction fee + - - Copy low output - + + Sent transaction + - Copy change - + Incoming transaction + - - highest - + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + - - high - + + + URI handling + - - medium-high - + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + - - medium - + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + - - low-medium - + + Wallet is <b>encrypted</b> and currently <b>locked</b> + - - low - + + Backup Wallet + - - lowest - + + Wallet Data (*.dat) + - - DUST - + + Backup Failed + - yes - + There was an error trying to save the wallet data to the new location. + + + + + %n second(s) + + + + + + + + + %n minute(s) + + + + + + + + + %n hour(s) + + + + + + + + + %n day(s) + + + + + - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + + Not staking because wallet is locked + - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + + Not staking because wallet is offline + - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + + Not staking because wallet is syncing + - - - (no label) - (bez oznake) + + Not staking because you don't have mature beans + - - change from %1 (%2) - + + Not staking + + + + ClientModel - - (change) - + + Network Alert + EditAddressDialog - + Edit Address - Izmjeni adresu + &Label - &Oznaka + The label associated with this address book entry - + &Address - &Adresa + The address associated with this address book entry. This can only be modified for sending addresses. - + 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 BitBean address. - + Could not unlock wallet. - Ne mogu otključati novčanik. + New key generation failed. - Stvaranje novog ključa nije uspjelo. + GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options - Postavke + - + &Main - &Glavno + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - Plati &naknadu za transakciju + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - &Mreža + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - Mapiraj port koristeći &UPnP + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - Proxy &IP: + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &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 bitcoina koji će biti prikazan u sučelju i koji će se koristiti za plaćanje. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - &Prikaži adrese u popisu transakcija + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - &U redu + &Cancel - &Odustani + &Apply - + default - standardne vrijednosti + Warning - + This setting will take effect after restarting BitBean. - + The supplied proxy address is invalid. - + + + + + OverviewPage + + + Form + + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + + + + + Unconfirmed: + + + + + Spendable: + + + + + Your current spendable balance + + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - - OverviewPage - - Form - Oblik + + BitBean Network + - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Stalk Height: + - - Stake: - + + Sprouting Difficulty: + - - Unconfirmed: - + + Bean Weight: + - - Wallet - Novčanik + + Connections: + - - Spendable: - + + Total Beans: + - - Your current spendable balance - + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + - - Immature: - + + + + + + 0 + - - Mined balance that has not yet matured - + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + - - Total: - Ukupno: + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + - - Your current total balance - + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + - - <b>Recent transactions</b> - <b>Nedavne transakcije</b> + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + Total: + - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - Ime klijenta + @@ -1462,188 +1565,188 @@ This label turns red, if the priority is smaller than "medium". N/A - N/A + Client version - Verzija klijenta + &Information - &Informacija + Using OpenSSL version - Koristim OpenSSL verziju + Startup time - + Network - Mreža + Number of connections - Broj konekcija + On testnet - + 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 + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - &Konzola + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean 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 BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Slanje novca + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - Iznos: + @@ -1651,296 +1754,307 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Pošalji k nekoliko primatelja odjednom + Add &Recipient - &Dodaj primatelja + Remove all transaction fields - + Clear &All - Obriši &sve + Balance: - Stanje: + 123.456 BC - + Confirm the send action - Potvrdi akciju slanja + S&end - &Pošalji + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - Kopiraj iznos + Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - Potvrdi slanje novca + Confirm send beans + Are you sure you want to send %1? - + and - + 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. + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (bez oznake) + WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + - + A&mount: - &Iznos: + Pay &To: - &Primatelj plaćanja: + - + 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: + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Zalijepi adresu iz međuspremnika + Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsEntry + + Alt+A + Alt+A + + + Alt+P + Alt+P 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1951,7 +2065,7 @@ This label turns red, if the priority is smaller than "medium". Paste address from clipboard - Zalijepi adresu iz međuspremnika + @@ -1961,76 +2075,76 @@ This label turns red, if the priority is smaller than "medium". Enter the message you want to sign here - Upišite poruku koju želite potpisati ovdje + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2038,59 +2152,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2098,81 +2212,89 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - Otvoren do %1 + Open for %n block(s) - + + + + + 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 + @@ -2181,17 +2303,21 @@ This label turns red, if the priority is smaller than "medium". Credit - Uplaćeno + matures in %n more block(s) - + + + + + not accepted - Nije prihvaćeno + @@ -2199,90 +2325,90 @@ This label turns red, if the priority is smaller than "medium". Debit - Zaduženje + Transaction fee - Naknada za transakciju + Net amount - Neto iznos + Message - Poruka + Comment - Komentar + Transaction ID - ID transakcije + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 + unknown - nepoznato + TransactionDescDialog - + Transaction details - Detalji transakcije + This pane shows a detailed description of the transaction - Ova panela prikazuje detaljni opis transakcije + @@ -2290,127 +2416,131 @@ This label turns red, if the priority is smaller than "medium". Date - Datum + Type - Tip + Address - Adresa + Amount - Iznos + Open until %1 - Otvoren do %1 + Confirmed (%1 confirmations) - Potvrđen (%1 potvrda) + Open for %n more block(s) - + + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + 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 + Received with - Primljeno s + Received from - Primljeno od + Sent to - Poslano za + Payment to yourself - Plaćanje samom sebi + - Mined - Rudareno + SPROUT + (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. + @@ -2429,7 +2559,7 @@ This label turns red, if the priority is smaller than "medium". This week - Ovaj tjedan + @@ -2449,137 +2579,137 @@ This label turns red, if the priority is smaller than "medium". 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 Data - + Comma separated file (*.csv) - Datoteka podataka odvojenih zarezima (*.csv) + Confirmed - Potvrđeno + Date - Datum + Type - Tip + Label - Oznaka + Address - Adresa + Amount - Iznos + ID - ID + Error exporting - + Could not write to file %1. - + Range: - Raspon: + to - za + @@ -2587,693 +2717,693 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core - - BitBean version - + + To use the %s option + - Usage: - Upotreba: + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - + + Error + - List commands - Prikaži komande + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - Potraži pomoć za komandu + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - Postavke: + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - + + BitBean version + - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - Odredi direktorij za datoteke - - - - Set database cache size in megabytes (default: 25) - Postavi cache za bazu podataka u MB (zadano:25) + Usage: + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send command to -server or BitBeand + - 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 - + List commands + - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - - - - - Threshold for disconnecting misbehaving peers (default: 100) - Prag za odspajanje članova koji se čudno ponašaju (default: 100) + Get help for a command + - 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 - - - - - Detach block and address databases. Increases shutdown time (default: 0) - - - - - 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 - - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - - - - - Accept command line and JSON-RPC commands - Prihvati komande iz tekst moda i JSON-RPC + BitBean + - - Error: Transaction creation failed - + + Options: + - - Error: Wallet locked, unable to create transaction - + + This help message + - - Importing blockchain data file. - + + Specify configuration file (default: BitBean.conf) + - Importing bootstrap blockchain data file. - + Specify pid file (default: BitBeand.pid) + - - Run in the background as a daemon and accept commands - Izvršavaj u pozadini kao uslužnik i prihvaćaj komande + + Specify data directory + - Use the test network - Koristi test mrežu + Specify wallet file (within data directory) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Set database cache size in megabytes (default: 25) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Set database disk log size in megabytes (default: 100) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Specify connection timeout in milliseconds (default: 5000) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Connect through socks 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. + + Select the version of socks proxy to use (4-5, default: 5) + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Use proxy to reach tor hidden services (default: same as -proxy) + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Allow DNS lookups for -addnode, -seednode and -connect + - - 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. - + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Maintain at most <n> connections to peers (default: 125) + - - Block creation options: - Opcije za kreiranje bloka: + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node(s) - Poveži se samo sa određenim nodom - - - - Discover own IP address (default: 1 when listening and no -externalip) - - - - - Failed to listen on any port. Use -listen=0 if you want this. - - - - - Find peers using DNS lookup (default: 1) - + - - Sync checkpoints policy (default: strict) - + + Connect to a node to retrieve peer addresses, and disconnect + - - Invalid -tor address: '%s' - + + Specify your own public address + - - Invalid amount for -reservebalance=<amount> - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Discover own IP address (default: 1 when listening and no -externalip) + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Find peers using internet relay chat (default: 0) + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Output extra debugging information. Implies all other -debug* options - + + Bind to given address. Use [host]:port notation for IPv6 + - Output extra network debugging information - + Find peers using DNS lookup (default: 1) + - Prepend debug output with timestamp - + Stake your beans to support network and gain reward (default: 1) + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL postavke: (za detalje o podešavanju SSL opcija vidi Bitcoin Wiki) + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Select the version of socks proxy to use (4-5, default: 5) - + + Sync checkpoints policy (default: strict) + - - Send trace/debug info to console instead of debug.log file - Šalji trace/debug informacije na konzolu umjesto u debug.log datoteku + + Threshold for disconnecting misbehaving peers (default: 100) + - Send trace/debug info to debugger - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Set maximum block size in bytes (default: 250000) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Set minimum block size in bytes (default: 0) - Podesite minimalnu veličinu bloka u bajtovima (default: 0) + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Use UPnP to map the listening port (default: 1 when listening) + - - Specify connection timeout in milliseconds (default: 5000) - Odredi vremenski prozor za spajanje na mrežu u milisekundama (ugrađeni izbor: 5000) + + Use UPnP to map the listening port (default: 0) + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Use UPnP to map the listening port (default: 0) - Pokušaj koristiti UPnP da otvoriš port za uslugu (default: 0) + + Fee per KB to add to transactions you send + - - Use UPnP to map the listening port (default: 1 when listening) - Pokušaj koristiti UPnP da otvoriš port za uslugu (default: 1 when listening) + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Accept command line and JSON-RPC commands + - - Username for JSON-RPC connections - Korisničko ime za JSON-RPC veze + + Run in the background as a daemon and accept commands + - - Verifying database integrity... - + + Use the test network + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Output extra debugging information. Implies all other -debug* options + - Warning: Disk space is low! - + Output extra network debugging information + - - Warning: This version is obsolete, upgrade required! - + + Prepend debug output with timestamp + - - wallet.dat corrupt, salvage failed - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Password for JSON-RPC connections - Lozinka za JSON-RPC veze + + Send trace/debug info to console instead of debug.log file + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Send trace/debug info to debugger + - - Find peers using internet relay chat (default: 0) - + + Username for JSON-RPC connections + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Password for JSON-RPC connections + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - + 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) + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Require a confirmations for change (default: 0) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) - + 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 + - + + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) - + How thorough the block verification is (0-6, default: 1) - + Imports blocks from external blk000?.dat file - + - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + 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) + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Invalid amount for -paytxfee=<amount>: '%s' + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - This help message - Ova poruka za pomoć + + Invalid amount for -mininput=<amount>: '%s' + - + Wallet %s resides outside data directory %s. - + Cannot obtain a lock on data directory %s. BitBean is probably already running. - + - - BitBean - + + Verifying database integrity... + - - 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) + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect through socks proxy - + + 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. + - - Allow DNS lookups for -addnode, -seednode and -connect - Dozvoli DNS upite za dodavanje nodova i povezivanje + + wallet.dat corrupt, salvage failed + - - Loading addresses... - Učitavanje adresa... + + Unknown -socks proxy version requested: %i + - + + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Cannot resolve -externalip address: '%s' + + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - Greška kod učitavanja wallet.dat: Novčanik pokvaren + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - + Wallet needed to be rewritten: restart BitBean to complete - + Error loading wallet.dat - Greška kod učitavanja wallet.dat + - - Invalid -proxy address: '%s' - Nevaljala -proxy adresa: '%s' + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - + + Cannot write default address + - - Cannot resolve -bind address: '%s' - + + Rescanning... + - - Cannot resolve -externalip address: '%s' - + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - Nevaljali iznos za opciju -paytxfee=<amount>: '%s' + + Importing bootstrap blockchain data file. + - - Error: could not start node - + + Loading addresses... + - - Sending... - + + Error: could not start node + - - Invalid amount - Nevaljali iznos za opciju + + Done loading + - Insufficient funds - Nedovoljna sredstva + Unable to bind to %s on this computer. BitBean is probably already running. + - - Loading block index... - Učitavanje indeksa blokova... + + Unable to bind to %s on this computer (bind returned error %d, %s) + - - 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 + + Error: Wallet locked, unable to create transaction + - - Unable to bind to %s on this computer. BitBean is probably already running. - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Fee per KB to add to transactions you send - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: Transaction creation failed + - - Loading wallet... - Učitavanje novčanika... + + Sending... + - - Cannot downgrade wallet - Nije moguće novčanik vratiti na prijašnju verziju. + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Cannot initialize keypool - + + Invalid amount + - Cannot write default address - Nije moguće upisati zadanu adresu. + Insufficient funds + - Rescanning... - Rescaniranje + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Done loading - Učitavanje gotovo + + Warning: This version is obsolete, upgrade required! + - - To use the %s option - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Error - Greška + + Warning: Disk space is low! + - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ca.qm b/src/qt/locale/bitbean_ca.qm similarity index 60% rename from src/qt/locale/bitcoin_ca.qm rename to src/qt/locale/bitbean_ca.qm index 66cf381..c4ce714 100644 Binary files a/src/qt/locale/bitcoin_ca.qm and b/src/qt/locale/bitbean_ca.qm differ diff --git a/src/qt/locale/bitcoin_ca.ts b/src/qt/locale/bitbean_ca.ts similarity index 60% rename from src/qt/locale/bitcoin_ca.ts rename to src/qt/locale/bitbean_ca.ts index f02eb28..77cc8be 100644 --- a/src/qt/locale/bitcoin_ca.ts +++ b/src/qt/locale/bitbean_ca.ts @@ -1,120 +1,123 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + 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 - + Copy the currently selected address to the system clipboard Copia la selecció actual al porta-retalls del sistema - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete &Eliminar Copy &Label - + &Edit - + Export Address Book Data - + @@ -124,12 +127,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -153,34 +156,34 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -229,24 +232,29 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + @@ -255,12 +263,7 @@ This product includes software developed by the OpenSSL Project for use in the O Cartera encriptada - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -298,337 +301,595 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet passphrase was successfully changed. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - Sincronitzant amb la xarxa... + + Bean Control + - - &Overview - &Visió general + + Quantity: + - - Show general overview of wallet - Mostrar visió general de la cartera + + Bytes: + - - &Transactions - &Transaccions + + Amount: + - - Browse transaction history - Exploreu l'historial de transaccions + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - + + Tree mode + - - Quit application - Sortir de l'aplicació + + List mode + - - Show information about BitBean - + + Amount + - - About &Qt - + + Label + Etiqueta - - Show information about Qt - + + Address + Adreça - - &Options... - &Opcions... + + Date + - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - + Confirmed + - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - Canviar frase-contrasenya per a l'escriptació de la cartera + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Fitxer + + DUST + - - &Settings - &Configuració + + yes + - - &Help - &Ajuda + + no + - - Tabs toolbar - Barra d'eines + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + (sense etiqueta) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + - - Not staking because wallet is locked - + + (change) + + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - + + Vault + - - - %n second(s) ago - + + + &Overview + &Visió general - - &Unlock Wallet... - + + Show general overview of wallet + Mostrar visió general de la cartera - - - %n minute(s) ago - + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transaccions + + + + Browse transaction history + Exploreu l'historial de transaccions + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + + + + + Quit application + Sortir de l'aplicació + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + &Opcions... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + + + + + &Encrypt Wallet... + + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + + + + + Backup wallet to another location + + + + + &Change Passphrase... + + + + + Change the passphrase used for wallet encryption + Canviar frase-contrasenya per a l'escriptació de la cartera + + + + &Unlock Wallet... + + + + + Unlock wallet + Desbloquejar cartera + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + + + + + &Verify message... + + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + + + + + Open debugging and diagnostic console + + + + + &File + &Fitxer + + + + &Settings + &Configuració + + + + &Help + &Ajuda + + + + Tabs toolbar + Barra d'eines + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + + Synchronizing with network... + Sincronitzant amb la xarxa... + + + + ~%n block(s) remaining + + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + + %n minute(s) ago + + + + + %n hour(s) ago - + + + + + %n day(s) ago - + + + + + Up to date - + Catching up... - Actualitzant... + Actualitzant... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Transacció enviada + Transacció enviada Incoming transaction - Transacció entrant + Transacció entrant @@ -637,347 +898,215 @@ Amount: %2 Type: %3 Address: %4 - + URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - La cartera està <b>encriptada<b/> i <b>desbloquejada<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/> + La cartera està <b>encriptada<b/> i <b>bloquejada<b/> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + + %n minute(s) - + + + + + %n hour(s) - + + + + + %n day(s) - - - - - Not staking - - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - - - - - ClientModel - - - Network Alert - - - - - CoinControlDialog - - - Coin Control - - - - - Quantity: - - - - - Bytes: - - - - - Amount: - - - - - Priority: - + + + + + - - Fee: - - - - - Low Output: - - - - - no - - - - - After Fee: - - - - - Change: - - - - - (un)select all - - - - - Tree mode - - - - - List mode - - - - - Amount - - - - - Label - - - - - Address - Adreça - - - - Date - - - - - Confirmations - - - - - Confirmed - - - - - Priority - - - - - Copy address - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - Copy label - + + Not staking because wallet is locked + - - - Copy amount - + + Not staking because wallet is offline + - - Copy transaction ID - + + Not staking because wallet is syncing + - - Copy quantity - + + Not staking because you don't have mature beans + - Copy fee - + Not staking + + + + BitcoinGUI - - Copy after fee - + Synchronizing with network... + Sincronitzant amb la xarxa... - - Copy bytes - + &Overview + &Visió general - - Copy priority - + Show general overview of wallet + Mostrar visió general de la cartera - - Copy low output - + &Transactions + &Transaccions - - Copy change - + Browse transaction history + Exploreu l'historial de transaccions - - highest - + Quit application + Sortir de l'aplicació - - high - + &Options... + &Opcions... - - medium-high - + Change the passphrase used for wallet encryption + Canviar frase-contrasenya per a l'escriptació de la cartera - - medium - + &File + &Fitxer - - low-medium - + &Settings + &Configuració - - low - + &Help + &Ajuda - - lowest - + Tabs toolbar + Barra d'eines - - DUST - + [testnet] + [testnet] - - yes - + Catching up... + Actualitzant... - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Sent transaction + Transacció enviada - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Incoming transaction + Transacció entrant - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + La cartera està <b>encriptada<b/> i <b>desbloquejada<b/> - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Wallet is <b>encrypted</b> and currently <b>locked</b> + La cartera està <b>encriptada<b/> i <b>bloquejada<b/> + + + ClientModel - - - (no label) - (sense etiqueta) + + Network Alert + + + + CoinControlDialog - - change from %1 (%2) - + Address + Adreça - - (change) - + (no label) + (sense etiqueta) EditAddressDialog - + Edit Address Editar adreça @@ -989,7 +1118,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -999,452 +1128,516 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + New receiving address - + New sending address - + Edit receiving address - + Edit sending address - + The entered address "%1" is already in the address book. - + The entered address "%1" is not a valid BitBean address. - + Could not unlock wallet. - + New key generation failed. - + GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options - + - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - + &Cancel - + &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + + + + + Unconfirmed: + + + + + Spendable: + + + + + Your current spendable balance + + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - The supplied proxy address is invalid. - + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - - OverviewPage - - Form - + + BitBean Network + - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Stalk Height: + - - Stake: - + + Sprouting Difficulty: + - - Unconfirmed: - + + Bean Weight: + - - Wallet - + + Connections: + - - Spendable: - + + Total Beans: + - - Your current spendable balance - + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + - - Immature: - + + + + + + 0 + - - Mined balance that has not yet matured - + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + - - Total: - + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + - - Your current total balance - + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + - - <b>Recent transactions</b> - + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + Total: + - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1458,188 +1651,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - + @@ -1647,386 +1840,393 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - + Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - + 123.456 BC - + Confirm the send action - + S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - + Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (sense etiqueta) + (sense etiqueta) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + - + A&mount: - + Pay &To: - + - + Enter a label for this address to add it to your address book - + &Label: - + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + (no label) + (sense etiqueta) 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2034,59 +2234,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2094,81 +2294,89 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - + Open for %n block(s) - + + + + + conflicted - + %1/offline - + %1/unconfirmed - + %1 confirmations - + Status - + , broadcast through %n node(s) - + + + + + Date - + Source - + Generated - + From - + To - + own address - + label - + @@ -2177,17 +2385,21 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + + + not accepted - + @@ -2195,90 +2407,90 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + unknown - + TransactionDescDialog - + Transaction details - + This pane shows a detailed description of the transaction - + @@ -2286,12 +2498,12 @@ This label turns red, if the priority is smaller than "medium". Date - + Type - + @@ -2301,112 +2513,116 @@ This label turns red, if the priority is smaller than "medium". Amount - + Open until %1 - + Confirmed (%1 confirmations) - + Open for %n more block(s) - + + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + This block was not received by any other nodes and will probably not be accepted! - + Generated but not accepted - + Received with - + Received from - + Sent to - + Payment to yourself - + - Mined - + SPROUT + (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. - + @@ -2415,107 +2631,107 @@ This label turns red, if the priority is smaller than "medium". 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 Data - + @@ -2525,17 +2741,17 @@ This label turns red, if the priority is smaller than "medium". Confirmed - + Date - + Type - + @@ -2550,32 +2766,32 @@ This label turns red, if the priority is smaller than "medium". Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to - + @@ -2583,693 +2799,693 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core - - BitBean version - + + To use the %s option + - Usage: - + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - + + Error + - List commands - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - + + BitBean version + - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - + Usage: + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send command to -server or BitBeand + - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - + List commands + - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - - - - - Threshold for disconnecting misbehaving peers (default: 100) - + Get help for a command + - 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 - - - - - Detach block and address databases. Increases shutdown time (default: 0) - - - - - 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 - - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - - - - - Accept command line and JSON-RPC commands - + BitBean + - - Error: Transaction creation failed - + + Options: + - - Error: Wallet locked, unable to create transaction - + + This help message + - - Importing blockchain data file. - + + Specify configuration file (default: BitBean.conf) + - Importing bootstrap blockchain data file. - + Specify pid file (default: BitBeand.pid) + - - Run in the background as a daemon and accept commands - + + Specify data directory + - Use the test network - + Specify wallet file (within data directory) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Set database cache size in megabytes (default: 25) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Set database disk log size in megabytes (default: 100) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Specify connection timeout in milliseconds (default: 5000) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Connect through socks proxy + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Select the version of socks proxy to use (4-5, default: 5) + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Use proxy to reach tor hidden services (default: same as -proxy) + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Allow DNS lookups for -addnode, -seednode and -connect + - - 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. - + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Maintain at most <n> connections to peers (default: 125) + - - Block creation options: - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node(s) - - - - - Discover own IP address (default: 1 when listening and no -externalip) - - - - - Failed to listen on any port. Use -listen=0 if you want this. - - - - - Find peers using DNS lookup (default: 1) - + - - Sync checkpoints policy (default: strict) - + + Connect to a node to retrieve peer addresses, and disconnect + - - Invalid -tor address: '%s' - + + Specify your own public address + - - Invalid amount for -reservebalance=<amount> - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Discover own IP address (default: 1 when listening and no -externalip) + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Find peers using internet relay chat (default: 0) + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Output extra debugging information. Implies all other -debug* options - + + Bind to given address. Use [host]:port notation for IPv6 + - Output extra network debugging information - + Find peers using DNS lookup (default: 1) + - Prepend debug output with timestamp - + Stake your beans to support network and gain reward (default: 1) + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Select the version of socks proxy to use (4-5, default: 5) - + + Sync checkpoints policy (default: strict) + - - Send trace/debug info to console instead of debug.log file - + + Threshold for disconnecting misbehaving peers (default: 100) + - Send trace/debug info to debugger - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Set maximum block size in bytes (default: 250000) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Set minimum block size in bytes (default: 0) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Use UPnP to map the listening port (default: 1 when listening) + - - Specify connection timeout in milliseconds (default: 5000) - + + Use UPnP to map the listening port (default: 0) + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Use UPnP to map the listening port (default: 0) - + + Fee per KB to add to transactions you send + - - Use UPnP to map the listening port (default: 1 when listening) - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Accept command line and JSON-RPC commands + - - Username for JSON-RPC connections - + + Run in the background as a daemon and accept commands + - - Verifying database integrity... - + + Use the test network + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Output extra debugging information. Implies all other -debug* options + - Warning: Disk space is low! - + Output extra network debugging information + - - Warning: This version is obsolete, upgrade required! - + + Prepend debug output with timestamp + - - wallet.dat corrupt, salvage failed - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Password for JSON-RPC connections - + + Send trace/debug info to console instead of debug.log file + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Send trace/debug info to debugger + - - Find peers using internet relay chat (default: 0) - + + Username for JSON-RPC connections + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Password for JSON-RPC connections + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - + 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) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Require a confirmations for change (default: 0) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Upgrade wallet to latest format - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + - + + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) - + How thorough the block verification is (0-6, default: 1) - + Imports blocks from external blk000?.dat file - + - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Invalid amount for -paytxfee=<amount>: '%s' + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - This help message - + + Invalid amount for -mininput=<amount>: '%s' + - + Wallet %s resides outside data directory %s. - + Cannot obtain a lock on data directory %s. BitBean is probably already running. - + - - BitBean - + + Verifying database integrity... + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect through socks proxy - + + 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. + - - Allow DNS lookups for -addnode, -seednode and -connect - + + wallet.dat corrupt, salvage failed + - - Loading addresses... - + + Unknown -socks proxy version requested: %i + - + + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Cannot resolve -externalip address: '%s' + + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - + Wallet needed to be rewritten: restart BitBean to complete - + Error loading wallet.dat - + - - Invalid -proxy address: '%s' - + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - + + Cannot write default address + - - Cannot resolve -bind address: '%s' - + + Rescanning... + - - Cannot resolve -externalip address: '%s' - + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - + + Importing bootstrap blockchain data file. + - - Error: could not start node - + + Loading addresses... + - - Sending... - + + Error: could not start node + - - Invalid amount - + + Done loading + - Insufficient funds - + Unable to bind to %s on this computer. BitBean is probably already running. + - - Loading block index... - + + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Add a node to connect to and attempt to keep the connection open - + + Error: Wallet locked, unable to create transaction + - - Unable to bind to %s on this computer. BitBean is probably already running. - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Fee per KB to add to transactions you send - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: Transaction creation failed + - - Loading wallet... - + + Sending... + - - Cannot downgrade wallet - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Cannot initialize keypool - + + Invalid amount + - Cannot write default address - + Insufficient funds + - Rescanning... - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Done loading - + + Warning: This version is obsolete, upgrade required! + - - To use the %s option - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Error - + + Warning: Disk space is low! + - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ca@valencia.qm b/src/qt/locale/bitbean_ca@valencia.qm similarity index 100% rename from src/qt/locale/bitcoin_ca@valencia.qm rename to src/qt/locale/bitbean_ca@valencia.qm diff --git a/src/qt/locale/bitcoin_ca@valencia.ts b/src/qt/locale/bitbean_ca@valencia.ts similarity index 60% rename from src/qt/locale/bitcoin_ca@valencia.ts rename to src/qt/locale/bitbean_ca@valencia.ts index 2b4cabc..fb8060c 100644 --- a/src/qt/locale/bitcoin_ca@valencia.ts +++ b/src/qt/locale/bitbean_ca@valencia.ts @@ -1,135 +1,138 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + Double-click to edit address or label Doble click per editar la direccio o la etiqueta - + Create a new address Crear nova direccio - + Copy the currently selected address to the system clipboard Copieu l'adreça seleccionada al porta-retalls del sistema - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete Eliminar Copy &Label - + &Edit - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. - + @@ -137,1314 +140,1418 @@ This product includes software developed by the OpenSSL Project for use in the O Label - + Address - + (no label) - + AskPassphraseDialog - + Passphrase Dialog - + - + Enter passphrase - + - + New passphrase - + - + Repeat new passphrase - + - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + 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 COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + Wallet encrypted - - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins 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. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - + + Bean Control + - - &Overview - + + Quantity: + - - Show general overview of wallet - + + Bytes: + - - &Transactions - + + Amount: + - - Browse transaction history - + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - + + Tree mode + - - Quit application - + + List mode + - - Show information about BitBean - + + Amount + - - About &Qt - + + Label + - - Show information about Qt - + + Address + - - &Options... - + + Date + - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - + Confirmed + - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - + + DUST + - - &Settings - + + yes + - - &Help - + + no + - - Tabs toolbar - + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + - - - %n second(s) ago - + + + Show general overview of wallet + - - &Unlock Wallet... - + + &Send Beans + - - - %n minute(s) ago - - - - - %n hour(s) ago - - - - - %n day(s) ago - + + + Send Beans to a BitBean address + - - Up to date - + + &Receive Beans + - - Catching up... - + + Show the list of addresses for receiving payments + - - Last received block was generated %1. - + + &Transactions + - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + + Browse transaction history + - Confirm transaction fee - + &Address Book + - - Sent transaction - + + Edit the list of stored addresses and labels + - - Incoming transaction - + + E&xit + - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - + Quit application + - - - URI handling - + + &About BitBean + - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + + Show information about BitBean + - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + + About &Qt + - - Wallet is <b>encrypted</b> and currently <b>locked</b> - + + Show information about Qt + - - Backup Wallet - + + &Options... + - - Wallet Data (*.dat) - + + Modify configuration options for BitBean + - - Backup Failed - + + &Show / Hide + - - There was an error trying to save the wallet data to the new location. - - - - - %n second(s) - - - - - %n minute(s) - - - - - %n hour(s) - - - - - %n day(s) - + + &Encrypt Wallet... + - - Not staking - + + Encrypt or decrypt wallet + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + &Backup Wallet... + - - - ClientModel - - Network Alert - + + Backup wallet to another location + - - - CoinControlDialog - - Coin Control - + + &Change Passphrase... + - - Quantity: - + + Change the passphrase used for wallet encryption + - - Bytes: - + + &Unlock Wallet... + - - Amount: - + + Unlock wallet + - - Priority: - + + &Lock Wallet + - - Fee: - + + Lock wallet + - - Low Output: - + + Sign &message... + - - no - + + &Verify message... + - - After Fee: - + + &Export... + - - Change: - + + Export the data in the current tab to a file + - - (un)select all - + + &Debug window + - - Tree mode - + + Open debugging and diagnostic console + - - List mode - + + &File + - - Amount - + + &Settings + - - Label - + + &Help + - - Address - + + Tabs toolbar + - - Date - + + Actions toolbar + - - Confirmations - + + + [testnet] + - - Confirmed - + + + BitBean client + - - - Priority - + + + %n active connection(s) to BitBean network + + + + + - - Copy address - + + Synchronizing with network... + - - - Copy label - + + + ~%n block(s) remaining + + + + + - - - Copy amount - + + Downloaded %1 of %2 blocks of transaction history (%3% done). + - - Copy transaction ID - + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + + %n minute(s) ago + + + + + + + + + %n hour(s) ago + + + + + + + + + %n day(s) ago + + + + + - - Copy quantity - + + Up to date + - - Copy fee - + + Catching up... + - - Copy after fee - + + Last received block was generated %1. + - - Copy bytes - + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + - - Copy priority - + + Confirm transaction fee + - - Copy low output - + + Sent transaction + - Copy change - + Incoming transaction + - - highest - + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + - - high - + + + URI handling + - - medium-high - + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + - - medium - + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + - - low-medium - + + Wallet is <b>encrypted</b> and currently <b>locked</b> + - - low - + + Backup Wallet + - - lowest - + + Wallet Data (*.dat) + - - DUST - + + Backup Failed + - yes - + There was an error trying to save the wallet data to the new location. + + + + + %n second(s) + + + + + + + + + %n minute(s) + + + + + + + + + %n hour(s) + + + + + + + + + %n day(s) + + + + + - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + + Not staking because wallet is locked + - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + + Not staking because wallet is offline + - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + + Not staking because wallet is syncing + - - - (no label) - + + Not staking because you don't have mature beans + - - change from %1 (%2) - + + Not staking + + + + ClientModel - - (change) - + + Network Alert + EditAddressDialog - + Edit Address - + &Label - + The label associated with this address book entry - + &Address - + The address associated with this address book entry. This can only be modified for sending addresses. - + New receiving address - + New sending address - + Edit receiving address - + Edit sending address - + The entered address "%1" is already in the address book. - + The entered address "%1" is not a valid BitBean address. - + Could not unlock wallet. - + New key generation failed. - + GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options - + - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - + &Cancel - + &Apply - + default - + + + + + + Warning + + + + + + This setting will take effect after restarting BitBean. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + + + + + Unconfirmed: + + + + + Spendable: + + + + + Your current spendable balance + + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + - - - Warning - + + Immature: + - - - This setting will take effect after restarting BitBean. - + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - The supplied proxy address is invalid. - + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - - OverviewPage - - Form - + + BitBean Network + - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Stalk Height: + - - Stake: - + + Sprouting Difficulty: + - - Unconfirmed: - + + Bean Weight: + - - Wallet - + + Connections: + - - Spendable: - + + Total Beans: + - - Your current spendable balance - + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + - - Immature: - + + + + + + 0 + - - Mined balance that has not yet matured - + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + - - Total: - + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + - - Your current total balance - + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + - - <b>Recent transactions</b> - + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + Total: + - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1458,188 +1565,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - + @@ -1647,386 +1754,386 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - + Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - + 123.456 BC - + Confirm the send action - + S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - + Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - + WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + - + A&mount: - + Pay &To: - + - + Enter a label for this address to add it to your address book - + &Label: - + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2034,59 +2141,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2094,81 +2201,89 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - + Open for %n block(s) - + + + + + conflicted - + %1/offline - + %1/unconfirmed - + %1 confirmations - + Status - + , broadcast through %n node(s) - + + + + + Date - + Source - + Generated - + From - + To - + own address - + label - + @@ -2177,17 +2292,21 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + + + not accepted - + @@ -2195,90 +2314,90 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + unknown - + TransactionDescDialog - + Transaction details - + This pane shows a detailed description of the transaction - + @@ -2286,127 +2405,131 @@ This label turns red, if the priority is smaller than "medium". Date - + Type - + Address - + Amount - + Open until %1 - + Confirmed (%1 confirmations) - + Open for %n more block(s) - + + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + This block was not received by any other nodes and will probably not be accepted! - + Generated but not accepted - + Received with - + Received from - + Sent to - + Payment to yourself - + - Mined - + SPROUT + (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. - + @@ -2415,167 +2538,167 @@ This label turns red, if the priority is smaller than "medium". 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 Data - + Comma separated file (*.csv) - + Confirmed - + Date - + Type - + Label - + Address - + Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to - + @@ -2583,693 +2706,693 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core - - BitBean version - + + To use the %s option + - Usage: - + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - + + Error + - List commands - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - + + BitBean version + - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - + Usage: + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send command to -server or BitBeand + - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - + List commands + - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - - - - - Threshold for disconnecting misbehaving peers (default: 100) - + Get help for a command + - 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 - - - - - Detach block and address databases. Increases shutdown time (default: 0) - - - - - 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 - - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - - - - - Accept command line and JSON-RPC commands - + BitBean + - - Error: Transaction creation failed - + + Options: + - - Error: Wallet locked, unable to create transaction - + + This help message + - - Importing blockchain data file. - + + Specify configuration file (default: BitBean.conf) + - Importing bootstrap blockchain data file. - + Specify pid file (default: BitBeand.pid) + - - Run in the background as a daemon and accept commands - + + Specify data directory + - Use the test network - + Specify wallet file (within data directory) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Set database cache size in megabytes (default: 25) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Set database disk log size in megabytes (default: 100) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Specify connection timeout in milliseconds (default: 5000) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Connect through socks proxy + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Select the version of socks proxy to use (4-5, default: 5) + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Use proxy to reach tor hidden services (default: same as -proxy) + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Allow DNS lookups for -addnode, -seednode and -connect + - - 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. - + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Maintain at most <n> connections to peers (default: 125) + - - Block creation options: - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node(s) - - - - - Discover own IP address (default: 1 when listening and no -externalip) - - - - - Failed to listen on any port. Use -listen=0 if you want this. - - - - - Find peers using DNS lookup (default: 1) - + - - Sync checkpoints policy (default: strict) - + + Connect to a node to retrieve peer addresses, and disconnect + - - Invalid -tor address: '%s' - + + Specify your own public address + - - Invalid amount for -reservebalance=<amount> - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Discover own IP address (default: 1 when listening and no -externalip) + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Find peers using internet relay chat (default: 0) + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Output extra debugging information. Implies all other -debug* options - + + Bind to given address. Use [host]:port notation for IPv6 + - Output extra network debugging information - + Find peers using DNS lookup (default: 1) + - Prepend debug output with timestamp - + Stake your beans to support network and gain reward (default: 1) + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Select the version of socks proxy to use (4-5, default: 5) - + + Sync checkpoints policy (default: strict) + - - Send trace/debug info to console instead of debug.log file - + + Threshold for disconnecting misbehaving peers (default: 100) + - Send trace/debug info to debugger - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Set maximum block size in bytes (default: 250000) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Set minimum block size in bytes (default: 0) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Use UPnP to map the listening port (default: 1 when listening) + - - Specify connection timeout in milliseconds (default: 5000) - + + Use UPnP to map the listening port (default: 0) + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Use UPnP to map the listening port (default: 0) - + + Fee per KB to add to transactions you send + - - Use UPnP to map the listening port (default: 1 when listening) - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Accept command line and JSON-RPC commands + - - Username for JSON-RPC connections - + + Run in the background as a daemon and accept commands + - - Verifying database integrity... - + + Use the test network + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Output extra debugging information. Implies all other -debug* options + - Warning: Disk space is low! - + Output extra network debugging information + - - Warning: This version is obsolete, upgrade required! - + + Prepend debug output with timestamp + - - wallet.dat corrupt, salvage failed - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Password for JSON-RPC connections - + + Send trace/debug info to console instead of debug.log file + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Send trace/debug info to debugger + - - Find peers using internet relay chat (default: 0) - + + Username for JSON-RPC connections + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Password for JSON-RPC connections + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - + 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) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Require a confirmations for change (default: 0) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Upgrade wallet to latest format - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + - + + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) - + How thorough the block verification is (0-6, default: 1) - + Imports blocks from external blk000?.dat file - + - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Invalid amount for -paytxfee=<amount>: '%s' + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - This help message - + + Invalid amount for -mininput=<amount>: '%s' + - + Wallet %s resides outside data directory %s. - + Cannot obtain a lock on data directory %s. BitBean is probably already running. - + - - BitBean - + + Verifying database integrity... + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect through socks proxy - + + 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. + - - Allow DNS lookups for -addnode, -seednode and -connect - + + wallet.dat corrupt, salvage failed + - - Loading addresses... - + + Unknown -socks proxy version requested: %i + - + + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Cannot resolve -externalip address: '%s' + + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - + Wallet needed to be rewritten: restart BitBean to complete - + Error loading wallet.dat - + - - Invalid -proxy address: '%s' - + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - + + Cannot write default address + - - Cannot resolve -bind address: '%s' - + + Rescanning... + - - Cannot resolve -externalip address: '%s' - + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - + + Importing bootstrap blockchain data file. + - - Error: could not start node - + + Loading addresses... + - - Sending... - + + Error: could not start node + - - Invalid amount - + + Done loading + - Insufficient funds - + Unable to bind to %s on this computer. BitBean is probably already running. + - - Loading block index... - + + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Add a node to connect to and attempt to keep the connection open - + + Error: Wallet locked, unable to create transaction + - - Unable to bind to %s on this computer. BitBean is probably already running. - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Fee per KB to add to transactions you send - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: Transaction creation failed + - - Loading wallet... - + + Sending... + - - Cannot downgrade wallet - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Cannot initialize keypool - + + Invalid amount + - Cannot write default address - + Insufficient funds + - Rescanning... - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Done loading - + + Warning: This version is obsolete, upgrade required! + - - To use the %s option - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Error - + + Warning: Disk space is low! + - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_ca_ES.qm b/src/qt/locale/bitbean_ca_ES.qm new file mode 100644 index 0000000..bddc05b Binary files /dev/null and b/src/qt/locale/bitbean_ca_ES.qm differ diff --git a/src/qt/locale/bitbean_ca_ES.ts b/src/qt/locale/bitbean_ca_ES.ts new file mode 100644 index 0000000..943e5b1 --- /dev/null +++ b/src/qt/locale/bitbean_ca_ES.ts @@ -0,0 +1,4905 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + Sobre BitBean + + + + <b>BitBean</b> version + versió <b>BitBean</b> + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + \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 software criptogràfic escrit per l'Eric Young (eay@cryptsoft.com) i software UPnP escrit per en Thomas Bernard. + + + + AddressBookPage + + + Address Book + Llibreta d'adreces + + + + 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 + + + + Copy the currently selected address to the system clipboard + Copiar l'adreça seleccionada al porta-retalls del sistema + + + + &New Address + &Nova adreça + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + Aquestes són les teves adreces de BitBean per rebre els pagaments. És possible que vulgueu donar una diferent a cada remitent per a poder realitzar un seguiment de qui li está pagant. + + + + &Copy Address + &Copiar adreça + + + + Show &QR Code + Mostra el códi &QR + + + + Sign a message to prove you own a BitBean address + Signar un missatge per demostrar que és propietari d'una adreça BitBean + + + + Sign &Message + Signar &Message + + + + Delete the currently selected address from the list + Esborrar l'adreça sel·leccionada + + + + Verify a message to ensure it was signed with a specified BitBean address + Comproveu el missatge per assegurar-se que es va signar amb una adreça BitBean especificada. + + + + &Verify Message + &Verificar el missatge + + + + &Delete + &Esborrar + + + + Copy &Label + Copiar &Etiqueta + + + + &Edit + &Editar + + + + Export Address Book Data + Exportar dades de la llibreta d'adreces + + + + Comma separated file (*.csv) + Arxiu de separació per comes (*.csv) + + + + Error exporting + Error a l'exportar + + + + Could not write to file %1. + No s'ha pogut escriure al fitxer %1. + + + + AddressTableModel + + + Label + Etiqueta + + + + Address + Adreça + + + + (no label) + (sense etiqueta) + + + + AskPassphraseDialog + + + Passphrase Dialog + Dialeg de contrasenya + + + + Enter passphrase + Introdueix contrasenya + + + + New passphrase + Nova contrasenya + + + + Repeat new passphrase + Repeteix la nova contrasenya + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Serveix per desactivar l'enviament trivial de diners quan el compte del sistema operatiu ha estat compromès. No ofereix seguretat real. + + + + For staking only + Només per a fer "stake" + + + + 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 el moneder + + + + 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 COINS</b>! + Avís: Si xifra el seu moneder i perd la contrasenya, podrà <b> PERDRE TOTES LES SEVES MONEDES </ b>! + + + + Are you sure you wish to encrypt your wallet? + Esteu segur que voleu encriptar el vostre moneder? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + 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 + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + BitBean tancarà ara per acabar el procés de xifrat. Recordeu que l'encriptació del seu moneder no pot protegir completament les seves monedes de ser robades pel malware que pugui infectar al seu equip. + + + + + + + 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. + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + Quantitat: + + + + Bytes: + Bytes: + + + + Amount: + Quantitat: + + + + Priority: + Prioritat: + + + + Fee: + Quota: + + + + Low Output: + Sortida baixa: + + + + After Fee: + Quota posterior: + + + + Change: + Canvi: + + + + (un)select all + (de)seleccionar tot + + + + Tree mode + Mode arbre + + + + List mode + Mode llista + + + + Amount + Quantitat + + + + Label + Etiqueta + + + + Address + + + + + 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ó + + + + Copy quantity + Copiar quantitat + + + + Copy fee + Copiar comisió + + + + Copy after fee + Copiar després de comisió + + + + Copy bytes + Copiar bytes + + + + Copy priority + Copiar prioritat + + + + Copy low output + Copiar sortida baixa + + + + Copy change + Copiar canvi + + + + highest + El més alt + + + + high + Alt + + + + medium-high + mig-alt + + + + medium + mig + + + + low-medium + baix-mig + + + + low + baix + + + + lowest + el més baix + + + + DUST + POLS + + + + yes + si + + + + no + no + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Aquesta etiqueta es tornarà vermell, si la mida de la transacció és més gran que 10000 bytes. + +En aquest cas es requereix una comisió d'almenys el 1% per kb. + +Pot variar + / - 1 Byte per entrada. + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Les operacions amb més prioritat entren mes facilment a un bloc. + +Aquesta etiqueta es torna vermella, si la prioritat és menor que "mitja". + +En aquest cas es requereix una comisió d'almenys el 1% per kb. + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Aquesta etiqueta es torna vermella, si qualsevol beneficiari rep una quantitat inferior a 1%. + +En aquest cas es requereix una comisió d'almenys 2%. + +Les quantitats inferiors a 0.546 vegades la quota mínima del relé es mostren com a POLS. + + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Aquesta etiqueta es torna vermella, si el canvi és menor que 1%. + +En aquest cas es requereix una comisió d'almenys 2%. + + + + + (no label) + (sense etiqueta) + + + + change from %1 (%2) + canvi desde %1 (%2) + + + + (change) + (canviar) + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + S'ha produït un error fatal. BitBean ja no pot continuar de forma segura i es tancarà. + + + + BitBean + BitBean + + + + Vault + + + + + &Overview + &Panorama general + + + + Show general overview of wallet + Mostra panorama general del moneder + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Mostra la llista d'adreces per rebre pagaments + + + + &Transactions + &Transaccions + + + + Browse transaction history + Cerca a l'historial de transaccions + + + + &Address Book + &Llibreta d'adreces + + + + Edit the list of stored addresses and labels + Edició de la llista d'adreces i etiquetes emmagatzemades + + + + E&xit + S&ortir + + + + Quit application + Sortir de l'aplicació + + + + &About BitBean + &Sobre BitBean + + + + Show information about BitBean + Mostra informació sobre BitBean + + + + About &Qt + Sobre &Qt + + + + Show information about Qt + Mostra informació sobre Qt + + + + &Options... + &Opcions... + + + + Modify configuration options for BitBean + Modificar les opcions de configuració per a BitBean + + + + &Show / Hide + &Mostrar / Amagar + + + + &Encrypt Wallet... + &Xifrar moneder + + + + Encrypt or decrypt wallet + Xifrar o desxifrar moneder + + + + &Backup Wallet... + &Realitzar copia de seguretat del moneder... + + + + Backup wallet to another location + Realitzar còpia de seguretat del moneder a un altre directori + + + + &Change Passphrase... + &Canviar contrasenya... + + + + Change the passphrase used for wallet encryption + Canviar la constrasenya d'encriptació del moneder + + + + &Unlock Wallet... + &Desbloquejar moneder + + + + Unlock wallet + + + + + &Lock Wallet + &Bloquejar moneder + + + + Lock wallet + Bloquejar moneder + + + + Sign &message... + Signar &missatge... + + + + &Verify message... + &Verifica el missatge.. + + + + &Export... + &Exportar... + + + + Export the data in the current tab to a file + Exportar les dades de la pestanya actual a un arxiu + + + + &Debug window + &Finestra de depuració + + + + Open debugging and diagnostic console + Obrir la consola de diagnòstic i depuració + + + + &File + &Arxiu + + + + &Settings + &Configuració + + + + &Help + &Ajuda + + + + Tabs toolbar + Barra d'eines de seccions + + + + Actions toolbar + Barra d'eines d'accions + + + + + [testnet] + [testnet] + + + + + BitBean client + Client BitBean + + + + %n active connection(s) to BitBean network + + %n conexió activa a la xarxa BitBean + %n conexions actives a la xarxa BitBean + + + + + + Synchronizing with network... + Sincronitzant amb la xarxa ... + + + + ~%n block(s) remaining + + ~%n bloc restant + ~%n blocs restants + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Descarregats %1 de %2 blocs d'historial de transaccions (%3% completat). + + + + Downloaded %1 blocks of transaction history. + Descarregats %1 blocs d'historial de transaccions + + + + %n second(s) ago + + fa %n segon + fa %n segons + + + + + + %n minute(s) ago + + fa %n minut + fa %n minuts + + + + + + %n hour(s) ago + + fa %n hora + fa %n hores + + + + + + %n day(s) ago + + fa %n dia + fa %n dies + + + + + + Up to date + Al dia + + + + Catching up... + Posar-se al dia ... + + + + Last received block was generated %1. + El darrer bloc rebut s'ha generat %1. + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Aquesta transacció es troba sobre el límit de mida. Encara pot enviar-la amb una comisió de 1%, aquesta va als nodes que processen la seva transacció i ajuda a mantenir la xarxa. Vol pagar la quota? + + + + Confirm transaction fee + Confirmeu comisió + + + + Sent transaction + Transacció enviada + + + + Incoming transaction + Transacció entrant + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1\nQuantitat %2\n Tipus: %3\n Adreça: %4\n + + + + + URI handling + Manejant URI + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + l'URI no es pot analitzar! Això pot ser causat per una adreça BitBean no vàlida o paràmetres URI malformats. + + + + 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> + + + + Backup Wallet + Realitzar còpia de seguretat del moneder + + + + Wallet Data (*.dat) + Dades del moneder (*.dat) + + + + Backup Failed + Còpia de seguretat fallida + + + + There was an error trying to save the wallet data to the new location. + Hi ha un error al tractar de salvar les dades del seu moneder a la nova ubicació. + + + + %n second(s) + + %n segon + %n segons + + + + + + %n minute(s) + + %n minut + %n minuts + + + + + + %n hour(s) + + %n hora + %n hores + + + + + + %n day(s) + + %n dia + %n dies + + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Fent "stake".<br>El teu pes és %1<br>El pes de la xarxa és %2<br>El temps estimat per a guanyar una recompensa és 3% + + + + Not staking because wallet is locked + No s'està fent "stake" perquè el moneder esa bloquejat + + + + Not staking because wallet is offline + No s'està fent "stake" perquè el moneder està fora de línia + + + + Not staking because wallet is syncing + No s'està fent "stake" perquè el moneder està sincronitzant + + + + Not staking because you don't have mature beans + + + + + Not staking + No s'està fent "stake" + + + + BitcoinGUI + + Sign &message... + Signar &missatge... + + + Synchronizing with network... + Sincronitzant amb la xarxa ... + + + &Overview + &Panorama general + + + Show general overview of wallet + Mostra panorama general del moneder + + + &Transactions + &Transaccions + + + Browse transaction history + Cerca a l'historial de transaccions + + + &Address Book + &Llibreta d'adreces + + + Edit the list of stored addresses and labels + Edició de la llista d'adreces i etiquetes emmagatzemades + + + &Receive coins + &Rebre monedes + + + Show the list of addresses for receiving payments + Mostra la llista d'adreces per rebre pagaments + + + &Send coins + &Enviar monedes + + + E&xit + S&ortir + + + Quit application + Sortir de l'aplicació + + + Show information about BitBean + Mostra informació sobre BitBean + + + About &Qt + Sobre &Qt + + + Show information about Qt + Mostra informació sobre Qt + + + &Options... + &Opcions... + + + &Encrypt Wallet... + &Xifrar moneder + + + &Backup Wallet... + &Realitzar copia de seguretat del moneder... + + + &Change Passphrase... + &Canviar contrasenya... + + + ~%n block(s) remaining + + ~%n bloc restant + ~%n blocs restants + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Descarregats %1 de %2 blocs d'historial de transaccions (%3% completat). + + + &Export... + &Exportar... + + + Send coins to a BitBean address + Enviar monedes a una adreça BitBean + + + Modify configuration options for BitBean + Modificar les opcions de configuració per a BitBean + + + Export the data in the current tab to a file + Exportar les dades de la pestanya actual a un arxiu + + + Encrypt or decrypt wallet + Xifrar o desxifrar moneder + + + 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 depuració + + + Open debugging and diagnostic console + Obrir la consola de diagnòstic i depuració + + + &Verify message... + &Verifica el missatge.. + + + BitBean + BitBean + + + Wallet + Moneder + + + &About BitBean + &Sobre BitBean + + + &Show / Hide + &Mostrar / Amagar + + + Unlock wallet + Desbloquejar el moneder + + + &Lock Wallet + &Bloquejar moneder + + + Lock wallet + Bloquejar moneder + + + &File + &Arxiu + + + &Settings + &Configuració + + + &Help + &Ajuda + + + Tabs toolbar + Barra d'eines de seccions + + + Actions toolbar + Barra d'eines d'accions + + + [testnet] + [testnet] + + + BitBean client + Client BitBean + + + %n active connection(s) to BitBean network + + %n conexió activa a la xarxa BitBean + %n conexions actives a la xarxa BitBean + + + + + Downloaded %1 blocks of transaction history. + Descarregats %1 blocs d'historial de transaccions + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Fent "stake".<br>El teu pes és %1<br>El pes de la xarxa és %2<br>El temps estimat per a guanyar una recompensa és 3% + + + Not staking because wallet is locked + No s'està fent "stake" perquè el moneder esa bloquejat + + + Not staking because wallet is offline + No s'està fent "stake" perquè el moneder està fora de línia + + + Not staking because wallet is syncing + No s'està fent "stake" perquè el moneder està sincronitzant + + + Not staking because you don't have mature coins + No s'està fent "stake" perquè no tens monedes madures + + + %n second(s) ago + + fa %n segon + fa %n segons + + + + + &Unlock Wallet... + &Desbloquejar moneder + + + %n minute(s) ago + + fa %n minut + fa %n minuts + + + + + %n hour(s) ago + + fa %n hora + fa %n hores + + + + + %n day(s) ago + + fa %n dia + fa %n dies + + + + + Up to date + Al dia + + + Catching up... + Posar-se al dia ... + + + Last received block was generated %1. + El darrer bloc rebut s'ha generat %1. + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Aquesta transacció es troba sobre el límit de mida. Encara pot enviar-la amb una comisió de 1%, aquesta va als nodes que processen la seva transacció i ajuda a mantenir la xarxa. Vol pagar la quota? + + + Confirm transaction fee + Confirmeu comisió + + + Sent transaction + Transacció enviada + + + Incoming transaction + Transacció entrant + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1\nQuantitat %2\n Tipus: %3\n Adreça: %4\n + + + URI handling + Manejant URI + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + l'URI no es pot analitzar! Això pot ser causat per una adreça BitBean no vàlida o paràmetres URI malformats. + + + 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> + + + Backup Wallet + Realitzar còpia de seguretat del moneder + + + Wallet Data (*.dat) + Dades del moneder (*.dat) + + + Backup Failed + Còpia de seguretat fallida + + + There was an error trying to save the wallet data to the new location. + Hi ha un error al tractar de salvar les dades del seu moneder a la nova ubicació. + + + %n second(s) + + %n segon + %n segons + + + + + %n minute(s) + + %n minut + %n minuts + + + + + %n hour(s) + + %n hora + %n hores + + + + + %n day(s) + + %n dia + %n dies + + + + + Not staking + No s'està fent "stake" + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + S'ha produït un error fatal. BitBean ja no pot continuar de forma segura i es tancarà. + + + + ClientModel + + + Network Alert + Alerta de xarxa + + + + CoinControlDialog + + Coin Control + Opcions del control de monedes + + + Quantity: + Quantitat: + + + Bytes: + Bytes: + + + Amount: + Quantitat: + + + Priority: + Prioritat: + + + Fee: + Quota: + + + Low Output: + Sortida baixa: + + + no + no + + + After Fee: + Quota posterior: + + + Change: + Canvi: + + + (un)select all + (de)seleccionar tot + + + Tree mode + Mode arbre + + + List mode + Mode llista + + + Amount + Quantitat + + + Label + Etiqueta + + + 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ó + + + Copy quantity + Copiar quantitat + + + Copy fee + Copiar comisió + + + Copy after fee + Copiar després de comisió + + + Copy bytes + Copiar bytes + + + Copy priority + Copiar prioritat + + + Copy low output + Copiar sortida baixa + + + Copy change + Copiar canvi + + + highest + El més alt + + + high + Alt + + + medium-high + mig-alt + + + medium + mig + + + low-medium + baix-mig + + + low + baix + + + lowest + el més baix + + + DUST + POLS + + + yes + si + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Aquesta etiqueta es tornarà vermell, si la mida de la transacció és més gran que 10000 bytes. + +En aquest cas es requereix una comisió d'almenys el 1% per kb. + +Pot variar + / - 1 Byte per entrada. + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Les operacions amb més prioritat entren mes facilment a un bloc. + +Aquesta etiqueta es torna vermella, si la prioritat és menor que "mitja". + +En aquest cas es requereix una comisió d'almenys el 1% per kb. + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Aquesta etiqueta es torna vermella, si qualsevol beneficiari rep una quantitat inferior a 1%. + +En aquest cas es requereix una comisió d'almenys 2%. + +Les quantitats inferiors a 0.546 vegades la quota mínima del relé es mostren com a POLS. + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Aquesta etiqueta es torna vermella, si el canvi és menor que 1%. + +En aquest cas es requereix una comisió d'almenys 2%. + + + (no label) + (sense etiqueta) + + + change from %1 (%2) + canvi desde %1 (%2) + + + (change) + (canviar) + + + + EditAddressDialog + + + Edit Address + Editar Adreça + + + + &Label + &Etiqueta + + + + The label associated with this address book entry + L'etiqueta associada amb aquesta entrada de la llibreta d'adreces + + + + &Address + &Direcció + + + + The address associated with this address book entry. This can only be modified for sending addresses. + La direcció associada amb aquesta entrada de la llibreta d'adreces. Només pot ser modificada per a l'enviament d'adreces. + + + + 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 BitBean address. + La direcció introduïda "%1" no és una adreça BitBean vàlida. + + + + Could not unlock wallet. + No s'ha pogut desbloquejar el moneder. + + + + New key generation failed. + Ha fallat la generació d'una nova clau. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + 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 + + + + Show splash screen on startup (default: 1) + Mostrar finestra de benvinguda a l'inici (per defecte: 1) + + + + OptionsDialog + + + Options + Opcions + + + + &Main + &Principal + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. + Comisió opcional per kB que ajuda a assegurar-se que les seves transaccions es processen ràpidament. La majoria de les transaccions són 1 kB. Comisió d'0.01 recomenada. + + + + Pay transaction &fee + Pagar &comisió de transacció + + + Reserved amount does not participate in staking and is therefore spendable at any time. + La quantitat reservada no participa en fer "stake" i per tant esta disponible en qualsevol moment. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + Reserva + + + + Automatically start BitBean after logging in to the system. + Inicia automàticament BitBean després d'entrar en el sistema. + + + + &Start BitBean on system login + &Iniciar BitBean amb l'inici de sessió + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + Separeu el bloc i les bases de dades d'adreces en apagar l'equip. En aquest cas es pot moure a un altre directori de dades, però alenteix l'apagada. El moneder està sempre separat. + + + + &Detach databases at shutdown + &Separar bases de dades a l'apagar l'equip + + + + &Network + &Xarxa + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + Obrir automàticament el port de client BitBean en el router. Això només funciona quan el router és compatible amb UPnP i està habilitat. + + + + Map port using &UPnP + Obrir ports amb &UPnP + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + Connecteu-vos a la xarxa BitBean través d'un proxy SOCKS (per exemple, quan es connecta a través de Tor). + + + + &Connect through SOCKS proxy: + &Conectar a través d'un proxy SOCKS: + + + + Proxy &IP: + &IP del proxy: + + + + IP address of the proxy (e.g. 127.0.0.1) + Adreça IP del servidor proxy (per exemple, 127.0.0.1) + + + + &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 BitBean. + L'idioma de la interfície d'usuari es pot configurar aquí. Aquesta configuració s'aplicarà després de reiniciar BitBean. + + + + &Unit to show amounts in: + &Unitats per mostrar les quantitats en: + + + + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + 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 BitBean addresses in the transaction list or not. + Per mostrar BitBean adreces a la llista de transaccions o no. + + + + &Display addresses in transaction list + &Mostrar adreces al llistat de transaccions + + + Whether to show coin control features or not. + Per mostrar les característiques de control de la moneda o no. + + + Display coin &control features (experts only!) + Mostrar controls i característiques de la moneda (només per a experts!) + + + + &OK + &OK + + + + &Cancel + &Cancel·la + + + + &Apply + &Aplicar + + + + default + Per defecte + + + + + Warning + Avís + + + + + This setting will take effect after restarting BitBean. + Aquesta configuració s'aplicarà després de reiniciar BitBean. + + + + The supplied proxy address is invalid. + L'adreça proxy introduïda és invalida. + + + + OverviewPage + + + Form + Formulari + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + La informació mostrada pot estar fora de data. El seu moneder es sincronitza automàticament amb la xarxa BitBean després d'establir una connexió, però aquest procés no s'ha completat encara. + + + Stake: + En "stake": + + + + Unconfirmed: + Sense confirmar: + + + Wallet + Moneder + + + + Spendable: + Disponible: + + + + Your current spendable balance + El balanç de saldo actual disponible + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + Immatur: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + 0 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + Balanç minat que encara no ha madurat + + + + Total: + Total: + + + Your current total balance + El seu balanç total + + + <b>Recent transactions</b> + <b>Transaccions recents</b> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Total de transaccions que encara no s'han confirmat, i encara no compten per al balanç actual + + + Total of coins that was staked, and do not yet count toward the current balance + Total de les monedes que s'han posat a fer "stake" (en joc, aposta), i encara no compten per al balanç actual + + + + + out of sync + Fora de sincronia + + + + QRCodeDialog + + + QR Code Dialog + Diàleg de codi QR + + + + Request Payment + Sol·licitud de pagament + + + + Amount: + Quantitat: + + + + Label: + Etiqueta: + + + + Message: + Missatge: + + + + &Save As... + &Desa com ... + + + + Error encoding URI into QR Code. + Error codificant la URI en un codi QR. + + + + The entered amount is invalid, please check. + La quantitat introduïda no és vàlida, comproveu-ho si us plau. + + + + 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 + + + + Save QR Code + Desar codi QR + + + + PNG Images (*.png) + Imatges PNG (*.png) + + + + RPCConsole + + + Client name + Nom del client + + + + + + + + + + + + + N/A + N/A + + + + Client version + Versió del client + + + + &Information + &Informació + + + + Using OpenSSL version + Utilitzant OpenSSL versió + + + + Startup time + &Temps d'inici + + + + Network + Xarxa + + + + Number of connections + Nombre de connexions + + + + On testnet + A testnet + + + + 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 + + + + Command-line options + Opcions de la línia d'ordres + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + Mostra el missatge d'ajuda de BitBean-Qt per obtenir una llista amb les possibles opcions de línia d'ordres BitBean. + + + + &Show + &Mostra + + + + &Console + &Consola + + + + Build date + Data de compilació + + + + BitBean - Debug window + BitBean - Finestra Depuració + + + + BitBean Core + Nucli BitBean + + + + Debug log file + Dietàri de depuració + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + Obriu el fitxer de registre de depuració BitBean des del directori de dades actual. Això pot trigar uns segons en els arxius de registre de grans dimensions. + + + + Clear console + Netejar consola + + + + Welcome to the BitBean RPC console. + Benvingut a la consola RPC de BitBean. + + + + 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. + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + Entrades + + + + automatically selected + Seleccionat automàticament + + + + Insufficient funds! + Fons insuficient + + + + Quantity: + Quantitat: + + + + + 0 + 0 + + + + Bytes: + Bytes: + + + + Amount: + Quantitat: + + + + + + + 0.00 BC + 123.456 BC {0.00 ?} + + + + Priority: + Prioritat: + + + + medium + mig + + + + Fee: + Quota: + + + + Low Output: + Sortida baixa: + + + + no + no + + + + After Fee: + Quota posterior: + + + + Change + Canvi + + + + custom change address + Adreça de canvi pròpia + + + + Send to multiple recipients at once + Enviar a multiples destinataris al mateix temps + + + + Add &Recipient + Afegir &Destinatari + + + + Remove all transaction fields + Traieu tots els camps de transacció + + + + Clear &All + Esborrar &Tot + + + + Balance: + Balanç: + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + Confirmi l'acció d'enviament + + + + S&end + E&nviar + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Introdueix una adreça BitBean (p.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Copy quantity + Copiar quantitat + + + + Copy amount + Copiar quantitat + + + + Copy fee + Copiar comisió + + + + Copy after fee + Copiar després de comisió + + + + Copy bytes + Copiar bytes + + + + Copy priority + Copiar prioritat + + + + Copy low output + Copiar sortida baixa + + + + Copy change + Copiar canvi + + + + <b>%1</b> to %2 (%3) + <b>%1</b> a %2 (%3) + + + + Confirm send beans + + + + + Are you sure you want to send %1? + Esteu segur que voleu enviar %1? + + + + and + i + + + + 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. + + + + Error: Transaction creation failed. + Error: La creació de transacció ha fallat. + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + ADVERTÈNCIA: Direcció BitBean invàlida + + + + (no label) + (sense etiqueta) + + + + WARNING: unknown change address + ADVERTÈNCIA: direcció de canvi desconeguda + + + + SendBeansEntry + + + Form + Formulari + + + + A&mount: + Q&uantitat: + + + + Pay &To: + Pagar &A: + + + + + 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: + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + L'adreça per a enviar el pagament (per exemple: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + Trieu la direcció de la llibreta d'adreces + + + + Alt+A + Alta+A + + + + Paste address from clipboard + Enganxar adreça del porta-retalls + + + + Alt+P + Alt+P + + + + Remove this recipient + Eliminar aquest destinatari + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Introdueix una adreça BitBean (p.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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: + + + 0 + 0 + + + Bytes: + Bytes: + + + Amount: + Quantitat: + + + 0.00 BC + 123.456 BC {0.00 ?} + + + Priority: + Prioritat: + + + medium + mig + + + Fee: + Quota: + + + Low Output: + Sortida baixa: + + + no + no + + + After Fee: + Quota posterior: + + + Change + Canvi + + + custom change address + Adreça de canvi pròpia + + + Send to multiple recipients at once + Enviar a multiples destinataris al mateix temps + + + Add &Recipient + Afegir &Destinatari + + + Remove all transaction fields + Traieu tots els camps de transacció + + + Clear &All + Esborrar &Tot + + + Balance: + Balanç: + + + 123.456 BC + 123.456 BC + + + Confirm the send action + Confirmi l'acció d'enviament + + + S&end + E&nviar + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Introdueix una adreça BitBean (p.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Copy quantity + Copiar quantitat + + + Copy amount + Copiar quantitat + + + Copy fee + Copiar comisió + + + Copy after fee + Copiar després de comisió + + + Copy bytes + Copiar bytes + + + Copy priority + Copiar prioritat + + + Copy low output + Copiar sortida baixa + + + Copy change + Copiar canvi + + + <b>%1</b> to %2 (%3) + <b>%1</b> a %2 (%3) + + + Confirm send coins + Confirmar l'enviament de monedes + + + Are you sure you want to send %1? + Esteu segur que voleu enviar %1? + + + and + i + + + 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. + + + Error: Transaction creation failed. + Error: La creació de transacció ha fallat. + + + 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 sigut rebutjada. Això pot passar si algunes de les monedes al moneder ja s'han gastat, per exemple, si vostè utilitza una còpia del wallet.dat i les monedes han estat gastades a la cópia pero no s'han marcat com a gastades aqui. + + + WARNING: Invalid BitBean address + ADVERTÈNCIA: Direcció BitBean invàlida + + + (no label) + (sense etiqueta) + + + WARNING: unknown change address + ADVERTÈNCIA: direcció de canvi desconeguda + + + + SendCoinsEntry + + Form + Formulari + + + A&mount: + Q&uantitat: + + + Pay &To: + Pagar &A: + + + 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: + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + L'adreça per a enviar el pagament (per exemple: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + Trieu la direcció de la llibreta d'adreces + + + Alt+A + Alta+A + + + Paste address from clipboard + Enganxar adreça del porta-retalls + + + Alt+P + Alt+P + + + Remove this recipient + Eliminar aquest destinatari + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Introdueix una adreça BitBean (p.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + L'adreça per a signar el missatge (per exemple 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + Trieu una adreça de la llibreta d'adreces + + + + + 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 + + + + 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 BitBean address + Signar un missatge per demostrar que és propietari d'aquesta adreça BitBean + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + La direcció que va ser signada amb un missatge (per exemple 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + Comproveu el missatge per assegurar-se que es va signar amb l'adreça BitBean especificada. + + + + Reset all verify message fields + Neteja tots els camps de verificació de missatge + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Introdueix una adreça BitBean (p.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + Clica "Signar Missatge" per a generar una signatura + + + + Enter BitBean signature + Introduïu la signatura BitBean + + + + + 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. + + + + TransactionDesc + + + Open until %1 + Obert fins %1 + + + + Open for %n block(s) + + Obert per a %n bloc + Obert per a %n blocs + + + + + + conflicted + conflicte + + + + %1/offline + %1/offline + + + + %1/unconfirmed + %1/sense confirmar + + + + %1 confirmations + %1 confrimacions + + + + Status + Estat + + + + , broadcast through %n node(s) + + , transmès a través de %n node + , transmès 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) + + madura en %n bloc més + madura 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ó + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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 monedes generades han de madurar 510 blocs abans per a poder estar disponibles. En generar aquest bloc, que va ser transmès a la xarxa per ser afegit a la cadena de bloc. Si no aconsegueix entrar a la cadena, el seu estat canviarà a "no acceptat" i no es podrà gastar. Això pot succeir de tant en tant si un altre node genera un bloc a pocs segons del seu. + + + + Debug information + Informació de depuració + + + + Transaction + Transacció + + + + Inputs + Entrades + + + + Amount + Quantitat + + + + true + cert + + + + false + fals + + + + , has not been successfully broadcast yet + , encara no ha estat emès correctement + + + + unknown + desconegut + + + + 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ó + + + + TransactionTableModel + + + Date + Data + + + + Type + Tipus + + + + Address + Direcció + + + + Amount + Quantitat + + + + Open until %1 + Obert fins %1 + + + + Confirmed (%1 confirmations) + Confirmat (%1 confirmacions) + + + + Open for %n more block(s) + + Obert per a %n bloc més + Obert per a %n blocs més + + + + + + Offline + Desconnectat + + + + Unconfirmed + Sense confirmar + + + + Confirming (%1 of %2 recommended confirmations) + Confirmant (%1 de %2 confirmacions recomanat) + + + + Conflicted + Conflicte + + + + Immature (%1 confirmations, will be available after %2) + Immadurs (%1 confirmacions, estaran disponibles després de %2) + + + + 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 + + + + Received with + Rebut desde + + + + Received from + Rebut de + + + + Sent to + Enviat a + + + + Payment to yourself + Pagament a un mateix + + + + SPROUT + + + + 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ç. + + + + 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 desde + + + + 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 Data + Exportació de dades de transaccions + + + + Comma separated file (*.csv) + Arxiu de separació per comes (*.csv) + + + + Confirmed + Confirmat + + + + Date + Data + + + + Type + Tipus + + + + Label + Etiqueta + + + + Address + Direcció + + + + Amount + Quantitat + + + + ID + ID + + + + Error exporting + Error a l'exportar + + + + Could not write to file %1. + No s'ha pogut escriure al fitxer %1. + + + + Range: + Rang: + + + + to + a + + + + WalletModel + + + Sending... + Enviant... + + + + bitbean-core + + + To use the %s option + Utilitza la opció %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, ha d'establir un rpcpassword al fitxer de configuració: +%s +Es recomana utilitzar la següent contrasenya aleatòria: +rpcuser=BitBeanrpc +rpcpassword=%s +(No cal recordar aquesta contrasenya) +El nom d'usuari i contrasenya NO HA DE SER el mateix. +Si no hi ha l'arxiu, s'ha de crear amb els permisos de només lectura per al propietari. +També es recomana establir alertnotify per a que se li notifiquin els problemes; +per exemple: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + Error + Error + + + + 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 + + + + 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 + + + + 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. + + + + BitBean version + versió BitBean + + + + Usage: + Ús: + + + + Send command to -server or BitBeand + Enviar comandes a -server o BitBeand + + + + List commands + Llista d'ordres + + + + Get help for a command + Obtenir ajuda per a un ordre. + + + + BitBean + BitBean + + + + Options: + Opcions: + + + + This help message + Aquest misatge d'ajuda + + + + Specify configuration file (default: BitBean.conf) + Especifiqueu el fitxer de configuració (per defecte: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + Especificar arxiu pid (per defecte: BitBeand.pid) + + + + Specify data directory + Especificar directori de dades + + + + Specify wallet file (within data directory) + Especifica un arxiu de moneder (dintre del directori de les dades) + + + + Set database cache size in megabytes (default: 25) + Establir tamany de la memoria cau en megabytes (per defecte: 25) + + + + Set database disk log size in megabytes (default: 100) + Configurar la mida del registre en disc de la base de dades en megabytes (per defecte: 100) + + + + Specify connection timeout in milliseconds (default: 5000) + Especificar el temps limit per a un intent de connexió en milisegons (per defecte: 5000) + + + + Connect through socks proxy + Conectar a través d'un proxy SOCKS + + + + Select the version of socks proxy to use (4-5, default: 5) + Seleccioneu la versió de proxy socks per utilitzar (4-5, per defecte: 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + Utilitza proxy per arribar als serveis ocults de Tor (per defecte: la mateixa que -proxy) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Permetre consultes DNS per a -addnode, -seednode i -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Escoltar connexions en <port> (per defecte: 15714 o testnet: 25714) + + + + Maintain at most <n> connections to peers (default: 125) + Mantenir com a molt <n> connexions a peers (per defecte: 125) + + + + 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 + + + + Connect only to the specified node(s) + Connectar només al(s) node(s) especificats + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Només connectar als nodes de la xarxa <net> (IPv4, IPv6 o Tor) + + + + 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) + + + + Find peers using internet relay chat (default: 0) + Trobar companys utilitzant l'IRC (per defecte: 1) {0)?} + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Aceptar connexions d'afora (per defecte: 1 si no -proxy o -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + Enllaçar a l'adreça donada. Utilitzeu la notació [host]:port per a IPv6 + + + + Find peers using DNS lookup (default: 1) + Trobar companys utilitzant la recerca de DNS (per defecte: 1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Sincronitzar el temps amb altres nodes. Desactivar si el temps al seu sistema és precís, per exemple, si fa ús de sincronització amb NTP (per defecte: 1) + + + + Sync checkpoints policy (default: strict) + Política dels punts de control de sincronització (per defecte: estricta) + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Utilitza UPnP per a mapejar els ports d'escolta (per defecte: 1 quan s'escolta) + + + + Use UPnP to map the listening port (default: 0) + Utilitza UPnP per a mapejar els ports d'escolta (per defecte: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + Separeu el bloc i les bases de dades d'adreces. Augmenta el temps d'apagada (per defecte: 0) + + + + Fee per KB to add to transactions you send + Comisió per KB per a afegir a les transaccions que enviï + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + En crear transaccions, ignorar les entrades amb valor inferior a aquesta (per defecte: 0.01) + + + + Accept command line and JSON-RPC commands + Acceptar línia d'ordres i ordres JSON-RPC + + + + 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 + + + + Output extra debugging information. Implies all other -debug* options + Sortida d'informació de depuració extra. Implica totes les opcions de depuracó -debug* + + + + Output extra network debugging information + Sortida d'informació de depuració de xarxa addicional + + + + Prepend debug output with timestamp + Anteposar marca de temps a la sortida de depuració + + + + 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) + + + + Send trace/debug info to console instead of debug.log file + Enviar informació de traça/depuració a la consola en comptes del arxiu debug.log + + + + Send trace/debug info to debugger + Enviar informació de traça/depuració al depurador + + + + Username for JSON-RPC connections + Nom d'usuari per a connexions JSON-RPC + + + + Password for JSON-RPC connections + Contrasenya per a connexions JSON-RPC + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Escoltar connexions JSON-RPC al port <port> (per defecte: 15715 o testnet: 25715) + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + Requerir les confirmacions de canvi (per defecte: 0) + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Fer complir als scripts de transaccions d'utilitzar operadors PUSH canòniques (per defecte: 1) + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + +Executar una ordre quan es rep un avís rellevant (%s en cmd es substitueix per missatge) + + + + 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 + + + + Attempt to recover private keys from a corrupt wallet.dat + Intentar recuperar les claus privades d'un arxiu wallet.dat corrupte + + + + How many blocks to check at startup (default: 2500, 0 = all) + Quants blocs s'han de confirmar a l'inici (per defecte: 2500, 0 = tots) + + + + How thorough the block verification is (0-6, default: 1) + Com és de minuciosa la verificació del bloc (0-6, per defecte: 1) + + + + Imports blocks from external blk000?.dat file + Importar blocs desde l'arxiu extern blk000?.dat + + + + Block creation options: + Opcions de la creació de blocs: + + + + Set minimum block size in bytes (default: 0) + Establir una mida mínima de bloc en bytes (per defecte: 0) + + + + Set maximum block size in bytes (default: 250000) + Establir una mida máxima de bloc en bytes (per defecte: 250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Establir la grandària màxima de les transaccions alta-prioritat/baixa-comisió en bytes (per defecte: 27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Xifres acceptables (per defecte: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Invalid amount for -paytxfee=<amount>: '%s' + Quantitat invalida per a -paytxfee=<amount>: '%s' + + + + 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ó. + + + + Invalid amount for -mininput=<amount>: '%s' + Quantitat invalida per a -mininput=<amount>: '%s' + + + + Wallet %s resides outside data directory %s. + El moneder %s resideix fora del directori de dades %s. + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + No es pot obtenir un bloqueig en el directori de dades %s. BitBean probablement ja estigui en funcionament. + + + + Verifying database integrity... + Comprovant la integritat de la base de dades ... + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Error en inicialitzar l'entorn de base de dades %s! Per recuperar, FACI UNA COPIA DE SEGURETAT D'AQUEST DIRECTORI, a continuació, retiri tot d'ella excepte l'arxiu 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. + 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. + + + + wallet.dat corrupt, salvage failed + L'arxiu wallet.data és corrupte, el rescat de les dades ha fallat + + + + Unknown -socks proxy version requested: %i + S'ha demanat una versió desconeguda de -socks proxy: %i + + + + Unknown network specified in -onlynet: '%s' + Xarxa desconeguda especificada a -onlynet: '%s' + + + + Invalid -proxy address: '%s' + Adreça -proxy invalida: '%s' + + + + Invalid -tor address: '%s' + Adreça -tor invalida: '%s' + + + + Cannot resolve -bind address: '%s' + No es pot resoldre l'adreça -bind: '%s' + + + + 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ò. + + + + Cannot resolve -externalip address: '%s' + No es pot resoldre l'adreça -externalip: '%s' + + + + Invalid amount for -reservebalance=<amount> + Quantitat invalida per a -reservebalance=<amount> + + + + Unable to sign checkpoint, wrong checkpointkey? + + No es pot signar el punt de control, la clau del punt de control esta malament? + + + + + Loading block index... + Carregant índex de blocs... + + + + Error loading blkindex.dat + Error carregant blkindex.dat + + + + Loading wallet... + Carregant moneder... + + + + Error loading wallet.dat: Wallet corrupted + Error carregant wallet.dat: Moneder corrupte + + + + 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. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Error en carregar wallet.dat: El moneder requereix la versió més recent de BitBean + + + + Wallet needed to be rewritten: restart BitBean to complete + El moneder necessita ser reescrita: reiniciar BitBean per completar + + + + Error loading wallet.dat + Error carregant wallet.dat + + + + Cannot downgrade wallet + No es pot reduir la versió del moneder + + + + Cannot initialize keypool + No es pot inicialitzar el keypool + + + + Cannot write default address + No es pot escriure l'adreça per defecte + + + + Rescanning... + Re-escanejant... + + + + Importing blockchain data file. + Important fitxer de dades de la cadena de blocs + + + + Importing bootstrap blockchain data file. + Important fitxer de dades d'arrencada de la cadena de blocs + + + + Loading addresses... + Carregant adreces... + + + + Error: could not start node + Error: no s'ha pogut iniciar el node + + + + Done loading + Càrrega acabada + + + + Unable to bind to %s on this computer. BitBean is probably already running. + No es pot enllaçar a %s en aquest equip. BitBean probablement ja estigui en funcionament. + + + + 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) + + + + Error: Wallet locked, unable to create transaction + Error: Moneder bloquejat, no es pot de crear la transacció + + + + Error: Wallet unlocked for staking only, unable to create transaction. + Error: Cartera bloquejada nomès per a fer "stake", no es pot de crear la transacció + + + + 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 comisió d'almenys %s degut a la seva quantitat, complexitat, o l'ús dels fons rebuts recentment + + + + Error: Transaction creation failed + Error: La creació de transacció ha fallat. + + + + Sending... + Enviant... + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Quanitat invalida + + + + Insufficient funds + Balanç insuficient + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Avís: Comproveu que la data i hora de l'equip siguin correctes! Si el seu rellotge és erroni BitBean no funcionarà correctament. + + + + Warning: This version is obsolete, upgrade required! + Advertència: Aquetsa versió està obsoleta, és necessari actualitzar! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + ADVERTÈNCIA: violació de punt de control sincronitzat detectada, es saltarà! + + + + Warning: Disk space is low! + Avís: L'espai en disc és baix! + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + ADVERTÈNCIA: Punt de control invàlid! Les transaccions mostrades podríen no ser correctes! Podria ser necessari actualitzar o notificar-ho als desenvolupadors. + + + + bitcoin-core + + BitBean version + versió BitBean + + + Usage: + Ús: + + + Send command to -server or BitBeand + Enviar comandes a -server o BitBeand + + + List commands + Llista d'ordres + + + Get help for a command + Obtenir ajuda per a un ordre. + + + Options: + Opcions: + + + Specify configuration file (default: BitBean.conf) + Especifiqueu el fitxer de configuració (per defecte: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + Especificar arxiu pid (per defecte: BitBeand.pid) + + + Specify wallet file (within data directory) + Especifica un arxiu de moneder (dintre del directori de les dades) + + + 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) + + + Set database disk log size in megabytes (default: 100) + Configurar la mida del registre en disc de la base de dades en megabytes (per defecte: 100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Escoltar connexions en <port> (per defecte: 15714 o testnet: 25714) + + + 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 + + + Bind to given address. Use [host]:port notation for IPv6 + Enllaçar a l'adreça donada. Utilitzeu la notació [host]:port per a IPv6 + + + Stake your coins to support network and gain reward (default: 1) + Posa les teves monedes a fer "stake" per donar suport a la xarxa i obtenir una recompensa (per defecte: 1) + + + 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 + + + Detach block and address databases. Increases shutdown time (default: 0) + Separeu el bloc i les bases de dades d'adreces. Augmenta el temps d'apagada (per defecte: 0) + + + 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 sigut rebutjada. Això pot passar si algunes de les monedes al moneder ja s'han gastat, per exemple, si vostè utilitza una còpia del wallet.dat i les monedes han estat gastades a la cópia pero no s'han marcat com a gastades aqui. + + + 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 comisió d'almenys %s degut a la seva quantitat, complexitat, o l'ús dels fons rebuts recentment + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Escoltar connexions JSON-RPC al port <port> (per defecte: 15715 o testnet: 25715) + + + Accept command line and JSON-RPC commands + Acceptar línia d'ordres i ordres JSON-RPC + + + Error: Transaction creation failed + Error: La creació de transacció ha fallat. + + + Error: Wallet locked, unable to create transaction + Error: Moneder bloquejat, no es pot de crear la transacció + + + Importing blockchain data file. + Important fitxer de dades de la cadena de blocs + + + Importing bootstrap blockchain data file. + Important fitxer de dades d'arrencada de la cadena de blocs + + + 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) + + + 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 + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Error en inicialitzar l'entorn de base de dades %s! Per recuperar, FACI UNA COPIA DE SEGURETAT D'AQUEST DIRECTORI, a continuació, retiri tot d'ella excepte l'arxiu wallet.dat. + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Establir la grandària màxima de les transaccions alta-prioritat/baixa-comisió en bytes (per defecte: 27000) + + + 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 BitBean will not work properly. + Avís: Comproveu que la data i hora de l'equip siguin correctes! Si el seu rellotge és erroni BitBean no funcionarà correctament. + + + 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. + + + Attempt to recover private keys from a corrupt wallet.dat + Intentar recuperar les claus privades d'un arxiu wallet.dat corrupte + + + Block creation options: + Opcions de la creació de blocs: + + + Connect only to the specified node(s) + Connectar només al(s) node(s) especificats + + + 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) + + + 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ò. + + + Find peers using DNS lookup (default: 1) + Trobar companys utilitzant la recerca de DNS (per defecte: 1) + + + Sync checkpoints policy (default: strict) + Política dels punts de control de sincronització (per defecte: estricta) + + + Invalid -tor address: '%s' + Adreça -tor invalida: '%s' + + + Invalid amount for -reservebalance=<amount> + Quantitat invalida per a -reservebalance=<amount> + + + 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) + Només connectar als nodes de la xarxa <net> (IPv4, IPv6 o Tor) + + + Output extra debugging information. Implies all other -debug* options + Sortida d'informació de depuració extra. Implica totes les opcions de depuracó -debug* + + + Output extra network debugging information + Sortida d'informació de depuració de xarxa addicional + + + Prepend debug output with timestamp + Anteposar marca de temps a la sortida de depuració + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opcions SSL: (veure la Wiki de Bitcoin per a instruccions de configuració SSL) + + + Select the version of socks proxy to use (4-5, default: 5) + Seleccioneu la versió de proxy socks per utilitzar (4-5, per defecte: 5) + + + Send trace/debug info to console instead of debug.log file + Enviar informació de traça/depuració a la consola en comptes del arxiu debug.log + + + Send trace/debug info to debugger + Enviar informació de traça/depuració al depurador + + + Set maximum block size in bytes (default: 250000) + Establir una mida máxima de bloc en bytes (per defecte: 250000) + + + Set minimum block size in bytes (default: 0) + Establir una mida mínima de bloc en bytes (per defecte: 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) + + + Specify connection timeout in milliseconds (default: 5000) + Especificar el temps limit per a un intent de connexió en milisegons (per defecte: 5000) + + + Unable to sign checkpoint, wrong checkpointkey? + + No es pot signar el punt de control, la clau del punt de control esta malament? + + + + Use UPnP to map the listening port (default: 0) + Utilitza UPnP per a mapejar els ports d'escolta (per defecte: 0) + + + Use UPnP to map the listening port (default: 1 when listening) + Utilitza UPnP per a mapejar els ports d'escolta (per defecte: 1 quan s'escolta) + + + Use proxy to reach tor hidden services (default: same as -proxy) + Utilitza proxy per arribar als serveis ocults de Tor (per defecte: la mateixa que -proxy) + + + Username for JSON-RPC connections + Nom d'usuari per a connexions JSON-RPC + + + Verifying database integrity... + Comprovant la integritat de la base de dades ... + + + WARNING: syncronized checkpoint violation detected, but skipped! + ADVERTÈNCIA: violació de punt de control sincronitzat detectada, es saltarà! + + + Warning: Disk space is low! + Avís: L'espai en disc és baix! + + + Warning: This version is obsolete, upgrade required! + Advertència: Aquetsa versió està obsoleta, és necessari actualitzar! + + + 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 + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, ha d'establir un rpcpassword al fitxer de configuració: +%s +Es recomana utilitzar la següent contrasenya aleatòria: +rpcuser=BitBeanrpc +rpcpassword=%s +(No cal recordar aquesta contrasenya) +El nom d'usuari i contrasenya NO HA DE SER el mateix. +Si no hi ha l'arxiu, s'ha de crear amb els permisos de només lectura per al propietari. +També es recomana establir alertnotify per a que se li notifiquin els problemes; +per exemple: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + Find peers using internet relay chat (default: 0) + Trobar companys utilitzant l'IRC (per defecte: 1) {0)?} + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Sincronitzar el temps amb altres nodes. Desactivar si el temps al seu sistema és precís, per exemple, si fa ús de sincronització amb NTP (per defecte: 1) + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + En crear transaccions, ignorar les entrades amb valor inferior a aquesta (per defecte: 0.01) + + + 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) + + + 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) + + + Require a confirmations for change (default: 0) + Requerir les confirmacions de canvi (per defecte: 0) + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Fer complir als scripts de transaccions d'utilitzar operadors PUSH canòniques (per defecte: 1) + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + +Executar una ordre quan es rep un avís rellevant (%s en cmd es substitueix per missatge) + + + 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 + + + How many blocks to check at startup (default: 2500, 0 = all) + Quants blocs s'han de confirmar a l'inici (per defecte: 2500, 0 = tots) + + + How thorough the block verification is (0-6, default: 1) + Com és de minuciosa la verificació del bloc (0-6, per defecte: 1) + + + Imports blocks from external blk000?.dat file + Importar blocs desde l'arxiu extern blk000?.dat + + + 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) + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Xifres acceptables (per defecte: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + Error: Wallet unlocked for staking only, unable to create transaction. + Error: Cartera bloquejada nomès per a fer "stake", no es pot de crear la transacció + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + ADVERTÈNCIA: Punt de control invàlid! Les transaccions mostrades podríen no ser correctes! Podria ser necessari actualitzar o notificar-ho als desenvolupadors. + + + This help message + Aquest misatge d'ajuda + + + Wallet %s resides outside data directory %s. + El moneder %s resideix fora del directori de dades %s. + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + No es pot obtenir un bloqueig en el directori de dades %s. BitBean probablement ja estigui en funcionament. + + + BitBean + BitBean + + + 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) + + + Connect through socks proxy + Conectar a través d'un proxy SOCKS + + + Allow DNS lookups for -addnode, -seednode and -connect + Permetre consultes DNS per a -addnode, -seednode i -connect + + + Loading addresses... + Carregant adreces... + + + Error loading blkindex.dat + Error carregant blkindex.dat + + + Error loading wallet.dat: Wallet corrupted + Error carregant wallet.dat: Moneder corrupte + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Error en carregar wallet.dat: El moneder requereix la versió més recent de BitBean + + + Wallet needed to be rewritten: restart BitBean to complete + El moneder necessita ser reescrita: reiniciar BitBean per completar + + + 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' + + + Error: could not start node + Error: no s'ha pogut iniciar el node + + + Sending... + Enviant... + + + 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. BitBean is probably already running. + No es pot enllaçar a %s en aquest equip. BitBean probablement ja estigui en funcionament. + + + Fee per KB to add to transactions you send + Comisió per KB per a afegir a les transaccions que enviï + + + Invalid amount for -mininput=<amount>: '%s' + Quantitat invalida per a -mininput=<amount>: '%s' + + + Loading wallet... + Carregant moneder... + + + Cannot downgrade wallet + No es pot reduir la versió del moneder + + + Cannot initialize keypool + No es pot inicialitzar el keypool + + + 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. + + + diff --git a/src/qt/locale/bitbean_cs.qm b/src/qt/locale/bitbean_cs.qm new file mode 100644 index 0000000..9e6ff9d Binary files /dev/null and b/src/qt/locale/bitbean_cs.qm differ diff --git a/src/qt/locale/bitcoin_cs.ts b/src/qt/locale/bitbean_cs.ts similarity index 55% rename from src/qt/locale/bitcoin_cs.ts rename to src/qt/locale/bitbean_cs.ts index 87c73cc..f05ad67 100644 --- a/src/qt/locale/bitcoin_cs.ts +++ b/src/qt/locale/bitbean_cs.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean O BitBeanu - + <b>BitBean</b> version Verze <b>BitBeanu</b> - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - 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. - + Tohle je experimentální program. Šířen pod licencí MIT/X11, viz přiložený soubor COPYING nebo http://www.opensource.org/licenses/mit-license.php. @@ -37,64 +49,64 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open AddressBookPage - + Address Book Kniha adres - + Double-click to edit address or label Dvojklikem myši začneš upravovat označení adresy - + Create a new address Vytvoř novou adresu - + Copy the currently selected address to the system clipboard Zkopíruj aktuálně vybranou adresu do systémové schránky - + &New Address &Nová adresa - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &Kopíruj adresu - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list Smaž zvolenou adresu ze seznamu - + Verify a message to ensure it was signed with a specified BitBean address - + @@ -102,7 +114,7 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open &Ověřit správu - + &Delete &Smaž @@ -119,7 +131,7 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Export Address Book Data - + @@ -129,12 +141,12 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Error exporting - + Could not write to file %1. - + @@ -158,34 +170,34 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -234,16 +246,21 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + Jsi si jistý, že chceš peněženku zašifrovat? - Are you sure you wish to encrypt your wallet? - Jsi si jistý, že chceš peněženku zašifrovat? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. DŮLEŽITÉ: Vš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. @@ -260,12 +277,7 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open Peněženka je zašifrována - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -307,333 +319,591 @@ Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v Open - BitcoinGUI - - - Sign &message... - Po&depiš zprávu... - + BeanControlDialog - - Synchronizing with network... - Synchronizuji se se sítí... + + Bean Control + - - &Overview - &Přehled + + Quantity: + - - Show general overview of wallet - Zobraz celkový přehled peněženky + + Bytes: + - - &Transactions - &Transakce + + Amount: + Částka: - - Browse transaction history - Procházej historii transakcí + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - &Konec + + Tree mode + - - Quit application - Ukonči aplikaci + + List mode + - - Show information about BitBean - + + Amount + Částka - - About &Qt - O &Qt + + Label + Označení - - Show information about Qt - Zobraz informace o Qt + + Address + Adresa - - &Options... - &Možnosti... + + Date + Datum - - &Encrypt Wallet... - Zaši&fruj peněženku... + + Confirmations + - &Backup Wallet... - &Zazálohuj peněženku... + Confirmed + Potvrzeno - - &Change Passphrase... - Změň &heslo... - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + Kopíruj částku - - Modify configuration options for BitBean - + + Copy transaction ID + Kopíruj ID transakce - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - Zazálohuj peněženku na jiné místo + + Copy after fee + - - Change the passphrase used for wallet encryption - Změň heslo k šifrování peněženky + + Copy bytes + - - &Debug window - &Ladicí okno + + Copy priority + - Open debugging and diagnostic console - Otevři ladicí a diagnostickou konzoli + Copy low output + - - &Verify message... - &Ověř zprávu... + + Copy change + - - BitBean - + + highest + - - Wallet - Peněženka + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - &Zobraz/Skryj + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Soubor + + DUST + - - &Settings - &Nastavení + + yes + - - &Help - Ná&pověda + + no + - - Tabs toolbar - Panel s listy + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + - - Not staking because wallet is locked - + + (change) + + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - + + Vault + - - - %n second(s) ago - + + + &Overview + &Přehled - - &Unlock Wallet... - + + Show general overview of wallet + Zobraz celkový přehled peněženky + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transakce + + + + Browse transaction history + Procházej historii transakcí + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + &Konec + + + + Quit application + Ukonči aplikaci + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + O &Qt + + + + Show information about Qt + Zobraz informace o Qt + + + + &Options... + &Možnosti... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + &Zobraz/Skryj + + + + &Encrypt Wallet... + Zaši&fruj peněženku... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &Zazálohuj peněženku... + + + + Backup wallet to another location + Zazálohuj peněženku na jiné místo + + + + &Change Passphrase... + Změň &heslo... + + + + Change the passphrase used for wallet encryption + Změň heslo k šifrování peněženky + + + + &Unlock Wallet... + + + + + Unlock wallet + Odemkni peněženku + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Po&depiš zprávu... + + + + &Verify message... + &Ověř zprávu... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + &Ladicí okno + + + + Open debugging and diagnostic console + Otevři ladicí a diagnostickou konzoli + + + + &File + &Soubor + + + + &Settings + &Nastavení + + + + &Help + Ná&pověda + + + + Tabs toolbar + Panel s listy + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + + Synchronizing with network... + Synchronizuji se se sítí... + + + + ~%n block(s) remaining + + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + - + %n minute(s) ago - + + + + + %n hour(s) ago - + + + + + %n day(s) ago - + + + + + Up to date - Aktuální + Aktuální Catching up... - Stahuji... + Stahuji... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Odeslané transakce + Odeslané transakce Incoming transaction - Příchozí transakce + Příchozí transakce @@ -642,7 +912,7 @@ Amount: %2 Type: %3 Address: %4 - Datum: %1 + Datum: %1 Částka: %2 Typ: %3 Adresa: %4 @@ -652,341 +922,325 @@ Adresa: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Peněženka je <b>zašifrovaná</b> a momentálně <b>odemčená</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> + Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + + %n minute(s) - + + + + + %n hour(s) - hodinu%n hodiny%n hodin + + hodinu + %n hodiny + %n hodin + %n day(s) - den%n dny%n dnů + + den + %n dny + %n dnů + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Upozornění sítě + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - + + Not staking because you don't have mature beans + - - Bytes: - + + Not staking + + + + BitcoinGUI - - Amount: - Částka: + Sign &message... + Po&depiš zprávu... - - Priority: - + Synchronizing with network... + Synchronizuji se se sítí... - - Fee: - + &Overview + &Přehled - - Low Output: - + Show general overview of wallet + Zobraz celkový přehled peněženky - - no - + &Transactions + &Transakce - - After Fee: - + Browse transaction history + Procházej historii transakcí - - Change: - + E&xit + &Konec - - (un)select all - + Quit application + Ukonči aplikaci - - Tree mode - + About &Qt + O &Qt - - List mode - + Show information about Qt + Zobraz informace o Qt - - Amount - Částka + &Options... + &Možnosti... - - Label - + &Encrypt Wallet... + Zaši&fruj peněženku... - - Address - Adresa + &Backup Wallet... + &Zazálohuj peněženku... - - Date - Datum + &Change Passphrase... + Změň &heslo... - - Confirmations - + Backup wallet to another location + Zazálohuj peněženku na jiné místo - - Confirmed - Potvrzeno + Change the passphrase used for wallet encryption + Změň heslo k šifrování peněženky - - Priority - + &Debug window + &Ladicí okno - - Copy address - Kopírovat sdresu + Open debugging and diagnostic console + Otevři ladicí a diagnostickou konzoli - - Copy label - Kopírovat popis + &Verify message... + &Ověř zprávu... - - - Copy amount - Kopíruj částku + Wallet + Peněženka - - Copy transaction ID - Kopíruj ID transakce + &Show / Hide + &Zobraz/Skryj - - Copy quantity - + &File + &Soubor - - Copy fee - + &Settings + &Nastavení - - Copy after fee - + &Help + Ná&pověda - - Copy bytes - + Tabs toolbar + Panel s listy - - Copy priority - + [testnet] + [testnet] - - Copy low output - + Up to date + Aktuální - - Copy change - + Catching up... + Stahuji... - - highest - + Sent transaction + Odeslané transakce - - high - + Incoming transaction + Příchozí transakce - - medium-high - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum: %1 +Částka: %2 +Typ: %3 +Adresa: %4 + - - medium - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Peněženka je <b>zašifrovaná</b> a momentálně <b>odemčená</b> - - low-medium - + Wallet is <b>encrypted</b> and currently <b>locked</b> + Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b> + + + %n hour(s) + + hodinu + %n hodiny + %n hodin + + + + %n day(s) + + den + %n dny + %n dnů + + + + ClientModel - - low - + + Network Alert + Upozornění sítě + + + CoinControlDialog - - lowest - + Amount: + Částka: - - DUST - + Amount + Částka - - yes - + Address + Adresa - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Date + Datum - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Confirmed + Potvrzeno - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Copy address + Kopírovat sdresu - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy label + Kopírovat popis - - - (no label) - (bez popisu) + Copy amount + Kopíruj částku - - change from %1 (%2) - + Copy transaction ID + Kopíruj ID transakce - - (change) - + (no label) + (bez popisu) EditAddressDialog - + Edit Address Uprav adresu @@ -998,7 +1252,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1008,7 +1262,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1038,7 +1292,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1054,98 +1308,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Užití: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + 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. Fee 5.00 recommended. - - - - + Pay transaction &fee Platit &transakční poplatek - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1155,7 +1409,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1165,12 +1419,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1180,7 +1434,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1240,7 +1494,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1249,31 +1503,35 @@ This label turns red, if the priority is smaller than "medium". - 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í. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - Ukazo&vat adresy ve výpisu transakcí + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + 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 BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + Ukazo&vat adresy ve výpisu transakcí - + &OK &Budiž @@ -1285,7 +1543,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1296,13 +1554,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1313,78 +1571,158 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Formulář - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - Peněženka + Peněženka - + Spendable: - + - + Your current spendable balance Aktuální disponibilní stav tvého účtu - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: Nedozráno: + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + Mined balance that has not yet matured - Vytěžené mince, které ještě nejsou zralé + Vytěžené mince, které ještě nejsou zralé - + Total: Celkem: - Your current total balance - Celkový stav tvého účtu + Celkový stav tvého účtu - <b>Recent transactions</b> - <b>Poslední transakce</b> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - - - - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Poslední transakce</b> - + out of sync nesynchronizováno @@ -1393,65 +1731,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Částka: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Název klienta @@ -1502,7 +1840,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1532,17 +1870,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1557,12 +1895,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1572,7 +1910,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1582,7 +1920,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1596,59 +1934,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Pošli mince + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - Částka: + Částka: @@ -1656,280 +1994,378 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Pošli více příjemcům naráz + Pošli více příjemcům naráz Add &Recipient - Při&dej příjemce + Při&dej příjemce Remove all transaction fields - + Clear &All - Všechno s&maž + Balance: - Stav účtu: + Stav účtu: 123.456 BC - + Confirm the send action - Potvrď odeslání + Potvrď odeslání S&end - P&ošli + P&ošli - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - Kopíruj částku + Kopíruj částku Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - Potvrď odeslání mincí + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - Adresa příjemce je neplatná, překontroluj ji prosím. + 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. + Odesílaná částka musí být větší než 0. The amount exceeds your balance. - Částka překračuje stav účtu. + Čá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. + 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. + Zaznamenána duplikovaná adresa; každá adresa může být v odesílané platbě pouze jednou. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (bez popisu) + WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Formulář - + A&mount: - Čás&tka: + Čás&tka: Pay &To: - &Komu: + &Komu: - + 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 + Zadej označení této adresy; obojí se ti pak uloží do adresáře &Label: - O&značení: + O&značení: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Vlož adresu ze schránky + Vlož adresu ze schránky Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + - SignVerifyMessageDialog + SendCoinsDialog - - Signatures - Sign / Verify a Message - Podpisy - podepsat/ověřit zprávu + Send Coins + Pošli mince - - - &Sign Message - &Podepiš zprávu + Amount: + Částka: + + + Send to multiple recipients at once + Pošli více příjemcům naráz + + + Add &Recipient + Při&dej příjemce + + + Clear &All + Všechno s&maž + + + Balance: + Stav účtu: + + + Confirm the send action + Potvrď odeslání + + + S&end + P&ošli + + + Copy amount + Kopíruj částku + + + Confirm send coins + Potvrď odeslání mincí + + + 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. + + + (no label) + (bez popisu) + + + + SendCoinsEntry + + A&mount: + Čás&tka: + + + Pay &To: + &Komu: + + + 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í: + + + Alt+A + Alt+A + + + Paste address from clipboard + Vlož adresu ze schránky + + + Alt+P + Alt+P + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Podpisy - podepsat/ověřit zprávu + + + + + &Sign Message + &Podepiš zprávu @@ -1939,13 +2375,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1976,7 +2412,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -2003,12 +2439,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2019,7 +2455,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2029,7 +2465,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2108,12 +2544,16 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + + conflicted - + @@ -2138,7 +2578,11 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - , rozesláno přes 1 uzel, rozesláno přes %n uzly, rozesláno přes %n uzlů + + , rozesláno přes 1 uzel + , rozesláno přes %n uzly + , rozesláno přes %n uzlů + @@ -2191,7 +2635,11 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - dozraje po jednom blokudozraje po %n blocíchdozraje po %n blocích + + dozraje po jednom bloku + dozraje po %n blocích + dozraje po %n blocích + @@ -2233,8 +2681,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2280,7 +2728,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Detaily transakce @@ -2325,32 +2773,36 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - Otevřeno pro 1 další blokOtevřeno pro %n další blokyOtevřeno pro %n dalších bloků + + Otevřeno pro 1 další blok + Otevřeno pro %n další bloky + Otevřeno pro %n dalších bloků + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2359,928 +2811,1235 @@ This label turns red, if the priority is smaller than "medium". - Generated but not accepted - Vygenerováno, ale neakceptováno + Generated but not accepted + Vygenerováno, ale neakceptováno + + + + Received with + Přijato do + + + + Received from + Přijato od + + + + Sent to + Posláno na + + + + Payment to yourself + Platba sama sobě + + + + SPROUT + + + + 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. + + + + 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 Data + + + + + Comma separated file (*.csv) + CSV formát (*.csv) + + + + Confirmed + Potvrzeno + + + + Date + Datum + + + + Type + Typ + + + + Label + Označení + + + + Address + Adresa + + + + Amount + Částka + + + + ID + ID + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + Rozsah: + + + + to + + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + K použití volby %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Chyba + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Musíš nastavit rpcpassword=<heslo> v konfiguračním souboru: +%s +Pokud konfigurační soubor ještě neexistuje, vytvoř ho tak, aby ho mohl číst pouze vlastník. + + + + BitBean version + + + + + Usage: + Užití: + + + + Send command to -server or BitBeand + + + + + List commands + Výpis příkazů + + + + Get help for a command + Získat nápovědu pro příkaz + + + + BitBean + + + + + Options: + Možnosti: + + + + This help message + Tato nápověda + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Adresář pro data + + + + Specify wallet file (within data directory) + Udej název souboru s peněženkou (v rámci datového adresáře) + + + + Set database cache size in megabytes (default: 25) + Nastavit velikost databázové vyrovnávací paměti v megabajtech (výchozí: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Zadej časový limit spojení v milisekundách (výchozí: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Povolit DNS dotazy pro -addnode (přidání uzlu), -seednode a -connect (připojení) + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Povolit nejvýše <n> připojení k uzlům (výchozí: 125) + + + + 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 + + + + Connect only to the specified node(s) + Připojit se pouze k zadanému uzlu (příp. zadaným uzlům) + + + + 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 + + + + 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) + + + + 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) + + + + Find peers using internet relay chat (default: 0) + + + + + 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) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Použít UPnP k namapování naslouchacího portu (výchozí: 1, pokud naslouchá) + + + + Use UPnP to map the listening port (default: 0) + Použít UPnP k namapování naslouchacího portu (výchozí: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + Akceptovat příkazy z příkazové řádky a přes JSON-RPC + + + + 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) + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + 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) + + + + Send trace/debug info to console instead of debug.log file + Posílat stopovací/ladicí informace do konzole místo do souboru debug.log + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + Uživatelské jméno pro JSON-RPC spojení + + + + Password for JSON-RPC connections + Heslo pro JSON-RPC spojení + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + - - Received with - Přijato do + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - Received from - Přijato od + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - Sent to - Posláno na + Upgrade wallet to latest format + Převést peněženku na nejnovější formát - - Payment to yourself - Platba sama sobě + + Set key pool size to <n> (default: 100) + Nastavit zásobník klíčů na velikost <n> (výchozí: 100) - - Mined - Vytěženo + + Rescan the block chain for missing wallet transactions + Přeskenovat řetězec bloků na chybějící transakce tvé pěněženky - - (n/a) - (n/a) + + Attempt to recover private keys from a corrupt wallet.dat + Pokusit se zachránit soukromé klíče z poškozeného souboru wallet.dat - - 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í. + + How many blocks to check at startup (default: 2500, 0 = all) + - - Date and time that the transaction was received. - Datum a čas přijetí transakce. + + How thorough the block verification is (0-6, default: 1) + - - Type of transaction. - Druh transakce. + + Imports blocks from external blk000?.dat file + - - Destination address of transaction. - Cílová adresa transakce. + + Block creation options: + Možnosti vytvoření bloku: - - Amount removed from or added to balance. - Částka odečtená z nebo přičtená k účtu. + + Set minimum block size in bytes (default: 0) + Nastavit minimální velikost bloku v bajtech (výchozí: 0) - - - TransactionView - - - All - Vše + + Set maximum block size in bytes (default: 250000) + - - Today - Dnes + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - This week - Tento týden + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - This month - Tento měsíc + Use OpenSSL (https) for JSON-RPC connections + Použít OpenSSL (https) pro JSON-RPC spojení - Last month - Minulý měsíc + Server certificate file (default: server.cert) + Soubor se serverovým certifikátem (výchozí: server.cert) - This year - Letos + Server private key (default: server.pem) + Soubor se serverovým soukromým klíčem (výchozí: server.pem) - Range... - Rozsah... + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Received with - Přijato + + Invalid amount for -paytxfee=<amount>: '%s' + Neplatná částka pro -paytxfee=<částka>: '%s' - - Sent to - Posláno + + 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. - - To yourself - Sám sobě + + Invalid amount for -mininput=<amount>: '%s' + - Mined - Vytěženo + Wallet %s resides outside data directory %s. + - Other - Ostatní + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Enter address or label to search - Zadej adresu nebo označení pro její vyhledání + + Verifying database integrity... + - - Min amount - Minimální částka + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Copy address - Kopíruj adresu + + 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. + + + + wallet.dat corrupt, salvage failed + Soubor wallet.dat je poškozen, jeho záchrana se nezdařila - Copy label - Kopíruj její označení + Unknown -socks proxy version requested: %i + V -socks byla požadována neznámá verze proxy: %i - Copy amount - Kopíruj částku + Unknown network specified in -onlynet: '%s' + V -onlynet byla uvedena neznámá síť: '%s' - Copy transaction ID - Kopíruj ID transakce + Invalid -proxy address: '%s' + Neplatná -proxy adresa: '%s' - Edit label - Uprav označení + Invalid -tor address: '%s' + - Show transaction details - Zobraz detaily transakce + Cannot resolve -bind address: '%s' + Nemohu přeložit -bind adresu: '%s' - - Export Transaction Data - + + 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. - Comma separated file (*.csv) - CSV formát (*.csv) + Cannot resolve -externalip address: '%s' + Nemohu přeložit -externalip adresu: '%s' - - Confirmed - Potvrzeno + + Invalid amount for -reservebalance=<amount> + - Date - Datum + Unable to sign checkpoint, wrong checkpointkey? + + - Type - Typ + Loading block index... + Načítám index bloků... - Label - Označení + Error loading blkindex.dat + - Address - Adresa + Loading wallet... + Načítám peněženku... - Amount - Částka + Error loading wallet.dat: Wallet corrupted + Chyba při načítání wallet.dat: peněženka je poškozená - ID - ID + 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é. - - Error exporting - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Could not write to file %1. - + + Wallet needed to be rewritten: restart BitBean to complete + - - Range: - Rozsah: + + Error loading wallet.dat + Chyba při načítání wallet.dat - - to - + + Cannot downgrade wallet + Nemohu převést peněženku do staršího formátu - - - WalletModel - - Sending... - + + Cannot initialize keypool + - - - bitcoin-core - - BitBean version - + + Cannot write default address + Nemohu napsat výchozí adresu - Usage: - Užití: + Rescanning... + Přeskenovávám... - Send command to -server or BitBeand - + Importing blockchain data file. + - List commands - Výpis příkazů + Importing bootstrap blockchain data file. + - Get help for a command - Získat nápovědu pro příkaz + Loading addresses... + Načítám adresy... - - Options: - Možnosti: + + Error: could not start node + - - Specify configuration file (default: BitBean.conf) - + + Done loading + Načítání dokončeno - Specify pid file (default: BitBeand.pid) - + Unable to bind to %s on this computer. BitBean is probably already running. + - Specify wallet file (within data directory) - Udej název souboru s peněženkou (v rámci datového adresáře) + 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) - - Specify data directory - Adresář pro data + + Error: Wallet locked, unable to create transaction + - - Set database cache size in megabytes (default: 25) - Nastavit velikost databázové vyrovnávací paměti v megabajtech (výchozí: 25) + + Error: Wallet unlocked for staking only, unable to create transaction. + - Set database disk log size in megabytes (default: 100) - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Error: Transaction creation failed + + + + + Sending... + + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Neplatná částka + + + + Insufficient funds + Nedostatek prostředků + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + + + + + Warning: This version is obsolete, upgrade required! + Upozornění: tahle verze je zastaralá, měl bys ji aktualizovat! - Maintain at most <n> connections to peers (default: 125) - Povolit nejvýše <n> připojení k uzlům (výchozí: 125) + WARNING: syncronized checkpoint violation detected, but skipped! + - - 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 + + Warning: Disk space is low! + - Specify your own public address - Specifikuj svou veřejnou adresu + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Bind to given address. Use [host]:port notation for IPv6 - + Usage: + Užití: - - Stake your coins to support network and gain reward (default: 1) - + List commands + Výpis příkazů - - Threshold for disconnecting misbehaving peers (default: 100) - Práh pro odpojování zlobivých uzlů (výchozí: 100) + Get help for a command + Získat nápovědu pro příkaz - - 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) + Options: + Možnosti: - - 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 + Specify wallet file (within data directory) + Udej název souboru s peněženkou (v rámci datového adresáře) - - Detach block and address databases. Increases shutdown time (default: 0) - + Specify data directory + Adresář pro data - - 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. - + Set database cache size in megabytes (default: 25) + Nastavit velikost databázové vyrovnávací paměti v megabajtech (výchozí: 25) - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + Maintain at most <n> connections to peers (default: 125) + Povolit nejvýše <n> připojení k uzlům (výchozí: 125) - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + 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 - - Accept command line and JSON-RPC commands - Akceptovat příkazy z příkazové řádky a přes JSON-RPC + Specify your own public address + Specifikuj svou veřejnou adresu - - Error: Transaction creation failed - + Threshold for disconnecting misbehaving peers (default: 100) + Práh pro odpojování zlobivých uzlů (výchozí: 100) - - Error: Wallet locked, unable to create transaction - + 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) - - Importing blockchain data file. - + 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 - - Importing bootstrap blockchain data file. - + Accept command line and JSON-RPC commands + Akceptovat příkazy z příkazové řádky a přes JSON-RPC - Run in the background as a daemon and accept commands - Běžet na pozadí jako démon a akceptovat příkazy + Běžet na pozadí jako démon a akceptovat příkazy - Use the test network - Použít testovací síť (testnet) + 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) + Přijímat spojení zvenčí (výchozí: 1, pokud není zadáno -proxy nebo -connect) - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + Při nastavování naslouchacího RPC portu %u pro IPv6 nastala chyba, vracím se k IPv4: %s - 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 BitBean will not work properly. - + Upozornění: -paytxfee je nastaveno velmi vysoko! Toto je transakční poplatek, který zaplatíš za každou poslanou transakci. - 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é. + 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. + 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. - Attempt to recover private keys from a corrupt wallet.dat - Pokusit se zachránit soukromé klíče z poškozeného souboru wallet.dat + Pokusit se zachránit soukromé klíče z poškozeného souboru wallet.dat - Block creation options: - Možnosti vytvoření bloku: + Možnosti vytvoření bloku: - Connect only to the specified node(s) - Připojit se pouze k zadanému uzlu (příp. zadaným uzlům) + Připojit se pouze k zadanému uzlu (příp. zadaným uzlům) - 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) + Zjistit vlastní IP adresu (výchozí: 1, pokud naslouchá a není zadáno -externalip) - 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. + Nepodařilo se naslouchat na žádném portu. Použij -listen=0, pokud to byl tvůj záměr. - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - 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) + 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) + Maximální velikost odesílacího bufferu pro každé spojení, <n>*1000 bajtů (výchozí: 1000) - 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) - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - + Připojit se pouze k uzlům v <net> síti (IPv4, IPv6 nebo Tor) - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Možnosti SSL: (viz instrukce nastavení SSL v Bitcoin Wiki) - - - - Select the version of socks proxy to use (4-5, default: 5) - + Možnosti SSL: (viz instrukce nastavení SSL v Bitcoin Wiki) - Send trace/debug info to console instead of debug.log file - Posílat stopovací/ladicí informace do konzole místo do souboru debug.log + Posílat stopovací/ladicí informace do konzole místo do souboru debug.log - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - Set minimum block size in bytes (default: 0) - Nastavit minimální velikost bloku v bajtech (výchozí: 0) + Nastavit minimální velikost bloku v bajtech (výchozí: 0) - Shrink debug.log file on client startup (default: 1 when no -debug) - Při spuštění klienta zmenšit soubor debug.log (výchozí: 1, pokud není zadáno -debug) + Při spuštění klienta zmenšit soubor debug.log (výchozí: 1, pokud není zadáno -debug) - Specify connection timeout in milliseconds (default: 5000) - Zadej časový limit spojení v milisekundách (výchozí: 5000) + Zadej časový limit spojení v milisekundách (výchozí: 5000) - - Unable to sign checkpoint, wrong checkpointkey? - - - - - Use UPnP to map the listening port (default: 0) - Použít UPnP k namapování naslouchacího portu (výchozí: 0) + Použít UPnP k namapování naslouchacího portu (výchozí: 0) - Use UPnP to map the listening port (default: 1 when listening) - Použít UPnP k namapování naslouchacího portu (výchozí: 1, pokud naslouchá) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - + 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í - - - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - + Uživatelské jméno pro JSON-RPC spojení - Warning: This version is obsolete, upgrade required! - Upozornění: tahle verze je zastaralá, měl bys ji aktualizovat! + Upozornění: tahle verze je zastaralá, měl bys ji aktualizovat! - wallet.dat corrupt, salvage failed - Soubor wallet.dat je poškozen, jeho záchrana se nezdařila + Soubor wallet.dat je poškozen, jeho záchrana se nezdařila - Password for JSON-RPC connections - Heslo pro JSON-RPC spojení - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + Heslo pro JSON-RPC spojení - Allow JSON-RPC connections from specified IP address - Povolit JSON-RPC spojení ze specifikované IP adresy + 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) + 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) + Spustit příkaz, když se změní nejlepší blok (%s se v příkazu nahradí hashem bloku) - 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) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Spustit příkaz, když se objeví transakce týkající se peněženky (%s se v příkazu nahradí za TxID) - Upgrade wallet to latest format - Převést peněženku na nejnovější formát + 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) + 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - + 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í + Použít OpenSSL (https) pro JSON-RPC spojení - Server certificate file (default: server.cert) - Soubor se serverovým certifikátem (výchozí: 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - + Soubor se serverovým soukromým klíčem (výchozí: server.pem) - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - This help message - Tato nápověda - - - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - + 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) - - - - Connect through socks proxy - + 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í) + Povolit DNS dotazy pro -addnode (přidání uzlu), -seednode a -connect (připojení) - Loading addresses... - Načítám adresy... - - - - Error loading blkindex.dat - + 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 BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + Chyba při načítání wallet.dat: peněženka je poškozená - Error loading wallet.dat - Chyba při načítání wallet.dat + Chyba při načítání wallet.dat - Invalid -proxy address: '%s' - Neplatná -proxy adresa: '%s' + Neplatná -proxy adresa: '%s' - Unknown network specified in -onlynet: '%s' - V -onlynet byla uvedena neznámá síť: '%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 + V -socks byla požadována neznámá verze proxy: %i - Cannot resolve -bind address: '%s' - Nemohu přeložit -bind adresu: '%s' + Nemohu přeložit -bind adresu: '%s' - Cannot resolve -externalip address: '%s' - Nemohu přeložit -externalip adresu: '%s' + Nemohu přeložit -externalip adresu: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Neplatná částka pro -paytxfee=<částka>: '%s' - - - - Error: could not start node - - - - - Sending... - + Neplatná částka pro -paytxfee=<částka>: '%s' - Invalid amount - Neplatná částka + Neplatná částka - Insufficient funds - Nedostatek prostředků + Nedostatek prostředků - Loading block index... - Načítám index bloků... + 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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + Přidat uzel, ke kterému se připojit a snažit se spojení udržet - Loading wallet... - Načítám peněženku... + Načítám peněženku... - Cannot downgrade wallet - Nemohu převést peněženku do staršího formátu - - - - Cannot initialize keypool - + Nemohu převést peněženku do staršího formátu - Cannot write default address - Nemohu napsat výchozí adresu + Nemohu napsat výchozí adresu - Rescanning... - Přeskenovávám... + Přeskenovávám... - Done loading - Načítání dokončeno + Načítání dokončeno - To use the %s option - K použití volby %s + K použití volby %s - Error - Chyba + 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. - Musíš nastavit rpcpassword=<heslo> v konfiguračním souboru: + Musíš nastavit rpcpassword=<heslo> v konfiguračním souboru: %s 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.qm b/src/qt/locale/bitbean_cy.qm similarity index 50% rename from src/qt/locale/bitcoin_cy.qm rename to src/qt/locale/bitbean_cy.qm index e2745a7..772beda 100644 Binary files a/src/qt/locale/bitcoin_cy.qm and b/src/qt/locale/bitbean_cy.qm differ diff --git a/src/qt/locale/bitcoin_cy.ts b/src/qt/locale/bitbean_cy.ts similarity index 59% rename from src/qt/locale/bitcoin_cy.ts rename to src/qt/locale/bitbean_cy.ts index b6999fa..5290c2b 100644 --- a/src/qt/locale/bitcoin_cy.ts +++ b/src/qt/locale/bitbean_cy.ts @@ -1,135 +1,138 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + Double-click to edit address or label Clicio dwywaith i olygu cyfeiriad neu label - + Create a new address Creu cyfeiriad newydd - + Copy the currently selected address to the system clipboard Copio'r cyfeiriad sydd wedi'i ddewis i'r clipfwrdd system - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete &Dileu Copy &Label - + &Edit - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. - + @@ -153,34 +156,34 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -229,24 +232,29 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + @@ -255,12 +263,7 @@ This product includes software developed by the OpenSSL Project for use in the O Waled wedi'i amgryptio - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -288,7 +291,7 @@ This product includes software developed by the OpenSSL Project for use in the O The passphrase entered for the wallet decryption was incorrect. - + @@ -298,337 +301,607 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet passphrase was successfully changed. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - Cysoni â'r rhwydwaith... + + Bean Control + - - &Overview - &Trosolwg + + Quantity: + - - Show general overview of wallet - Dangos trosolwg cyffredinol y waled + + Bytes: + - - &Transactions - &Trafodion + + Amount: + - - Browse transaction history - Pori hanes trafodion + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - + + Tree mode + - - Quit application - Gadael rhaglen + + List mode + - - Show information about BitBean - + + Amount + - - About &Qt - + + Label + Label - - Show information about Qt - + + Address + Cyfeiriad - - &Options... - &Opsiynau + + Date + Dyddiad - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - + Confirmed + - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - Newid y cyfrinymadrodd a ddefnyddiwyd ar gyfer amgryptio'r waled + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Ffeil + + DUST + - - &Settings - &Gosodiadau + + yes + - - &Help - &Cymorth + + no + - - Tabs toolbar - Bar offer tabiau + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + (heb label) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + - - Not staking because wallet is locked - + + (change) + + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - + + Vault + - - - %n second(s) ago - + + + &Overview + &Trosolwg - - &Unlock Wallet... - + + Show general overview of wallet + Dangos trosolwg cyffredinol y waled - - - %n minute(s) ago - + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Trafodion + + + + Browse transaction history + Pori hanes trafodion + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + + + + + Quit application + Gadael rhaglen + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + &Opsiynau + + + + Modify configuration options for BitBean + + + + + &Show / Hide + + + + + &Encrypt Wallet... + + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + + + + + Backup wallet to another location + + + + + &Change Passphrase... + + + + + Change the passphrase used for wallet encryption + Newid y cyfrinymadrodd a ddefnyddiwyd ar gyfer amgryptio'r waled + + + + &Unlock Wallet... + + + + + Unlock wallet + Datgloi'r waled + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + + + + + &Verify message... + + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + + + + + Open debugging and diagnostic console + + + + + &File + &Ffeil + + + + &Settings + &Gosodiadau + + + + &Help + &Cymorth + + + + Tabs toolbar + Bar offer tabiau + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + + + + Synchronizing with network... + Cysoni â'r rhwydwaith... + + + + ~%n block(s) remaining + + + + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + + + + %n minute(s) ago + + + + + + + %n hour(s) ago - + + + + + + + %n day(s) ago - + + + + + + + Up to date - Cyfamserol + Cyfamserol Catching up... - Dal i fyny + Dal i fyny Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Trafodiad a anfonwyd + Trafodiad a anfonwyd Incoming transaction - Trafodiad sy'n cyrraedd + Trafodiad sy'n cyrraedd @@ -637,347 +910,231 @@ Amount: %2 Type: %3 Address: %4 - + URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + 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 + 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 + Mae'r waled <b>wedi'i amgryptio</b> ac <b>ar glo</b> ar hyn o bryd Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + + + + %n minute(s) - + + + + + + + %n hour(s) - + + + + + + + %n day(s) - - - - - Not staking - - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - - - - - ClientModel - - - Network Alert - - - - - CoinControlDialog - - - Coin Control - - - - - Quantity: - - - - - Bytes: - - - - - Amount: - - - - - Priority: - - - - - Fee: - - - - - Low Output: - - - - - no - - - - - After Fee: - - - - - Change: - + + + + + + + - - (un)select all - - - - - Tree mode - - - - - List mode - - - - - Amount - - - - - Label - - - - - Address - Cyfeiriad - - - - Date - Dyddiad + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - Confirmations - + + Not staking because wallet is locked + - - Confirmed - + + Not staking because wallet is offline + - - Priority - + + Not staking because wallet is syncing + - - Copy address - + + Not staking because you don't have mature beans + - - Copy label - + + Not staking + + + + BitcoinGUI - - - Copy amount - + Synchronizing with network... + Cysoni â'r rhwydwaith... - - Copy transaction ID - + &Overview + &Trosolwg - - Copy quantity - + Show general overview of wallet + Dangos trosolwg cyffredinol y waled - - Copy fee - + &Transactions + &Trafodion - - Copy after fee - + Browse transaction history + Pori hanes trafodion - - Copy bytes - + Quit application + Gadael rhaglen - - Copy priority - + &Options... + &Opsiynau - - Copy low output - + Change the passphrase used for wallet encryption + Newid y cyfrinymadrodd a ddefnyddiwyd ar gyfer amgryptio'r waled - - Copy change - + &File + &Ffeil - - highest - + &Settings + &Gosodiadau - - high - + &Help + &Cymorth - - medium-high - + Tabs toolbar + Bar offer tabiau - - medium - + [testnet] + [testnet] - - low-medium - + Up to date + Cyfamserol - - low - + Catching up... + Dal i fyny - - lowest - + Sent transaction + Trafodiad a anfonwyd - - DUST - + Incoming transaction + Trafodiad sy'n cyrraedd - - yes - + 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 - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + 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 + + + ClientModel - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + + Network Alert + + + + CoinControlDialog - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Address + Cyfeiriad - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Date + Dyddiad - - (no label) - (heb label) - - - - change from %1 (%2) - - - - - (change) - + (heb label) EditAddressDialog - + Edit Address Golygu'r cyfeiriad @@ -989,7 +1146,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -999,7 +1156,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1029,7 +1186,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1045,406 +1202,474 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Opsiynau - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - + &Cancel - + &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + The supplied proxy address is invalid. - + OverviewPage - + Form Ffurflen - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - - - - - Wallet - + - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: - + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + - Mined balance that has not yet matured - + Bean Stalk Height: + - - Total: - + + Sprouting Difficulty: + - - Your current total balance - + + Bean Weight: + - - <b>Recent transactions</b> - <b>Trafodion diweddar</b> + + Connections: + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + + Total: + - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Recent transactions</b> + <b>Trafodion diweddar</b> - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1458,188 +1683,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Anfon arian + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - + @@ -1647,296 +1872,342 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Anfon at pobl lluosog ar yr un pryd + Anfon at pobl lluosog ar yr un pryd Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - Gweddill: + Gweddill: 123.456 BC - + Confirm the send action - Cadarnhau'r gweithrediad anfon + Cadarnhau'r gweithrediad anfon S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - + Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (heb label) + (heb label) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Ffurflen - + A&mount: - &Maint + &Maint Pay &To: - + - + Enter a label for this address to add it to your address book - + &Label: - &Label: + &Label: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Gludo cyfeiriad o'r glipfwrdd + Gludo cyfeiriad o'r glipfwrdd Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + Anfon arian + + + Send to multiple recipients at once + Anfon at pobl lluosog ar yr un pryd + + + Balance: + Gweddill: + + + Confirm the send action + Cadarnhau'r gweithrediad anfon + + + (no label) + (heb label) + + + + SendCoinsEntry + + A&mount: + &Maint + + + &Label: + &Label: + + + Alt+A + Alt+A + + + Paste address from clipboard + Gludo cyfeiriad o'r glipfwrdd + + + Alt+P + Alt+P 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1957,76 +2228,76 @@ This label turns red, if the priority is smaller than "medium". Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2034,59 +2305,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2099,37 +2370,49 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + + + + conflicted - + %1/offline - + %1/unconfirmed - + %1 confirmations - + Status - + , broadcast through %n node(s) - + + + + + + + @@ -2139,36 +2422,36 @@ This label turns red, if the priority is smaller than "medium". Source - + Generated - + From - + To - + own address - + label - + @@ -2177,17 +2460,23 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + + + + + not accepted - + @@ -2195,17 +2484,17 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + @@ -2215,70 +2504,70 @@ This label turns red, if the priority is smaller than "medium". Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + unknown - + TransactionDescDialog - + Transaction details - + This pane shows a detailed description of the transaction - + @@ -2301,7 +2590,7 @@ This label turns red, if the priority is smaller than "medium". Amount - + @@ -2311,102 +2600,108 @@ This label turns red, if the priority is smaller than "medium". Confirmed (%1 confirmations) - + Open for %n more block(s) - + + + + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + This block was not received by any other nodes and will probably not be accepted! - + Generated but not accepted - + Received with - + Received from - + Sent to - + Payment to yourself - + - Mined - + SPROUT + (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. - + @@ -2415,7 +2710,7 @@ This label turns red, if the priority is smaller than "medium". All - + @@ -2425,17 +2720,17 @@ This label turns red, if the priority is smaller than "medium". This week - + This month - + Last month - + @@ -2445,87 +2740,87 @@ This label turns red, if the priority is smaller than "medium". 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 Data - + Comma separated file (*.csv) - + Confirmed - + @@ -2550,32 +2845,32 @@ This label turns red, if the priority is smaller than "medium". Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to - + @@ -2583,693 +2878,700 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core - - BitBean version - + + To use the %s option + - Usage: - + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - + + Error + Gwall - List commands - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - + + BitBean version + - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - + Usage: + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send command to -server or BitBeand + - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - + List commands + - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - + Get help for a command + - - Threshold for disconnecting misbehaving peers (default: 100) - + + BitBean + - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Options: + - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - + + This help message + - - Detach block and address databases. Increases shutdown time (default: 0) - + + Specify configuration file (default: BitBean.conf) + - - 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. - + + Specify pid file (default: BitBeand.pid) + - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Specify data directory + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Specify wallet file (within data directory) + - - Accept command line and JSON-RPC commands - + + Set database cache size in megabytes (default: 25) + - - Error: Transaction creation failed - + + Set database disk log size in megabytes (default: 100) + - - Error: Wallet locked, unable to create transaction - + + Specify connection timeout in milliseconds (default: 5000) + - - Importing blockchain data file. - + + Connect through socks proxy + - Importing bootstrap blockchain data file. - + Select the version of socks proxy to use (4-5, default: 5) + - - Run in the background as a daemon and accept commands - + + Use proxy to reach tor hidden services (default: same as -proxy) + - Use the test network - + Allow DNS lookups for -addnode, -seednode and -connect + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Maintain at most <n> connections to peers (default: 125) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Add a node to connect to and attempt to keep the connection open + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Connect only to the specified node(s) + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Connect to a node to retrieve peer addresses, and disconnect + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Specify your own public address + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - 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. - + + Discover own IP address (default: 1 when listening and no -externalip) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Find peers using internet relay chat (default: 0) + - - Block creation options: - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Connect only to the specified node(s) - + + Bind to given address. Use [host]:port notation for IPv6 + - - Discover own IP address (default: 1 when listening and no -externalip) - + + Find peers using DNS lookup (default: 1) + - - Failed to listen on any port. Use -listen=0 if you want this. - + + Stake your beans to support network and gain reward (default: 1) + - - Find peers using DNS lookup (default: 1) - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - + Sync checkpoints policy (default: strict) - + - - Invalid -tor address: '%s' - + + Threshold for disconnecting misbehaving peers (default: 100) + - - Invalid amount for -reservebalance=<amount> - + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - + - Prepend debug output with timestamp - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Select the version of socks proxy to use (4-5, default: 5) - - - - - Send trace/debug info to console instead of debug.log file - + Use UPnP to map the listening port (default: 1 when listening) + - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Specify connection timeout in milliseconds (default: 5000) - + Use UPnP to map the listening port (default: 0) + - - - Unable to sign checkpoint, wrong checkpointkey? - - + + + Detach block and address databases. Increases shutdown time (default: 0) + - - Use UPnP to map the listening port (default: 0) - + + Fee per KB to add to transactions you send + - - Use UPnP to map the listening port (default: 1 when listening) - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Accept command line and JSON-RPC commands + - - Username for JSON-RPC connections - + + Run in the background as a daemon and accept commands + - - Verifying database integrity... - + + Use the test network + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Output extra debugging information. Implies all other -debug* options + - Warning: Disk space is low! - + Output extra network debugging information + - - Warning: This version is obsolete, upgrade required! - + + Prepend debug output with timestamp + - - wallet.dat corrupt, salvage failed - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Password for JSON-RPC connections - + + Send trace/debug info to console instead of debug.log file + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Send trace/debug info to debugger + - - Find peers using internet relay chat (default: 0) - + + Username for JSON-RPC connections + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Password for JSON-RPC connections + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - + 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) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Require a confirmations for change (default: 0) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Upgrade wallet to latest format - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + - + + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) - + How thorough the block verification is (0-6, default: 1) - + Imports blocks from external blk000?.dat file - + - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Invalid amount for -paytxfee=<amount>: '%s' + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - This help message - + + Invalid amount for -mininput=<amount>: '%s' + - + Wallet %s resides outside data directory %s. - + Cannot obtain a lock on data directory %s. BitBean is probably already running. - + - - BitBean - + + Verifying database integrity... + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect through socks proxy - + + 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. + - - Allow DNS lookups for -addnode, -seednode and -connect - + + wallet.dat corrupt, salvage failed + - - Loading addresses... - + + Unknown -socks proxy version requested: %i + - + + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Cannot resolve -externalip address: '%s' + + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - + Wallet needed to be rewritten: restart BitBean to complete - + Error loading wallet.dat - + - - Invalid -proxy address: '%s' - + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - + + Cannot write default address + - - Cannot resolve -bind address: '%s' - + + Rescanning... + - - Cannot resolve -externalip address: '%s' - + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - + + Importing bootstrap blockchain data file. + - - Error: could not start node - + + Loading addresses... + - - Sending... - + + Error: could not start node + - - Invalid amount - + + Done loading + - Insufficient funds - + Unable to bind to %s on this computer. BitBean is probably already running. + - - Loading block index... - + + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Add a node to connect to and attempt to keep the connection open - + + Error: Wallet locked, unable to create transaction + - - Unable to bind to %s on this computer. BitBean is probably already running. - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Fee per KB to add to transactions you send - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: Transaction creation failed + - - Loading wallet... - + + Sending... + - - Cannot downgrade wallet - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Cannot initialize keypool - + + Invalid amount + - Cannot write default address - + Insufficient funds + - Rescanning... - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Done loading - + + Warning: This version is obsolete, upgrade required! + - - To use the %s option - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Error - Gwall + + Warning: Disk space is low! + - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + + bitcoin-core + + Error + Gwall - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_da.qm b/src/qt/locale/bitbean_da.qm new file mode 100644 index 0000000..b6c3551 Binary files /dev/null and b/src/qt/locale/bitbean_da.qm differ diff --git a/src/qt/locale/bitbean_da.ts b/src/qt/locale/bitbean_da.ts new file mode 100644 index 0000000..7dcab29 --- /dev/null +++ b/src/qt/locale/bitbean_da.ts @@ -0,0 +1,4896 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + Om BitBean + + + + <b>BitBean</b> version + <b>BitBean</b> version + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +Dette program er eksperimentelt. + +Det er gjort tilgængeligt under MIT/X11-softwarelicensen. Se den medfølgende fil "COPYING" eller http://www.opensource.org/licenses/mit-license.php. + +Produktet indeholder software, som er udviklet af OpenSSL Project til brug i OpenSSL Toolkit (http://www.openssl.org/). Kryptografisk software er skrevet af Eric Young (eay@cryptsoft.com), og UPnP-software er skrevet af Thomas Bernard. + + + + AddressBookPage + + + Address Book + Adressebog + + + + Double-click to edit address or label + Dobbeltklik for at redigere adresse eller mærkat + + + + Create a new address + Opret en ny adresse + + + + Copy the currently selected address to the system clipboard + Kopier den valgte adresse til udklipsholder + + + + &New Address + &Ny adresse + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + Dette er dine BitBean adresser til at modtage betalinger. Du ønsker måske at give en anden en til af hver afsender, så du kan holde styr på hvem der betaler dig. + + + + &Copy Address + &Kopier adresse + + + + Show &QR Code + Vis &QR kode + + + + Sign a message to prove you own a BitBean address + Signerer en meddelelse for at bevise du ejer en BitBean adresse + + + + Sign &Message + Signere & Besked + + + + Delete the currently selected address from the list + Slet den markerede adresse fra listen + + + + Verify a message to ensure it was signed with a specified BitBean address + Bekræft en meddelelse for at sikre, den blev underskrevet med en specificeret BitBean adresse + + + + &Verify Message + Bekræft Meddelse + + + + &Delete + &Slet + + + + Copy &Label + Kopier mærkat + + + + &Edit + Rediger + + + + Export Address Book Data + Eksporter Adresse Bog + + + + Comma separated file (*.csv) + Kommasepareret fil (*.csv) + + + + Error exporting + Fejl ved eksportering + + + + Could not write to file %1. + Kunne ikke skrive til fil% 1. + + + + AddressTableModel + + + Label + Mærkat + + + + Address + Adresse + + + + (no label) + (ingen mærkat) + + + + AskPassphraseDialog + + + Passphrase Dialog + Adgangskodedialog + + + + Enter passphrase + Indtast adgangskode + + + + New passphrase + Ny adgangskode + + + + Repeat new passphrase + Gentag ny adgangskode + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Deaktivere trivielle sendmoney når OS konto er kompromitteret. Giver ingen reel sikkerhed. + + + + For staking only + Kun til renteberegning + + + + 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 COINS</b>! + Advarsel: Hvis du krypterer din tegnebog og mister din adgangskode, vil du <b> miste alle dine mønter </ b>! + + + + Are you sure you wish to encrypt your wallet? + Er du sikker på, at du ønsker at kryptere din tegnebog? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + 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 + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + BitBean lukker nu for at afslutte krypteringen. Husk at en krypteret tegnebog ikke fuldt ud beskytter dine mønter mod at blive stjålet af malware som har inficeret 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. + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + Antal: + + + + Bytes: + Bytes: + + + + Amount: + + + + + Priority: + Prioritet: + + + + Fee: + + + + + Low Output: + + + + + After Fee: + + + + + Change: + Ændre: + + + + (un)select all + (fra)vælg alle + + + + Tree mode + Træ tilstand + + + + List mode + Liste tilstand + + + + Amount + Beløb + + + + Label + Mærkat + + + + Address + Adresse + + + + Date + Dato + + + + Confirmations + Bekræftelser + + + + Confirmed + Bekræftet + + + + Priority + Prioritet + + + + Copy address + Kopier adresse + + + + Copy label + Kopier mærkat + + + + + Copy amount + Kopier beløb + + + + Copy transaction ID + Kopier transaktionens ID + + + + Copy quantity + Kopier antal + + + + Copy fee + Kopier transkationsgebyr + + + + Copy after fee + Kopier efter transkationsgebyr + + + + Copy bytes + Kopier bytes + + + + Copy priority + Kopier prioritet + + + + Copy low output + + + + + Copy change + + + + + highest + højeste + + + + high + høj + + + + medium-high + medium-høj + + + + medium + medium + + + + low-medium + lav-medium + + + + low + lav + + + + lowest + lavest + + + + DUST + DUST + + + + yes + ja + + + + no + nej + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Denne etiket bliver rød, hvis transaktionen størrelse er større end 10000 byte. + +Det betyder, at et gebyr på mindst %1 per kb er påkrævet. + +Kan variere + / - 1 byte per indgang. + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Transaktioner med højere prioritet får mere sandsynligt en blok. + +Denne etiket bliver rød, hvis prioritet er mindre end "medium". + +Det betyder, at et gebyr på mindst %1 per kb er påkrævet. + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Denne etiket bliver rød, hvis nogen modtager et beløb, der er mindre end %1. + +Det betyder, at et gebyr på mindst %2 er påkrævet. + +Beløb under 0,546 gange det minimale gebyr er vist som DUST. + + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Denne etiket bliver rød, hvis ændringen er mindre end %1. + +Det betyder, at et gebyr på mindst %2 er påkrævet. + + + + + (no label) + (ingen mærkat) + + + + change from %1 (%2) + skift fra %1 (%2) + + + + (change) + (skift) + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Der opstod en fejl under forsøg på at gemme dataene i tegnebogen til den nye placering. + + + + BitBean + BitBean + + + + Vault + + + + + &Overview + &Oversigt + + + + Show general overview of wallet + Vis generel oversigt over tegnebog + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Vis listen over adresser for modtagne betalinger + + + + &Transactions + &Transaktioner + + + + Browse transaction history + Gennemse transaktionshistorik + + + + &Address Book + &Adressebog + + + + Edit the list of stored addresses and labels + Redigere listen over gemte adresser og etiketter + + + + E&xit + Luk + + + + Quit application + Afslut program + + + + &About BitBean + &Om BitBean + + + + Show information about BitBean + Vis oplysninger om BitBean + + + + About &Qt + Om Qt + + + + Show information about Qt + Vis informationer om Qt + + + + &Options... + &Indstillinger... + + + + Modify configuration options for BitBean + Ændre indstillingsmuligheder for BitBean + + + + &Show / Hide + Vis / skjul + + + + &Encrypt Wallet... + Krypter tegnebog... + + + + Encrypt or decrypt wallet + Kryptere eller dekryptere tegnebog + + + + &Backup Wallet... + Sikkerhedskopier tegnebog... + + + + Backup wallet to another location + Lav sikkerhedskopi af tegnebogen til et andet sted + + + + &Change Passphrase... + Skift adgangskode... + + + + Change the passphrase used for wallet encryption + Skift adgangskode anvendt til tegnebogskryptering + + + + &Unlock Wallet... + Lås tegnebog op + + + + Unlock wallet + + + + + &Lock Wallet + &Lås tegnebog + + + + Lock wallet + Lås tegnebog + + + + Sign &message... + Underskriv besked... + + + + &Verify message... + Verificér besked... + + + + &Export... + &Eksporter... + + + + Export the data in the current tab to a file + Eksportere data i den aktuelle fane til en fil + + + + &Debug window + Fejlsøgningsvindue + + + + Open debugging and diagnostic console + Åbn fejlsøgnings- og diagnosticeringskonsollen + + + + &File + Fil + + + + &Settings + Indstillinger + + + + &Help + Hjælp + + + + Tabs toolbar + Faneværktøjslinje + + + + Actions toolbar + Fanværktøjslinje + + + + + [testnet] + [testnetværk] + + + + + BitBean client + BitBean klient + + + + %n active connection(s) to BitBean network + + %n aktiv forbindelse til BitBean netværk + %n aktive forbindelser til BitBean netværk + + + + + Synchronizing with network... + Synkroniserer med netværk... + + + + ~%n block(s) remaining + + ~%n blok resterer + ~%n blokke resterende + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Overført %1 af %2 blokke af transaktions historie (%3% færdig). + + + + Downloaded %1 blocks of transaction history. + Downloadet %1 blokke af transaktions historie. + + + + %n second(s) ago + + %n sekund siden + %n sekunder siden + + + + + %n minute(s) ago + + %n minut siden + %n minutter siden + + + + + %n hour(s) ago + + %n time siden + %n timer siden + + + + + %n day(s) ago + + %n dag siden + %n dage siden + + + + + Up to date + Opdateret + + + + Catching up... + Indhenter... + + + + Last received block was generated %1. + Sidst modtagne blok blev genereret %1. + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Denne transaktion er over grænsen størrelse. Du kan stadig sende det for et gebyr på %1, der går til de noder, der behandler din transaktion og hjælper med at støtte netværket. Ønsker du at betale gebyret? + + + + Confirm transaction fee + Bekræft transaktionsgebyr + + + + Sent transaction + Afsendt transaktion + + + + Incoming transaction + Indgående transaktion + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Dato: %1 +Beløb: %2 +Type: %3 +Adresse: %4 + + + + + + URI handling + URI håndtering + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI kan ikke tolkes! Dette kan skyldes en ugyldig BitBean adresse eller misdannede URI parametre. + + + + 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> + + + + Backup Wallet + Sikkerhedskopier Tegnebog + + + + Wallet Data (*.dat) + Tegnebogsdata (*.dat) + + + + Backup Failed + Sikkerhedskopiering Mislykkedes + + + + There was an error trying to save the wallet data to the new location. + Der opstod en fejl under forsøg på at gemme data i tegnebogen til den nye placering. + + + + %n second(s) + + %n sekund + %n sekunder + + + + + %n minute(s) + + %n minut + %n minutter + + + + + %n hour(s) + + %n time(r) + %n time(r) + + + + + %n day(s) + + %n dag(e) + %n dag(e) + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Renter.<br> Din andel er% 1 <br> Netværkets andel er% 2 <br> Forventet tid til at modtage rente %3 + + + + Not staking because wallet is locked + Ingen rente fordi tegnebog er låst + + + + Not staking because wallet is offline + Ingen rente fordi tegnebog er offline + + + + Not staking because wallet is syncing + Ingen rente fordi tegnebog er ved at synkronisere + + + + Not staking because you don't have mature beans + + + + + Not staking + Ingen rente + + + + BitcoinGUI + + Sign &message... + Underskriv besked... + + + Synchronizing with network... + Synkroniserer med netværk... + + + &Overview + &Oversigt + + + Show general overview of wallet + Vis generel oversigt over tegnebog + + + &Transactions + &Transaktioner + + + Browse transaction history + Gennemse transaktionshistorik + + + &Address Book + &Adressebog + + + Edit the list of stored addresses and labels + Redigere listen over gemte adresser og etiketter + + + &Receive coins + &Modtag mønter + + + Show the list of addresses for receiving payments + Vis listen over adresser for modtagne betalinger + + + &Send coins + &Send mønter + + + E&xit + Luk + + + Quit application + Afslut program + + + Show information about BitBean + Vis oplysninger om BitBean + + + 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... + + + ~%n block(s) remaining + + ~%n blok resterer + ~%n blokke resterende + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Overført %1 af %2 blokke af transaktions historie (%3% færdig). + + + &Export... + &Eksporter... + + + Send coins to a BitBean address + Send mønter til en BitBean adresse + + + Modify configuration options for BitBean + Ændre indstillingsmuligheder for BitBean + + + Export the data in the current tab to a file + Eksportere data i den aktuelle fane til en fil + + + Encrypt or decrypt wallet + Kryptere eller dekryptere tegnebog + + + 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... + + + BitBean + BitBean + + + Wallet + Tegnebog + + + &About BitBean + &Om BitBean + + + &Show / Hide + Vis / skjul + + + Unlock wallet + Lås tegnebog + + + &Lock Wallet + &Lås tegnebog + + + Lock wallet + Lås tegnebog + + + &File + Fil + + + &Settings + Indstillinger + + + &Help + Hjælp + + + Tabs toolbar + Faneværktøjslinje + + + Actions toolbar + Fanværktøjslinje + + + [testnet] + [testnetværk] + + + BitBean client + BitBean klient + + + %n active connection(s) to BitBean network + + %n aktiv forbindelse til BitBean netværk + %n aktive forbindelser til BitBean netværk + + + + Downloaded %1 blocks of transaction history. + Downloadet %1 blokke af transaktions historie. + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Renter.<br> Din andel er% 1 <br> Netværkets andel er% 2 <br> Forventet tid til at modtage rente %3 + + + Not staking because wallet is locked + Ingen rente fordi tegnebog er låst + + + Not staking because wallet is offline + Ingen rente fordi tegnebog er offline + + + Not staking because wallet is syncing + Ingen rente fordi tegnebog er ved at synkronisere + + + Not staking because you don't have mature coins + Ingen rente fordi der ingen modne mønter eksistere + + + %n second(s) ago + + %n sekund siden + %n sekunder siden + + + + &Unlock Wallet... + Lås tegnebog op + + + %n minute(s) ago + + %n minut siden + %n minutter siden + + + + %n hour(s) ago + + %n time siden + %n timer siden + + + + %n day(s) ago + + %n dag siden + %n dage siden + + + + Up to date + Opdateret + + + Catching up... + Indhenter... + + + Last received block was generated %1. + Sidst modtagne blok blev genereret %1. + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Denne transaktion er over grænsen størrelse. Du kan stadig sende det for et gebyr på %1, der går til de noder, der behandler din transaktion og hjælper med at støtte netværket. Ønsker du at betale gebyret? + + + Confirm transaction fee + Bekræft transaktionsgebyr + + + Sent transaction + Afsendt transaktion + + + Incoming transaction + Indgående transaktion + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Dato: %1 +Beløb: %2 +Type: %3 +Adresse: %4 + + + + URI handling + URI håndtering + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI kan ikke tolkes! Dette kan skyldes en ugyldig BitBean adresse eller misdannede URI parametre. + + + 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> + + + Backup Wallet + Sikkerhedskopier Tegnebog + + + Wallet Data (*.dat) + Tegnebogsdata (*.dat) + + + Backup Failed + Sikkerhedskopiering Mislykkedes + + + There was an error trying to save the wallet data to the new location. + Der opstod en fejl under forsøg på at gemme data i tegnebogen til den nye placering. + + + %n second(s) + + %n sekund + %n sekunder + + + + %n minute(s) + + %n minut + %n minutter + + + + %n hour(s) + + %n time(r) + %n time(r) + + + + %n day(s) + + %n dag(e) + %n dag(e) + + + + Not staking + Ingen rente + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Der opstod en fejl under forsøg på at gemme dataene i tegnebogen til den nye placering. + + + + ClientModel + + + Network Alert + Netværksadvarsel + + + + CoinControlDialog + + Coin Control + Mønt Kontrol + + + Quantity: + Antal: + + + Bytes: + Bytes: + + + Amount: + Beløb: + + + Priority: + Prioritet: + + + Fee: + Gebyr: + + + Low Output: + Lav Udgangseffekt: + + + no + nej + + + After Fee: + Efter Gebyr: + + + Change: + Ændre: + + + (un)select all + (fra)vælg alle + + + Tree mode + Træ tilstand + + + List mode + Liste tilstand + + + Amount + Beløb + + + Label + Mærkat + + + Address + Adresse + + + Date + Dato + + + Confirmations + Bekræftelser + + + Confirmed + Bekræftet + + + Priority + Prioritet + + + Copy address + Kopier adresse + + + Copy label + Kopier mærkat + + + Copy amount + Kopier beløb + + + Copy transaction ID + Kopier transaktionens ID + + + Copy quantity + Kopier antal + + + Copy fee + Kopier transkationsgebyr + + + Copy after fee + Kopier efter transkationsgebyr + + + Copy bytes + Kopier bytes + + + Copy priority + Kopier prioritet + + + Copy low output + Lav udgangseffekt + + + Copy change + Kopier ændring + + + highest + højeste + + + high + høj + + + medium-high + medium-høj + + + medium + medium + + + low-medium + lav-medium + + + low + lav + + + lowest + lavest + + + DUST + DUST + + + yes + ja + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Denne etiket bliver rød, hvis transaktionen størrelse er større end 10000 byte. + +Det betyder, at et gebyr på mindst %1 per kb er påkrævet. + +Kan variere + / - 1 byte per indgang. + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Transaktioner med højere prioritet får mere sandsynligt en blok. + +Denne etiket bliver rød, hvis prioritet er mindre end "medium". + +Det betyder, at et gebyr på mindst %1 per kb er påkrævet. + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Denne etiket bliver rød, hvis nogen modtager et beløb, der er mindre end %1. + +Det betyder, at et gebyr på mindst %2 er påkrævet. + +Beløb under 0,546 gange det minimale gebyr er vist som DUST. + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Denne etiket bliver rød, hvis ændringen er mindre end %1. + +Det betyder, at et gebyr på mindst %2 er påkrævet. + + + (no label) + (ingen mærkat) + + + change from %1 (%2) + skift fra %1 (%2) + + + (change) + (skift) + + + + EditAddressDialog + + + Edit Address + Rediger adresse + + + + &Label + Mærkat + + + + The label associated with this address book entry + Etiketten er forbundet med denne post i adressekartoteket + + + + &Address + Adresse + + + + The address associated with this address book entry. This can only be modified for sending addresses. + Adressen er forbundet med denne post i adressekartoteket. Dette kan kun ændres til sende adresser. + + + + 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 BitBean address. + Den indtastede adresse "%1" er ikke en gyldig BitBean adresse. + + + + Could not unlock wallet. + Kunne ikke låse tegnebog op. + + + + New key generation failed. + Ny nøglegenerering mislykkedes. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + version + version + + + + Usage: + Anvendelse: + + + + command-line options + Kommandolinjeparametrene + + + + UI options + UI opsætning + + + + Set language, for example "de_DE" (default: system locale) + Indstil sprog, for eksempel "de_DE" (standard: system locale) + + + + Start minimized + Start minimeret + + + + Show splash screen on startup (default: 1) + Vis splash skærm ved opstart (default: 1) + + + + OptionsDialog + + + Options + Indstillinger + + + + &Main + Generelt + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. + Valgfri transaktionsgebyr pr kB, som hjælper med at sikre dine transaktioner bliver behandlet hurtigt. De fleste transaktioner er 1 kB. Gebyr 0,01 anbefales. + + + + Pay transaction &fee + Betal transaktionsgebyr + + + Reserved amount does not participate in staking and is therefore spendable at any time. + Reserveret beløb deltager ikke i forrentning og er derfor tilrådighed til enhver tid. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + Reserve + + + + Automatically start BitBean after logging in to the system. + Automatisk start BitBean efter at have logget ind på systemet. + + + + &Start BitBean on system login + &Start BitBean ved systems login + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + Frigør blok og adressedatabaser ved lukning. Det betyder, at de kan flyttes til et anden data-bibliotek, men det sinker lukning. Tegnebogen er altid frigjort. + + + + &Detach databases at shutdown + &Frigør databaser ved lukning + + + + &Network + Netværk + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + Automatisk åbne BitBean klient-port på routeren. Dette virker kun, når din router understøtter UPnP og er det er aktiveret. + + + + Map port using &UPnP + Konfigurer port vha. UPnP + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + Opret forbindelse til BitBean netværk via en SOCKS proxy (fx ved tilslutning gennem Tor). + + + + &Connect through SOCKS proxy: + &Tilslut gennem SOCKS proxy: + + + + Proxy &IP: + Proxy-IP: + + + + IP address of the proxy (e.g. 127.0.0.1) + IP-adressen på proxy (f.eks 127.0.0.1) + + + + &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 BitBean. + Sproget i brugergrænsefladen kan indstilles her. Denne indstilling vil træde i kraft efter genstart af BitBean tegnebog. + + + + &Unit to show amounts in: + Enhed at vise beløb i: + + + + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + 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 bitcoins. + + + + Whether to show BitBean addresses in the transaction list or not. + Få vist BitBean adresser på listen over transaktioner eller ej. + + + + &Display addresses in transaction list + Vis adresser i transaktionsliste + + + Whether to show coin control features or not. + Vis mønt kontrol funktioner eller ej. + + + Display coin &control features (experts only!) + Vis mønt & kontrol funktioner (kun for eksperter!) + + + + &OK + OK + + + + &Cancel + Annuller + + + + &Apply + &Anvend + + + + default + standard + + + + + Warning + Advarsel + + + + + This setting will take effect after restarting BitBean. + Denne indstilling vil træde i kraft efter genstart af BitBean. + + + + The supplied proxy address is invalid. + Ugyldig proxy-adresse + + + + OverviewPage + + + Form + Formular + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + De viste oplysninger kan være forældet. Din tegnebog synkroniserer automatisk med BitBean netværket efter en forbindelse er etableret, men denne proces er ikke afsluttet endnu. + + + Stake: + Rente: + + + + Unconfirmed: + Ubekræftede: + + + Wallet + Tegnebog + + + + Spendable: + Brugbar: + + + + Your current spendable balance + Din nuværende tilgængelige saldo + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + Umodne: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + 0 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + 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> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Summen af ​​transaktioner, der endnu mangler at blive bekræftet, og ikke tæller mod den nuværende balance + + + Total of coins that was staked, and do not yet count toward the current balance + I alt mønter, der bliver berentet, og endnu ikke tæller mod den nuværende balance + + + + + out of sync + ikke synkroniseret + + + + QRCodeDialog + + + QR Code Dialog + QR Kode Dialog + + + + Request Payment + Betalingsanmodning + + + + Amount: + Antal: + + + + Label: + Label: + + + + Message: + Besked: + + + + &Save As... + &Gem Som... + + + + Error encoding URI into QR Code. + Fejl kode URI i QR kode. + + + + The entered amount is invalid, please check. + Det indtastede beløb er ugyldig, venligst tjek igen. + + + + Resulting URI too long, try to reduce the text for label / message. + Resulterende URI for lang, prøv at reducere teksten til etiketten / besked. + + + + Save QR Code + Gem QR kode + + + + PNG Images (*.png) + PNG billede (*.png) + + + + RPCConsole + + + Client name + Klientnavn + + + + + + + + + + + + + N/A + N/A + + + + Client version + Klientversion + + + + &Information + Information + + + + Using OpenSSL version + Anvender OpenSSL-version + + + + Startup time + Opstartstid + + + + Network + Netværk + + + + Number of connections + Antal forbindelser + + + + On testnet + På testnet + + + + 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 + + + + Command-line options + Kommandolinjeparametrene + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + Vis BitBean-Qt hjælpe besked for at få en liste med mulige BitBean kommandolinjeparametre. + + + + &Show + &Vis + + + + &Console + Konsol + + + + Build date + Byggedato + + + + BitBean - Debug window + BitBean - Debug vindue + + + + BitBean Core + BitBean Kerne + + + + Debug log file + Fejlsøgningslogfil + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + Åbn BitBean debug logfilen fra den nuværende data mappe. Dette kan tage et par sekunder for store logfiler. + + + + Clear console + Ryd konsol + + + + Welcome to the BitBean RPC console. + Velkommen til BitBean RPC-konsol. + + + + 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. + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + Input ... + + + + automatically selected + Automatisk valgt + + + + Insufficient funds! + Utilstrækkelig midler! + + + + Quantity: + Antal: + + + + + 0 + 0 + + + + Bytes: + Bytes: + + + + Amount: + + + + + + + + 0.00 BC + 123.456 BC {0.00 ?} + + + + Priority: + Prioritet: + + + + medium + medium + + + + Fee: + + + + + Low Output: + + + + + no + nej + + + + After Fee: + + + + + Change + Skift + + + + custom change address + Ændre adresse + + + + Send to multiple recipients at once + Send til flere modtagere på en gang + + + + Add &Recipient + Tilføj modtager + + + + Remove all transaction fields + Fjern alle transaktions omkostnings felter + + + + Clear &All + Ryd alle + + + + Balance: + Saldo: + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + Bekræft afsendelsen + + + + S&end + Afsend + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Indtast en BitBean-adresse (f.eks 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Copy quantity + Kopier antal + + + + Copy amount + Kopier beløb + + + + Copy fee + Kopier transkationsgebyr + + + + Copy after fee + Kopier efter transkationsgebyr + + + + Copy bytes + Kopier bytes + + + + Copy priority + Kopier prioritet + + + + Copy low output + + + + + Copy change + + + + + <b>%1</b> to %2 (%3) + <b>%1</b> til %2 (%3) + + + + Confirm send beans + + + + + Are you sure you want to send %1? + Er du sikker på du vil sende% 1? + + + + and + og + + + + 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. + + + + Error: Transaction creation failed. + Fejl: Transaktion oprettelse mislykkedes. + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + ADVARSEL: Ugyldig BitBean adresse + + + + (no label) + (ingen mærkat) + + + + WARNING: unknown change address + ADVARSEL: ukendt adresse forandring + + + + SendBeansEntry + + + Form + + + + + A&mount: + Beløb: + + + + Pay &To: + Betal til: + + + + + 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: + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adressen til at sende betalingen til (f.eks 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + Vælg adresse fra adressebogen + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Indsæt adresse fra udklipsholderen + + + + Alt+P + Alt+P + + + + Remove this recipient + Fjern denne modtager + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Indtast en BitBean-adresse (f.eks 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + SendCoinsDialog + + Send Coins + Send bitcoins + + + Coin Control Features + Mønt Kontrol Egenskaber + + + Inputs... + Input ... + + + automatically selected + Automatisk valgt + + + Insufficient funds! + Utilstrækkelig midler! + + + Quantity: + Antal: + + + 0 + 0 + + + Bytes: + Bytes: + + + Amount: + Beløb: + + + 0.00 BC + 123.456 BC {0.00 ?} + + + Priority: + Prioritet: + + + medium + medium + + + Fee: + Gebyr + + + Low Output: + Lav udgangseffekt + + + no + nej + + + After Fee: + Efter gebyr + + + Change + Skift + + + custom change address + Ændre adresse + + + Send to multiple recipients at once + Send til flere modtagere på en gang + + + Add &Recipient + Tilføj modtager + + + Remove all transaction fields + Fjern alle transaktions omkostnings felter + + + Clear &All + Ryd alle + + + Balance: + Saldo: + + + 123.456 BC + 123.456 BC + + + Confirm the send action + Bekræft afsendelsen + + + S&end + Afsend + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Indtast en BitBean-adresse (f.eks 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Copy quantity + Kopier antal + + + Copy amount + Kopier beløb + + + Copy fee + Kopier transkationsgebyr + + + Copy after fee + Kopier efter transkationsgebyr + + + Copy bytes + Kopier bytes + + + Copy priority + Kopier prioritet + + + Copy low output + Kopier lav produktion + + + Copy change + Kopier forandring + + + <b>%1</b> to %2 (%3) + <b>%1</b> til %2 (%3) + + + Confirm send coins + Bekræft afsendelse af bitcoins + + + Are you sure you want to send %1? + Er du sikker på du vil sende% 1? + + + and + og + + + 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. + + + Error: Transaction creation failed. + Fejl: Transaktion oprettelse mislykkedes. + + + 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 mønterne i din tegnebog allerede er blevet brugt, som hvis du brugte en kopi af wallet.dat og mønterne blev brugt i kopien, men ikke markeret som brugt her. + + + WARNING: Invalid BitBean address + ADVARSEL: Ugyldig BitBean adresse + + + (no label) + (ingen mærkat) + + + WARNING: unknown change address + ADVARSEL: ukendt adresse forandring + + + + SendCoinsEntry + + Form + Form + + + A&mount: + Beløb: + + + Pay &To: + Betal til: + + + 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: + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adressen til at sende betalingen til (f.eks 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + Vælg adresse fra adressebogen + + + Alt+A + Alt+A + + + Paste address from clipboard + Indsæt adresse fra udklipsholderen + + + Alt+P + Alt+P + + + Remove this recipient + Fjern denne modtager + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Indtast en BitBean-adresse (f.eks 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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 Bitcoin-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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adresse til at underskrive meddelelsen med (f.eks 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + Vælg en adresse fra adressebogen + + + + + 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 + + + + Copy the current signature to the system clipboard + Kopier den nuværende underskrift til systemets udklipsholder + + + + Sign the message to prove you own this BitBean address + Underskriv brevet for at bevise du ejer denne BitBean adresse + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adressen meddelelse blev underskrevet med (f.eks 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + Kontroller meddelelsen for at sikre, at den blev indgået med den angivne BitBean adresse + + + + Reset all verify message fields + Nulstil alle "verificér besked"-felter + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Indtast en BitBean-adresse (f.eks 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + Klik "Underskriv besked" for at generere underskriften + + + + Enter BitBean signature + Indtast BitBean underskrift + + + + + 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. + + + + TransactionDesc + + + Open until %1 + Åben indtil %1 + + + + Open for %n block(s) + + Åben for %n blok + Åben for %n blok(ke) + + + + + conflicted + konflikt + + + + %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 + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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. + Generet mønter skal modne 510 blokke, før de kan blive brugt. Når du genererede denne blok blev det transmitteret til netværket, der tilføjes til blokkæden. Hvis det mislykkes at komme ind i kæden, vil dens tilstand ændres til "ikke godkendt", og det vil ikke være brugbar. Dette kan lejlighedsvis ske, hvis en anden node genererer en blok et par sekunder efter din. + + + + 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 + + + + unknown + ukendt + + + + TransactionDescDialog + + + Transaction details + Transaktionsdetaljer + + + + This pane shows a detailed description of the transaction + Denne rude viser en detaljeret beskrivelse af transaktionen + + + + TransactionTableModel + + + Date + Dato + + + + Type + Type + + + + Address + Adresse + + + + Amount + Beløb + + + + Open until %1 + Åben indtil %1 + + + + Confirmed (%1 confirmations) + Bekræftet (%1 bekræftelser) + + + + Open for %n more block(s) + + Åben %n blok(ke) yderligere + Åben %n blok(ke) yderligere + + + + + Offline + Offline + + + + Unconfirmed + Ubekræftede + + + + Confirming (%1 of %2 recommended confirmations) + Bekræftelse (% 1 af% 2 anbefalede bekræftelser) + + + + Conflicted + Konflikt + + + + Immature (%1 confirmations, will be available after %2) + Umodne (% 1 bekræftelser, vil være tilgængelige efter% 2) + + + + 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 + + + + Received with + Modtaget med + + + + Received from + Modtaget fra + + + + Sent to + Sendt til + + + + Payment to yourself + Betaling til dig selv + + + + SPROUT + + + + 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. + + + + 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 Data + Exportere transaktionsdata + + + + Comma separated file (*.csv) + Kommasepareret fil (*.csv) + + + + Confirmed + Bekræftet + + + + Date + Dato + + + + Type + Type + + + + Label + Mærkat + + + + Address + Adresse + + + + Amount + Beløb + + + + ID + ID + + + + Error exporting + Fejl exporting + + + + Could not write to file %1. + Kunne ikke skrive til filen% 1. + + + + Range: + Interval: + + + + to + til + + + + WalletModel + + + Sending... + Sender... + + + + bitbean-core + + + To use the %s option + For at bruge %s mulighed + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + % s, skal du indstille et rpcpassword i konfigurationsfilen: +% s +Det anbefales at bruge følgende tilfældig adgangskode: +rpcuser = BitBeanrpc +rpcpassword =% s +(du behøver ikke at huske denne adgangskode) +Brugernavn og adgangskode må ikke være den samme. +Hvis filen ikke findes, skal du oprette den med filtilladelser ejer-læsbar-kun. +Det kan også anbefales at sætte alertnotify så du får besked om problemer; +for eksempel: alertnotify = echo%% s | mail-s "BitBean Alert" admin@foo.com + + + + + Error + Fejl + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Du skal angive rpcpassword=<password> i konfigurationsfilen: +%s +Hvis filen ikke eksisterer, opret den og giv ingen andre end ejeren læserettighed. + + + + BitBean version + BitBean version + + + + Usage: + Anvendelse: + + + + Send command to -server or BitBeand + Send kommando til-server eller BitBeand + + + + List commands + Liste over kommandoer + + + + Get help for a command + Få hjælp til en kommando + + + + BitBean + BitBean + + + + Options: + Indstillinger: + + + + This help message + Denne hjælpebesked + + + + Specify configuration file (default: BitBean.conf) + Angiv konfigurationsfil (default: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + Angiv pid fil (standard: BitBeand.pid) + + + + Specify data directory + Angiv datakatalog + + + + Specify wallet file (within data directory) + Angiv tegnebogs fil (indenfor data mappe) + + + + Set database cache size in megabytes (default: 25) + Angiv databasecachestørrelse i megabytes (standard: 25) + + + + Set database disk log size in megabytes (default: 100) + Set database disk logstørrelsen i megabyte (standard: 100) + + + + Specify connection timeout in milliseconds (default: 5000) + Angiv tilslutningstimeout i millisekunder (standard: 5000) + + + + Connect through socks proxy + Tilslut gennem socks proxy + + + + Select the version of socks proxy to use (4-5, default: 5) + Vælg den version af socks proxy du vil bruge (4-5, standard: 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + Brug proxy til at nå tor skjulte services (Standard: samme som-proxy) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Tillad DNS-opslag for -addnode, -seednode og -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Lyt efter forbindelser på <port> (default: 15714 eller Testnet: 25714) + + + + Maintain at most <n> connections to peers (default: 125) + Oprethold højest <n> forbindelser til andre i netværket (standard: 125) + + + + 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 + + + + Connect only to the specified node(s) + Tilslut kun til de(n) angivne knude(r) + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Tilslut kun til knuder i netværk <net> (IPv4, IPv6 eller Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Find egen IP-adresse (standard: 1 når lytter og ingen -externalip) + + + + Find peers using internet relay chat (default: 0) + Find peers der bruger internet relay chat (default: 1) {? 0)} + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Accepter forbindelser udefra (standard: 1 hvis hverken -proxy eller -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + Binder til en given adresse. Brug [host]: port notation for IPv6 + + + + Find peers using DNS lookup (default: 1) + Find peer bruges DNS-opslag (default: 1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Synkroniser tid med andre noder. Deaktiver, hvis tiden på dit system er præcis eksempelvis synkroniseret med NTP (default: 1) + + + + Sync checkpoints policy (default: strict) + Synkroniser checkpoints politik (default: streng) + + + + 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) + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 0) + Forsøg at bruge UPnP til at konfigurere den lyttende port (standard: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + Frigør blok og adresse databaser. Øg shutdown tid (default: 0) + + + + Fee per KB to add to transactions you send + Gebyr pr KB som tilføjes til transaktioner, du sender + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Når du opretter transaktioner ignoreres input med værdi mindre end dette (standard: 0,01) + + + + Accept command line and JSON-RPC commands + Accepter kommandolinje- og JSON-RPC-kommandoer + + + + 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 + + + + Output extra debugging information. Implies all other -debug* options + Output ekstra debugging information. Indebærer alle andre-debug * muligheder + + + + Output extra network debugging information + Output ekstra netværk debugging information + + + + Prepend debug output with timestamp + Prepend debug output med tidsstempel + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Formindsk debug.log filen ved klientopstart (standard: 1 hvis ikke -debug) + + + + Send trace/debug info to console instead of debug.log file + Send sporings-/fejlsøgningsinformation til konsollen i stedet for debug.log filen + + + + Send trace/debug info to debugger + Send trace / debug info til debugger + + + + Username for JSON-RPC connections + Brugernavn til JSON-RPC-forbindelser + + + + Password for JSON-RPC connections + Adgangskode til JSON-RPC-forbindelser + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Spor efter JSON-RPC-forbindelser på <port> (default: 15715 eller Testnet: 25715) + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + Kræver en bekræftelser for forandring (default: 0) + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Gennemtving transaktions omkostninger scripts til at bruge canoniske PUSH operatører (default: 1) + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Udfør kommando, når en relevant advarsel er modtaget (% s i cmd erstattes af meddelelse) + + + + 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 + + + + Attempt to recover private keys from a corrupt wallet.dat + Forsøg at genskabe private nøgler fra ødelagt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) + Hvor mange blokke til at kontrollere ved opstart (standard: 2500, 0 = alle) + + + + How thorough the block verification is (0-6, default: 1) + Hvor grundig blok verifikation er (0-6, default: 1) + + + + Imports blocks from external blk000?.dat file + Importere blokke fra ekstern blk000?. Dat fil + + + + Block creation options: + Blokoprettelsestilvalg: + + + + Set minimum block size in bytes (default: 0) + Angiv minimumsblokstørrelse i bytes (standard: 0) + + + + Set maximum block size in bytes (default: 250000) + Indstil maks. blok størrelse i bytes (standard: 250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Angiv maksimal størrelse på high-priority/low-fee transaktioner i bytes (standard: 27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Acceptable ciphers (default: TLSv1 + HØJ:! SSLv2: aNULL: eNULL: AH: 3DES: @ styrke) + + + + Invalid amount for -paytxfee=<amount>: '%s' + Ugyldigt beløb for -paytxfee=<amount>: '%s' + + + + 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. + + + + Invalid amount for -mininput=<amount>: '%s' + Ugyldigt beløb for-mininput = <beløb>: '% s' + + + + Wallet %s resides outside data directory %s. + Wallet% s placeret udenfor data mappe% s. + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Kan ikke få en lås på data mappe% s. BitBean kører sikkert allerede. + + + + Verifying database integrity... + Bekræfter database integritet ... + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Fejl initialisering database miljø% s! For at gendanne, BACKUP denne mappe, og derefter fjern alt bortset fra 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. + 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. + + + + wallet.dat corrupt, salvage failed + wallet.dat ødelagt, redning af data mislykkedes + + + + Unknown -socks proxy version requested: %i + Ukendt -socks proxy-version: %i + + + + Unknown network specified in -onlynet: '%s' + Ukendt netværk anført i -onlynet: '%s' + + + + Invalid -proxy address: '%s' + Ugyldig -proxy adresse: '%s' + + + + Invalid -tor address: '%s' + Ugyldig-tor-adresse: '% s' + + + + Cannot resolve -bind address: '%s' + Kan ikke finde -bind adressen: '%s' + + + + 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. + + + + Cannot resolve -externalip address: '%s' + Kan ikke finde -externalip adressen: '%s' + + + + Invalid amount for -reservebalance=<amount> + Ugyldigt beløb for-reservebalance = <beløb> + + + + Unable to sign checkpoint, wrong checkpointkey? + + Kan ikke logge checkpoint, forkert checkpointkey? + + + + + Loading block index... + Indlæser blokindeks... + + + + Error loading blkindex.dat + Fejl ved indlæsning af blkindex.dat + + + + Loading wallet... + Indlæser tegnebog... + + + + Error loading wallet.dat: Wallet corrupted + Fejl ved indlæsning af wallet.dat: Tegnebog ødelagt + + + + 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. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Fejl ved indlæsning af wallet.dat: Wallet kræver en nyere version af BitBean + + + + Wallet needed to be rewritten: restart BitBean to complete + Det er nødvendig for wallet at blive omskrevet: Genstart BitBean for fuldføre + + + + Error loading wallet.dat + Fejl ved indlæsning af wallet.dat + + + + Cannot downgrade wallet + Kan ikke nedgradere tegnebog + + + + Cannot initialize keypool + Kan ikke initialisere keypool + + + + Cannot write default address + Kan ikke skrive standardadresse + + + + Rescanning... + Genindlæser... + + + + Importing blockchain data file. + Importerer blockchain datafil. + + + + Importing bootstrap blockchain data file. + Import af bootstrap blockchain datafil. + + + + Loading addresses... + Indlæser adresser... + + + + Error: could not start node + Fejl: kunne ikke starte node + + + + Done loading + Indlæsning gennemført + + + + Unable to bind to %s on this computer. BitBean is probably already running. + Kunne ikke binde sig til% s på denne computer. BitBean kører sikkert allerede. + + + + 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) + + + + Error: Wallet locked, unable to create transaction + Fejl: Wallet låst, ude af stand til at skabe transaktion + + + + Error: Wallet unlocked for staking only, unable to create transaction. + Fejl: Pung låst for at udregne rente, ude af stand til at skabe transaktion. + + + + 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å mindst% s på grund af dens størrelse, kompleksitet, eller anvendelse af nylig modtaget midler + + + + Error: Transaction creation failed + Fejl: Transaktion oprettelse mislykkedes + + + + Sending... + Sender... + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Ugyldigt beløb + + + + Insufficient funds + Manglende dækning + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Advarsel: Kontroller venligst, at computerens dato og klokkeslæt er korrekt! Hvis dit ur er forkert vil BitBean ikke fungere korrekt. + + + + Warning: This version is obsolete, upgrade required! + Advarsel: Denne version er forældet, opgradering påkrævet! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + ADVARSEL: synkroniseret checkpoint overtrædelse opdaget, men skibbet! + + + + Warning: Disk space is low! + Advarsel: Diskplads lav! + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + ADVARSEL: Ugyldig checkpoint fundet! Viste transaktioner er måske ikke korrekte! Du kan være nødt til at opgradere, eller underrette udviklerne. + + + + bitcoin-core + + BitBean version + BitBean version + + + Usage: + Anvendelse: + + + Send command to -server or BitBeand + Send kommando til-server eller BitBeand + + + List commands + Liste over kommandoer + + + Get help for a command + Få hjælp til en kommando + + + Options: + Indstillinger: + + + Specify configuration file (default: BitBean.conf) + Angiv konfigurationsfil (default: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + Angiv pid fil (standard: BitBeand.pid) + + + Specify wallet file (within data directory) + Angiv tegnebogs fil (indenfor data mappe) + + + Specify data directory + Angiv datakatalog + + + Set database cache size in megabytes (default: 25) + Angiv databasecachestørrelse i megabytes (standard: 25) + + + Set database disk log size in megabytes (default: 100) + Set database disk logstørrelsen i megabyte (standard: 100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Lyt efter forbindelser på <port> (default: 15714 eller Testnet: 25714) + + + 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 + + + Bind to given address. Use [host]:port notation for IPv6 + Binder til en given adresse. Brug [host]: port notation for IPv6 + + + Stake your coins to support network and gain reward (default: 1) + Opbevar dine mønter for at støtte netværket og få belønning (default: 1) + + + 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 + + + Detach block and address databases. Increases shutdown time (default: 0) + Frigør blok og adresse databaser. Øg shutdown tid (default: 0) + + + 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 mønterne i din pung allerede er blevet brugt, som hvis du brugte en kopi af wallet.dat og mønterne blev brugt i kopien, men ikke markeret 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å mindst% s på grund af dens størrelse, kompleksitet, eller anvendelse af nylig modtaget midler + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Spor efter JSON-RPC-forbindelser på <port> (default: 15715 eller Testnet: 25715) + + + Accept command line and JSON-RPC commands + Accepter kommandolinje- og JSON-RPC-kommandoer + + + Error: Transaction creation failed + Fejl: Transaktion oprettelse mislykkedes + + + Error: Wallet locked, unable to create transaction + Fejl: Wallet låst, ude af stand til at skabe transaktion + + + Importing blockchain data file. + Importerer blockchain datafil. + + + Importing bootstrap blockchain data file. + Import af bootstrap blockchain datafil. + + + 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) + + + 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 + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Fejl initialisering database miljø% s! For at gendanne, BACKUP denne mappe, og derefter fjern alt bortset fra wallet.dat. + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Angiv maksimal størrelse på high-priority/low-fee transaktioner i bytes (standard: 27000) + + + 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 BitBean will not work properly. + Advarsel: Kontroller venligst, at computerens dato og klokkeslæt er korrekt! Hvis dit ur er forkert vil BitBean ikke fungere korrekt. + + + 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. + + + Attempt to recover private keys from a corrupt wallet.dat + Forsøg at genskabe private nøgler fra ødelagt wallet.dat + + + Block creation options: + Blokoprettelsestilvalg: + + + Connect only to the specified node(s) + Tilslut kun til de(n) angivne knude(r) + + + Discover own IP address (default: 1 when listening and no -externalip) + Find egen IP-adresse (standard: 1 når lytter og ingen -externalip) + + + 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. + + + Find peers using DNS lookup (default: 1) + Find peer bruges DNS-opslag (default: 1) + + + Sync checkpoints policy (default: strict) + Synkroniser checkpoints politik (default: streng) + + + Invalid -tor address: '%s' + Ugyldig-tor-adresse: '% s' + + + Invalid amount for -reservebalance=<amount> + Ugyldigt beløb for-reservebalance = <beløb> + + + 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) + Tilslut kun til knuder i netværk <net> (IPv4, IPv6 eller Tor) + + + Output extra debugging information. Implies all other -debug* options + Output ekstra debugging information. Indebærer alle andre-debug * muligheder + + + Output extra network debugging information + Output ekstra netværk debugging information + + + Prepend debug output with timestamp + Prepend debug output med tidsstempel + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL-indstillinger: (se Bitcoin Wiki for SSL-opsætningsinstruktioner) + + + Select the version of socks proxy to use (4-5, default: 5) + Vælg den version af socks proxy du vil bruge (4-5, standard: 5) + + + Send trace/debug info to console instead of debug.log file + Send sporings-/fejlsøgningsinformation til konsollen i stedet for debug.log filen + + + Send trace/debug info to debugger + Send trace / debug info til debugger + + + Set maximum block size in bytes (default: 250000) + Indstil maks. blok størrelse i bytes (standard: 250000) + + + Set minimum block size in bytes (default: 0) + Angiv minimumsblokstørrelse i bytes (standard: 0) + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Formindsk debug.log filen ved klientopstart (standard: 1 hvis ikke -debug) + + + Specify connection timeout in milliseconds (default: 5000) + Angiv tilslutningstimeout i millisekunder (standard: 5000) + + + Unable to sign checkpoint, wrong checkpointkey? + + Kan ikke logge checkpoint, forkert checkpointkey? + + + + 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) + + + Use proxy to reach tor hidden services (default: same as -proxy) + Brug proxy til at nå tor skjulte services (Standard: samme som-proxy) + + + Username for JSON-RPC connections + Brugernavn til JSON-RPC-forbindelser + + + Verifying database integrity... + Bekræfter database integritet ... + + + WARNING: syncronized checkpoint violation detected, but skipped! + ADVARSEL: synkroniseret checkpoint overtrædelse opdaget, men skibbet! + + + Warning: Disk space is low! + Advarsel: Diskplads lav! + + + Warning: This version is obsolete, upgrade required! + Advarsel: Denne version er forældet, opgradering påkrævet! + + + wallet.dat corrupt, salvage failed + wallet.dat ødelagt, redning af data mislykkedes + + + Password for JSON-RPC connections + Adgangskode til JSON-RPC-forbindelser + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + % s, skal du indstille et rpcpassword i konfigurationsfilen: +% s +Det anbefales at bruge følgende tilfældig adgangskode: +rpcuser = BitBeanrpc +rpcpassword =% s +(du behøver ikke at huske denne adgangskode) +Brugernavn og adgangskode må ikke være den samme. +Hvis filen ikke findes, skal du oprette den med filtilladelser ejer-læsbar-kun. +Det kan også anbefales at sætte alertnotify så du får besked om problemer; +for eksempel: alertnotify = echo%% s | mail-s "BitBean Alert" admin@foo.com + + + + Find peers using internet relay chat (default: 0) + Find peers der bruger internet relay chat (default: 1) {? 0)} + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Synkroniser tid med andre noder. Deaktiver, hvis tiden på dit system er præcis eksempelvis synkroniseret med NTP (default: 1) + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Når du opretter transaktioner ignoreres input med værdi mindre end dette (standard: 0,01) + + + 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) + + + 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) + + + Require a confirmations for change (default: 0) + Kræver en bekræftelser for forandring (default: 0) + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Gennemtving transaktions omkostninger scripts til at bruge canoniske PUSH operatører (default: 1) + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Udfør kommando, når en relevant advarsel er modtaget (% s i cmd erstattes af meddelelse) + + + 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 + + + How many blocks to check at startup (default: 2500, 0 = all) + Hvor mange blokke til at kontrollere ved opstart (standard: 2500, 0 = alle) + + + How thorough the block verification is (0-6, default: 1) + Hvor grundig blok verifikation er (0-6, default: 1) + + + Imports blocks from external blk000?.dat file + Importere blokke fra ekstern blk000?. Dat fil + + + 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) + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Acceptable ciphers (default: TLSv1 + HØJ:! SSLv2: aNULL: eNULL: AH: 3DES: @ styrke) + + + Error: Wallet unlocked for staking only, unable to create transaction. + Fejl: Pung låst for at udregne rente, ude af stand til at skabe transaktion. + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + ADVARSEL: Ugyldig checkpoint fundet! Viste transaktioner er måske ikke korrekte! Du kan være nødt til at opgradere, eller underrette udviklerne. + + + This help message + Denne hjælpebesked + + + Wallet %s resides outside data directory %s. + Wallet% s placeret udenfor data mappe% s. + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Kan ikke få en lås på data mappe% s. BitBean kører sikkert allerede. + + + BitBean + BitBean + + + 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) + + + Connect through socks proxy + Tilslut gennem socks proxy + + + Allow DNS lookups for -addnode, -seednode and -connect + Tillad DNS-opslag for -addnode, -seednode og -connect + + + Loading addresses... + Indlæser adresser... + + + Error loading blkindex.dat + Fejl ved indlæsning af blkindex.dat + + + Error loading wallet.dat: Wallet corrupted + Fejl ved indlæsning af wallet.dat: Tegnebog ødelagt + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Fejl ved indlæsning af wallet.dat: Wallet kræver en nyere version af BitBean + + + Wallet needed to be rewritten: restart BitBean to complete + Det er nødvendig for wallet at blive omskrevet: Genstart BitBean for fuldfø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' + + + Error: could not start node + Fejl: kunne ikke starte node + + + Sending... + Sender... + + + 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. BitBean is probably already running. + Kunne ikke binde sig til% s på denne computer. BitBean kører sikkert allerede. + + + Fee per KB to add to transactions you send + Gebyr pr KB som tilføjes til transaktioner, du sender + + + Invalid amount for -mininput=<amount>: '%s' + Ugyldigt beløb for-mininput = <beløb>: '% s' + + + Loading wallet... + Indlæser tegnebog... + + + Cannot downgrade wallet + Kan ikke nedgradere tegnebog + + + Cannot initialize keypool + Kan ikke initialisere keypool + + + 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. + Du skal angive rpcpassword=<password> i konfigurationsfilen: +%s +Hvis filen ikke eksisterer, opret den og giv ingen andre end ejeren læserettighed. + + + diff --git a/src/qt/locale/bitbean_de.qm b/src/qt/locale/bitbean_de.qm new file mode 100644 index 0000000..e7e2ee3 Binary files /dev/null and b/src/qt/locale/bitbean_de.qm differ diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitbean_de.ts similarity index 51% rename from src/qt/locale/bitcoin_de.ts rename to src/qt/locale/bitbean_de.ts index 7653419..c0cd1f9 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitbean_de.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean Über BitBean - + <b>BitBean</b> version <b>BitBean</b> Version - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - 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. - + Dies ist experimentelle Software. Veröffentlicht unter der MIT/X11-Softwarelizenz, siehe beiligende Datei COPYING oder http://www.opensource.org/licenses/mit-license.php. @@ -37,72 +49,72 @@ Dieses Produkt enthält Software, die vom OpenSSL-Projekt zur Verwendung im Open AddressBookPage - + Address Book Adressbuch - + Double-click to edit address or label Doppelklicken, um die Adresse oder die Bezeichnung zu bearbeiten - + Create a new address Eine neue Adresse erstellen - + Copy the currently selected address to the system clipboard Ausgewählte Adresse in die Zwischenablage kopieren - + &New Address &Neue Adresse - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. Das sind Ihre BitBean Adressen um Zahlungen zu erhalten. Sie werden vielleicht verschiedene an jeden Sender vergeben, damit Sie im Auge behalten können wer sie bezahlt. - + &Copy Address Adresse &kopieren - + Show &QR Code &QR Code anzeigen - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list Ausgewählte Adresse aus der Liste entfernen - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + Nachricht &verifizieren - + &Delete &Löschen @@ -119,7 +131,7 @@ Dieses Produkt enthält Software, die vom OpenSSL-Projekt zur Verwendung im Open Export Address Book Data - + @@ -129,12 +141,12 @@ Dieses Produkt enthält Software, die vom OpenSSL-Projekt zur Verwendung im Open Error exporting - + Fehler beim Exportieren Could not write to file %1. - + Kann Datei nicht schreiben %1. @@ -158,29 +170,29 @@ Dieses Produkt enthält Software, die vom OpenSSL-Projekt zur Verwendung im Open AskPassphraseDialog - + Passphrase Dialog Passphrasendialog - + Enter passphrase Passphrase eingeben - + New passphrase Neue Passphrase - + Repeat new passphrase Neue Passphrase wiederholen - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + @@ -234,16 +246,21 @@ Dieses Produkt enthält Software, die vom OpenSSL-Projekt zur Verwendung im Open - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + Sind Sie sich sicher, dass Sie ihre Wallet verschlüsseln möchten? - Are you sure you wish to encrypt your wallet? - Sind Sie sich sicher, dass Sie ihre Wallet verschlüsseln möchten? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. WICHTIG: Alle vorherigen Wallet-Sicherungen sollten durch die neu erzeugte, verschlüsselte Wallet ersetzt werden. Aus Sicherheitsgründen werden vorherige Sicherungen der unverschlüsselten Wallet nutzlos, sobald Sie die neue, verschlüsselte Wallet verwenden. @@ -260,12 +277,7 @@ Dieses Produkt enthält Software, die vom OpenSSL-Projekt zur Verwendung im Open Wallet verschlüsselt - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -307,333 +319,585 @@ Dieses Produkt enthält Software, die vom OpenSSL-Projekt zur Verwendung im Open - BitcoinGUI - - - Sign &message... - Nachricht &signieren... - + BeanControlDialog - - Synchronizing with network... - Synchronisiere mit Netzwerk... + + Bean Control + - - &Overview - &Übersicht + + Quantity: + Anzahl: - - Show general overview of wallet - Allgemeine Wallet-Übersicht anzeigen + + Bytes: + Byte: - - &Transactions - &Transaktionen + + Amount: + Betrag: - - Browse transaction history - Transaktionsverlauf durchsehen + + Priority: + Priorität: - - &Address Book - + + Fee: + Gebühr: - - Edit the list of stored addresses and labels - + + Low Output: + Zu geringer Ausgabebetrag: - - &Receive coins - + + After Fee: + Abzüglich Gebühr: - - Show the list of addresses for receiving payments - + + Change: + Wechselgeld: - - &Send coins - + + (un)select all + Alles (de)selektieren - - E&xit - &Beenden + + Tree mode + Baumansicht - - Quit application - Anwendung beenden + + List mode + Listenansicht - - Show information about BitBean - + + Amount + Betrag - - About &Qt - Über &Qt + + Label + Bezeichnung - - Show information about Qt - Informationen über Qt anzeigen + + Address + Adresse - - &Options... - &Konfiguration... + + Date + Datum - - &Encrypt Wallet... - Wallet &verschlüsseln... + + Confirmations + Bestätigungen - &Backup Wallet... - Wallet &sichern... + Confirmed + Bestätigt - - &Change Passphrase... - Passphrase &ändern... - - - - ~%n block(s) remaining - + + Priority + Priorität - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Adresse kopieren - - &Export... - + + Copy label + Bezeichnung kopieren - - Send coins to a BitBean address - + + + Copy amount + Betrag kopieren - - Modify configuration options for BitBean - + + Copy transaction ID + Transaktions-ID kopieren - - Export the data in the current tab to a file - + + Copy quantity + Anzahl kopieren - - Encrypt or decrypt wallet - + + Copy fee + Gebühr kopieren - - Backup wallet to another location - Eine Wallet-Sicherungskopie erstellen und abspeichern + + Copy after fee + Abzüglich Gebühr kopieren - - Change the passphrase used for wallet encryption - Ändert die Passphrase, die für die Wallet-Verschlüsselung benutzt wird + + Copy bytes + Byte kopieren - - &Debug window - &Debugfenster + + Copy priority + Priorität kopieren - Open debugging and diagnostic console - Debugging- und Diagnosekonsole öffnen + Copy low output + Zu geringen Ausgabebetrag kopieren - - &Verify message... - Nachricht &verifizieren... + + Copy change + Wechselgeld kopieren - - BitBean - + + highest + am höchsten - - Wallet - Wallet + + high + hoch - - &About BitBean - + + medium-high + mittel-hoch - - &Show / Hide - &Anzeigen / Verstecken + + medium + mittel - - Unlock wallet - + + low-medium + niedrig-mittel - &Lock Wallet - + low + niedrig - Lock wallet - + lowest + am niedrigsten - - &File - &Datei + + DUST + STAUB - - &Settings - &Einstellungen + + yes + ja - - &Help - &Hilfe + + no + nein - - Tabs toolbar - Registerkartenleiste + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [Testnetz] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + (keine Bezeichnung) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + Wechselgeld von %1 (%2) - - Not staking because wallet is locked - + + (change) + (Wechselgeld) + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + BitBean - - Not staking because you don't have mature coins - + + Vault + - - - %n second(s) ago - + + + &Overview + &Übersicht - - &Unlock Wallet... - + + Show general overview of wallet + Allgemeine Wallet-Übersicht anzeigen + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transaktionen + + + + Browse transaction history + Transaktionsverlauf durchsehen + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + &Beenden + + + + Quit application + Anwendung beenden + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + Über &Qt + + + + Show information about Qt + Informationen über Qt anzeigen + + + + &Options... + &Konfiguration... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + &Anzeigen / Verstecken + + + + &Encrypt Wallet... + Wallet &verschlüsseln... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + Wallet &sichern... + + + + Backup wallet to another location + Eine Wallet-Sicherungskopie erstellen und abspeichern + + + + &Change Passphrase... + Passphrase &ändern... + + + + Change the passphrase used for wallet encryption + Ändert die Passphrase, die für die Wallet-Verschlüsselung benutzt wird + + + + &Unlock Wallet... + + + + + Unlock wallet + Wallet entsperren + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Nachricht &signieren... + + + + &Verify message... + Nachricht &verifizieren... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + &Debugfenster + + + + Open debugging and diagnostic console + Debugging- und Diagnosekonsole öffnen + + + + &File + &Datei + + + + &Settings + &Einstellungen + + + + &Help + &Hilfe + + + + Tabs toolbar + Registerkartenleiste + + + + Actions toolbar + + + + + + [testnet] + [Testnetz] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + Synchronisiere mit Netzwerk... + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + - + %n minute(s) ago - + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - Auf aktuellem Stand + Auf aktuellem Stand Catching up... - Hole auf... + Hole auf... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Gesendete Transaktion + Gesendete Transaktion Incoming transaction - Eingehende Transaktion + Eingehende Transaktion @@ -642,7 +906,7 @@ Amount: %2 Type: %3 Address: %4 - Datum: %1 + Datum: %1 Betrag: %2 Typ: %3 Adresse: %4 @@ -651,341 +915,446 @@ Adresse: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet ist <b>verschlüsselt</b> und aktuell <b>entsperrt</b> + Wallet ist <b>verschlüsselt</b> und aktuell <b>entsperrt</b> Wallet is <b>encrypted</b> and currently <b>locked</b> - Wallet ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b> + Wallet ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - %n Stunde%n Stunden + + %n Stunde + %n Stunden + %n day(s) - %n Tag%n Tage + + %n Tag + %n Tage + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Netzwerkalarm + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - Anzahl: + + Not staking because you don't have mature beans + - - Bytes: - Byte: + + Not staking + + + + BitcoinGUI - - Amount: - Betrag: + Sign &message... + Nachricht &signieren... - - Priority: - Priorität: + Synchronizing with network... + Synchronisiere mit Netzwerk... - - Fee: - Gebühr: + &Overview + &Übersicht - - Low Output: - Zu geringer Ausgabebetrag: + Show general overview of wallet + Allgemeine Wallet-Übersicht anzeigen - - no - nein + &Transactions + &Transaktionen - - After Fee: - Abzüglich Gebühr: + Browse transaction history + Transaktionsverlauf durchsehen - - Change: - Wechselgeld: + E&xit + &Beenden - - (un)select all - Alles (de)selektieren + Quit application + Anwendung beenden - - Tree mode - Baumansicht + About &Qt + Über &Qt - - List mode - Listenansicht + Show information about Qt + Informationen über Qt anzeigen - - Amount - Betrag + &Options... + &Konfiguration... - - Label - Bezeichnung + &Encrypt Wallet... + Wallet &verschlüsseln... - - Address - Adresse + &Backup Wallet... + Wallet &sichern... + + + &Change Passphrase... + Passphrase &ändern... + + + Backup wallet to another location + Eine Wallet-Sicherungskopie erstellen und abspeichern + + + Change the passphrase used for wallet encryption + Ändert die Passphrase, die für die Wallet-Verschlüsselung benutzt wird + + + &Debug window + &Debugfenster + + + Open debugging and diagnostic console + Debugging- und Diagnosekonsole öffnen + + + &Verify message... + Nachricht &verifizieren... + + + Wallet + Wallet + + + &Show / Hide + &Anzeigen / Verstecken + + + &File + &Datei + + + &Settings + &Einstellungen + + + &Help + &Hilfe + + + Tabs toolbar + Registerkartenleiste + + + [testnet] + [Testnetz] + + + Up to date + Auf aktuellem Stand + + + Catching up... + Hole auf... + + + Sent transaction + Gesendete Transaktion + + + Incoming transaction + Eingehende Transaktion + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum: %1 +Betrag: %2 +Typ: %3 +Adresse: %4 + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Wallet ist <b>verschlüsselt</b> und aktuell <b>entsperrt</b> + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Wallet ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b> + + + %n hour(s) + + %n Stunde + %n Stunden + + + + %n day(s) + + %n Tag + %n Tage + + + + + ClientModel + + + Network Alert + Netzwerkalarm + + + + CoinControlDialog + + Quantity: + Anzahl: + + + Bytes: + Byte: + + + Amount: + Betrag: + + + Priority: + Priorität: + + + Fee: + Gebühr: + + + Low Output: + Zu geringer Ausgabebetrag: + + + no + nein + + + After Fee: + Abzüglich Gebühr: + + + Change: + Wechselgeld: + + + (un)select all + Alles (de)selektieren + + + Tree mode + Baumansicht + + + List mode + Listenansicht + + + Amount + Betrag + + + Label + Bezeichnung + + + Address + Adresse - Date - Datum + Datum - Confirmations - Bestätigungen + Bestätigungen - Confirmed - Bestätigt + Bestätigt - Priority - Priorität + Priorität - Copy address - Adresse kopieren + Adresse kopieren - Copy label - Bezeichnung kopieren + Bezeichnung kopieren - - Copy amount - Betrag kopieren + Betrag kopieren - Copy transaction ID - Transaktions-ID kopieren + Transaktions-ID kopieren - Copy quantity - Anzahl kopieren + Anzahl kopieren - Copy fee - Gebühr kopieren + Gebühr kopieren - Copy after fee - Abzüglich Gebühr kopieren + Abzüglich Gebühr kopieren - Copy bytes - Byte kopieren + Byte kopieren - Copy priority - Priorität kopieren + Priorität kopieren - Copy low output - Zu geringen Ausgabebetrag kopieren + Zu geringen Ausgabebetrag kopieren - Copy change - Wechselgeld kopieren + Wechselgeld kopieren - highest - am höchsten + am höchsten - high - hoch + hoch - medium-high - mittel-hoch + mittel-hoch - medium - mittel + mittel - low-medium - niedrig-mittel + niedrig-mittel - low - niedrig + niedrig - lowest - am niedrigsten + am niedrigsten - DUST - STAUB + STAUB - yes - ja + ja - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 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. - - This means a fee of at least %2 is required. - - - - - (no label) - (keine Bezeichnung) + (keine Bezeichnung) - change from %1 (%2) - Wechselgeld von %1 (%2) + Wechselgeld von %1 (%2) - (change) - (Wechselgeld) + (Wechselgeld) EditAddressDialog - + Edit Address Adresse bearbeiten @@ -1053,10 +1422,10 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + @@ -1076,12 +1445,12 @@ This label turns red, if the priority is smaller than "medium". UI options - + Set language, for example "de_DE" (default: system locale) - + @@ -1091,35 +1460,35 @@ This label turns red, if the priority is smaller than "medium". Show splash screen on startup (default: 1) - + OptionsDialog - + Options Erweiterte Einstellungen - + &Main &Allgemein - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee Transaktions&gebühr bezahlen - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + @@ -1139,12 +1508,12 @@ This label turns red, if the priority is smaller than "medium". Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1164,12 +1533,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1248,11 +1617,25 @@ This label turns red, if the priority is smaller than "medium". + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + 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 Bitcoins angezeigt werden soll. + Wählen Sie die Standarduntereinheit, die in der Benutzeroberfläche und beim Überweisen von Bitcoins angezeigt werden soll. - + Whether to show BitBean addresses in the transaction list or not. BitBean Adressen in der Überweisung anzeigen oder nicht. @@ -1262,17 +1645,15 @@ This label turns red, if the priority is smaller than "medium". Adressen in der Transaktionsliste &anzeigen - Whether to show coin control features or not. - Legt fest, ob die "Coin Control"-Funktionen angezeigt werden. + Legt fest, ob die "Coin Control"-Funktionen angezeigt werden. - Display coin &control features (experts only!) - Coin &control features anzeigen (nur experten!) + Coin &control features anzeigen (nur experten!) - + &OK &OK @@ -1312,87 +1693,171 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Formular - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - Die angezeigte Information kann falsch sein. Die Brieftasche synchronisiert automatisch mit dem BitBean Netzwerk nachdem eine Verbindung zustande gekommen ist, aber dieser Prozess ist nicht abgeschlossen. + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + Die angezeigte Information kann falsch sein. Die Brieftasche synchronisiert automatisch mit dem BitBean Netzwerk nachdem eine Verbindung zustande gekommen ist, aber dieser Prozess ist nicht abgeschlossen. - + Unconfirmed: Unbestätigt: - Wallet - Wallet + Wallet - + Spendable: Ausgabebereit: - + Your current spendable balance Ihr aktuell verfügbarer Kontostand - - Immature: - Unreif: + + Sprouting: + - - Mined balance that has not yet matured - Erarbeiteter Betrag der noch nicht gereift ist + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + - - Total: - Gesamtbetrag: + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + - - Your current total balance - Aktueller Gesamtbetrag aus obigen Kategorien + + Immature: + Unreif: - - <b>Recent transactions</b> - <b>Letzte Transaktionen</b> + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Anzahl der unbestätigten Transaktionen die somit noch nicht zum aktuellen Kontostand zählen. + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + BitBean Network + - - - out of sync + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + 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> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Anzahl der unbestätigten Transaktionen die somit noch nicht zum aktuellen Kontostand zählen. + + + + + out of sync nicht synchron QRCodeDialog - + QR Code Dialog QR Code Dialog @@ -1450,7 +1915,7 @@ This label turns red, if the priority is smaller than "medium". RPCConsole - + Client name Clientname @@ -1536,7 +2001,7 @@ This label turns red, if the priority is smaller than "medium". Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + @@ -1571,7 +2036,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1581,7 +2046,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1595,59 +2060,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Bitcoins überweisen + Send Beans + - Coin Control Features - "Coin Control"-Funktionen + Bean Control Features + Inputs... - Eingaben... + Eingaben... automatically selected - automatisch ausgewählt + automatisch ausgewählt Insufficient funds! - Unzureichender Kontostand! + Unzureichender Kontostand! Quantity: - Anzahl: + Anzahl: 0 - + Bytes: - Byte: + Byte: Amount: - Betrag: + Betrag: @@ -1655,272 +2120,446 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - Priorität: + Priorität: medium - + mittel Fee: - Gebühr: + Gebühr: Low Output: - Zu geringer Ausgabebetrag: + Zu geringer Ausgabebetrag: no - + nein After Fee: - Abzüglich Gebühr: + Abzüglich Gebühr: Change - + custom change address - + Send to multiple recipients at once - In einer Transaktion an mehrere Empfänger auf einmal überweisen + In einer Transaktion an mehrere Empfänger auf einmal überweisen Add &Recipient - Empfänger &hinzufügen + Empfänger &hinzufügen Remove all transaction fields - + Clear &All - &Zurücksetzen + &Zurücksetzen Balance: - Kontostand: + Kontostand: 123.456 BC - + Confirm the send action - Überweisung bestätigen + Überweisung bestätigen S&end - &Überweisen + &Überweisen - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - Anzahl kopieren + Anzahl kopieren Copy amount - Betrag kopieren + Betrag kopieren Copy fee - Gebühr kopieren + Gebühr kopieren Copy after fee - Abzüglich Gebühr kopieren + Abzüglich Gebühr kopieren Copy bytes - Byte kopieren + Byte kopieren Copy priority - Priorität kopieren + Priorität kopieren Copy low output - Zu geringen Ausgabebetrag kopieren + Zu geringen Ausgabebetrag kopieren Copy change - Wechselgeld kopieren + Wechselgeld kopieren <b>%1</b> to %2 (%3) - + - Confirm send coins - Überweisung bestätigen + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - Die Zahlungsadresse ist ungültig, bitte nochmals überprüfen. + 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. + Der zu zahlende Betrag muss größer als 0 sein. The amount exceeds your balance. - Der angegebene Betrag übersteigt ihren Kontostand. + 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. + 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 Adresse gefunden, pro Überweisung kann an jede Adresse nur einmalig etwas überwiesen werden. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (keine Bezeichnung) + (keine Bezeichnung) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Formular - + A&mount: - &Betrag: + &Betrag: Pay &To: - &Empfänger: + &Empfänger: - + 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) + Adressbezeichnung eingeben (diese wird zusammen mit der Adresse dem Adressbuch hinzugefügt) &Label: - &Bezeichnung: + &Bezeichnung: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Empfängeradresse (z.b. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Empfängeradresse (z.b. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) Choose address from address book - Adresse aus dem Adressbuch auswählen + Adresse aus dem Adressbuch auswählen Alt+A - Alt+A + Alt+A Paste address from clipboard - Adresse aus der Zwischenablage einfügen + Adresse aus der Zwischenablage einfügen Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + Bitcoins überweisen + + + Coin Control Features + "Coin Control"-Funktionen + + + Inputs... + Eingaben... + + + automatically selected + automatisch ausgewählt + + + Insufficient funds! + Unzureichender Kontostand! + + + Quantity: + Anzahl: + + + Bytes: + Byte: + + + Amount: + Betrag: + + + Priority: + Priorität: + + + Fee: + Gebühr: + + + Low Output: + Zu geringer Ausgabebetrag: + + + After Fee: + Abzüglich Gebühr: + + + Send to multiple recipients at once + In einer Transaktion an mehrere Empfänger auf einmal überweisen + + + Add &Recipient + Empfänger &hinzufügen + + + Clear &All + &Zurücksetzen + + + Balance: + Kontostand: + + + Confirm the send action + Überweisung bestätigen + + + S&end + &Überweisen + + + 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 + + + Confirm send coins + Überweisung bestätigen + + + 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. + + + (no label) + (keine Bezeichnung) + + + + SendCoinsEntry + + A&mount: + &Betrag: + + + Pay &To: + &Empfänger: + + + 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: + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Empfängeradresse (z.b. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + Adresse aus dem Adressbuch auswählen + + + Alt+A + Alt+A + + + Paste address from clipboard + Adresse aus der Zwischenablage einfügen + + + Alt+P + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message Signaturen - eine Nachricht signieren / verifizieren @@ -1938,7 +2577,7 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2002,12 +2641,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2018,7 +2657,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2107,7 +2746,10 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - Offen für %n weitere BlöckeOffen für %n weitere Blöcke + + Offen für %n weitere Blöcke + Offen für %n weitere Blöcke + @@ -2137,7 +2779,10 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - , über %n Knoten übertragen, über %n Knoten übertragen + + , über %n Knoten übertragen + , über %n Knoten übertragen + @@ -2190,7 +2835,10 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - reift noch %n weiteren Blockreift noch %n weitere Blöcke + + reift noch %n weiteren Block + reift noch %n weitere Blöcke + @@ -2232,8 +2880,12 @@ This label turns red, if the priority is smaller than "medium". + Generated beans must mature 110 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. + + + Generated coins must mature 110 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 Coins müssen 510 Bestätigungen erhalten bevor sie verfügbar sind. Dieser Block wurde ans Netzwerk gesendet und der Blockkette angehängt als der Block generiert wurde. Wenn er der Blockkette nicht erfolgreich angehängt werden konnte, wird er den Status in "nicht Akzeptiert" ändern und wird nicht verfügbar sein. Das kann zufällig geschehen wenn eine andere Leitung den Block innerhalb von ein paar Sekunden generiert. + Generierte Coins müssen 510 Bestätigungen erhalten bevor sie verfügbar sind. Dieser Block wurde ans Netzwerk gesendet und der Blockkette angehängt als der Block generiert wurde. Wenn er der Blockkette nicht erfolgreich angehängt werden konnte, wird er den Status in "nicht Akzeptiert" ändern und wird nicht verfügbar sein. Das kann zufällig geschehen wenn eine andere Leitung den Block innerhalb von ein paar Sekunden generiert. @@ -2279,7 +2931,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Transaktionsdetails @@ -2324,12 +2976,15 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - Offen für %n weiteren BlockOffen für %n weitere Blöcke + + Offen für %n weiteren Block + Offen für %n weitere Blöcke + Offline - + @@ -2383,8 +3038,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - Erarbeitet + Erarbeitet @@ -2507,779 +3166,1210 @@ This label turns red, if the priority is smaller than "medium". - Copy transaction ID - Transaktions-ID kopieren + Copy transaction ID + Transaktions-ID kopieren + + + + Edit label + Bezeichnung bearbeiten + + + + Show transaction details + Transaktionsdetails anzeigen + + + + Export Transaction Data + Exportiere Transaktionsdaten + + + + Comma separated file (*.csv) + Kommagetrennte-Datei (*.csv) + + + + Confirmed + Bestätigt + + + + Date + Datum + + + + Type + Typ + + + + Label + Bezeichnung + + + + Address + Adresse + + + + Amount + Betrag + + + + ID + ID + + + + Error exporting + Fehler beim Exportieren + + + + Could not write to file %1. + Kann Datei nicht schreiben %1. + + + + Range: + Zeitraum: + + + + to + bis + + + + WalletModel + + + Sending... + Wird gesendet... + + + + bitbean-core + + + To use the %s option + Zur Nutzung der %s Option + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Fehler + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Sie müssen den Wert rpcpassword=<passwort> in der Konfigurationsdatei angeben: +%s +Falls die Konfigurationsdatei nicht existiert, erzeugen Sie diese bitte mit Leserechten nur für den Dateibesitzer. + + + + BitBean version + + + + + Usage: + Benutzung: + + + + Send command to -server or BitBeand + Kommando versenden an -server oder BitBeand + + + + List commands + Befehle auflisten + + + + Get help for a command + Hilfe zu einem Befehl erhalten + + + + BitBean + BitBean + + + + Options: + Optionen: + + + + This help message + Dieser Hilfetext + + + + Specify configuration file (default: BitBean.conf) + Konfigurationsdatei angeben (Standard: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + PID Datei angeben (Standard: BitBean.pid) + + + + Specify data directory + Datenverzeichnis festlegen + + + + Specify wallet file (within data directory) + Wallet-Datei festlegen (innerhalb des Datenverzeichnisses) + + + + Set database cache size in megabytes (default: 25) + Größe des Datenbankcaches in MB festlegen (Standard: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Verbindungstimeout in Millisekunden festlegen (Standard: 5000) + + + + Connect through socks proxy + Verbinde über socks proxy + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + Proxy benutzen um versteckte Services zu erreichen (Standard: selbe Einstellung wie Proxy) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Erlaube DNS-Namensauflösung für -addnode, -seednode und -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Maximal <n> Verbindungen zu Gegenstellen aufrechterhalten (Standard: 125) + + + + Add a node to connect to and attempt to keep the connection open + Mit dem Knoten verbinden und versuchen die Verbindung aufrecht zu halten + + + + Connect only to the specified node(s) + Nur mit dem/den angegebenen Knoten verbinden + + + + Connect to a node to retrieve peer addresses, and disconnect + Mit dem Knoten verbinden um Adressen von Gegenstellen abzufragen, danach trennen + + + + Specify your own public address + Die eigene öffentliche Adresse angeben + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Verbinde nur zu Knoten des Netztyps <net> (IPv4, IPv6 oder Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Eigene IP-Adresse erkennen (Standard: 1, wenn abgehört wird und nicht -externalip) + + + + Find peers using internet relay chat (default: 0) + Knoten die IRC Chat nutzen auffinden (Standard: 1) (0)?) + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Eingehende Verbindungen annehmen (Standard: 1, wenn nicht -proxy oder -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + 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) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Maximale Größe, <n> * 1000 Byte, des Empfangspuffers pro Verbindung (Standard: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Maximale Größe, <n> * 1000 Byte, des Sendepuffers pro Verbindung (Standard: 1000) + + + + Use UPnP to map the listening port (default: 1 when listening) + UPnP verwenden, um die Portweiterleitung einzurichten (Standard: 1, wenn abgehört wird) + + + + Use UPnP to map the listening port (default: 0) + UPnP verwenden, um die Portweiterleitung einzurichten (Standard: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + Gebühr pro KB, zusätzlich zur ausgehenden Transaktion + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Beim erstellen einer Transaktion werden eingaben kleiner als dieser Wert ignoriert (Standard 0,01) + + + + Accept command line and JSON-RPC commands + Kommandozeilenbefehle und JSON-RPC-Befehle annehmen + + + + Run in the background as a daemon and accept commands + Als Hintergrunddienst starten und Befehle annehmen + + + + Use the test network + Das Testnetz verwenden + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + 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) + + + + 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 + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + Benutzername für JSON-RPC-Verbindungen + + + + Password for JSON-RPC connections + Passwort für JSON-RPC-Verbindungen + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Kommando ausführen wenn sich eine Wallet-Transaktion verändert (%s im Kommando wird durch die TxID ersetzt) + + + + Require a confirmations for change (default: 0) + Benötigt eine Bestätigung zur Änderung (Standard: 0) + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Kommando ausführen wenn eine relevante Meldung eingeht (%s in cmd wird von der Meldung ausgetauscht) + + + + Upgrade wallet to latest format + Wallet 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 Wallet-Transaktionen durchsuchen + + + + Attempt to recover private keys from a corrupt wallet.dat + Versucht private Schlüssel aus einer beschädigten wallet.dat wiederherzustellen + + + + How many blocks to check at startup (default: 2500, 0 = all) + Anzahl der zu prüfenden Blöcke bei Programmstart (Standard: 2500, 0 = alle) + + + + How thorough the block verification is (0-6, default: 1) + + + + + Imports blocks from external blk000?.dat file + Importiere Blöcke aus externer blk000?.dat Datei. + + + + Block creation options: + Blockerzeugungsoptionen: + + + + Set minimum block size in bytes (default: 0) + Minimale Blockgröße in Byte festlegen (Standard: 0) + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + + Invalid amount for -paytxfee=<amount>: '%s' + Ungültiger Betrag für -paytxfee=<amount>: '%s' + + + + 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. + + + + Invalid amount for -mininput=<amount>: '%s' + Ungültiger Betrag für -mininput=<amount>:'%s' + + + + Wallet %s resides outside data directory %s. + Wallet %s liegt außerhalb des Daten Verzeichnisses %s. + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Kann das Verzeichniss nicht einbinden %s. BitBean Brieftasche läuft wahrscheinlich bereits. + + + + Verifying database integrity... + Überprüfe Datenbank Integrität... + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for 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. + 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. + + + + wallet.dat corrupt, salvage failed + wallet.dat beschädigt, Rettung fehlgeschlagen + + + + Unknown -socks proxy version requested: %i + Unbekannte Proxyversion in -socks angefordert: %i + + + + Unknown network specified in -onlynet: '%s' + Unbekannter Netztyp in -onlynet angegeben: '%s' + + + + Invalid -proxy address: '%s' + Ungültige Adresse in -proxy: '%s' + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + Kann Adresse in -bind nicht auflösen: '%s' + + + + 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. + + + + Cannot resolve -externalip address: '%s' + Kann Adresse in -externalip nicht auflösen: '%s' + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + Lade Blockindex... + + + + Error loading blkindex.dat + Fehler beim laden von blkindex.dat + + + + Loading wallet... + Lade Wallet... + + + + Error loading wallet.dat: Wallet corrupted + Fehler beim Laden von wallet.dat: Wallet beschädigt + + + + 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. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Fehler beim Laden wallet.dat. Brieftasche benötigt neuere Version der BitBean Brieftasche. + + + + Wallet needed to be rewritten: restart BitBean to complete + Brieftasche muss neu geschrieben werden. Starte die BitBean Brieftasche neu zum komplettieren. + + + + Error loading wallet.dat + Fehler beim Laden von wallet.dat + + + + Cannot downgrade wallet + Wallet kann nicht auf eine ältere Version herabgestuft werden + + + + Cannot initialize keypool + Keypool kann nicht initialisiert werden + + + + Cannot write default address + Standardadresse kann nicht geschrieben werden + + + + Rescanning... + Durchsuche erneut... + + + + Importing blockchain data file. + Importiere Block Kette aus Datei + + + + Importing bootstrap blockchain data file. + + + + + Loading addresses... + Lade Adressen... + + + + Error: could not start node + Fehler: Node konnte nicht gestartet werden - Edit label - Bezeichnung bearbeiten + Done loading + Laden abgeschlossen - Show transaction details - Transaktionsdetails anzeigen + Unable to bind to %s on this computer. BitBean is probably already running. + Fehler beim anbinden %s auf diesem Computer. BlaclCoin Client läuft wahrscheinlich bereits. - - Export Transaction Data - Exportiere Transaktionsdaten + + 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) - Comma separated file (*.csv) - Kommagetrennte-Datei (*.csv) + Error: Wallet locked, unable to create transaction + Fehler: Brieftasche verschlüsselt, unfähig Transaktion zu erstellen - - Confirmed - Bestätigt + + Error: Wallet unlocked for staking only, unable to create transaction. + - Date - Datum + 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 eine Transaktionsgebühr von mindestens %s wegen der Anzahl, Komplexität oder Benutzung von neuerlich erhaltenen Beträgen. - - Type - Typ + + Error: Transaction creation failed + Fehler: Erstellung der Transaktion fehlgeschlagen - Label - Bezeichnung + Sending... + Wird gesendet... - Address - Adresse + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Amount - Betrag + + Invalid amount + Ungültiger Betrag - ID - ID + Insufficient funds + Unzureichender Kontostand - - Error exporting - Fehler beim Exportieren + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Wanung : Bitte prüfen Sie ob Datum und Uhrzeit richtig eingestellt sind. Wenn das Datum falsch ist BitBean nicht richtig funktionieren. - - Could not write to file %1. - Kann Datei nicht schreiben %1. + + Warning: This version is obsolete, upgrade required! + Warnung: Diese Version is veraltet, Aktualisierung erforderlich! - - Range: - Zeitraum: + + WARNING: syncronized checkpoint violation detected, but skipped! + - - to - bis + + Warning: Disk space is low! + Warnung: Festplatte hat wenig freien Speicher - - - WalletModel - - Sending... - Wird gesendet... + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + WARNUNG : Ungültiger Checkpunkt gefunden! Angezeigte Transaktionen können falsch sein! Du musst vielleicht updaten oder die Entwickler benachrichtigen. bitcoin-core - - BitBean version - - - - Usage: - Benutzung: + Benutzung: - Send command to -server or BitBeand - Kommando versenden an -server oder BitBeand + Kommando versenden an -server oder BitBeand - List commands - Befehle auflisten + Befehle auflisten - Get help for a command - Hilfe zu einem Befehl erhalten + Hilfe zu einem Befehl erhalten - Options: - Optionen: + Optionen: - Specify configuration file (default: BitBean.conf) - Konfigurationsdatei angeben (Standard: BitBean.conf) + Konfigurationsdatei angeben (Standard: BitBean.conf) - Specify pid file (default: BitBeand.pid) - PID Datei angeben (Standard: BitBean.pid) + PID Datei angeben (Standard: BitBean.pid) - Specify wallet file (within data directory) - Wallet-Datei festlegen (innerhalb des Datenverzeichnisses) + Wallet-Datei festlegen (innerhalb des Datenverzeichnisses) - Specify data directory - Datenverzeichnis festlegen + Datenverzeichnis festlegen - Set database cache size in megabytes (default: 25) - Größe des Datenbankcaches in MB festlegen (Standard: 25) - - - - Set database disk log size in megabytes (default: 100) - + Größe des Datenbankcaches in MB festlegen (Standard: 25) - - Listen for connections on <port> (default: 15714 or testnet: 25714) - - - - Maintain at most <n> connections to peers (default: 125) - Maximal <n> Verbindungen zu Gegenstellen aufrechterhalten (Standard: 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 Knoten verbinden um Adressen von Gegenstellen abzufragen, danach trennen - Specify your own public address - Die eigene öffentliche Adresse angeben - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - + 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) + 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) + 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 - - - - Detach block and address databases. Increases shutdown time (default: 0) - + Beim Einrichten des abzuhörenden RPC-Ports %u für IPv4 ist ein Fehler aufgetreten: %s - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Fehler: Transaktion wurde abgelehnt. Das kann geschehen wenn einige Coins in der Brieftasche bereits ausgegeben wurden, wenn von einer Kopie der wallet.dat Coins ausgegeben wurden werden sie hier nicht als Ausgabe aufgeführt. + Fehler: Transaktion wurde abgelehnt. Das kann geschehen wenn einige Coins in der Brieftasche bereits ausgegeben wurden, wenn von einer Kopie der wallet.dat Coins ausgegeben wurden werden sie hier nicht als Ausgabe aufgeführt. - 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 eine Transaktionsgebühr von mindestens %s wegen der Anzahl, Komplexität oder Benutzung von neuerlich erhaltenen Beträgen. - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + Fehler: Diese Transaktion benötigt eine Transaktionsgebühr von mindestens %s wegen der Anzahl, Komplexität oder Benutzung von neuerlich erhaltenen Beträgen. - Accept command line and JSON-RPC commands - Kommandozeilenbefehle und JSON-RPC-Befehle annehmen + Kommandozeilenbefehle und JSON-RPC-Befehle annehmen - Error: Transaction creation failed - Fehler: Erstellung der Transaktion fehlgeschlagen + Fehler: Erstellung der Transaktion fehlgeschlagen - Error: Wallet locked, unable to create transaction - Fehler: Brieftasche verschlüsselt, unfähig Transaktion zu erstellen + Fehler: Brieftasche verschlüsselt, unfähig Transaktion zu erstellen - Importing blockchain data file. - Importiere Block Kette aus Datei - - - - Importing bootstrap blockchain data file. - + Importiere Block Kette aus Datei - Run in the background as a daemon and accept commands - Als Hintergrunddienst starten und Befehle annehmen + Als Hintergrunddienst starten und Befehle annehmen - Use the test network - Das Testnetz verwenden + Das Testnetz verwenden - Accept connections from outside (default: 1 if no -proxy or -connect) - Eingehende Verbindungen annehmen (Standard: 1, wenn nicht -proxy oder -connect) + Eingehende Verbindungen annehmen (Standard: 1, wenn nicht -proxy oder -connect) - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + Beim Einrichten des abzuhörenden RPC-Ports %u für IPv6 ist ein Fehler aufgetreten, es wird auf IPv4 zurückgegriffen: %s - 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. + 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 BitBean will not work properly. - Wanung : Bitte prüfen Sie ob Datum und Uhrzeit richtig eingestellt sind. Wenn das Datum falsch ist BitBean nicht richtig funktionieren. + Wanung : Bitte prüfen Sie ob Datum und Uhrzeit richtig eingestellt sind. Wenn das Datum falsch ist BitBean nicht richtig funktionieren. - 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. + 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, 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. - Attempt to recover private keys from a corrupt wallet.dat - Versucht private Schlüssel aus einer beschädigten wallet.dat wiederherzustellen + Versucht private Schlüssel aus einer beschädigten wallet.dat wiederherzustellen - Block creation options: - Blockerzeugungsoptionen: + Blockerzeugungsoptionen: - Connect only to the specified node(s) - Nur mit dem/den angegebenen Knoten verbinden + Nur mit dem/den angegebenen Knoten verbinden - Discover own IP address (default: 1 when listening and no -externalip) - Eigene IP-Adresse erkennen (Standard: 1, wenn abgehört wird und nicht -externalip) + Eigene IP-Adresse erkennen (Standard: 1, wenn abgehört wird und nicht -externalip) - 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. - - - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - + Fehler, es konnte kein Port abgehört werden. Wenn dies so gewünscht wird -listen=0 verwenden. - 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, <n> * 1000 Byte, des Empfangspuffers pro Verbindung (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, <n> * 1000 Byte, des Sendepuffers pro Verbindung (Standard: 1000) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Verbinde nur zu Knoten des Netztyps <net> (IPv4, IPv6 oder Tor) - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - + Verbinde nur zu Knoten des Netztyps <net> (IPv4, IPv6 oder Tor) - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL-Optionen: (siehe Bitcoin-Wiki für SSL-Installationsanweisungen) + SSL-Optionen: (siehe Bitcoin-Wiki für SSL-Installationsanweisungen) - - Select the version of socks proxy to use (4-5, default: 5) - - - - 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 - - - - Send trace/debug info to debugger - + Rückverfolgungs- und Debuginformationen an die Konsole senden anstatt sie in die Datei debug.log zu schreiben - - Set maximum block size in bytes (default: 250000) - - - - Set minimum block size in bytes (default: 0) - Minimale Blockgröße in Byte festlegen (Standard: 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) + Verkleinere Datei debug.log beim Starten des Clients (Standard: 1, wenn kein -debug) - Specify connection timeout in milliseconds (default: 5000) - Verbindungstimeout in Millisekunden festlegen (Standard: 5000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - + Verbindungstimeout in Millisekunden festlegen (Standard: 5000) - Use UPnP to map the listening port (default: 0) - UPnP verwenden, um die Portweiterleitung einzurichten (Standard: 0) + UPnP verwenden, um die 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 die Portweiterleitung einzurichten (Standard: 1, wenn abgehört wird) - Use proxy to reach tor hidden services (default: same as -proxy) - Proxy benutzen um versteckte Services zu erreichen (Standard: selbe Einstellung wie Proxy) + Proxy benutzen um versteckte Services zu erreichen (Standard: selbe Einstellung wie Proxy) - Username for JSON-RPC connections - Benutzername für JSON-RPC-Verbindungen + Benutzername für JSON-RPC-Verbindungen - Verifying database integrity... - Überprüfe Datenbank Integrität... - - - - WARNING: syncronized checkpoint violation detected, but skipped! - + Überprüfe Datenbank Integrität... - Warning: Disk space is low! - Warnung: Festplatte hat wenig freien Speicher + Warnung: Festplatte hat wenig freien Speicher - Warning: This version is obsolete, upgrade required! - Warnung: Diese Version is veraltet, Aktualisierung erforderlich! + Warnung: Diese Version is veraltet, Aktualisierung erforderlich! - wallet.dat corrupt, salvage failed - wallet.dat beschädigt, Rettung fehlgeschlagen + wallet.dat beschädigt, Rettung fehlgeschlagen - Password for JSON-RPC connections - Passwort für JSON-RPC-Verbindungen - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + Passwort für JSON-RPC-Verbindungen - Find peers using internet relay chat (default: 0) - Knoten die IRC Chat nutzen auffinden (Standard: 1) (0)?) - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + Knoten die IRC Chat nutzen auffinden (Standard: 1) (0)?) - When creating transactions, ignore inputs with value less than this (default: 0.01) - Beim erstellen einer Transaktion werden eingaben kleiner als dieser Wert ignoriert (Standard 0,01) + Beim erstellen einer Transaktion werden eingaben kleiner als dieser Wert ignoriert (Standard 0,01) - Allow JSON-RPC connections from specified IP address - JSON-RPC-Verbindungen von der angegebenen IP-Adresse erlauben + 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) + 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) + Kommando ausführen wenn der beste Block wechselt (%s im Kommando wird durch den Hash des Blocks ersetzt) - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Kommando ausführen wenn sich eine Wallet-Transaktion verändert (%s im Kommando wird durch die TxID ersetzt) + Kommando ausführen wenn sich eine Wallet-Transaktion verändert (%s im Kommando wird durch die TxID ersetzt) - Require a confirmations for change (default: 0) - Benötigt eine Bestätigung zur Änderung (Standard: 0) + Benötigt eine Bestätigung zur Änderung (Standard: 0) - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - Kommando ausführen wenn eine relevante Meldung eingeht (%s in cmd wird von der Meldung ausgetauscht) + Kommando ausführen wenn eine relevante Meldung eingeht (%s in cmd wird von der Meldung ausgetauscht) - Upgrade wallet to latest format - Wallet auf das neueste Format aktualisieren + Wallet auf das neueste Format aktualisieren - Set key pool size to <n> (default: 100) - Größe des Schlüsselpools festlegen auf <n> (Standard: 100) + Größe des Schlüsselpools festlegen auf <n> (Standard: 100) - Rescan the block chain for missing wallet transactions - Blockkette erneut nach fehlenden Wallet-Transaktionen durchsuchen + Blockkette erneut nach fehlenden Wallet-Transaktionen durchsuchen - How many blocks to check at startup (default: 2500, 0 = all) - Anzahl der zu prüfenden Blöcke bei Programmstart (Standard: 2500, 0 = alle) - - - - How thorough the block verification is (0-6, default: 1) - + Anzahl der zu prüfenden Blöcke bei Programmstart (Standard: 2500, 0 = alle) - Imports blocks from external blk000?.dat file - Importiere Blöcke aus externer blk000?.dat Datei. + Importiere Blöcke aus externer blk000?.dat Datei. - Use OpenSSL (https) for JSON-RPC connections - OpenSSL (https) für JSON-RPC-Verbindungen verwenden + OpenSSL (https) für JSON-RPC-Verbindungen verwenden - Server certificate file (default: server.cert) - Serverzertifikat (Standard: server.cert) + Serverzertifikat (Standard: server.cert) - Server private key (default: server.pem) - Privater Serverschlüssel (Standard: server.pem) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - + Privater Serverschlüssel (Standard: server.pem) - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - WARNUNG : Ungültiger Checkpunkt gefunden! Angezeigte Transaktionen können falsch sein! Du musst vielleicht updaten oder die Entwickler benachrichtigen. + WARNUNG : Ungültiger Checkpunkt gefunden! Angezeigte Transaktionen können falsch sein! Du musst vielleicht updaten oder die Entwickler benachrichtigen. - This help message - Dieser Hilfetext + Dieser Hilfetext - Wallet %s resides outside data directory %s. - Wallet %s liegt außerhalb des Daten Verzeichnisses %s. + Wallet %s liegt außerhalb des Daten Verzeichnisses %s. - Cannot obtain a lock on data directory %s. BitBean is probably already running. - Kann das Verzeichniss nicht einbinden %s. BitBean Brieftasche läuft wahrscheinlich bereits. + Kann das Verzeichniss nicht einbinden %s. BitBean Brieftasche läuft wahrscheinlich bereits. - BitBean - BitBean + BitBean - 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) + Kann auf diesem Computer nicht an %s binden (von bind zurückgegebener Fehler %d, %s) - Connect through socks proxy - Verbinde über socks proxy + Verbinde über socks proxy - Allow DNS lookups for -addnode, -seednode and -connect - Erlaube DNS-Namensauflösung für -addnode, -seednode und -connect + Erlaube DNS-Namensauflösung für -addnode, -seednode und -connect - Loading addresses... - Lade Adressen... + Lade Adressen... - Error loading blkindex.dat - Fehler beim laden von blkindex.dat + Fehler beim laden von blkindex.dat - Error loading wallet.dat: Wallet corrupted - Fehler beim Laden von wallet.dat: Wallet beschädigt + Fehler beim Laden von wallet.dat: Wallet beschädigt - Error loading wallet.dat: Wallet requires newer version of BitBean - Fehler beim Laden wallet.dat. Brieftasche benötigt neuere Version der BitBean Brieftasche. + Fehler beim Laden wallet.dat. Brieftasche benötigt neuere Version der BitBean Brieftasche. - Wallet needed to be rewritten: restart BitBean to complete - Brieftasche muss neu geschrieben werden. Starte die BitBean Brieftasche neu zum komplettieren. + Brieftasche muss neu geschrieben werden. Starte die BitBean Brieftasche neu zum komplettieren. - Error loading wallet.dat - Fehler beim Laden von wallet.dat + Fehler beim Laden von wallet.dat - Invalid -proxy address: '%s' - Ungültige Adresse in -proxy: '%s' + Ungültige Adresse in -proxy: '%s' - Unknown network specified in -onlynet: '%s' - Unbekannter Netztyp in -onlynet angegeben: '%s' + Unbekannter Netztyp in -onlynet angegeben: '%s' - Unknown -socks proxy version requested: %i - Unbekannte Proxyversion in -socks angefordert: %i + Unbekannte Proxyversion in -socks angefordert: %i - Cannot resolve -bind address: '%s' - Kann Adresse in -bind nicht auflösen: '%s' + Kann Adresse in -bind nicht auflösen: '%s' - Cannot resolve -externalip address: '%s' - Kann Adresse in -externalip nicht auflösen: '%s' + Kann Adresse in -externalip nicht auflösen: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Ungültiger Betrag für -paytxfee=<amount>: '%s' + Ungültiger Betrag für -paytxfee=<amount>: '%s' - Error: could not start node - Fehler: Node konnte nicht gestartet werden + Fehler: Node konnte nicht gestartet werden - Sending... - Wird gesendet... + Wird gesendet... - Invalid amount - Ungültiger Betrag + Ungültiger Betrag - Insufficient funds - Unzureichender Kontostand + Unzureichender Kontostand - Loading block index... - Lade Blockindex... + 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 Knoten verbinden und versuchen die Verbindung aufrecht zu halten - Unable to bind to %s on this computer. BitBean is probably already running. - Fehler beim anbinden %s auf diesem Computer. BlaclCoin Client läuft wahrscheinlich bereits. + Fehler beim anbinden %s auf diesem Computer. BlaclCoin Client läuft wahrscheinlich bereits. - Fee per KB to add to transactions you send - Gebühr pro KB, zusätzlich zur ausgehenden Transaktion + Gebühr pro KB, zusätzlich zur ausgehenden Transaktion - Invalid amount for -mininput=<amount>: '%s' - Ungültiger Betrag für -mininput=<amount>:'%s' + Ungültiger Betrag für -mininput=<amount>:'%s' - Loading wallet... - Lade Wallet... + Lade Wallet... - Cannot downgrade wallet - Wallet kann nicht auf eine ältere Version herabgestuft werden + Wallet kann nicht auf eine ältere Version herabgestuft werden - Cannot initialize keypool - Keypool kann nicht initialisiert werden + Keypool kann nicht initialisiert werden - Cannot write default address - Standardadresse kann nicht geschrieben werden + Standardadresse kann nicht geschrieben werden - Rescanning... - Durchsuche erneut... + Durchsuche erneut... - Done loading - Laden abgeschlossen + Laden abgeschlossen - To use the %s option - Zur Nutzung der %s Option + Zur Nutzung der %s Option - Error - Fehler + 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. - Sie müssen den Wert rpcpassword=<passwort> in der Konfigurationsdatei angeben: + Sie müssen den Wert rpcpassword=<passwort> in der Konfigurationsdatei angeben: %s 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_el_GR.qm b/src/qt/locale/bitbean_el_GR.qm similarity index 53% rename from src/qt/locale/bitcoin_el_GR.qm rename to src/qt/locale/bitbean_el_GR.qm index d8e4e44..f387cd4 100644 Binary files a/src/qt/locale/bitcoin_el_GR.qm and b/src/qt/locale/bitbean_el_GR.qm differ diff --git a/src/qt/locale/bitcoin_el_GR.ts b/src/qt/locale/bitbean_el_GR.ts similarity index 54% rename from src/qt/locale/bitcoin_el_GR.ts rename to src/qt/locale/bitbean_el_GR.ts index 26cb915..968b6cd 100644 --- a/src/qt/locale/bitcoin_el_GR.ts +++ b/src/qt/locale/bitbean_el_GR.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - 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. - + 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. @@ -37,72 +49,72 @@ This product includes software developed by the OpenSSL Project for use in the O AddressBookPage - + Address Book - + - + Double-click to edit address or label Διπλό-κλικ για επεξεργασία της διεύθυνσης ή της ετικέτας - + Create a new address Δημιούργησε νέα διεύθυνση - + Copy the currently selected address to the system clipboard Αντέγραψε την επιλεγμένη διεύθυνση στο πρόχειρο του συστήματος - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &Αντιγραφή διεύθυνσης - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list Αντιγραφη της επιλεγμενης διεύθυνσης στο πρόχειρο του συστηματος - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + &Επιβεβαίωση μηνύματος - + &Delete &Διαγραφή @@ -119,7 +131,7 @@ This product includes software developed by the OpenSSL Project for use in the O Export Address Book Data - + @@ -129,12 +141,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -158,34 +170,34 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog Φράση πρόσβασης - + Enter passphrase Βάλτε κωδικό πρόσβασης - + New passphrase Νέος κωδικός πρόσβασης - + Repeat new passphrase Επανέλαβε τον νέο κωδικό πρόσβασης - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -234,16 +246,21 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + Είστε σίγουροι ότι θέλετε να κρυπτογραφήσετε το πορτοφόλι σας; - Are you sure you wish to encrypt your wallet? - Είστε σίγουροι ότι θέλετε να κρυπτογραφήσετε το πορτοφόλι σας; + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. ΣΗΜΑΝΤΙΚΟ: Τα προηγούμενα αντίγραφα ασφαλείας που έχετε κάνει από το αρχείο του πορτοφόλιου σας θα πρέπει να αντικατασταθουν με το νέο που δημιουργείται, κρυπτογραφημένο αρχείο πορτοφόλιου. Για λόγους ασφαλείας, τα προηγούμενα αντίγραφα ασφαλείας του μη κρυπτογραφημένου αρχείου πορτοφόλιου θα καταστουν άχρηστα μόλις αρχίσετε να χρησιμοποιείτε το νέο κρυπτογραφημένο πορτοφόλι. @@ -260,12 +277,7 @@ This product includes software developed by the OpenSSL Project for use in the O Κρυπτογραφημενο πορτοφολι - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -307,333 +319,585 @@ This product includes software developed by the OpenSSL Project for use in the O - BitcoinGUI - - - Sign &message... - Υπογραφή &Μηνύματος... - + BeanControlDialog - - Synchronizing with network... - Συγχρονισμός με το δίκτυο... + + Bean Control + - - &Overview - &Επισκόπηση + + Quantity: + - - Show general overview of wallet - Εμφάνισε τη γενική εικόνα του πορτοφολιού + + Bytes: + - - &Transactions - &Συναλλαγές + + Amount: + Ποσό: - - Browse transaction history - Περιήγηση στο ιστορικό συναλλαγών + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - Έ&ξοδος + + Tree mode + - - Quit application - Εξοδος από την εφαρμογή + + List mode + - - Show information about BitBean - + + Amount + Ποσό - - About &Qt - Σχετικά με &Qt + + Label + - - Show information about Qt - Εμφάνισε πληροφορίες σχετικά με Qt + + Address + Διεύθυνση - - &Options... - &Επιλογές... + + Date + Ημερομηνία - - &Encrypt Wallet... - &Κρυπτογράφησε το πορτοφόλι + + Confirmations + - &Backup Wallet... - &Αντίγραφο ασφαλείας του πορτοφολιού + Confirmed + Επικυρωμένες - - &Change Passphrase... - &Άλλαξε κωδικο πρόσβασης - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Αντιγραφή διεύθυνσης - - &Export... - + + Copy label + Αντιγραφή επιγραφής - - Send coins to a BitBean address - + + + Copy amount + Αντιγραφή ποσού - - Modify configuration options for BitBean - + + Copy transaction ID + Αντιγραφη του ID Συναλλαγής - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - Δημιουργία αντιγράφου ασφαλείας πορτοφολιού σε άλλη τοποθεσία + + Copy after fee + - - Change the passphrase used for wallet encryption - Αλλαγή του κωδικού κρυπτογράφησης του πορτοφολιού + + Copy bytes + - - &Debug window - &Παράθυρο αποσφαλμάτωσης + + Copy priority + - Open debugging and diagnostic console - Άνοιγμα κονσόλας αποσφαλμάτωσης και διαγνωστικών + Copy low output + - - &Verify message... - &Επιβεβαίωση μηνύματος + + Copy change + - - BitBean - + + highest + - - Wallet - Πορτοφόλι + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - &Εμφάνισε/Κρύψε + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Αρχείο + + DUST + - - &Settings - &Ρυθμίσεις + + yes + - - &Help - &Βοήθεια + + no + - - Tabs toolbar - Εργαλειοθήκη καρτελών + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (χωρίς ετικέτα) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + &Επισκόπηση - - - %n second(s) ago - + + + Show general overview of wallet + Εμφάνισε τη γενική εικόνα του πορτοφολιού - + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Συναλλαγές + + + + Browse transaction history + Περιήγηση στο ιστορικό συναλλαγών + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + Έ&ξοδος + + + + Quit application + Εξοδος από την εφαρμογή + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + Σχετικά με &Qt + + + + Show information about Qt + Εμφάνισε πληροφορίες σχετικά με Qt + + + + &Options... + &Επιλογές... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + &Εμφάνισε/Κρύψε + + + + &Encrypt Wallet... + &Κρυπτογράφησε το πορτοφόλι + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &Αντίγραφο ασφαλείας του πορτοφολιού + + + + Backup wallet to another location + Δημιουργία αντιγράφου ασφαλείας πορτοφολιού σε άλλη τοποθεσία + + + + &Change Passphrase... + &Άλλαξε κωδικο πρόσβασης + + + + Change the passphrase used for wallet encryption + Αλλαγή του κωδικού κρυπτογράφησης του πορτοφολιού + + + &Unlock Wallet... - + + + + + Unlock wallet + Ξεκλειδωσε το πορτοφολι + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Υπογραφή &Μηνύματος... + + + + &Verify message... + &Επιβεβαίωση μηνύματος + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + &Παράθυρο αποσφαλμάτωσης + + + + Open debugging and diagnostic console + Άνοιγμα κονσόλας αποσφαλμάτωσης και διαγνωστικών + + + + &File + &Αρχείο + + + + &Settings + &Ρυθμίσεις + + + + &Help + &Βοήθεια + + + + Tabs toolbar + Εργαλειοθήκη καρτελών + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + Συγχρονισμός με το δίκτυο... + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + - + + %n second(s) ago + + + + + + + %n minute(s) ago - + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - Ενημερωμένο + Ενημερωμένο Catching up... - Ενημέρωση... + Ενημέρωση... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Η συναλλαγή απεστάλη + Η συναλλαγή απεστάλη Incoming transaction - Εισερχόμενη συναλλαγή + Εισερχόμενη συναλλαγή @@ -642,7 +906,7 @@ Amount: %2 Type: %3 Address: %4 - Ημερομηνία: %1 + Ημερομηνία: %1 Ποσό: %2 Τύπος: %3 Διεύθυνση: %4 @@ -652,341 +916,319 @@ Address: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Το πορτοφόλι είναι <b>κρυπτογραφημένο</b> και <b>ξεκλείδωτο</b> + Το πορτοφόλι είναι <b>κρυπτογραφημένο</b> και <b>ξεκλείδωτο</b> Wallet is <b>encrypted</b> and currently <b>locked</b> - Το πορτοφόλι είναι <b>κρυπτογραφημένο</b> και <b>κλειδωμένο</b> + Το πορτοφόλι είναι <b>κρυπτογραφημένο</b> και <b>κλειδωμένο</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - %n ώρες %n ώρες + + %n ώρες + %n ώρες + %n day(s) - %n ημέρες %n ημέρες + + %n ημέρες + %n ημέρες + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Ειδοποίηση Δικτύου + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - + + Not staking because you don't have mature beans + - - Bytes: - + + Not staking + + + + BitcoinGUI - - Amount: - Ποσό: + Sign &message... + Υπογραφή &Μηνύματος... - - Priority: - + Synchronizing with network... + Συγχρονισμός με το δίκτυο... - - Fee: - + &Overview + &Επισκόπηση - - Low Output: - + Show general overview of wallet + Εμφάνισε τη γενική εικόνα του πορτοφολιού - - no - + &Transactions + &Συναλλαγές - - After Fee: - + Browse transaction history + Περιήγηση στο ιστορικό συναλλαγών - - Change: - + E&xit + Έ&ξοδος - - (un)select all - + Quit application + Εξοδος από την εφαρμογή - - Tree mode - + About &Qt + Σχετικά με &Qt - - List mode - + Show information about Qt + Εμφάνισε πληροφορίες σχετικά με Qt - - Amount - Ποσό + &Options... + &Επιλογές... - - Label - + &Encrypt Wallet... + &Κρυπτογράφησε το πορτοφόλι - - Address - Διεύθυνση + &Backup Wallet... + &Αντίγραφο ασφαλείας του πορτοφολιού - - Date - Ημερομηνία + &Change Passphrase... + &Άλλαξε κωδικο πρόσβασης - - Confirmations - + Backup wallet to another location + Δημιουργία αντιγράφου ασφαλείας πορτοφολιού σε άλλη τοποθεσία - - Confirmed - Επικυρωμένες + Change the passphrase used for wallet encryption + Αλλαγή του κωδικού κρυπτογράφησης του πορτοφολιού - - Priority - + &Debug window + &Παράθυρο αποσφαλμάτωσης - - Copy address - Αντιγραφή διεύθυνσης + Open debugging and diagnostic console + Άνοιγμα κονσόλας αποσφαλμάτωσης και διαγνωστικών - - Copy label - Αντιγραφή επιγραφής + &Verify message... + &Επιβεβαίωση μηνύματος - - - Copy amount - Αντιγραφή ποσού + Wallet + Πορτοφόλι - - Copy transaction ID - Αντιγραφη του ID Συναλλαγής + &Show / Hide + &Εμφάνισε/Κρύψε - - Copy quantity - + &File + &Αρχείο - - Copy fee - + &Settings + &Ρυθμίσεις - - Copy after fee - + &Help + &Βοήθεια - - Copy bytes - + Tabs toolbar + Εργαλειοθήκη καρτελών - - Copy priority - + [testnet] + [testnet] - - Copy low output - + Up to date + Ενημερωμένο - - Copy change - + Catching up... + Ενημέρωση... - - highest - + Sent transaction + Η συναλλαγή απεστάλη - - high - + Incoming transaction + Εισερχόμενη συναλλαγή - - medium-high - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Ημερομηνία: %1 +Ποσό: %2 +Τύπος: %3 +Διεύθυνση: %4 + - - medium - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Το πορτοφόλι είναι <b>κρυπτογραφημένο</b> και <b>ξεκλείδωτο</b> - - low-medium - + Wallet is <b>encrypted</b> and currently <b>locked</b> + Το πορτοφόλι είναι <b>κρυπτογραφημένο</b> και <b>κλειδωμένο</b> + + + %n hour(s) + + %n ώρες + %n ώρες + + + + %n day(s) + + %n ημέρες + %n ημέρες + + + + ClientModel - - low - + + Network Alert + Ειδοποίηση Δικτύου + + + CoinControlDialog - - lowest - + Amount: + Ποσό: - - DUST - + Amount + Ποσό - - yes - + Address + Διεύθυνση - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Date + Ημερομηνία - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Confirmed + Επικυρωμένες - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Copy address + Αντιγραφή διεύθυνσης - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy label + Αντιγραφή επιγραφής - - - (no label) - (χωρίς ετικέτα) + Copy amount + Αντιγραφή ποσού - - change from %1 (%2) - + Copy transaction ID + Αντιγραφη του ID Συναλλαγής - - (change) - + (no label) + (χωρίς ετικέτα) EditAddressDialog - + Edit Address Επεξεργασία Διεύθυνσης @@ -998,7 +1240,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1008,7 +1250,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1038,7 +1280,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1054,98 +1296,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Χρήση: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Ρυθμίσεις - + &Main &Κύριο - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee Αμοιβή &συναλλαγής - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1155,7 +1397,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1165,12 +1407,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1180,7 +1422,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1240,7 +1482,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1249,31 +1491,35 @@ This label turns red, if the priority is smaller than "medium". - Choose the default subdivision unit to show in the interface and when sending coins. - Διαλέξτε την προεπιλεγμένη υποδιαίρεση που θα εμφανίζεται όταν στέλνετε νομίσματα. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - Εμφάνιση διευθύνσεων στη λίστα συναλλαγών + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + Choose the default subdivision unit to show in the interface and when sending coins. + Διαλέξτε την προεπιλεγμένη υποδιαίρεση που θα εμφανίζεται όταν στέλνετε νομίσματα. + + + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + Εμφάνιση διευθύνσεων στη λίστα συναλλαγών - + &OK &ΟΚ @@ -1285,7 +1531,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1296,13 +1542,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1313,78 +1559,158 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Φόρμα - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - Πορτοφόλι + Πορτοφόλι - + Spendable: - + - + Your current spendable balance Το τρέχον διαθέσιμο υπόλοιπο - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: Ανώριμος + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + Mined balance that has not yet matured - Εξορυγμενο υπόλοιπο που δεν έχει ακόμα ωριμάσει + Εξορυγμενο υπόλοιπο που δεν έχει ακόμα ωριμάσει - + Total: Σύνολο: - Your current total balance - Το τρέχον συνολικό υπόλοιπο + Το τρέχον συνολικό υπόλοιπο - <b>Recent transactions</b> - <b>Πρόσφατες συναλλαγές</b> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - - - - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Πρόσφατες συναλλαγές</b> - + out of sync εκτός συγχρονισμού @@ -1393,65 +1719,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Ποσό: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Όνομα Πελάτη @@ -1502,7 +1828,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1532,17 +1858,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1557,12 +1883,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1572,7 +1898,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1582,7 +1908,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1596,59 +1922,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Αποστολή νομισμάτων + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - Ποσό: + Ποσό: @@ -1656,278 +1982,376 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Αποστολή σε πολλούς αποδέκτες ταυτόχρονα + Αποστολή σε πολλούς αποδέκτες ταυτόχρονα Add &Recipient - &Προσθήκη αποδέκτη + &Προσθήκη αποδέκτη Remove all transaction fields - + Clear &All - Καθαρισμός &Όλων + Καθαρισμός &Όλων Balance: - Υπόλοιπο: + Υπόλοιπο: 123.456 BC - + Confirm the send action - Επιβεβαίωση αποστολής + Επιβεβαίωση αποστολής S&end - Αποστολη + Αποστολη - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - Αντιγραφή ποσού + Αντιγραφή ποσού Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - Επιβεβαίωση αποστολής νομισμάτων + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - Βρέθηκε η ίδια διεύθυνση δύο φορές. Επιτρέπεται μία μόνο εγγραφή για κάθε διεύθυνση, σε κάθε διαδικασία αποστολής. + Βρέθηκε η ίδια διεύθυνση δύο φορές. Επιτρέπεται μία μόνο εγγραφή για κάθε διεύθυνση, σε κάθε διαδικασία αποστολής. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (χωρίς ετικέτα) + (χωρίς ετικέτα) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Φόρμα - + A&mount: - &Ποσό: + &Ποσό: Pay &To: - Πληρωμή &σε: + Πληρωμή &σε: - + Enter a label for this address to add it to your address book - Εισάγετε μια επιγραφή για αυτή τη διεύθυνση ώστε να καταχωρηθεί στο βιβλίο διευθύνσεων + Εισάγετε μια επιγραφή για αυτή τη διεύθυνση ώστε να καταχωρηθεί στο βιβλίο διευθύνσεων &Label: - &Επιγραφή + &Επιγραφή The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Επικόλληση διεύθυνσης από το πρόχειρο + Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + - SignVerifyMessageDialog + SendCoinsDialog - - Signatures - Sign / Verify a Message - Υπογραφές - Είσοδος / Επαλήθευση μήνυματος + Send Coins + Αποστολή νομισμάτων - - + Amount: + Ποσό: + + + Send to multiple recipients at once + Αποστολή σε πολλούς αποδέκτες ταυτόχρονα + + + Add &Recipient + &Προσθήκη αποδέκτη + + + Clear &All + Καθαρισμός &Όλων + + + Balance: + Υπόλοιπο: + + + Confirm the send action + Επιβεβαίωση αποστολής + + + S&end + Αποστολη + + + Copy amount + Αντιγραφή ποσού + + + Confirm send coins + Επιβεβαίωση αποστολής νομισμάτων + + + 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. + Βρέθηκε η ίδια διεύθυνση δύο φορές. Επιτρέπεται μία μόνο εγγραφή για κάθε διεύθυνση, σε κάθε διαδικασία αποστολής. + + + (no label) + (χωρίς ετικέτα) + + + + SendCoinsEntry + + A&mount: + &Ποσό: + + + Pay &To: + Πληρωμή &σε: + + + Enter a label for this address to add it to your address book + Εισάγετε μια επιγραφή για αυτή τη διεύθυνση ώστε να καταχωρηθεί στο βιβλίο διευθύνσεων + + + &Label: + &Επιγραφή + + + Alt+A + Alt+A + + + Paste address from clipboard + Επικόλληση διεύθυνσης από το πρόχειρο + + + Alt+P + Alt+P + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Υπογραφές - Είσοδος / Επαλήθευση μήνυματος + + + + &Sign Message &Υπογραφή Μηνύματος @@ -1939,13 +2363,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1976,7 +2400,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -2003,12 +2427,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2019,7 +2443,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2029,7 +2453,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2108,12 +2532,15 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + conflicted - + @@ -2138,7 +2565,10 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - , έχει μεταδοθεί μέσω %n κόμβων, έχει μεταδοθεί μέσω %n κόμβων + + , έχει μεταδοθεί μέσω %n κόμβων + , έχει μεταδοθεί μέσω %n κόμβων + @@ -2191,7 +2621,10 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - ωρίμανση σε %n επιπλέον μπλοκωρίμανση σε %n επιπλέον μπλοκ + + ωρίμανση σε %n επιπλέον μπλοκ + ωρίμανση σε %n επιπλέον μπλοκ + @@ -2233,8 +2666,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2280,7 +2713,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Λεπτομέρειες συναλλαγής @@ -2325,961 +2758,1266 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - Ανοιχτό για %n μπλοκΑνοιχτό για %n μπλοκ + + Ανοιχτό για %n μπλοκ + Ανοιχτό για %n μπλοκ + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + + + + + This block was not received by any other nodes and will probably not be accepted! + Αυτό το μπλοκ δεν έχει παραληφθεί από κανέναν άλλο κόμβο και κατά πάσα πιθανότητα θα απορριφθεί! + + + + Generated but not accepted + Δημιουργήθηκε αλλά απορρίφθηκε + + + + Received with + Παραλαβή με + + + + Received from + Ελήφθη από + + + + Sent to + Αποστολή προς + + + + Payment to yourself + Πληρωμή προς εσάς + + + + SPROUT + + + + 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. + Ποσό που αφαιρέθηκε ή προστέθηκε στο υπόλοιπο. + + + + 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 Data + + + + + Comma separated file (*.csv) + Αρχείο οριοθετημένο με κόμματα (*.csv) + + + + Confirmed + Επικυρωμένες + + + + Date + Ημερομηνία + + + + Type + Τύπος + + + + Label + Επιγραφή + + + + Address + Διεύθυνση + + + + Amount + Ποσό + + + + ID + ID + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + Έκταση: + + + + to + έως + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + Χρήση της %s επιλογής + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Σφάλμα + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + Ένα σφάλμα συνέβη καθώς προετοιμαζόταν η υποδοχη RPC %u για αναμονη του IPv6, επεσε πισω στο IPv4:%s + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + Ένα σφάλμα συνέβη καθώς προετοιμαζόταν η πόρτα RPC %u για αναμονή IPv4: %s + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Πρέπει να βάλεις ένα κωδικό στο αρχείο παραμέτρων: %s +Εάν το αρχείο δεν υπάρχει, δημιούργησε το με δικαιώματα μόνο για ανάγνωση από τον δημιουργό + + + + BitBean version + + + + + Usage: + Χρήση: + + + + Send command to -server or BitBeand + + + + + List commands + Λίστα εντολών + + + + Get help for a command + Επεξήγηση εντολής + + + + BitBean + + + + + Options: + Επιλογές: + + + + This help message + Αυτό το κείμενο βοήθειας + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Ορισμός φακέλου δεδομένων + + + + Specify wallet file (within data directory) + + + + + Set database cache size in megabytes (default: 25) + Όρισε το μέγεθος της βάσης προσωρινής αποθήκευσης σε megabytes(προεπιλογή:25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Ορισμός λήξης χρονικού ορίου σε χιλιοστά του δευτερολέπτου(προεπιλογή:5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Να επιτρέπονται οι έλεγχοι DNS για προσθήκη και σύνδεση κόμβων + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Μέγιστες αριθμός συνδέσεων με τους peers <n> (προεπιλογή: 125) + + + + Add a node to connect to and attempt to keep the connection open + Προσέθεσε ένα κόμβο για σύνδεση και προσπάθησε να κρατήσεις την σύνδεση ανοιχτή + + + + Connect only to the specified node(s) + Σύνδεση μόνο με ορισμένους κόμβους + + + + Connect to a node to retrieve peer addresses, and disconnect + Σύνδεση σε έναν κόμβο για την ανάκτηση διευθύνσεων από ομοτίμους, και αποσυνδέσh + + + + Specify your own public address + Διευκρινίστε τη δικιά σας δημόσια διεύθυνση. + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Συνδέση μόνο σε κόμβους του δικτύου <net> (IPv4, IPv6 ή Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Ανακαλύψτε την δικη σας IP διεύθυνση (προεπιλογή: 1 όταν ακούει και δεν - externalip) + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Να δέχεσαι συνδέσεις από έξω(προεπιλογή:1) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + Threshold for disconnecting misbehaving peers (default: 100) + Όριο αποσύνδεσης προβληματικών peers (προεπιλογή: 100) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Δευτερόλεπτα πριν επιτραπεί ξανά η σύνδεση των προβληματικών peers (προεπιλογή: 86400) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Χρησιμοποίηση του UPnP για την χρήση της πόρτας αναμονής (προεπιλογή:1) + + + + Use UPnP to map the listening port (default: 0) + Χρησιμοποίηση του UPnP για την χρήση της πόρτας αναμονής (προεπιλογή:0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + Αποδοχή εντολών κονσόλας και JSON-RPC + + + + Run in the background as a daemon and accept commands + Εκτέλεση στο παρασκήνιο κι αποδοχή εντολών + + + + Use the test network + Χρήση του δοκιμαστικού δικτύου + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Συρρίκνωση του αρχείο debug.log κατα την εκκίνηση του πελάτη (προεπιλογή: 1 όταν δεν-debug) + + + + Send trace/debug info to console instead of debug.log file + Αποστολή πληροφοριών εντοπισμού σφαλμάτων στην κονσόλα αντί του αρχείου debug.log + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + Όνομα χρήστη για τις συνδέσεις JSON-RPC + + + + Password for JSON-RPC connections + Κωδικός για τις συνδέσεις JSON-RPC + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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 του μπλοκ) - This block was not received by any other nodes and will probably not be accepted! - Αυτό το μπλοκ δεν έχει παραληφθεί από κανέναν άλλο κόμβο και κατά πάσα πιθανότητα θα απορριφθεί! + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Εκτέλεσε την εντολή όταν το καλύτερο μπλοκ αλλάξει(%s στην εντολή αντικαθίσταται από το hash του μπλοκ) - Generated but not accepted - Δημιουργήθηκε αλλά απορρίφθηκε + Require a confirmations for change (default: 0) + - - Received with - Παραλαβή με + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - Received from - Ελήφθη από + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - Sent to - Αποστολή προς + Upgrade wallet to latest format + Αναβάθμισε το πορτοφόλι στην τελευταία έκδοση - - Payment to yourself - Πληρωμή προς εσάς + + Set key pool size to <n> (default: 100) + Όριο πλήθους κλειδιών pool <n> (προεπιλογή: 100) - - Mined - Εξόρυξη + + Rescan the block chain for missing wallet transactions + Επανέλεγχος της αλυσίδας μπλοκ για απούσες συναλλαγές - - (n/a) - (δ/α) + + Attempt to recover private keys from a corrupt wallet.dat + Προσπάθεια για ανακτησει ιδιωτικων κλειδιων από ενα διεφθαρμένο αρχειο wallet.dat - - Transaction status. Hover over this field to show number of confirmations. - Κατάσταση συναλλαγής. Πηγαίνετε το ποντίκι πάνω από αυτό το πεδίο για να δείτε τον αριθμό των επικυρώσεων + + How many blocks to check at startup (default: 2500, 0 = all) + - - Date and time that the transaction was received. - Ημερομηνία κι ώρα λήψης της συναλλαγής. + + How thorough the block verification is (0-6, default: 1) + - - Type of transaction. - Είδος συναλλαγής. + + Imports blocks from external blk000?.dat file + - - Destination address of transaction. - Διεύθυνση αποστολής της συναλλαγής. + + Block creation options: + Αποκλεισμός επιλογων δημιουργίας: - - Amount removed from or added to balance. - Ποσό που αφαιρέθηκε ή προστέθηκε στο υπόλοιπο. + + Set minimum block size in bytes (default: 0) + Ορίστε το μέγιστο μέγεθος μπλοκ σε bytes (προεπιλογή: 0) - - - TransactionView - - - All - Όλα + + Set maximum block size in bytes (default: 250000) + - - Today - Σήμερα + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - This week - Αυτή την εβδομάδα + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - This month - Αυτόν τον μήνα + Use OpenSSL (https) for JSON-RPC connections + Χρήση του OpenSSL (https) για συνδέσεις JSON-RPC - Last month - Τον προηγούμενο μήνα + Server certificate file (default: server.cert) + Αρχείο πιστοποιητικού του διακομιστή (προεπιλογή: server.cert) - This year - Αυτό το έτος + Server private key (default: server.pem) + Προσωπικό κλειδί του διακομιστή (προεπιλογή: server.pem) - Range... - Έκταση... + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Received with - Ελήφθη με + + Invalid amount for -paytxfee=<amount>: '%s' + Μη έγκυρο ποσό για την παράμετρο -paytxfee=<amount>: '%s' - - Sent to - Απεστάλη προς + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Προειδοποίηση: Η παράμετρος -paytxfee είναι πολύ υψηλή. Πρόκειται για την αμοιβή που θα πληρώνετε για κάθε συναλλαγή που θα στέλνετε. - - To yourself - Προς εσάς + + Invalid amount for -mininput=<amount>: '%s' + - Mined - Εξόρυξη + Wallet %s resides outside data directory %s. + - Other - Άλλο + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Enter address or label to search - Αναζήτηση με βάση τη διεύθυνση ή την επιγραφή + + Verifying database integrity... + - - Min amount - Ελάχιστο ποσό + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Copy address - Αντιγραφή διεύθυνσης + + 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 . Αν το υπόλοιπο του ή τις συναλλαγές σας, είναι λάθος θα πρέπει να επαναφέρετε από ένα αντίγραφο ασφαλείας + + + + wallet.dat corrupt, salvage failed + Το αρχειο wallet.dat ειναι διεφθαρμένο, η διάσωση απέτυχε - Copy label - Αντιγραφή επιγραφής + Unknown -socks proxy version requested: %i + Άγνωστo δίκτυο ορίζεται: %i - Copy amount - Αντιγραφή ποσού + Unknown network specified in -onlynet: '%s' + Άγνωστo δίκτυο ορίζεται σε onlynet: '%s' - Copy transaction ID - Αντιγραφη του ID Συναλλαγής + Invalid -proxy address: '%s' + Δεν είναι έγκυρη η διεύθυνση διαμεσολαβητή: '%s' - Edit label - Επεξεργασία επιγραφής + Invalid -tor address: '%s' + - Show transaction details - Εμφάνιση λεπτομερειών συναλλαγής + Cannot resolve -bind address: '%s' + Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση: '%s' - - Export Transaction Data - + + Failed to listen on any port. Use -listen=0 if you want this. + ταλαιπωρηθειτε για να ακούσετε σε οποιαδήποτε θύρα. Χρήση - ακούστε = 0 , αν θέλετε αυτό. - Comma separated file (*.csv) - Αρχείο οριοθετημένο με κόμματα (*.csv) + Cannot resolve -externalip address: '%s' + Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση: '%s' - - Confirmed - Επικυρωμένες + + Invalid amount for -reservebalance=<amount> + - Date - Ημερομηνία + Unable to sign checkpoint, wrong checkpointkey? + + - Type - Τύπος + Loading block index... + Φόρτωση ευρετηρίου μπλοκ... - Label - Επιγραφή + Error loading blkindex.dat + - Address - Διεύθυνση + Loading wallet... + Φόρτωση πορτοφολιού... - Amount - Ποσό + Error loading wallet.dat: Wallet corrupted + Σφάλμα φόρτωσης wallet.dat: Κατεστραμμένο Πορτοφόλι - ID - ID + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Προειδοποίηση : Σφάλμα wallet.dat κατα την ανάγνωση ! Όλα τα κλειδιά αναγνωρισθηκαν σωστά, αλλά τα δεδομένα των συναλλαγών ή καταχωρήσεις στο βιβλίο διευθύνσεων μπορεί να είναι ελλιπείς ή λανθασμένα. - - Error exporting - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Could not write to file %1. - + + Wallet needed to be rewritten: restart BitBean to complete + - - Range: - Έκταση: + + Error loading wallet.dat + Σφάλμα φόρτωσης αρχείου wallet.dat - - to - έως + + Cannot downgrade wallet + Δεν μπορώ να υποβαθμίσω το πορτοφόλι - - - WalletModel - - Sending... - + + Cannot initialize keypool + - - - bitcoin-core - - BitBean version - + + Cannot write default address + Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση - Usage: - Χρήση: + Rescanning... + Ανίχνευση... - Send command to -server or BitBeand - + Importing blockchain data file. + - List commands - Λίστα εντολών + Importing bootstrap blockchain data file. + - Get help for a command - Επεξήγηση εντολής + Loading addresses... + Φόρτωση διευθύνσεων... - - Options: - Επιλογές: + + Error: could not start node + - - Specify configuration file (default: BitBean.conf) - + + Done loading + Η φόρτωση ολοκληρώθηκε - Specify pid file (default: BitBeand.pid) - + Unable to bind to %s on this computer. BitBean is probably already running. + - Specify wallet file (within data directory) - + Unable to bind to %s on this computer (bind returned error %d, %s) + Αδύνατη η σύνδεση με τη θύρα %s αυτού του υπολογιστή (bind returned error %d, %s) - - Specify data directory - Ορισμός φακέλου δεδομένων + + Error: Wallet locked, unable to create transaction + - - Set database cache size in megabytes (default: 25) - Όρισε το μέγεθος της βάσης προσωρινής αποθήκευσης σε megabytes(προεπιλογή:25) + + Error: Wallet unlocked for staking only, unable to create transaction. + - Set database disk log size in megabytes (default: 100) - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Error: Transaction creation failed + - Maintain at most <n> connections to peers (default: 125) - Μέγιστες αριθμός συνδέσεων με τους peers <n> (προεπιλογή: 125) + Sending... + + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Λάθος ποσότητα + + + + Insufficient funds + Ανεπαρκές κεφάλαιο + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - Connect to a node to retrieve peer addresses, and disconnect - Σύνδεση σε έναν κόμβο για την ανάκτηση διευθύνσεων από ομοτίμους, και αποσυνδέσh + Warning: This version is obsolete, upgrade required! + Προειδοποίηση: Αυτή η έκδοση είναι ξεπερασμένη, απαιτείται αναβάθμιση - Specify your own public address - Διευκρινίστε τη δικιά σας δημόσια διεύθυνση. + WARNING: syncronized checkpoint violation detected, but skipped! + - - Bind to given address. Use [host]:port notation for IPv6 - + + Warning: Disk space is low! + - - Stake your coins to support network and gain reward (default: 1) - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Threshold for disconnecting misbehaving peers (default: 100) - Όριο αποσύνδεσης προβληματικών peers (προεπιλογή: 100) + Usage: + Χρήση: - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Δευτερόλεπτα πριν επιτραπεί ξανά η σύνδεση των προβληματικών peers (προεπιλογή: 86400) + List commands + Λίστα εντολών - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - Ένα σφάλμα συνέβη καθώς προετοιμαζόταν η πόρτα RPC %u για αναμονή IPv4: %s + Get help for a command + Επεξήγηση εντολής - - Detach block and address databases. Increases shutdown time (default: 0) - + Options: + Επιλογές: - - 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. - + Specify data directory + Ορισμός φακέλου δεδομένων - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + Set database cache size in megabytes (default: 25) + Όρισε το μέγεθος της βάσης προσωρινής αποθήκευσης σε megabytes(προεπιλογή:25) - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + Maintain at most <n> connections to peers (default: 125) + Μέγιστες αριθμός συνδέσεων με τους peers <n> (προεπιλογή: 125) - - Accept command line and JSON-RPC commands - Αποδοχή εντολών κονσόλας και JSON-RPC + Connect to a node to retrieve peer addresses, and disconnect + Σύνδεση σε έναν κόμβο για την ανάκτηση διευθύνσεων από ομοτίμους, και αποσυνδέσh - - Error: Transaction creation failed - + Specify your own public address + Διευκρινίστε τη δικιά σας δημόσια διεύθυνση. - - Error: Wallet locked, unable to create transaction - + Threshold for disconnecting misbehaving peers (default: 100) + Όριο αποσύνδεσης προβληματικών peers (προεπιλογή: 100) - - Importing blockchain data file. - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Δευτερόλεπτα πριν επιτραπεί ξανά η σύνδεση των προβληματικών peers (προεπιλογή: 86400) - - Importing bootstrap blockchain data file. - + An error occurred while setting up the RPC port %u for listening on IPv4: %s + Ένα σφάλμα συνέβη καθώς προετοιμαζόταν η πόρτα RPC %u για αναμονή IPv4: %s + + + Accept command line and JSON-RPC commands + Αποδοχή εντολών κονσόλας και JSON-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) - Να δέχεσαι συνδέσεις από έξω(προεπιλογή:1) + Να δέχεσαι συνδέσεις από έξω(προεπιλογή:1) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - Ένα σφάλμα συνέβη καθώς προετοιμαζόταν η υποδοχη RPC %u για αναμονη του IPv6, επεσε πισω στο IPv4:%s - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + Ένα σφάλμα συνέβη καθώς προετοιμαζόταν η υποδοχη RPC %u για αναμονη του IPv6, επεσε πισω στο IPv4:%s - 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 BitBean will not work properly. - + Προειδοποίηση: Η παράμετρος -paytxfee είναι πολύ υψηλή. Πρόκειται για την αμοιβή που θα πληρώνετε για κάθε συναλλαγή που θα στέλνετε. - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - Προειδοποίηση : Σφάλμα wallet.dat κατα την ανάγνωση ! Όλα τα κλειδιά αναγνωρισθηκαν σωστά, αλλά τα δεδομένα των συναλλαγών ή καταχωρήσεις στο βιβλίο διευθύνσεων μπορεί να είναι ελλιπείς ή λανθασμένα. + Προειδοποίηση : Σφάλμα 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 . Αν το υπόλοιπο του ή τις συναλλαγές σας, είναι λάθος θα πρέπει να επαναφέρετε από ένα αντίγραφο ασφαλείας + Προειδοποίηση : το αρχειο wallet.dat ειναι διεφθαρμένο, τα δεδομένα σώζονται ! Original wallet.dat αποθηκεύονται ως wallet.{timestamp}.bak στο %s . Αν το υπόλοιπο του ή τις συναλλαγές σας, είναι λάθος θα πρέπει να επαναφέρετε από ένα αντίγραφο ασφαλείας - Attempt to recover private keys from a corrupt wallet.dat - Προσπάθεια για ανακτησει ιδιωτικων κλειδιων από ενα διεφθαρμένο αρχειο wallet.dat + Προσπάθεια για ανακτησει ιδιωτικων κλειδιων από ενα διεφθαρμένο αρχειο wallet.dat - Block creation options: - Αποκλεισμός επιλογων δημιουργίας: + Αποκλεισμός επιλογων δημιουργίας: - Connect only to the specified node(s) - Σύνδεση μόνο με ορισμένους κόμβους + Σύνδεση μόνο με ορισμένους κόμβους - Discover own IP address (default: 1 when listening and no -externalip) - Ανακαλύψτε την δικη σας IP διεύθυνση (προεπιλογή: 1 όταν ακούει και δεν - externalip) + Ανακαλύψτε την δικη σας IP διεύθυνση (προεπιλογή: 1 όταν ακούει και δεν - externalip) - Failed to listen on any port. Use -listen=0 if you want this. - ταλαιπωρηθειτε για να ακούσετε σε οποιαδήποτε θύρα. Χρήση - ακούστε = 0 , αν θέλετε αυτό. + ταλαιπωρηθειτε για να ακούσετε σε οποιαδήποτε θύρα. Χρήση - ακούστε = 0 , αν θέλετε αυτό. - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Μέγιστος buffer λήψης ανά σύνδεση, <n>*1000 bytes (προεπιλογή: 5000) + Μέγιστος buffer λήψης ανά σύνδεση, <n>*1000 bytes (προεπιλογή: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - Μέγιστος buffer αποστολής ανά σύνδεση, <n>*1000 bytes (προεπιλογή: 1000) + Μέγιστος buffer αποστολής ανά σύνδεση, <n>*1000 bytes (προεπιλογή: 1000) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Συνδέση μόνο σε κόμβους του δικτύου <net> (IPv4, IPv6 ή Tor) - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - + Συνδέση μόνο σε κόμβους του δικτύου <net> (IPv4, IPv6 ή Tor) - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Ρυθμίσεις SSL: (ανατρέξτε στο Bitcoin Wiki για οδηγίες ρυθμίσεων SSL) - - - - Select the version of socks proxy to use (4-5, default: 5) - + Ρυθμίσεις SSL: (ανατρέξτε στο Bitcoin Wiki για οδηγίες ρυθμίσεων SSL) - Send trace/debug info to console instead of debug.log file - Αποστολή πληροφοριών εντοπισμού σφαλμάτων στην κονσόλα αντί του αρχείου debug.log + Αποστολή πληροφοριών εντοπισμού σφαλμάτων στην κονσόλα αντί του αρχείου debug.log - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - Set minimum block size in bytes (default: 0) - Ορίστε το μέγιστο μέγεθος μπλοκ σε bytes (προεπιλογή: 0) + Ορίστε το μέγιστο μέγεθος μπλοκ σε bytes (προεπιλογή: 0) - Shrink debug.log file on client startup (default: 1 when no -debug) - Συρρίκνωση του αρχείο debug.log κατα την εκκίνηση του πελάτη (προεπιλογή: 1 όταν δεν-debug) + Συρρίκνωση του αρχείο debug.log κατα την εκκίνηση του πελάτη (προεπιλογή: 1 όταν δεν-debug) - Specify connection timeout in milliseconds (default: 5000) - Ορισμός λήξης χρονικού ορίου σε χιλιοστά του δευτερολέπτου(προεπιλογή:5000) + Ορισμός λήξης χρονικού ορίου σε χιλιοστά του δευτερολέπτου(προεπιλογή:5000) - - Unable to sign checkpoint, wrong checkpointkey? - - - - - 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - + Χρησιμοποίηση του UPnP για την χρήση της πόρτας αναμονής (προεπιλογή:1) - Username for JSON-RPC connections - Όνομα χρήστη για τις συνδέσεις JSON-RPC - - - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - + Όνομα χρήστη για τις συνδέσεις JSON-RPC - Warning: This version is obsolete, upgrade required! - Προειδοποίηση: Αυτή η έκδοση είναι ξεπερασμένη, απαιτείται αναβάθμιση + Προειδοποίηση: Αυτή η έκδοση είναι ξεπερασμένη, απαιτείται αναβάθμιση - wallet.dat corrupt, salvage failed - Το αρχειο wallet.dat ειναι διεφθαρμένο, η διάσωση απέτυχε + Το αρχειο wallet.dat ειναι διεφθαρμένο, η διάσωση απέτυχε - Password for JSON-RPC connections - Κωδικός για τις συνδέσεις JSON-RPC - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + Κωδικός για τις συνδέσεις JSON-RPC - Allow JSON-RPC connections from specified IP address - Αποδοχή συνδέσεων JSON-RPC από συγκεκριμένη διεύθυνση IP + Αποδοχή συνδέσεων JSON-RPC από συγκεκριμένη διεύθυνση IP - 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) - Εκτέλεσε την εντολή όταν το καλύτερο μπλοκ αλλάξει(%s στην εντολή αντικαθίσταται από το hash του μπλοκ) + Εκτέλεσε την εντολή όταν το καλύτερο μπλοκ αλλάξει(%s στην εντολή αντικαθίσταται από το hash του μπλοκ) - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Εκτέλεσε την εντολή όταν το καλύτερο μπλοκ αλλάξει(%s στην εντολή αντικαθίσταται από το hash του μπλοκ) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Εκτέλεσε την εντολή όταν το καλύτερο μπλοκ αλλάξει(%s στην εντολή αντικαθίσταται από το hash του μπλοκ) - Upgrade wallet to latest format - Αναβάθμισε το πορτοφόλι στην τελευταία έκδοση + Αναβάθμισε το πορτοφόλι στην τελευταία έκδοση - Set key pool size to <n> (default: 100) - Όριο πλήθους κλειδιών pool <n> (προεπιλογή: 100) + Όριο πλήθους κλειδιών pool <n> (προεπιλογή: 100) - Rescan the block chain for missing wallet transactions - Επανέλεγχος της αλυσίδας μπλοκ για απούσες συναλλαγές - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - + Επανέλεγχος της αλυσίδας μπλοκ για απούσες συναλλαγές - Use OpenSSL (https) for JSON-RPC connections - Χρήση του OpenSSL (https) για συνδέσεις JSON-RPC + Χρήση του OpenSSL (https) για συνδέσεις JSON-RPC - Server certificate file (default: server.cert) - Αρχείο πιστοποιητικού του διακομιστή (προεπιλογή: server.cert) + Αρχείο πιστοποιητικού του διακομιστή (προεπιλογή: server.cert) - Server private key (default: server.pem) - Προσωπικό κλειδί του διακομιστή (προεπιλογή: server.pem) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - + Προσωπικό κλειδί του διακομιστή (προεπιλογή: server.pem) - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - This help message - Αυτό το κείμενο βοήθειας - - - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - + Αυτό το κείμενο βοήθειας - Unable to bind to %s on this computer (bind returned error %d, %s) - Αδύνατη η σύνδεση με τη θύρα %s αυτού του υπολογιστή (bind returned error %d, %s) - - - - Connect through socks proxy - + Αδύνατη η σύνδεση με τη θύρα %s αυτού του υπολογιστή (bind returned error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect - Να επιτρέπονται οι έλεγχοι DNS για προσθήκη και σύνδεση κόμβων + Να επιτρέπονται οι έλεγχοι DNS για προσθήκη και σύνδεση κόμβων - Loading addresses... - Φόρτωση διευθύνσεων... - - - - Error loading blkindex.dat - + Φόρτωση διευθύνσεων... - Error loading wallet.dat: Wallet corrupted - Σφάλμα φόρτωσης wallet.dat: Κατεστραμμένο Πορτοφόλι - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + Σφάλμα φόρτωσης wallet.dat: Κατεστραμμένο Πορτοφόλι - Error loading wallet.dat - Σφάλμα φόρτωσης αρχείου wallet.dat + Σφάλμα φόρτωσης αρχείου wallet.dat - Invalid -proxy address: '%s' - Δεν είναι έγκυρη η διεύθυνση διαμεσολαβητή: '%s' + Δεν είναι έγκυρη η διεύθυνση διαμεσολαβητή: '%s' - Unknown network specified in -onlynet: '%s' - Άγνωστo δίκτυο ορίζεται σε onlynet: '%s' + Άγνωστo δίκτυο ορίζεται σε onlynet: '%s' - Unknown -socks proxy version requested: %i - Άγνωστo δίκτυο ορίζεται: %i + Άγνωστo δίκτυο ορίζεται: %i - Cannot resolve -bind address: '%s' - Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση: '%s' + Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση: '%s' - Cannot resolve -externalip address: '%s' - Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση: '%s' + Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Μη έγκυρο ποσό για την παράμετρο -paytxfee=<amount>: '%s' - - - - Error: could not start node - - - - - Sending... - + Μη έγκυρο ποσό για την παράμετρο -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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + Προσέθεσε ένα κόμβο για σύνδεση και προσπάθησε να κρατήσεις την σύνδεση ανοιχτή - Loading wallet... - Φόρτωση πορτοφολιού... + Φόρτωση πορτοφολιού... - Cannot downgrade wallet - Δεν μπορώ να υποβαθμίσω το πορτοφόλι - - - - Cannot initialize keypool - + Δεν μπορώ να υποβαθμίσω το πορτοφόλι - Cannot write default address - Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση + Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση - Rescanning... - Ανίχνευση... + Ανίχνευση... - Done loading - Η φόρτωση ολοκληρώθηκε + Η φόρτωση ολοκληρώθηκε - To use the %s option - Χρήση της %s επιλογής + Χρήση της %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. - Πρέπει να βάλεις ένα κωδικό στο αρχείο παραμέτρων: %s + Πρέπει να βάλεις ένα κωδικό στο αρχείο παραμέτρων: %s Εάν το αρχείο δεν υπάρχει, δημιούργησε το με δικαιώματα μόνο για ανάγνωση από τον δημιουργό - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_en.qm b/src/qt/locale/bitbean_en.qm new file mode 100644 index 0000000..86ea941 Binary files /dev/null and b/src/qt/locale/bitbean_en.qm differ diff --git a/src/qt/locale/bitbean_en.ts b/src/qt/locale/bitbean_en.ts new file mode 100644 index 0000000..8921d39 --- /dev/null +++ b/src/qt/locale/bitbean_en.ts @@ -0,0 +1,4405 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + About BitBean + + + + <b>BitBean</b> version + <b>BitBean</b> version + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + +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. + +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. + + + + AddressBookPage + + + Address Book + Address Book + + + + Double-click to edit address or label + Double-click to edit address or label + + + + Create a new address + Create a new address + + + + Copy the currently selected address to the system clipboard + Copy the currently selected address to the system clipboard + + + + &New Address + &New Address + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + + + + &Copy Address + &Copy Address + + + + Show &QR Code + Show &QR Code + + + + Sign a message to prove you own a BitBean address + Sign a message to prove you own a BitBean address + + + + Sign &Message + + + + + Delete the currently selected address from the list + + + + + Verify a message to ensure it was signed with a specified BitBean address + Verify a message to ensure it was signed with a specified BitBean address + + + + &Verify Message + &Verify Message + + + + &Delete + &Delete + + + + Copy &Label + Copy &Label + + + + &Edit + &Edit + + + + Export Address Book Data + Export Address Book Data + + + + Comma separated file (*.csv) + Comma separated file (*.csv) + + + + Error exporting + Error exporting + + + + Could not write to file %1. + Could not write to file %1. + + + + AddressTableModel + + + Label + Label + + + + Address + Address + + + + (no label) + (no label) + + + + AskPassphraseDialog + + + Passphrase Dialog + Passphrase Dialog + + + + Enter passphrase + Enter passphrase + + + + New passphrase + New passphrase + + + + Repeat new passphrase + Repeat new passphrase + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + + + + + For staking only + + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + 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 + Encrypt wallet + + + + This operation needs your wallet passphrase to unlock the wallet. + This operation needs your wallet passphrase to unlock the wallet. + + + + Unlock wallet + Unlock wallet + + + + This operation needs your wallet passphrase to decrypt the wallet. + This operation needs your wallet passphrase to decrypt the wallet. + + + + Decrypt wallet + Decrypt wallet + + + + Change passphrase + Change passphrase + + + + Enter the old and new passphrase to the wallet. + Enter the old and new passphrase to the wallet. + + + + Confirm wallet encryption + Confirm wallet encryption + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! + + + + Are you sure you wish to encrypt your wallet? + Are you sure you wish to encrypt your wallet? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + Warning: The Caps Lock key is on! + Warning: The Caps Lock key is on! + + + + + Wallet encrypted + Wallet encrypted + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + + + + + + + Wallet encryption failed + Wallet encryption failed + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + The supplied passphrases do not match. + The supplied passphrases do not match. + + + + Wallet unlock failed + Wallet unlock failed + + + + + + The passphrase entered for the wallet decryption was incorrect. + The passphrase entered for the wallet decryption was incorrect. + + + + Wallet decryption failed + Wallet decryption failed + + + + Wallet passphrase was successfully changed. + Wallet passphrase was successfully changed. + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Amount: + + + + Priority: + + + + + Fee: + + + + + Low Output: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + Amount + + + + Label + Label + + + + Address + Address + + + + Date + Date + + + + Confirmations + + + + + Confirmed + Confirmed + + + + Priority + + + + + Copy address + Copy address + + + + Copy label + Copy label + + + + + Copy amount + Copy amount + + + + Copy transaction ID + Copy transaction ID + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy priority + + + + + Copy low output + + + + + Copy change + + + + + highest + + + + + high + + + + + medium-high + + + + + medium + + + + + low-medium + + + + + low + + + + + lowest + + + + + DUST + + + + + yes + + + + + no + + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 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. + + This means a fee of at least %2 is required. + + + + + + (no label) + (no label) + + + + change from %1 (%2) + + + + + (change) + + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + A fatal error occurred. BitBean can no longer continue safely and will quit. + + + + BitBean + BitBean + + + + Vault + + + + + &Overview + &Overview + + + + Show general overview of wallet + Show general overview of wallet + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Show the list of addresses for receiving payments + + + + &Transactions + &Transactions + + + + Browse transaction history + Browse transaction history + + + + &Address Book + &Address Book + + + + Edit the list of stored addresses and labels + Edit the list of stored addresses and labels + + + + E&xit + E&xit + + + + Quit application + Quit application + + + + &About BitBean + &About BitBean + + + + Show information about BitBean + Show information about BitBean + + + + About &Qt + About &Qt + + + + Show information about Qt + Show information about Qt + + + + &Options... + &Options... + + + + Modify configuration options for BitBean + Modify configuration options for BitBean + + + + &Show / Hide + &Show / Hide + + + + &Encrypt Wallet... + &Encrypt Wallet... + + + + Encrypt or decrypt wallet + Encrypt or decrypt wallet + + + + &Backup Wallet... + &Backup Wallet... + + + + Backup wallet to another location + Backup wallet to another location + + + + &Change Passphrase... + &Change Passphrase... + + + + Change the passphrase used for wallet encryption + Change the passphrase used for wallet encryption + + + + &Unlock Wallet... + + + + + Unlock wallet + Unlock wallet + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Sign &message... + + + + &Verify message... + &Verify message... + + + + &Export... + &Export... + + + + Export the data in the current tab to a file + Export the data in the current tab to a file + + + + &Debug window + &Debug window + + + + Open debugging and diagnostic console + Open debugging and diagnostic console + + + + &File + &File + + + + &Settings + &Settings + + + + &Help + &Help + + + + Tabs toolbar + Tabs toolbar + + + + Actions toolbar + Actions toolbar + + + + + [testnet] + [testnet] + + + + + BitBean client + BitBean client + + + + %n active connection(s) to BitBean network + + %n active connection to BitBean network + %n active connections to BitBean network + + + + + Synchronizing with network... + Synchronizing with network... + + + + ~%n block(s) remaining + + ~%n block remaining + ~%n blocks remaining + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + Downloaded %1 blocks of transaction history. + Downloaded %1 blocks of transaction history. + + + + %n second(s) ago + + %n second ago + %n seconds ago + + + + + %n minute(s) ago + + %n minute ago + %n minutes ago + + + + + %n hour(s) ago + + %n hour ago + %n hours ago + + + + + %n day(s) ago + + %n day ago + %n days ago + + + + + Up to date + Up to date + + + + Catching up... + Catching up... + + + + Last received block was generated %1. + Last received block was generated %1. + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + + + + + Confirm transaction fee + Confirm transaction fee + + + + Sent transaction + Sent transaction + + + + Incoming transaction + Incoming transaction + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + + + + + URI handling + URI handling + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + Backup Wallet + Backup Wallet + + + + Wallet Data (*.dat) + Wallet Data (*.dat) + + + + Backup Failed + Backup Failed + + + + There was an error trying to save the wallet data to the new location. + There was an error trying to save the wallet data to the new location. + + + + %n second(s) + + %n second + %n seconds + + + + + %n minute(s) + + %n minute + %n minutes + + + + + %n hour(s) + + %n hour + %n hours + + + + + %n day(s) + + %n day + %n days + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + + + + + Not staking because wallet is locked + + + + + Not staking because wallet is offline + + + + + Not staking because wallet is syncing + + + + + Not staking because you don't have mature beans + + + + + Not staking + + + + + BitcoinGUI + + Sign &message... + Sign &message... + + + Synchronizing with network... + Synchronizing with network... + + + &Overview + &Overview + + + Show general overview of wallet + Show general overview of wallet + + + &Transactions + &Transactions + + + Browse transaction history + Browse transaction history + + + &Address Book + &Address Book + + + Edit the list of stored addresses and labels + Edit the list of stored addresses and labels + + + &Receive coins + &Receive coins + + + Show the list of addresses for receiving payments + Show the list of addresses for receiving payments + + + &Send coins + &Send coins + + + E&xit + E&xit + + + Quit application + Quit application + + + Show information about BitBean + Show information about BitBean + + + About &Qt + About &Qt + + + Show information about Qt + Show information about Qt + + + &Options... + &Options... + + + &Encrypt Wallet... + &Encrypt Wallet... + + + &Backup Wallet... + &Backup Wallet... + + + &Change Passphrase... + &Change Passphrase... + + + ~%n block(s) remaining + + ~%n block remaining + ~%n blocks remaining + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + &Export... + &Export... + + + Send coins to a BitBean address + Send coins to a BitBean address + + + Modify configuration options for BitBean + Modify configuration options for BitBean + + + Export the data in the current tab to a file + Export the data in the current tab to a file + + + Encrypt or decrypt wallet + Encrypt or decrypt wallet + + + Backup wallet to another location + Backup wallet to another location + + + Change the passphrase used for wallet encryption + Change the passphrase used for wallet encryption + + + &Debug window + &Debug window + + + Open debugging and diagnostic console + Open debugging and diagnostic console + + + &Verify message... + &Verify message... + + + BitBean + BitBean + + + Wallet + Wallet + + + &About BitBean + &About BitBean + + + &Show / Hide + &Show / Hide + + + Unlock wallet + Unlock wallet + + + &File + &File + + + &Settings + &Settings + + + &Help + &Help + + + Tabs toolbar + Tabs toolbar + + + Actions toolbar + Actions toolbar + + + [testnet] + [testnet] + + + BitBean client + BitBean client + + + %n active connection(s) to BitBean network + + %n active connection to BitBean network + %n active connections to BitBean network + + + + Downloaded %1 blocks of transaction history. + Downloaded %1 blocks of transaction history. + + + %n second(s) ago + + %n second ago + %n seconds ago + + + + %n minute(s) ago + + %n minute ago + %n minutes ago + + + + %n hour(s) ago + + %n hour ago + %n hours ago + + + + %n day(s) ago + + %n day ago + %n days ago + + + + Up to date + Up to date + + + Catching up... + Catching up... + + + Last received block was generated %1. + Last received block was generated %1. + + + Confirm transaction fee + Confirm transaction fee + + + Sent transaction + Sent transaction + + + Incoming transaction + Incoming transaction + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + + + URI handling + URI handling + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + Backup Wallet + Backup Wallet + + + Wallet Data (*.dat) + Wallet Data (*.dat) + + + Backup Failed + Backup Failed + + + There was an error trying to save the wallet data to the new location. + There was an error trying to save the wallet data to the new location. + + + %n second(s) + + %n second + %n seconds + + + + %n minute(s) + + %n minute + %n minutes + + + + %n hour(s) + + %n hour + %n hours + + + + %n day(s) + + %n day + %n days + + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + A fatal error occurred. BitBean can no longer continue safely and will quit. + + + + ClientModel + + + Network Alert + Network Alert + + + + CoinControlDialog + + Amount: + Amount: + + + Amount + Amount + + + Label + Label + + + Address + Address + + + Date + Date + + + Confirmed + Confirmed + + + Copy address + Copy address + + + Copy label + Copy label + + + Copy amount + Copy amount + + + Copy transaction ID + Copy transaction ID + + + (no label) + (no label) + + + + EditAddressDialog + + + Edit Address + Edit Address + + + + &Label + &Label + + + + The label associated with this address book entry + The label associated with this address book entry + + + + &Address + &Address + + + + The address associated with this address book entry. This can only be modified for sending addresses. + The address associated with this address book entry. This can only be modified for sending addresses. + + + + New receiving address + New receiving address + + + + New sending address + New sending address + + + + Edit receiving address + Edit receiving address + + + + Edit sending address + Edit sending address + + + + The entered address "%1" is already in the address book. + The entered address "%1" is already in the address book. + + + + The entered address "%1" is not a valid BitBean address. + The entered address "%1" is not a valid BitBean address. + + + + Could not unlock wallet. + Could not unlock wallet. + + + + New key generation failed. + New key generation failed. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + version + version + + + + Usage: + Usage: + + + + command-line options + command-line options + + + + UI options + UI options + + + + Set language, for example "de_DE" (default: system locale) + Set language, for example "de_DE" (default: system locale) + + + + Start minimized + Start minimized + + + + Show splash screen on startup (default: 1) + Show splash screen on startup (default: 1) + + + + OptionsDialog + + + Options + Options + + + + &Main + &Main + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. + + + + Pay transaction &fee + Pay transaction &fee + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + + + + + Automatically start BitBean after logging in to the system. + Automatically start BitBean after logging in to the system. + + + + &Start BitBean on system login + &Start BitBean on system login + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + + + + &Detach databases at shutdown + &Detach databases at shutdown + + + + &Network + &Network + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + + + + Map port using &UPnP + Map port using &UPnP + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + + + + &Connect through SOCKS proxy: + &Connect through SOCKS proxy: + + + + Proxy &IP: + Proxy &IP: + + + + IP address of the proxy (e.g. 127.0.0.1) + IP address of the proxy (e.g. 127.0.0.1) + + + + &Port: + &Port: + + + + Port of the proxy (e.g. 9050) + Port of the proxy (e.g. 9050) + + + + SOCKS &Version: + SOCKS &Version: + + + + SOCKS version of the proxy (e.g. 5) + SOCKS version of the proxy (e.g. 5) + + + + &Window + &Window + + + + Show only a tray icon after minimizing the window. + Show only a tray icon after minimizing the window. + + + + &Minimize to the tray instead of the taskbar + &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. + 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 + M&inimize on close + + + + &Display + &Display + + + + User Interface &language: + User Interface &language: + + + + The user interface language can be set here. This setting will take effect after restarting BitBean. + The user interface language can be set here. This setting will take effect after restarting BitBean. + + + + &Unit to show amounts in: + &Unit to show amounts in: + + + + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Choose the default subdivision unit to show in the interface and when sending coins. + + + + Whether to show BitBean addresses in the transaction list or not. + Whether to show BitBean addresses in the transaction list or not. + + + + &Display addresses in transaction list + &Display addresses in transaction list + + + + &OK + &OK + + + + &Cancel + &Cancel + + + + &Apply + &Apply + + + + default + default + + + + + Warning + Warning + + + + + This setting will take effect after restarting BitBean. + This setting will take effect after restarting BitBean. + + + + The supplied proxy address is invalid. + The supplied proxy address is invalid. + + + + OverviewPage + + + Form + Form + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + + + Stake: + Stake: + + + + Unconfirmed: + Unconfirmed: + + + Wallet + Wallet + + + + Spendable: + + + + + Your current spendable balance + + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + Immature: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + Mined balance that has not yet matured + + + + Total: + + + + <b>Recent transactions</b> + <b>Recent transactions</b> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + + + Total of coins that was staked, and do not yet count toward the current balance + Total of coins that was staked, and do not yet count toward the current balance + + + + + out of sync + out of sync + + + + QRCodeDialog + + + QR Code Dialog + QR Code Dialog + + + + Request Payment + Request Payment + + + + Amount: + Amount: + + + + Label: + Label: + + + + Message: + Message: + + + + &Save As... + &Save As... + + + + Error encoding URI into QR Code. + Error encoding URI into QR Code. + + + + The entered amount is invalid, please check. + The entered amount is invalid, please check. + + + + Resulting URI too long, try to reduce the text for label / message. + Resulting URI too long, try to reduce the text for label / message. + + + + Save QR Code + Save QR Code + + + + PNG Images (*.png) + PNG Images (*.png) + + + + RPCConsole + + + Client name + Client name + + + + + + + + + + + + + N/A + N/A + + + + Client version + Client version + + + + &Information + &Information + + + + Using OpenSSL version + Using OpenSSL version + + + + Startup time + Startup time + + + + Network + Network + + + + Number of connections + Number of connections + + + + On testnet + On testnet + + + + Block chain + Block chain + + + + Current number of blocks + Current number of blocks + + + + Estimated total blocks + Estimated total blocks + + + + Last block time + Last block time + + + + &Open + &Open + + + + Command-line options + Command-line options + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + + + + &Show + &Show + + + + &Console + &Console + + + + Build date + Build date + + + + BitBean - Debug window + BitBean - Debug window + + + + BitBean Core + BitBean Core + + + + Debug log file + Debug log file + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + + + + Clear console + Clear console + + + + Welcome to the BitBean RPC console. + Welcome to the BitBean RPC console. + + + + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + 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. + Type <b>help</b> for an overview of available commands. + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + + 0 + + + + + Bytes: + + + + + Amount: + Amount: + + + + + + + 0.00 BC + 123.456 BC {0.00 ?} + + + + Priority: + + + + + medium + + + + + Fee: + + + + + Low Output: + + + + + no + + + + + After Fee: + + + + + Change + + + + + custom change address + + + + + Send to multiple recipients at once + Send to multiple recipients at once + + + + Add &Recipient + + + + + Remove all transaction fields + Remove all transaction fields + + + + Clear &All + Clear &All + + + + Balance: + Balance: + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + Confirm the send action + + + + S&end + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Copy quantity + + + + + Copy amount + Copy amount + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy priority + + + + + Copy low output + + + + + Copy change + + + + + <b>%1</b> to %2 (%3) + <b>%1</b> to %2 (%3) + + + + Confirm send beans + + + + + Are you sure you want to send %1? + Are you sure you want to send %1? + + + + and + and + + + + The recipient address is not valid, please recheck. + The recipient address is not valid, please recheck. + + + + The amount to pay must be larger than 0. + The amount to pay must be larger than 0. + + + + The amount exceeds your balance. + The amount exceeds your balance. + + + + The total exceeds your balance when the %1 transaction fee is included. + 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. + Duplicate address found, can only send to each address once per send operation. + + + + Error: Transaction creation failed. + Error: Transaction creation failed. + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + + + + + (no label) + (no label) + + + + WARNING: unknown change address + + + + + SendBeansEntry + + + Form + Form + + + + A&mount: + A&mount: + + + + Pay &To: + Pay &To: + + + + + Enter a label for this address to add it to your address book + Enter a label for this address to add it to your address book + + + + &Label: + &Label: + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose address from address book + Choose address from address book + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Paste address from clipboard + + + + Alt+P + Alt+P + + + + Remove this recipient + Remove this recipient + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + SendCoinsDialog + + Send Coins + Send Coins + + + Amount: + Amount: + + + 0.00 BC + 123.456 BC {0.00 ?} + + + Send to multiple recipients at once + Send to multiple recipients at once + + + Remove all transaction fields + Remove all transaction fields + + + Clear &All + Clear &All + + + Balance: + Balance: + + + 123.456 BC + 123.456 BC + + + Confirm the send action + Confirm the send action + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Copy amount + Copy amount + + + <b>%1</b> to %2 (%3) + <b>%1</b> to %2 (%3) + + + Confirm send coins + Confirm send coins + + + Are you sure you want to send %1? + Are you sure you want to send %1? + + + and + and + + + The recipient address is not valid, please recheck. + The recipient address is not valid, please recheck. + + + The amount to pay must be larger than 0. + The amount to pay must be larger than 0. + + + The amount exceeds your balance. + The amount exceeds your balance. + + + The total exceeds your balance when the %1 transaction fee is included. + 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. + Duplicate address found, can only send to each address once per send operation. + + + Error: Transaction creation failed. + Error: Transaction creation failed. + + + 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. + + + (no label) + (no label) + + + + SendCoinsEntry + + Form + Form + + + A&mount: + A&mount: + + + Pay &To: + Pay &To: + + + Enter a label for this address to add it to your address book + Enter a label for this address to add it to your address book + + + &Label: + &Label: + + + Choose address from address book + Choose address from address book + + + Alt+A + Alt+A + + + Paste address from clipboard + Paste address from clipboard + + + Alt+P + Alt+P + + + Remove this recipient + Remove this recipient + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Signatures - Sign / Verify a Message + + + + + &Sign 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. + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + Choose an address from the address book + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Paste address from clipboard + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Enter the message you want to sign here + + + + Copy the current signature to the system clipboard + Copy the current signature to the system clipboard + + + + Sign the message to prove you own this BitBean address + Sign the message to prove you own this BitBean address + + + + Reset all sign message fields + Reset all sign message fields + + + + + Clear &All + Clear &All + + + + + &Verify Message + &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. + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + Verify the message to ensure it was signed with the specified BitBean address + + + + Reset all verify message fields + Reset all verify message fields + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + Click "Sign Message" to generate signature + + + + Enter BitBean signature + Enter BitBean signature + + + + + The entered address is invalid. + The entered address is invalid. + + + + + + + Please check the address and try again. + Please check the address and try again. + + + + + The entered address does not refer to a key. + The entered address does not refer to a key. + + + + Wallet unlock was cancelled. + Wallet unlock was cancelled. + + + + Private key for the entered address is not available. + Private key for the entered address is not available. + + + + Message signing failed. + Message signing failed. + + + + Message signed. + Message signed. + + + + The signature could not be decoded. + The signature could not be decoded. + + + + + Please check the signature and try again. + Please check the signature and try again. + + + + The signature did not match the message digest. + The signature did not match the message digest. + + + + Message verification failed. + Message verification failed. + + + + Message verified. + Message verified. + + + + TransactionDesc + + + Open until %1 + Open until %1 + + + + Open for %n block(s) + + Open for %n block + Open for %n blocks + + + + + conflicted + + + + + %1/offline + %1/offline + + + + %1/unconfirmed + %1/unconfirmed + + + + %1 confirmations + %1 confirmations + + + + Status + Status + + + + , broadcast through %n node(s) + + , broadcast through %n node + , broadcast through %n nodes + + + + + Date + Date + + + + Source + Source + + + + Generated + Generated + + + + + From + From + + + + + + To + To + + + + + own address + own address + + + + label + label + + + + + + + + Credit + Credit + + + + matures in %n more block(s) + + matures in %n more block + matures in %n more blocks + + + + + not accepted + not accepted + + + + + + + Debit + Debit + + + + Transaction fee + Transaction fee + + + + Net amount + Net amount + + + + Message + Message + + + + Comment + Comment + + + + Transaction ID + Transaction ID + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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. + Generated coins must mature 110 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 information + + + + Transaction + Transaction + + + + Inputs + Inputs + + + + Amount + Amount + + + + true + true + + + + false + false + + + + , has not been successfully broadcast yet + , has not been successfully broadcast yet + + + + unknown + unknown + + + + TransactionDescDialog + + + Transaction details + Transaction details + + + + This pane shows a detailed description of the transaction + This pane shows a detailed description of the transaction + + + + TransactionTableModel + + + Date + Date + + + + Type + Type + + + + Address + Address + + + + Amount + Amount + + + + Open until %1 + Open until %1 + + + + Confirmed (%1 confirmations) + Confirmed (%1 confirmations) + + + + Open for %n more block(s) + + Open for %n more block + Open for %n more blocks + + + + + Offline + + + + + Unconfirmed + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + This block was not received by any other nodes and will probably not be accepted! + + + + Generated but not accepted + Generated but not accepted + + + + Received with + Received with + + + + Received from + Received from + + + + Sent to + Sent to + + + + Payment to yourself + Payment to yourself + + + + SPROUT + + + + Mined + Mined + + + + (n/a) + (n/a) + + + + Transaction status. Hover over this field to show number of confirmations. + Transaction status. Hover over this field to show number of confirmations. + + + + Date and time that the transaction was received. + Date and time that the transaction was received. + + + + Type of transaction. + Type of transaction. + + + + Destination address of transaction. + Destination address of transaction. + + + + Amount removed from or added to balance. + Amount removed from or added to balance. + + + + TransactionView + + + + All + All + + + + Today + Today + + + + This week + This week + + + + This month + This month + + + + Last month + Last month + + + + This year + This year + + + + Range... + Range... + + + + Received with + Received with + + + + Sent to + Sent to + + + + To yourself + To yourself + + + + Mined + Mined + + + + Other + Other + + + + Enter address or label to search + Enter address or label to search + + + + Min amount + Min amount + + + + Copy address + Copy address + + + + Copy label + Copy label + + + + Copy amount + Copy amount + + + + Copy transaction ID + Copy transaction ID + + + + Edit label + Edit label + + + + Show transaction details + Show transaction details + + + + Export Transaction Data + Export Transaction Data + + + + Comma separated file (*.csv) + Comma separated file (*.csv) + + + + Confirmed + Confirmed + + + + Date + Date + + + + Type + Type + + + + Label + Label + + + + Address + Address + + + + Amount + Amount + + + + ID + ID + + + + Error exporting + Error exporting + + + + Could not write to file %1. + Could not write to file %1. + + + + Range: + Range: + + + + to + to + + + + WalletModel + + + Sending... + Sending... + + + + bitbean-core + + + To use the %s option + To use the %s option + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Error + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + + + + BitBean version + BitBean version + + + + Usage: + Usage: + + + + Send command to -server or BitBeand + Send command to -server or BitBeand + + + + List commands + List commands + + + + Get help for a command + Get help for a command + + + + BitBean + BitBean + + + + Options: + Options: + + + + This help message + This help message + + + + Specify configuration file (default: BitBean.conf) + Specify configuration file (default: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + Specify pid file (default: BitBeand.pid) + + + + Specify data directory + Specify data directory + + + + Specify wallet file (within data directory) + Specify wallet file (within data directory) + + + + Set database cache size in megabytes (default: 25) + Set database cache size in megabytes (default: 25) + + + + Set database disk log size in megabytes (default: 100) + Set database disk log size in megabytes (default: 100) + + + + Specify connection timeout in milliseconds (default: 5000) + Specify connection timeout in milliseconds (default: 5000) + + + + Connect through socks proxy + Connect through socks proxy + + + + Select the version of socks proxy to use (4-5, default: 5) + Select the version of socks proxy to use (4-5, default: 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + Use proxy to reach tor hidden services (default: same as -proxy) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Allow DNS lookups for -addnode, -seednode and -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + Maintain at most <n> connections to peers (default: 125) + Maintain at most <n> connections to peers (default: 125) + + + + 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 + + + + Connect only to the specified node(s) + Connect only to the specified node(s) + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Discover own IP address (default: 1 when listening and no -externalip) + + + + Find peers using internet relay chat (default: 0) + Find peers using internet relay chat (default: 1) {0)?} + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + Bind to given address. Use [host]:port notation for IPv6 + + + + Find peers using DNS lookup (default: 1) + Find peers using DNS lookup (default: 1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + Sync checkpoints policy (default: strict) + + + + 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) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + Use UPnP to map the listening port (default: 1 when listening) + Use UPnP to map the listening port (default: 1 when listening) + + + + Use UPnP to map the listening port (default: 0) + Use UPnP to map the listening port (default: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + Detach block and address databases. Increases shutdown time (default: 0) + + + + Fee per KB to add to transactions you send + Fee per KB to add to transactions you send + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + Accept command line and JSON-RPC commands + + + + 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 + + + + Output extra debugging information. Implies all other -debug* options + Output extra debugging information. Implies all other -debug* options + + + + Output extra network debugging information + Output extra network debugging information + + + + Prepend debug output with timestamp + Prepend debug output with timestamp + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + Send trace/debug info to console instead of debug.log file + Send trace/debug info to console instead of debug.log file + + + + Send trace/debug info to debugger + Send trace/debug info to debugger + + + + Username for JSON-RPC connections + Username for JSON-RPC connections + + + + Password for JSON-RPC connections + Password for JSON-RPC connections + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + Require a confirmations for change (default: 0) + + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + + + + + 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 + + + + Attempt to recover private keys from a corrupt wallet.dat + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) + How many blocks to check at startup (default: 2500, 0 = all) + + + + How thorough the block verification is (0-6, default: 1) + How thorough the block verification is (0-6, default: 1) + + + + Imports blocks from external blk000?.dat file + Imports blocks from external blk000?.dat file + + + + Block creation options: + Block creation options: + + + + Set minimum block size in bytes (default: 0) + Set minimum block size in bytes (default: 0) + + + + Set maximum block size in bytes (default: 250000) + Set maximum block size in bytes (default: 250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + Server private key (default: server.pem) + Server private key (default: server.pem) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Invalid amount for -paytxfee=<amount>: '%s' + Invalid amount for -paytxfee=<amount>: '%s' + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + + + + Invalid amount for -mininput=<amount>: '%s' + + + + + Wallet %s resides outside data directory %s. + Wallet %s resides outside data directory %s. + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Cannot obtain a lock on data directory %s. BitBean is probably already running. + + + + Verifying database integrity... + + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for 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. + 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 corrupt, salvage failed + + + + + Unknown -socks proxy version requested: %i + Unknown -socks proxy version requested: %i + + + + Unknown network specified in -onlynet: '%s' + Unknown network specified in -onlynet: '%s' + + + + Invalid -proxy address: '%s' + Invalid -proxy address: '%s' + + + + Invalid -tor address: '%s' + Invalid -tor address: '%s' + + + + Cannot resolve -bind address: '%s' + Cannot resolve -bind address: '%s' + + + + Failed to listen on any port. Use -listen=0 if you want this. + Failed to listen on any port. Use -listen=0 if you want this. + + + + Cannot resolve -externalip address: '%s' + Cannot resolve -externalip address: '%s' + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + Loading block index... + + + + Error loading blkindex.dat + Error loading blkindex.dat + + + + Loading wallet... + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted + Error loading wallet.dat: Wallet corrupted + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Error loading wallet.dat: Wallet requires newer version of BitBean + + + + Wallet needed to be rewritten: restart BitBean to complete + Wallet needed to be rewritten: restart BitBean to complete + + + + Error loading wallet.dat + Error loading wallet.dat + + + + Cannot downgrade wallet + Cannot downgrade wallet + + + + Cannot initialize keypool + Cannot initialize keypool + + + + Cannot write default address + Cannot write default address + + + + Rescanning... + Rescanning... + + + + Importing blockchain data file. + + + + + Importing bootstrap blockchain data file. + + + + + Loading addresses... + Loading addresses... + + + + Error: could not start node + Error: could not start node + + + + Done loading + Done loading + + + + Unable to bind to %s on this computer. BitBean is probably already running. + Unable to bind to %s on this computer. BitBean is probably already running. + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + Unable to bind to %s on this computer (bind returned error %d, %s) + + + + Error: Wallet locked, unable to create transaction + + + + + Error: Wallet unlocked for staking only, unable to create transaction. + + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + + + + + Error: Transaction creation failed + + + + + Sending... + Sending... + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Invalid amount + + + + Insufficient funds + Insufficient funds + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + + + + Warning: This version is obsolete, upgrade required! + Warning: This version is obsolete, upgrade required! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + + + + + Warning: Disk space is low! + Warning: Disk space is low! + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + + bitcoin-core + + BitBean version + BitBean version + + + Usage: + Usage: + + + Send command to -server or BitBeand + Send command to -server or BitBeand + + + List commands + List commands + + + Get help for a command + Get help for a command + + + Options: + Options: + + + Specify configuration file (default: BitBean.conf) + Specify configuration file (default: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + Specify pid file (default: BitBeand.pid) + + + Specify wallet file (within data directory) + Specify wallet file (within data directory) + + + Specify data directory + Specify data directory + + + Set database cache size in megabytes (default: 25) + Set database cache size in megabytes (default: 25) + + + Set database disk log size in megabytes (default: 100) + Set database disk log size in megabytes (default: 100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + 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 + + + Bind to given address. Use [host]:port notation for IPv6 + Bind to given address. Use [host]:port notation for IPv6 + + + 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) + + + Detach block and address databases. Increases shutdown time (default: 0) + Detach block and address databases. Increases shutdown time (default: 0) + + + Accept command line and JSON-RPC commands + Accept command line and JSON-RPC commands + + + 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) + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + + + Attempt to recover private keys from a corrupt wallet.dat + Attempt to recover private keys from a corrupt wallet.dat + + + Block creation options: + Block creation options: + + + Connect only to the specified node(s) + Connect only to the specified node(s) + + + Discover own IP address (default: 1 when listening and no -externalip) + Discover own IP address (default: 1 when listening and no -externalip) + + + Failed to listen on any port. Use -listen=0 if you want this. + Failed to listen on any port. Use -listen=0 if you want this. + + + Find peers using DNS lookup (default: 1) + Find peers using DNS lookup (default: 1) + + + Sync checkpoints policy (default: strict) + Sync checkpoints policy (default: strict) + + + Invalid -tor address: '%s' + Invalid -tor address: '%s' + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + Output extra debugging information. Implies all other -debug* options + Output extra debugging information. Implies all other -debug* options + + + Output extra network debugging information + Output extra network debugging information + + + Prepend debug output with timestamp + Prepend debug output with timestamp + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + + + Select the version of socks proxy to use (4-5, default: 5) + Select the version of socks proxy to use (4-5, default: 5) + + + Send trace/debug info to console instead of debug.log file + Send trace/debug info to console instead of debug.log file + + + Send trace/debug info to debugger + Send trace/debug info to debugger + + + Set maximum block size in bytes (default: 250000) + Set maximum block size in bytes (default: 250000) + + + Set minimum block size in bytes (default: 0) + Set minimum block size in bytes (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) + + + Specify connection timeout in milliseconds (default: 5000) + Specify connection timeout in milliseconds (default: 5000) + + + Use UPnP to map the listening port (default: 0) + Use UPnP to map the listening port (default: 0) + + + Use UPnP to map the listening port (default: 1 when listening) + Use UPnP to map the listening port (default: 1 when listening) + + + Use proxy to reach tor hidden services (default: same as -proxy) + Use proxy to reach tor hidden services (default: same as -proxy) + + + Username for JSON-RPC connections + Username for JSON-RPC connections + + + Warning: Disk space is low! + Warning: Disk space is low! + + + Warning: This version is obsolete, upgrade required! + Warning: This version is obsolete, upgrade required! + + + Password for JSON-RPC connections + Password for JSON-RPC connections + + + Find peers using internet relay chat (default: 0) + Find peers using internet relay chat (default: 1) {0)?} + + + 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) + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + 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 + + + How many blocks to check at startup (default: 2500, 0 = all) + How many blocks to check at startup (default: 2500, 0 = all) + + + How thorough the block verification is (0-6, default: 1) + How thorough the block verification is (0-6, default: 1) + + + Imports blocks from external blk000?.dat file + Imports blocks from external blk000?.dat file + + + 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) + + + Server private key (default: server.pem) + Server private key (default: server.pem) + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + This help message + This help message + + + Wallet %s resides outside data directory %s. + Wallet %s resides outside data directory %s. + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Cannot obtain a lock on data directory %s. BitBean is probably already running. + + + BitBean + BitBean + + + Unable to bind to %s on this computer (bind returned error %d, %s) + Unable to bind to %s on this computer (bind returned error %d, %s) + + + Connect through socks proxy + Connect through socks proxy + + + Allow DNS lookups for -addnode, -seednode and -connect + Allow DNS lookups for -addnode, -seednode and -connect + + + Loading addresses... + Loading addresses... + + + Error loading blkindex.dat + Error loading blkindex.dat + + + Error loading wallet.dat: Wallet corrupted + Error loading wallet.dat: Wallet corrupted + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Error loading wallet.dat: Wallet requires newer version of BitBean + + + Wallet needed to be rewritten: restart BitBean to complete + Wallet needed to be rewritten: restart BitBean 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' + + + Unknown -socks proxy version requested: %i + Unknown -socks proxy version requested: %i + + + Cannot resolve -bind address: '%s' + Cannot resolve -bind address: '%s' + + + Cannot resolve -externalip address: '%s' + Cannot resolve -externalip address: '%s' + + + Invalid amount for -paytxfee=<amount>: '%s' + Invalid amount for -paytxfee=<amount>: '%s' + + + Error: could not start node + Error: could not start node + + + Sending... + Sending... + + + Invalid amount + Invalid amount + + + Insufficient funds + 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. BitBean is probably already running. + Unable to bind to %s on this computer. BitBean is probably already running. + + + Fee per KB to add to transactions you send + Fee per KB to add to transactions you send + + + Loading wallet... + Loading wallet... + + + Cannot downgrade wallet + Cannot downgrade wallet + + + Cannot initialize keypool + Cannot initialize keypool + + + Cannot write default address + 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. + 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/bitbean_eo.qm b/src/qt/locale/bitbean_eo.qm new file mode 100644 index 0000000..615b7da Binary files /dev/null and b/src/qt/locale/bitbean_eo.qm differ diff --git a/src/qt/locale/bitcoin_eo.ts b/src/qt/locale/bitbean_eo.ts similarity index 54% rename from src/qt/locale/bitcoin_eo.ts rename to src/qt/locale/bitbean_eo.ts index 96b50a6..1078eb3 100644 --- a/src/qt/locale/bitcoin_eo.ts +++ b/src/qt/locale/bitbean_eo.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - 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. - + Tio ĉi estas eksperimenta programo. Eldonita laŭ la permesilo MIT/X11. Vidu la kunan dosieron COPYING aŭ http://www.opensource.org/licenses/mit-license.php. @@ -37,72 +49,72 @@ Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uz AddressBookPage - + Address Book - + - + Double-click to edit address or label Duoble-klaku por redakti adreson aŭ etikedon - + Create a new address Krei novan adreson - + Copy the currently selected address to the system clipboard Kopii elektitan adreson al la tondejo - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &Kopii Adreson - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list Forigi la elektitan adreson el la listo - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + &Kontroli Mesaĝon - + &Delete &Forigi @@ -119,7 +131,7 @@ Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uz Export Address Book Data - + @@ -129,12 +141,12 @@ Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uz Error exporting - + Could not write to file %1. - + @@ -158,34 +170,34 @@ Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uz AskPassphraseDialog - + Passphrase Dialog Dialogo pri pasfrazo - + Enter passphrase Enigu pasfrazon - + New passphrase Nova pasfrazo - + Repeat new passphrase Ripetu la novan pasfrazon - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -234,16 +246,21 @@ Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uz - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + Ĉu vi certas, ke vi volas ĉifri la monujon? - Are you sure you wish to encrypt your wallet? - Ĉu vi certas, ke vi volas ĉifri la monujon? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 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. @@ -260,12 +277,7 @@ Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uz La monujo estas ĉifrita - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -307,333 +319,579 @@ Tiu ĉi produkto enhavas erojn kreitajn de la "OpenSSL Project" por uz - BitcoinGUI - - - Sign &message... - Subskribi &mesaĝon... - + BeanControlDialog - - Synchronizing with network... - Sinkronigante kun reto... + + Bean Control + - - &Overview - &Superrigardo + + Quantity: + Kvanto: - - Show general overview of wallet - Vidigi ĝeneralan superrigardon de la monujo + + Bytes: + Bajtoj: - - &Transactions - &Transakcioj + + Amount: + Sumo: - - Browse transaction history - Esplori historion de transakcioj + + Priority: + Prioritato: - - &Address Book - + + Fee: + Krompago: - - Edit the list of stored addresses and labels - + + Low Output: + Malalta Eligo: - - &Receive coins - + + After Fee: + Post krompago: - - Show the list of addresses for receiving payments - + + Change: + Restmono: - - &Send coins - + + (un)select all + (mal)elekti ĉion - - E&xit - &Eliri + + Tree mode + Arboreĝimo - - Quit application - Eliri la aplikaĵon + + List mode + Listreĝimo - - Show information about BitBean - + + Amount + Sumo - - About &Qt - Pri &Qt + + Label + Etikedo - - Show information about Qt - Vidigi informojn pri Qt + + Address + Adreso - - &Options... - &Agordoj... + + Date + Dato - - &Encrypt Wallet... - Ĉifri &Monujon... + + Confirmations + Konfirmoj - &Backup Wallet... - &Krei sekurkopion de la monujo... + Confirmed + Konfirmita - - &Change Passphrase... - Ŝanĝi &Pasfrazon... - - - - ~%n block(s) remaining - + + Priority + Prioritato - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Kopii adreson - - &Export... - + + Copy label + Kopii etikedon - - Send coins to a BitBean address - + + + Copy amount + Kopii sumon - - Modify configuration options for BitBean - + + Copy transaction ID + Kopii transakcian ID-on - - Export the data in the current tab to a file - + + Copy quantity + Kopii kvanton - - Encrypt or decrypt wallet - + + Copy fee + Kopii krompagon - - Backup wallet to another location - Krei alilokan sekurkopion de monujo + + Copy after fee + Kopii post krompago - - Change the passphrase used for wallet encryption - Ŝanĝi la pasfrazon por ĉifri la monujon + + Copy bytes + Kopii bajtojn - - &Debug window - Sen&cimiga fenestro + + Copy priority + Kopii prioritaton - Open debugging and diagnostic console - Malfermi konzolon de sencimigo kaj diagnozo + Copy low output + Kopii malaltan eligon - - &Verify message... - &Kontroli mesaĝon... + + Copy change + Kopii restmonon - - BitBean - + + highest + plej alta - - Wallet - Monujo + + high + alta - - &About BitBean - + + medium-high + mezalta - - &Show / Hide - &Montri / Kaŝi + + medium + meza - - Unlock wallet - + + low-medium + mezmalalta - &Lock Wallet - + low + malalta - Lock wallet - + lowest + plej malalta - - &File - &Dosiero + + DUST + - - &Settings - &Agordoj + + yes + jes - - &Help - &Helpo + + no + ne - - Tabs toolbar - Langeto-breto + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + (neniu etikedo) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + restmono de %1 (%2) - - Not staking because wallet is locked - + + (change) + (restmono) + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - + + Vault + - - - %n second(s) ago - + + + &Overview + &Superrigardo - - &Unlock Wallet... - + + Show general overview of wallet + Vidigi ĝeneralan superrigardon de la monujo + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transakcioj + + + + Browse transaction history + Esplori historion de transakcioj + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + &Eliri + + + + Quit application + Eliri la aplikaĵon + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + Pri &Qt + + + + Show information about Qt + Vidigi informojn pri Qt + + + + &Options... + &Agordoj... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + &Montri / Kaŝi + + + + &Encrypt Wallet... + Ĉifri &Monujon... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &Krei sekurkopion de la monujo... + + + + Backup wallet to another location + Krei alilokan sekurkopion de monujo + + + + &Change Passphrase... + Ŝanĝi &Pasfrazon... + + + + Change the passphrase used for wallet encryption + Ŝanĝi la pasfrazon por ĉifri la monujon + + + + &Unlock Wallet... + + + + + Unlock wallet + Malŝlosi la monujon + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Subskribi &mesaĝon... + + + + &Verify message... + &Kontroli mesaĝon... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + Sen&cimiga fenestro + + + + Open debugging and diagnostic console + Malfermi konzolon de sencimigo kaj diagnozo + + + + &File + &Dosiero + + + + &Settings + &Agordoj + + + + &Help + &Helpo + + + + Tabs toolbar + Langeto-breto + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + Synchronizing with network... + Sinkronigante kun reto... + + + + ~%n block(s) remaining + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + - + %n minute(s) ago - + + + %n hour(s) ago - + + + %n day(s) ago - + + + Up to date - Ĝisdata + Ĝisdata Catching up... - Ĝisdatigante... + Ĝisdatigante... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Sendita transakcio + Sendita transakcio Incoming transaction - Envenanta transakcio + Envenanta transakcio @@ -642,7 +900,7 @@ Amount: %2 Type: %3 Address: %4 - Dato: %1 + Dato: %1 Sumo: %2 Tipo: %3 Adreso: %4 @@ -652,341 +910,433 @@ Adreso: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Monujo estas <b>ĉifrita</b> kaj aktuale <b>malŝlosita</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> + Monujo estas <b>ĉifrita</b> kaj aktuale <b>ŝlosita</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + %n minute(s) - + + + %n hour(s) - %n horo%n horoj + + %n horo + %n day(s) - %n tago%n tagoj + + %n tago + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Reta Averto + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - Kvanto: + + Not staking because you don't have mature beans + - - Bytes: - Bajtoj: + + Not staking + + + + BitcoinGUI - - Amount: - Sumo: + Sign &message... + Subskribi &mesaĝon... - - Priority: - Prioritato: + Synchronizing with network... + Sinkronigante kun reto... - - Fee: - Krompago: + &Overview + &Superrigardo - - Low Output: - Malalta Eligo: + Show general overview of wallet + Vidigi ĝeneralan superrigardon de la monujo - - no - ne + &Transactions + &Transakcioj - - After Fee: - Post krompago: + Browse transaction history + Esplori historion de transakcioj - - Change: - Restmono: + E&xit + &Eliri - - (un)select all - (mal)elekti ĉion + Quit application + Eliri la aplikaĵon - - Tree mode - Arboreĝimo + About &Qt + Pri &Qt - - List mode - Listreĝimo + Show information about Qt + Vidigi informojn pri Qt - - Amount - Sumo + &Options... + &Agordoj... - - Label - + &Encrypt Wallet... + Ĉifri &Monujon... - - Address - Adreso + &Backup Wallet... + &Krei sekurkopion de la monujo... + + + &Change Passphrase... + Ŝanĝi &Pasfrazon... + + + 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... + + + Wallet + Monujo + + + &Show / Hide + &Montri / Kaŝi + + + &File + &Dosiero + + + &Settings + &Agordoj + + + &Help + &Helpo + + + Tabs toolbar + Langeto-breto + + + [testnet] + [testnet] + + + Up to date + Ĝisdata + + + Catching up... + Ĝisdatigante... + + + Sent transaction + Sendita transakcio + + + Incoming transaction + Envenanta transakcio + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Dato: %1 +Sumo: %2 +Tipo: %3 +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> + + + %n hour(s) + + %n horo + + + + %n day(s) + + %n tago + + + + + ClientModel + + + Network Alert + Reta Averto + + + + CoinControlDialog + + Quantity: + Kvanto: + + + Bytes: + Bajtoj: + + + Amount: + Sumo: + + + Priority: + Prioritato: + + + Fee: + Krompago: + + + Low Output: + Malalta Eligo: + + + no + ne + + + 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 + Dato - Confirmations - Konfirmoj + Konfirmoj - Confirmed - Konfirmita + Konfirmita - Priority - Prioritato + Prioritato - Copy address - Kopii adreson + Kopii adreson - Copy label - Kopii etikedon + Kopii etikedon - - Copy amount - Kopii sumon + Kopii sumon - Copy transaction ID - Kopii transakcian ID-on + Kopii transakcian ID-on - Copy quantity - Kopii kvanton + Kopii kvanton - Copy fee - Kopii krompagon + Kopii krompagon - Copy after fee - Kopii post krompago + Kopii post krompago - Copy bytes - Kopii bajtojn + Kopii bajtojn - Copy priority - Kopii prioritaton + Kopii prioritaton - Copy low output - Kopii malaltan eligon + Kopii malaltan eligon - Copy change - Kopii restmonon + Kopii restmonon - highest - plej alta + plej alta - high - alta + alta - medium-high - mezalta + mezalta - medium - meza + meza - low-medium - mezmalalta + mezmalalta - low - malalta + malalta - lowest - plej malalta - - - - DUST - + plej malalta - yes - jes - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 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. - - This means a fee of at least %2 is required. - + jes - - (no label) - (neniu etikedo) + (neniu etikedo) - change from %1 (%2) - restmono de %1 (%2) + restmono de %1 (%2) - (change) - (restmono) + (restmono) EditAddressDialog - + Edit Address Redakti Adreson @@ -998,7 +1348,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1008,7 +1358,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1038,7 +1388,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1054,98 +1404,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Uzado: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + 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. Fee 5.00 recommended. - - - - + Pay transaction &fee Krompago - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1155,7 +1505,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1165,12 +1515,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1180,7 +1530,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1240,7 +1590,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1249,13 +1599,27 @@ This label turns red, if the priority is smaller than "medium". + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + 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. + Elekti la defaŭltan manieron por montri bitmonajn sumojn en la interfaco, kaj kiam vi sendos bitmonon. - + Whether to show BitBean addresses in the transaction list or not. - + @@ -1263,17 +1627,11 @@ This label turns red, if the priority is smaller than "medium". &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!) - + Ĉu montri detalan adres-regilon, aŭ ne. - + &OK &Bone @@ -1285,7 +1643,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1296,13 +1654,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1313,145 +1671,225 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Formularo - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - Monujo + Monujo - + Spendable: - + - + Your current spendable balance via aktuala elspezebla saldo - - Immature: - Nematura: + + Sprouting: + - - Mined balance that has not yet matured - Minita saldo, kiu ankoraŭ ne maturiĝis + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + - - Total: - Totalo: + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + - - Your current total balance - via aktuala totala saldo + + Immature: + Nematura: - - <b>Recent transactions</b> - <b>Lastaj transakcioj</b> + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + BitBean Network + - - - out of sync - nesinkronigita + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + 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 QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Sumo: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Nomo de kliento @@ -1502,7 +1940,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1532,17 +1970,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1557,12 +1995,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1572,7 +2010,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1582,7 +2020,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1596,59 +2034,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Sendi Monon + Send Beans + - Coin Control Features - Monregaj Opcioj + Bean Control Features + Inputs... - Enigoj... + Enigoj... automatically selected - + Insufficient funds! - Nesufiĉa mono! + Nesufiĉa mono! Quantity: - Kvanto: + Kvanto: 0 - + Bytes: - Bajtoj: + Bajtoj: Amount: - Sumo: + Sumo: @@ -1656,272 +2094,434 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - Prioritato: + Prioritato: medium - + meza Fee: - Krompago: + Krompago: Low Output: - Malalta Eligo: + Malalta Eligo: no - + ne After Fee: - Post krompago: + Post krompago: Change - + custom change address - + Send to multiple recipients at once - Sendi samtempe al pluraj ricevantoj + Sendi samtempe al pluraj ricevantoj Add &Recipient - Aldoni &Ricevonton + Aldoni &Ricevonton Remove all transaction fields - + Clear &All - &Forigi ĉion + Balance: - Saldo: + Saldo: 123.456 BC - + Confirm the send action - Konfirmi la sendon + Konfirmi la sendon S&end - Ŝendi + Ŝendi - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - Kopii kvanton + Kopii kvanton Copy amount - Kopii sumon + Kopii sumon Copy fee - Kopii krompagon + Kopii krompagon Copy after fee - Kopii post krompago + Kopii post krompago Copy bytes - Kopii bajtojn + Kopii bajtojn Copy priority - Kopii prioritaton + Kopii prioritaton Copy low output - Kopii malaltan eligon + Kopii malaltan eligon Copy change - Kopii restmonon + Kopii restmonon <b>%1</b> to %2 (%3) - + - Confirm send coins - Konfirmi sendon de bitmono + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - La adreso de la ricevonto ne validas. Bonvolu kontroli. + 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. + La pagenda sumo devas esti pli ol 0. The amount exceeds your balance. - La sumo estas pli granda ol via saldo. + 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. + 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. + Iu adreso estas ripetita. Vi povas sendi al ĉiu adreso po unufoje en iu send-operacio. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (neniu etikedo) + (neniu etikedo) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Formularo - + A&mount: - &Sumo: + &Sumo: Pay &To: - &Ricevonto: + &Ricevonto: - + 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 + Tajpu etikedon por tiu ĉi adreso kaj aldonu ĝin al via adresaro &Label: - &Etikedo: + &Etikedo: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Alglui adreson el tondejo + Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + Sendi Monon + + + Coin Control Features + Monregaj Opcioj + + + Inputs... + Enigoj... + + + Insufficient funds! + Nesufiĉa mono! + + + Quantity: + Kvanto: + + + Bytes: + Bajtoj: + + + Amount: + Sumo: + + + Priority: + Prioritato: + + + Fee: + Krompago: + + + Low Output: + Malalta Eligo: + + + After Fee: + Post krompago: + + + Send to multiple recipients at once + Sendi samtempe al pluraj ricevantoj + + + Add &Recipient + Aldoni &Ricevonton + + + Clear &All + &Forigi ĉion + + + Balance: + Saldo: + + + Confirm the send action + Konfirmi la sendon + + + S&end + Ŝendi + + + 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 + + + Confirm send coins + Konfirmi sendon de bitmono + + + 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. + + + (no label) + (neniu etikedo) + + + + SendCoinsEntry + + A&mount: + &Sumo: + + + Pay &To: + &Ricevonto: + + + 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: + + + Alt+A + Alt+A + + + Paste address from clipboard + Alglui adreson el tondejo + + + Alt+P + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message Subskriboj - Subskribi / Kontroli mesaĝon @@ -1939,13 +2539,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1976,7 +2576,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -2003,12 +2603,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2019,7 +2619,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2029,7 +2629,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2108,12 +2708,14 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + conflicted - + @@ -2138,7 +2740,9 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - , elsendita(j) tra %n nodo, elsendita(j) tra %n nodoj + + , elsendita(j) tra %n nodo + @@ -2191,7 +2795,9 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - maturiĝos post %n blokomaturiĝos post %n blokoj + + maturiĝos post %n bloko + @@ -2233,8 +2839,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2280,7 +2886,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Transakciaj detaloj @@ -2325,7 +2931,9 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - Malferma dum ankoraŭ %n blokoMalferma dum ankoraŭ %n blokoj + + Malferma dum ankoraŭ %n bloko + @@ -2340,17 +2948,17 @@ This label turns red, if the priority is smaller than "medium". Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2359,928 +2967,1235 @@ This label turns red, if the priority is smaller than "medium". - Generated but not accepted - Kreita sed ne akceptita + Generated but not accepted + Kreita sed ne akceptita + + + + Received with + Ricevita kun + + + + Received from + Ricevita de + + + + Sent to + Sendita al + + + + Payment to yourself + Pago al vi mem + + + + SPROUT + + + + 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. + + + + 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 Data + + + + + Comma separated file (*.csv) + Perkome disigita dosiero (*.csv) + + + + Confirmed + Konfirmita + + + + Date + Dato + + + + Type + Tipo + + + + Label + Etikedo + + + + Address + Adreso + + + + Amount + Sumo + + + + ID + ID + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + Intervalo: + + + + to + al + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + Por uzi la agordon %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Eraro + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Vi devas agordi rpcpassword=<password> en la konfigura dosiero: +%s +Se la dosiero ne ekzistas, kreu ĝin kun permeso "nur posedanto rajtas legi". + + + + BitBean version + + + + + Usage: + Uzado: + + + + Send command to -server or BitBeand + + + + + List commands + Listigi komandojn + + + + Get help for a command + Vidigi helpon pri iu komando + + + + BitBean + + + + + Options: + Agordoj: + + + + This help message + Tiu ĉi helpmesaĝo + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Specifi dosieron por datumoj + + + + Specify wallet file (within data directory) + Specifi monujan dosieron (ene de dosierujo por datumoj) + + + + Set database cache size in megabytes (default: 25) + Specifi grandon de datumbazo je megabajtoj (defaŭlte: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Specifi konektan tempolimon je milisekundoj (defaŭlte: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Permesi DNS-elserĉojn por -addnote, -seednote kaj -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Subteni maksimume <n> konektojn al samtavolanoj (defaŭlte: 125) + + + + Add a node to connect to and attempt to keep the connection open + Aldoni nodon por alkonekti kaj provi daŭrigi la malferman konekton + + + + Connect only to the specified node(s) + Konekti nur al specifita(j) nodo(j) + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Konekti nur la nodoj en la reto <net> (IPv4, IPv6 aŭ Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Malkovri la propran IP-adreson (defaŭlte: 1 dum aŭskultado sen -externalip) + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Akcepti konektojn el ekstere (defaŭlte: 1 se ne estas -proxy nek -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Uzi UPnP por mapi la aŭskultan pordon (defaŭlte: 1 dum aŭskultado) + + + + Use UPnP to map the listening port (default: 0) + Uzi UPnP por mapi la aŭskultan pordon (defaŭlte: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + Akcepti komandojn JSON-RPC kaj el komandlinio + + + + 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 + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + 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) + + + + Send trace/debug info to console instead of debug.log file + Sendi spurajn/sencimigajn informojn al la konzolo anstataŭ al dosiero debug.log + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + Salutnomo por konektoj JSON-RPC + + + + Password for JSON-RPC connections + Pasvorto por konektoj JSON-RPC + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + - - Received with - Ricevita kun + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - Received from - Ricevita de + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - Sent to - Sendita al + Upgrade wallet to latest format + Ĝisdatigi monujon al plej lasta formato - - Payment to yourself - Pago al vi mem + + Set key pool size to <n> (default: 100) + Agordi la grandon de la ŝlosilo-vico al <n> (defaŭlte: 100) - - Mined - Minita + + Rescan the block chain for missing wallet transactions + Reskani la blokĉenon por mankantaj monujaj transakcioj - - (n/a) - neaplikebla + + Attempt to recover private keys from a corrupt wallet.dat + Provo ripari privatajn ŝlosilojn el difektita wallet.dat - - Transaction status. Hover over this field to show number of confirmations. - Transakcia stato. Ŝvebi super tiu ĉi kampo por montri la nombron de konfirmoj. + + How many blocks to check at startup (default: 2500, 0 = all) + - - Date and time that the transaction was received. - Dato kaj horo kiam la transakcio alvenis. + + How thorough the block verification is (0-6, default: 1) + - - Type of transaction. - Tipo de transakcio. + + Imports blocks from external blk000?.dat file + - - Destination address of transaction. - Celadreso de la transakcio. + + Block creation options: + Blok-kreaj agordaĵoj: - - Amount removed from or added to balance. - Sumo elprenita de aŭ aldonita al la saldo. + + Set minimum block size in bytes (default: 0) + Agordi minimuman grandon de blokoj je bajtoj (defaŭlte: 0) - - - TransactionView - - - All - Ĉiuj + + Set maximum block size in bytes (default: 250000) + - - Today - Hodiaŭ + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - This week - Ĉi-semajne + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - This month - Ĉi-monate + Use OpenSSL (https) for JSON-RPC connections + Uzi OpenSSL (https) por konektoj JSON-RPC - Last month - Pasintmonate + Server certificate file (default: server.cert) + Dosiero de servila atestilo (defaŭlte: server.cert) - This year - Ĉi-jare + Server private key (default: server.pem) + Dosiero de servila privata ŝlosilo (defaŭlte: server.pem) - Range... - Intervalo... + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Received with - Ricevita kun + + Invalid amount for -paytxfee=<amount>: '%s' + Nevalida sumo por -paytxfee=<amount>: '%s' - - Sent to - Sendita al + + 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. - - To yourself - Al vi mem + + Invalid amount for -mininput=<amount>: '%s' + - Mined - Minita + Wallet %s resides outside data directory %s. + - Other - Aliaj + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Enter address or label to search - Tajpu adreson aŭ etikedon por serĉi + + Verifying database integrity... + - - Min amount - Minimuma sumo + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Copy address - Kopii adreson + + 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. + + + + wallet.dat corrupt, salvage failed + wallet.dat estas difektita, riparo malsukcesis - Copy label - Kopii etikedon + Unknown -socks proxy version requested: %i + Nekonata versio de -socks petita: %i - Copy amount - Kopii sumon + Unknown network specified in -onlynet: '%s' + Nekonata reto specifita en -onlynet: '%s' - Copy transaction ID - Kopii transakcian ID-on + Invalid -proxy address: '%s' + Nevalid adreso -proxy: '%s' - Edit label - Redakti etikedon + Invalid -tor address: '%s' + - Show transaction details - Montri detalojn de transakcio + Cannot resolve -bind address: '%s' + Ne eblas trovi la adreson -bind: '%s' - - Export Transaction Data - + + 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. - Comma separated file (*.csv) - Perkome disigita dosiero (*.csv) + Cannot resolve -externalip address: '%s' + Ne eblas trovi la adreson -externalip: '%s' - - Confirmed - Konfirmita + + Invalid amount for -reservebalance=<amount> + - Date - Dato + Unable to sign checkpoint, wrong checkpointkey? + + - Type - Tipo + Loading block index... + Ŝarĝante blok-indekson... - Label - Etikedo + Error loading blkindex.dat + - Address - Adreso + Loading wallet... + Ŝargado de monujo... - Amount - Sumo + Error loading wallet.dat: Wallet corrupted + Eraro dum ŝargado de wallet.dat: monujo difektita - ID - ID + 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. - - Error exporting - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Could not write to file %1. - + + Wallet needed to be rewritten: restart BitBean to complete + - - Range: - Intervalo: + + Error loading wallet.dat + Eraro dum ŝargado de wallet.dat - - to - al + + Cannot downgrade wallet + Ne eblas malpromocii monujon - - - WalletModel - - Sending... - + + Cannot initialize keypool + - - - bitcoin-core - - BitBean version - + + Cannot write default address + Ne eblas skribi defaŭltan adreson - Usage: - Uzado: + Rescanning... + Reskanado... - Send command to -server or BitBeand - + Importing blockchain data file. + - List commands - Listigi komandojn + Importing bootstrap blockchain data file. + - Get help for a command - Vidigi helpon pri iu komando + Loading addresses... + Ŝarĝante adresojn... - - Options: - Agordoj: + + Error: could not start node + - - Specify configuration file (default: BitBean.conf) - + + Done loading + Ŝargado finiĝis - Specify pid file (default: BitBeand.pid) - + Unable to bind to %s on this computer. BitBean is probably already running. + - Specify wallet file (within data directory) - Specifi monujan dosieron (ene de dosierujo por datumoj) + 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) - - Specify data directory - Specifi dosieron por datumoj + + Error: Wallet locked, unable to create transaction + - - Set database cache size in megabytes (default: 25) - Specifi grandon de datumbazo je megabajtoj (defaŭlte: 25) + + Error: Wallet unlocked for staking only, unable to create transaction. + - Set database disk log size in megabytes (default: 100) - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Error: Transaction creation failed + + + + + Sending... + + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Nevalida sumo + + + + Insufficient funds + Nesufiĉa mono + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + + + + + Warning: This version is obsolete, upgrade required! + Averto: tiu ĉi versio estas eksdata. Vi bezonas ĝisdatigon! - Maintain at most <n> connections to peers (default: 125) - Subteni maksimume <n> konektojn al samtavolanoj (defaŭlte: 125) + WARNING: syncronized checkpoint violation detected, but skipped! + - - Connect to a node to retrieve peer addresses, and disconnect - Konekti al nodo por ricevi adresojn de samtavolanoj, kaj malkonekti + + Warning: Disk space is low! + - Specify your own public address - Specifi vian propran publikan adreson + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Bind to given address. Use [host]:port notation for IPv6 - + Usage: + Uzado: - - Stake your coins to support network and gain reward (default: 1) - + List commands + Listigi komandojn - - Threshold for disconnecting misbehaving peers (default: 100) - Sojlo por malkonekti misagantajn samtavolanojn (defaŭlte: 100) + Get help for a command + Vidigi helpon pri iu komando - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Nombro da sekundoj por rifuzi rekonekton de misagantaj samtavolanoj (defaŭlte: 86400) + Options: + Agordoj: - - 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 + Specify wallet file (within data directory) + Specifi monujan dosieron (ene de dosierujo por datumoj) - - Detach block and address databases. Increases shutdown time (default: 0) - + Specify data directory + Specifi dosieron por datumoj - - 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. - + Set database cache size in megabytes (default: 25) + Specifi grandon de datumbazo je megabajtoj (defaŭlte: 25) - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + Maintain at most <n> connections to peers (default: 125) + Subteni maksimume <n> konektojn al samtavolanoj (defaŭlte: 125) - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + Connect to a node to retrieve peer addresses, and disconnect + Konekti al nodo por ricevi adresojn de samtavolanoj, kaj malkonekti - - Accept command line and JSON-RPC commands - Akcepti komandojn JSON-RPC kaj el komandlinio + Specify your own public address + Specifi vian propran publikan adreson - - Error: Transaction creation failed - + Threshold for disconnecting misbehaving peers (default: 100) + Sojlo por malkonekti misagantajn samtavolanojn (defaŭlte: 100) - - Error: Wallet locked, unable to create transaction - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Nombro da sekundoj por rifuzi rekonekton de misagantaj samtavolanoj (defaŭlte: 86400) - - Importing blockchain data file. - + 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 - - Importing bootstrap blockchain data file. - + Accept command line and JSON-RPC commands + Akcepti komandojn JSON-RPC kaj el komandlinio - Run in the background as a daemon and accept commands - Ruli fone kiel demono kaj akcepti komandojn + Ruli fone kiel demono kaj akcepti komandojn - Use the test network - Uzi la test-reton + 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) + Akcepti konektojn el ekstere (defaŭlte: 1 se ne estas -proxy nek -connect) - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + Eraro okazis dum estigo de RPC-pordo %u por aŭskulti per IPv6; retrodefaŭltas al IPv4: %s - 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 BitBean will not work properly. - + Averto: -paytxfee estas agordita per tre alta valoro! Tio estas la krompago, kion vi pagos se vi sendas la transakcion. - 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. + 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. + 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. - Attempt to recover private keys from a corrupt wallet.dat - Provo ripari privatajn ŝlosilojn el difektita wallet.dat + Provo ripari privatajn ŝlosilojn el difektita wallet.dat - Block creation options: - Blok-kreaj agordaĵoj: + Blok-kreaj agordaĵoj: - Connect only to the specified node(s) - Konekti nur al specifita(j) nodo(j) + Konekti nur al specifita(j) nodo(j) - Discover own IP address (default: 1 when listening and no -externalip) - Malkovri la propran IP-adreson (defaŭlte: 1 dum aŭskultado sen -externalip) + Malkovri la propran IP-adreson (defaŭlte: 1 dum aŭskultado sen -externalip) - 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. + Ne sukcesis aŭskulti ajnan pordon. Uzu -listen=0 se tion vi volas. - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Maksimuma po riceva bufro por konektoj, <n>*1000 bajtoj (defaŭlte: 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) + Maksimuma po senda bufro por konektoj, <n>*1000 bajtoj (defaŭlte: 1000) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Konekti nur la nodoj en la reto <net> (IPv4, IPv6 aŭ Tor) - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - + Konekti nur la nodoj en la reto <net> (IPv4, IPv6 aŭ Tor) - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL-agordaĵoj: (vidu la vikio de Bitmono por instrukcioj pri agordado de SSL) - - - - Select the version of socks proxy to use (4-5, default: 5) - + SSL-agordaĵoj: (vidu la vikio de Bitmono por instrukcioj pri agordado de SSL) - Send trace/debug info to console instead of debug.log file - Sendi spurajn/sencimigajn informojn al la konzolo anstataŭ al dosiero debug.log + Sendi spurajn/sencimigajn informojn al la konzolo anstataŭ al dosiero debug.log - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - Set minimum block size in bytes (default: 0) - Agordi minimuman grandon de blokoj je bajtoj (defaŭlte: 0) + Agordi minimuman grandon de blokoj je bajtoj (defaŭlte: 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) + Malpligrandigi la sencimigan protokol-dosieron kiam kliento lanĉiĝas (defaŭlte: 1 kiam mankas -debug) - Specify connection timeout in milliseconds (default: 5000) - Specifi konektan tempolimon je milisekundoj (defaŭlte: 5000) + Specifi konektan tempolimon je milisekundoj (defaŭlte: 5000) - - Unable to sign checkpoint, wrong checkpointkey? - - - - - Use UPnP to map the listening port (default: 0) - Uzi UPnP por mapi la aŭskultan pordon (defaŭlte: 0) + Uzi UPnP por mapi la aŭskultan pordon (defaŭlte: 0) - Use UPnP to map the listening port (default: 1 when listening) - Uzi UPnP por mapi la aŭskultan pordon (defaŭlte: 1 dum aŭskultado) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - + Uzi UPnP por mapi la aŭskultan pordon (defaŭlte: 1 dum aŭskultado) - Username for JSON-RPC connections - Salutnomo por konektoj JSON-RPC - - - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - + Salutnomo por konektoj JSON-RPC - Warning: This version is obsolete, upgrade required! - Averto: tiu ĉi versio estas eksdata. Vi bezonas ĝisdatigon! + Averto: tiu ĉi versio estas eksdata. Vi bezonas ĝisdatigon! - wallet.dat corrupt, salvage failed - wallet.dat estas difektita, riparo malsukcesis + wallet.dat estas difektita, riparo malsukcesis - Password for JSON-RPC connections - Pasvorto por konektoj JSON-RPC - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + Pasvorto por konektoj JSON-RPC - Allow JSON-RPC connections from specified IP address - Permesi konektojn JSON-RPC de specifa IP-adreso + 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) + 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) + Plenumi komandon kiam plej bona bloko ŝanĝiĝas (%s en cmd anstataŭiĝas per bloka haketaĵo) - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Plenumi komandon kiam monuja transakcio ŝanĝiĝas (%s en cmd anstataŭiĝas per TxID) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Plenumi komandon kiam monuja transakcio ŝanĝiĝas (%s en cmd anstataŭiĝas per TxID) - Upgrade wallet to latest format - Ĝisdatigi monujon al plej lasta formato + Ĝ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) + 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - + Reskani la blokĉenon por mankantaj monujaj transakcioj - Use OpenSSL (https) for JSON-RPC connections - Uzi OpenSSL (https) por konektoj JSON-RPC + Uzi OpenSSL (https) por konektoj JSON-RPC - Server certificate file (default: server.cert) - Dosiero de servila atestilo (defaŭlte: 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - + Dosiero de servila privata ŝlosilo (defaŭlte: server.pem) - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - This help message - Tiu ĉi helpmesaĝo - - - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - + 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) - - - - Connect through socks proxy - + 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 + Permesi DNS-elserĉojn por -addnote, -seednote kaj -connect - Loading addresses... - Ŝarĝante adresojn... - - - - Error loading blkindex.dat - + Ŝ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 BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + Eraro dum ŝargado de wallet.dat: monujo difektita - Error loading wallet.dat - Eraro dum ŝargado de wallet.dat + Eraro dum ŝargado de wallet.dat - Invalid -proxy address: '%s' - Nevalid adreso -proxy: '%s' + Nevalid adreso -proxy: '%s' - Unknown network specified in -onlynet: '%s' - Nekonata reto specifita en -onlynet: '%s' + Nekonata reto specifita en -onlynet: '%s' - Unknown -socks proxy version requested: %i - Nekonata versio de -socks petita: %i + Nekonata versio de -socks petita: %i - Cannot resolve -bind address: '%s' - Ne eblas trovi la adreson -bind: '%s' + Ne eblas trovi la adreson -bind: '%s' - Cannot resolve -externalip address: '%s' - Ne eblas trovi la adreson -externalip: '%s' + Ne eblas trovi la adreson -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Nevalida sumo por -paytxfee=<amount>: '%s' - - - - Error: could not start node - - - - - Sending... - + Nevalida sumo por -paytxfee=<amount>: '%s' - Invalid amount - Nevalida sumo + Nevalida sumo - Insufficient funds - Nesufiĉa mono + Nesufiĉa mono - Loading block index... - Ŝarĝante blok-indekson... + Ŝ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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + Aldoni nodon por alkonekti kaj provi daŭrigi la malferman konekton - Loading wallet... - Ŝargado de monujo... + Ŝargado de monujo... - Cannot downgrade wallet - Ne eblas malpromocii monujon - - - - Cannot initialize keypool - + Ne eblas malpromocii monujon - Cannot write default address - Ne eblas skribi defaŭltan adreson + Ne eblas skribi defaŭltan adreson - Rescanning... - Reskanado... + Reskanado... - Done loading - Ŝargado finiĝis + Ŝargado finiĝis - To use the %s option - Por uzi la agordon %s + Por uzi la agordon %s - Error - Eraro + 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. - Vi devas agordi rpcpassword=<password> en la konfigura dosiero: + Vi devas agordi rpcpassword=<password> en la konfigura dosiero: %s 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/bitbean_es.qm b/src/qt/locale/bitbean_es.qm new file mode 100644 index 0000000..da7ffa1 Binary files /dev/null and b/src/qt/locale/bitbean_es.qm differ diff --git a/src/qt/locale/bitbean_es.ts b/src/qt/locale/bitbean_es.ts new file mode 100644 index 0000000..99b4caf --- /dev/null +++ b/src/qt/locale/bitbean_es.ts @@ -0,0 +1,4927 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + Acerca de BitBean + + + + <b>BitBean</b> version + <b>BitBean</b> versión + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +Este es un software experimental. + +Distribuido bajo la licencia MIT/X11, vea el archivo adjunto +COPYING o http://www.opensource.org/licenses/mit-license.php. + +Este producto incluye software desarrollado por OpenSSL Project para su uso en +el OpenSSL Toolkit (http://www.openssl.org/) y software criptográfico escrito por +Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard. + + + + AddressBookPage + + + Address Book + Libreta de Direcciones + + + + Double-click to edit address or label + Haga doble clic para editar una etiqueta o dirección + + + + Create a new address + Crear una nueva dirección + + + + Copy the currently selected address to the system clipboard + Copiar la dirección seleccionada al portapapeles del sistema + + + + &New Address + &Nueva Dirección + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + Estas son las direcciones de BitBean para recibir pagos. Es posible que desee dar una diferente a cada remitente para que pueda realizar un seguimiento de quien te está pagando. + + + + &Copy Address + &Copiar dirección + + + + Show &QR Code + Enseñar &QR Code + + + + Sign a message to prove you own a BitBean address + Firmar un mensaje para demostrar que es dueño de su dirección de BitBean + + + + Sign &Message + Firmar &Mensaje + + + + Delete the currently selected address from the list + Borrar de la lista la dirección seleccionada + + + + Verify a message to ensure it was signed with a specified BitBean address + Verifique el mensaje para asegurarse que fue firmado por una dirección específica de BitBean + + + + &Verify Message + &Verifique Mensaje + + + + &Delete + &Eliminar + + + + Copy &Label + Copiar &etiqueta + + + + &Edit + &Editar + + + + Export Address Book Data + Exportar Data de Libro de Direcciones + + + + Comma separated file (*.csv) + Archivos de columnas separadas por coma (*.csv) + + + + Error exporting + Error exportando + + + + Could not write to file %1. + No se pudo escribir en el archivo %1 + + + + AddressTableModel + + + Label + Etiqueta + + + + Address + Dirección + + + + (no label) + (sin etiqueta) + + + + 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 + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Sirve para desactivar SendMoney cuando la cuenta del Sistema Operativo está comprometida. No ofrece seguridad real. + + + + For staking only + Para "Staking" solamente + + + + 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 COINS</b>! + Advertencia: Si encripta su cartera y pierde su frase de contraseña, puede <b>PERDER TODAS SUS MONEDAS</ b>! + + + + Are you sure you wish to encrypt your wallet? + ¿Seguro que desea cifrar su monedero? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + 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 + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + BitBean cerrará para terminar el proceso de encriptación. Recuerde que la encriptación de su monedero no puede proteger completamente que sus monedas sean robadas por malware infectando su computadora. + + + + + + + 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. + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + Cantidad: + + + + Bytes: + Bytes: + + + + Amount: + + + + + Priority: + Prioridad: + + + + Fee: + Tasa: + + + + Low Output: + Envío pequeño: + + + + After Fee: + Después de tasas: + + + + Change: + Cambio: + + + + (un)select all + (des)marcar todos + + + + Tree mode + Modo árbol + + + + List mode + Modo lista + + + + Amount + + + + + Label + Etiqueta + + + + 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 + + + + 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 + + + + + highest + lo más alto + + + + high + alto + + + + medium-high + medio-alto + + + + medium + medio + + + + low-medium + bajo-medio + + + + low + bajo + + + + lowest + lo más bajo + + + + DUST + DUST + + + + yes + si + + + + no + no + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Esta etiqueta se convierte en rojo, si el tamaño de la transacción es mayor que 10000 bytes. + +Esto significa que se requiere una cuota de al menos el %1 por kb. + +Puede variar + / - 1 Byte por entrada. + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Las transacciones con mayor prioridad son más probables en entrar hacia un bloque. + +Esta etiqueta se convierte en rojo, si la prioridad es menor que "medium". + +Esto significa que se requiere una cuota de al menos el %1 por kb. + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Esta etiqueta se convierte en rojo, si cualquier recipiente recibe una cantidad menor que %1. + +Esto significa que se requiere una cuota de al menos %2. + +Las cantidades inferiores a 0.546 veces la cuota mínima del relé se muestran en forma de DUST. + + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Esta etiqueta se convierte en rojo, si el cambio es menor que %1. + +Esto significa que se requiere una cuota de al menos %2. + + + + + (no label) + (sin etiqueta) + + + + change from %1 (%2) + Enviar desde %1 (%2) + + + + (change) + (cambio) + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Se ha producido un error fatal. BitBean ya no puede continuar de forma segura y cerrará. + + + + BitBean + BitBean + + + + Vault + + + + + &Overview + &Vista general + + + + Show general overview of wallet + Mostrar vista general del monedero + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Mostrar la lista de direcciones para recibir pagos + + + + &Transactions + &Transacciones + + + + Browse transaction history + Examinar el historial de transacciones + + + + &Address Book + &Libreta de Direcciones + + + + Edit the list of stored addresses and labels + Editar la lista de direcciones y etiquetas almacenadas + + + + E&xit + &Salir + + + + Quit application + Salir de la aplicación + + + + &About BitBean + Acerca de BitBean + + + + Show information about BitBean + Mostrar información sobre BitBean + + + + About &Qt + Acerca de &Qt + + + + Show information about Qt + Mostrar información acerca de Qt + + + + &Options... + &Opciones... + + + + Modify configuration options for BitBean + Modificar las opciones de configuración para BitBean + + + + &Show / Hide + &Mostrar / Ocultar + + + + &Encrypt Wallet... + &Cifrar monedero… + + + + Encrypt or decrypt wallet + Cifrar o descifrar el monedero + + + + &Backup Wallet... + &Guardar copia de seguridad del monedero... + + + + Backup wallet to another location + Copia de seguridad del monedero en otra ubicación + + + + &Change Passphrase... + &Cambiar la contraseña… + + + + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para el cifrado del monedero + + + + &Unlock Wallet... + &Desbloquear Monedero... + + + + Unlock wallet + + + + + &Lock Wallet + &Bloquear monedero + + + + Lock wallet + Bloquear monedero + + + + Sign &message... + Firmar &mensaje... + + + + &Verify message... + &Verificar mensaje... + + + + &Export... + &Exportar... + + + + Export the data in the current tab to a file + Exportar los datos en la ficha actual a un archivo + + + + &Debug window + Ventana de &depuración + + + + Open debugging and diagnostic console + Abrir la consola de depuración y diagnóstico + + + + &File + &Archivo + + + + &Settings + &Configuración + + + + &Help + A&yuda + + + + Tabs toolbar + Barra de pestañas + + + + Actions toolbar + Barra de herramientas de acciones + + + + + [testnet] + [testnet] + + + + + BitBean client + Cliente BitBean + + + + %n active connection(s) to BitBean network + + %n conexión activa a la red BitBean + %n conexiones activas a la red BitBean + + + + + Synchronizing with network... + Sincronizando con la red… + + + + ~%n block(s) remaining + + ~%n bloque restante + ~%n bloques restantes + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Descargado %1 de %2 bloques de historial de transacciones (%3% completado). + + + + Downloaded %1 blocks of transaction history. + Descargado %1 bloques de historial de transacciones. + + + + %n second(s) ago + + hace %n segundo + hace %n segundos + + + + + %n minute(s) ago + + hace %n minuto + hace %n minutos + + + + + %n hour(s) ago + + hace %n hora + hace %n horas + + + + + %n day(s) ago + + hace %n dia + hace %n dias + + + + + Up to date + Actualizado + + + + Catching up... + Actualizando... + + + + Last received block was generated %1. + Último bloque recibido se generó en %1. + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Esta transacción se encuentra sobre el límite de tamaño. Usted todavía puede enviarlo a un costo de %1, lo que va a los nodos que procesan sus transacciones y ayuda a apoyar la red. ¿Quieres pagar la cuota? + + + + Confirm transaction fee + Confirme tarifa de transacción + + + + Sent transaction + Transacción enviada + + + + Incoming transaction + Transacción entrante + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Fecha: %1 +Cantidad: %2 +Tipo: %3 +Dirección: %4 + + + + + + URI handling + Manejar URI + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI no se puede analizar! Esto puede ser causado por una dirección de BitBean no válida o parámetros de URI malformados. + + + + 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> + + + + Backup Wallet + Copia de Seguridad de Monedero + + + + Wallet Data (*.dat) + Data de Monedero (*.dat) + + + + Backup Failed + Copia de Seguridad a fracasado + + + + There was an error trying to save the wallet data to the new location. + Hubo un error al tratar de salvar los datos de su monedero a la nueva ubicación. + + + + %n second(s) + + %n segundo + %n segundos + + + + + %n minute(s) + + %n minuto + %n minutos + + + + + %n hour(s) + + %n hora + %n horas + + + + + %n day(s) + + %n día + %n días + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Staking.<br>Su contribución es %1<br>Contribución de la red es %2<br>Tiempo esperado para ganar la recompensa es %3 + + + + Not staking because wallet is locked + No esta "Staking" porque monedera está bloqueada + + + + Not staking because wallet is offline + No esta "Staking" porque monedera está desconectada + + + + Not staking because wallet is syncing + No esta "Staking" porque monedera está sincronizando + + + + Not staking because you don't have mature beans + + + + + Not staking + No estás "Staking" + + + + BitcoinGUI + + Sign &message... + Firmar &mensaje... + + + Synchronizing with network... + Sincronizando con la red… + + + &Overview + &Vista general + + + Show general overview of wallet + Mostrar vista general del monedero + + + &Transactions + &Transacciones + + + Browse transaction history + Examinar el historial de transacciones + + + &Address Book + &Libreta de Direcciones + + + Edit the list of stored addresses and labels + Editar la lista de direcciones y etiquetas almacenadas + + + &Receive coins + &Recibir monedas + + + Show the list of addresses for receiving payments + Mostrar la lista de direcciones para recibir pagos + + + &Send coins + &Enviar monedas + + + E&xit + &Salir + + + Quit application + Salir de la aplicación + + + Show information about BitBean + Mostrar información sobre BitBean + + + About &Qt + Acerca de &Qt + + + Show information about Qt + Mostrar información acerca de Qt + + + &Options... + &Opciones... + + + &Encrypt Wallet... + &Cifrar monedero… + + + &Backup Wallet... + &Guardar copia de seguridad del monedero... + + + &Change Passphrase... + &Cambiar la contraseña… + + + ~%n block(s) remaining + + ~%n bloque restante + ~%n bloques restantes + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Descargado %1 de %2 bloques de historial de transacciones (%3% completado). + + + &Export... + &Exportar... + + + Send coins to a BitBean address + Enviar monedas a una dirección de BitBean + + + Modify configuration options for BitBean + Modificar las opciones de configuración para BitBean + + + Export the data in the current tab to a file + Exportar los datos en la ficha actual a un archivo + + + Encrypt or decrypt wallet + Cifrar o descifrar el monedero + + + 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... + + + BitBean + BitBean + + + Wallet + Monedero + + + &About BitBean + Acerca de BitBean + + + &Show / Hide + &Mostrar / Ocultar + + + Unlock wallet + Desbloquear el monedero + + + &Lock Wallet + &Bloquear monedero + + + Lock wallet + Bloquear monedero + + + &File + &Archivo + + + &Settings + &Configuración + + + &Help + A&yuda + + + Tabs toolbar + Barra de pestañas + + + Actions toolbar + Barra de herramientas de acciones + + + [testnet] + [testnet] + + + BitBean client + Cliente BitBean + + + %n active connection(s) to BitBean network + + %n conexión activa a la red BitBean + %n conexiones activas a la red BitBean + + + + Downloaded %1 blocks of transaction history. + Descargado %1 bloques de historial de transacciones. + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Staking.<br>Su contribución es %1<br>Contribución de la red es %2<br>Tiempo esperado para ganar la recompensa es %3 + + + Not staking because wallet is locked + No esta "Staking" porque monedera está bloqueada + + + Not staking because wallet is offline + No esta "Staking" porque monedera está desconectada + + + Not staking because wallet is syncing + No esta "Staking" porque monedera está sincronizando + + + Not staking because you don't have mature coins + No esta "Staking" ya que no tiene monedas maduras + + + %n second(s) ago + + hace %n segundo + hace %n segundos + + + + &Unlock Wallet... + &Desbloquear Monedero... + + + %n minute(s) ago + + hace %n minuto + hace %n minutos + + + + %n hour(s) ago + + hace %n hora + hace %n horas + + + + %n day(s) ago + + hace %n dia + hace %n dias + + + + Up to date + Actualizado + + + Catching up... + Actualizando... + + + Last received block was generated %1. + Último bloque recibido se generó en %1. + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Esta transacción se encuentra sobre el límite de tamaño. Usted todavía puede enviarlo a un costo de %1, lo que va a los nodos que procesan sus transacciones y ayuda a apoyar la red. ¿Quieres pagar la cuota? + + + Confirm transaction fee + Confirme tarifa de transacción + + + Sent transaction + Transacción enviada + + + Incoming transaction + Transacción entrante + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Fecha: %1 +Cantidad: %2 +Tipo: %3 +Dirección: %4 + + + + URI handling + Manejar URI + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI no se puede analizar! Esto puede ser causado por una dirección de BitBean no válida o parámetros de URI malformados. + + + 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> + + + Backup Wallet + Copia de Seguridad de Monedero + + + Wallet Data (*.dat) + Data de Monedero (*.dat) + + + Backup Failed + Copia de Seguridad a fracasado + + + There was an error trying to save the wallet data to the new location. + Hubo un error al tratar de salvar los datos de su monedero a la nueva ubicación. + + + %n second(s) + + %n segundo + %n segundos + + + + %n minute(s) + + %n minuto + %n minutos + + + + %n hour(s) + + %n hora + %n horas + + + + %n day(s) + + %n día + %n días + + + + Not staking + No estás "Staking" + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Se ha producido un error fatal. BitBean ya no puede continuar de forma segura y cerrará. + + + + ClientModel + + + Network Alert + Alerta de red + + + + CoinControlDialog + + Coin Control + Control de Moneda + + + Quantity: + Cantidad: + + + Bytes: + Bytes: + + + Amount: + Cantidad: + + + Priority: + Prioridad: + + + Fee: + Tasa: + + + Low Output: + Envío pequeño: + + + no + no + + + After Fee: + Después de tasas: + + + Change: + Cambio: + + + (un)select all + (des)marcar todos + + + Tree mode + Modo árbol + + + List mode + Modo lista + + + Amount + Cuantía + + + Label + Etiqueta + + + 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 + + + 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 + + + high + alto + + + medium-high + medio-alto + + + medium + medio + + + low-medium + bajo-medio + + + low + bajo + + + lowest + lo más bajo + + + DUST + DUST + + + yes + si + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Esta etiqueta se convierte en rojo, si el tamaño de la transacción es mayor que 10000 bytes. + +Esto significa que se requiere una cuota de al menos el %1 por kb. + +Puede variar + / - 1 Byte por entrada. + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Las transacciones con mayor prioridad son más probables en entrar hacia un bloque. + +Esta etiqueta se convierte en rojo, si la prioridad es menor que "medium". + +Esto significa que se requiere una cuota de al menos el %1 por kb. + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Esta etiqueta se convierte en rojo, si cualquier recipiente recibe una cantidad menor que %1. + +Esto significa que se requiere una cuota de al menos %2. + +Las cantidades inferiores a 0.546 veces la cuota mínima del relé se muestran en forma de DUST. + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Esta etiqueta se convierte en rojo, si el cambio es menor que %1. + +Esto significa que se requiere una cuota de al menos %2. + + + (no label) + (sin etiqueta) + + + change from %1 (%2) + Enviar desde %1 (%2) + + + (change) + (cambio) + + + + EditAddressDialog + + + Edit Address + Editar Dirección + + + + &Label + &Etiqueta + + + + The label associated with this address book entry + La etiqueta asociada con esta entrada de la libreta de direcciones + + + + &Address + &Dirección + + + + The address associated with this address book entry. This can only be modified for sending addresses. + La dirección asociada con esta entrada de la libreta de direcciones. Esto sólo puede ser modificada para direcciones de envío. + + + + 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 BitBean address. + La dirección introducida "%1" no es una dirección válida de BitBean. + + + + Could not unlock wallet. + No se pudo desbloquear el monedero. + + + + New key generation failed. + Ha fallado la generación de la nueva clave. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + version + Versión + + + + Usage: + Uso: + + + + command-line options + opciones de líneas de comandos + + + + UI options + opciones del interfaz de usuario + + + + Set language, for example "de_DE" (default: system locale) + Defina el idioma, por ejemplo "de_DE" (predeterminado: región del sistema) + + + + Start minimized + Iniciar minimizado + + + + Show splash screen on startup (default: 1) + Mostrar pantalla de bienvenida al iniciar (predeterminado: 1) + + + + OptionsDialog + + + Options + Opciones + + + + &Main + &Principal + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. + Tarifa de transacción opcional por kB que ayuda a asegurarse de que sus transacciones se procesan rápidamente. La mayoría de las transacciones son 1 kB. Cuota de 0.01 recomendada. + + + + Pay transaction &fee + Comisión de &transacciones + + + Reserved amount does not participate in staking and is therefore spendable at any time. + Cantidad reservada no participa en el "Staking" y por lo tanto se puede gastar en cualquier momento. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + Reserva + + + + Automatically start BitBean after logging in to the system. + Iniciar BitBean automáticamente después de entrar en el sistema. + + + + &Start BitBean on system login + &Iniciar BitBean al inicio del sistema + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + Separe el bloque y las bases de datos de direcciones al apagar el equipo. Esto significa que se puede mover a otro directorio de datos, pero desacelera el apagado. El monedero siempre está separado. + + + + &Detach databases at shutdown + &Separe la bases de datos al apagar el equipo + + + + &Network + &Red + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + Abrir automáticamente el puerto de cliente BitBean en el router. Esto sólo funciona cuando el router es compatible con UPnP y está habilitado. + + + + Map port using &UPnP + Mapear el puerto usando &UPnP + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + Conéctese a la red de BitBean a través de un SOCKS proxy (e.g. cuando se conecta a través de Tor) + + + + &Connect through SOCKS proxy: + &Conéctese a través de un SOCKS proxy + + + + Proxy &IP: + Dirección &IP del proxy: + + + + IP address of the proxy (e.g. 127.0.0.1) + Dirección IP del proxy (e.g. 127.0.0.1) + + + + &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 BitBean. + El idioma del interfaz de usuario se puede configurar aquí. Esta configuración se aplicará después de reiniciar BitBean. + + + + &Unit to show amounts in: + Mostrar las cantidades en la &unidad: + + + + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + 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 bitcoins. + + + + Whether to show BitBean addresses in the transaction list or not. + Tanto para mostrar direcciones de BitBean en la lista de transacciones o no. + + + + &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 moneda y Coin Control (expertos solamente!) + + + + &OK + &Aceptar + + + + &Cancel + &Cancelar + + + + &Apply + &Aplicar + + + + default + predeterminado + + + + + Warning + Advertencia + + + + + This setting will take effect after restarting BitBean. + Esta configuración se aplicará después de reiniciar BitBean. + + + + The supplied proxy address is invalid. + La dirección proxy indicada es inválida. + + + + OverviewPage + + + Form + Desde + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + La información mostrada puede estar fuera de fecha. Su monedera se sincroniza automáticamente con la red BitBean después de que se establece una conexión, pero este proceso no se ha completado todavía. + + + Stake: + Stake: + + + + Unconfirmed: + Sin confirmar: + + + Wallet + Monedero + + + + Spendable: + Disponible: + + + + Your current spendable balance + Su actual balance disponible + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + No disponible: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + 0 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + 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> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Total de transacciones que aún no se han confirmado, y aún no cuentan para el balance actual + + + Total of coins that was staked, and do not yet count toward the current balance + Total de las monedas que fueron "Staked", y aún no cuentan para el balance actual + + + + + out of sync + desincronizado + + + + QRCodeDialog + + + QR Code Dialog + Código Diálogo QR + + + + Request Payment + Solicitar Pago + + + + Amount: + Cantidad: + + + + Label: + Etiqueta: + + + + Message: + Mensaje: + + + + &Save As... + &Guardar como.... + + + + Error encoding URI into QR Code. + Error codificando URI en código QR​​. + + + + The entered amount is invalid, please check. + La cantidad introducida es inválida, compruebe por favor. + + + + Resulting URI too long, try to reduce the text for label / message. + La URI es demasiado larga, pruebe a acortar el texto para la etiqueta / mensaje + + + + Save QR Code + Guardar código QR + + + + PNG Images (*.png) + Imagenes PNG (*.png) + + + + RPCConsole + + + Client name + Nombre del cliente + + + + + + + + + + + + + N/A + N/D + + + + Client version + Versión del cliente + + + + &Information + &Información + + + + Using OpenSSL version + Utilizando la versión OpenSSL + + + + Startup time + Hora de inicio + + + + Network + Red + + + + Number of connections + Número de conexiones + + + + On testnet + En testnet + + + + 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 + + + + Command-line options + Opciones de línea de comandos + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + Mostrar el mensaje de ayuda de BitBean-Qt para obtener una lista con las posibles opciones de línea de comandos para BitBean. + + + + &Show + &Mostrar + + + + &Console + &Consola + + + + Build date + Fecha de compilación + + + + BitBean - Debug window + BitBean - Ventana de depuración + + + + BitBean Core + Núcleo BitBean + + + + Debug log file + Archivo de registro de depuración + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + Abre el archivo de registro de BitBean del directorio de datos actual. Esto puede tardar algunos segundos para archivos grandes. + + + + Clear console + Borrar consola + + + + Welcome to the BitBean RPC console. + Bienvenido a la consola RPC de BitBean + + + + 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 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. + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + Entradas... + + + + automatically selected + Seleccionado automáticamente + + + + Insufficient funds! + Fondos insuficientes! + + + + Quantity: + Cantidad: + + + + + 0 + 0 + + + + Bytes: + Bytes: + + + + Amount: + + + + + + + + 0.00 BC + 123.456 BC {0.00 ?} + + + + Priority: + Prioridad: + + + + medium + medio + + + + Fee: + Tasa: + + + + Low Output: + Envío pequeño: + + + + no + no + + + + After Fee: + Después de tasas: + + + + Change + Cambio + + + + custom change address + dirección de cambio personalizada + + + + Send to multiple recipients at once + Enviar a múltiples destinatarios de una vez + + + + Add &Recipient + Añadir &destinatario + + + + Remove all transaction fields + Elimina todos los campos de transacciones + + + + Clear &All + Vaciar &todo + + + + Balance: + Saldo: + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + Confirmar el envío + + + + S&end + &Enviar + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + 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 + + + + + <b>%1</b> to %2 (%3) + <b>%1</b> para %2 (%3) + + + + Confirm send beans + + + + + Are you sure you want to send %1? + Estás seguro que quieres enviar %1? + + + + and + y + + + + 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. + + + + Error: Transaction creation failed. + Error: Falla al crear la transacción. + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + ADVERTENCIA: Dirección BitBean inválida + + + + (no label) + (sin etiqueta) + + + + WARNING: unknown change address + ADVERTENCIA: dirección de cambio desconocida + + + + SendBeansEntry + + + Form + + + + + A&mount: + Ca&ntidad: + + + + Pay &To: + &Pagar a: + + + + + 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: + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + La dirección a la que se quiere enviar el pago (p.ej. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + Elije dirección de la libreta de direcciones + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Pegar dirección desde portapapeles + + + + Alt+P + Alt+P + + + + Remove this recipient + Elimina este beneficiario + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Send Coins + Enviar bitcoins + + + Coin Control Features + Características de Coin Control + + + Inputs... + Entradas... + + + automatically selected + Seleccionado automáticamente + + + Insufficient funds! + Fondos insuficientes! + + + Quantity: + Cantidad: + + + 0 + 0 + + + Bytes: + Bytes: + + + Amount: + Cuantía: + + + 0.00 BC + 123.456 BC {0.00 ?} + + + Priority: + Prioridad: + + + medium + medio + + + Fee: + Tasa: + + + Low Output: + Envío pequeño: + + + no + no + + + After Fee: + Después de tasas: + + + Change + Cambio + + + custom change address + dirección de cambio personalizada + + + Send to multiple recipients at once + Enviar a múltiples destinatarios de una vez + + + Add &Recipient + Añadir &destinatario + + + Remove all transaction fields + Elimina todos los campos de transacciones + + + Clear &All + Vaciar &todo + + + Balance: + Saldo: + + + 123.456 BC + 123.456 BC + + + Confirm the send action + Confirmar el envío + + + S&end + &Enviar + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Introduce una dirección BitBean (p.ej. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + 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 + + + <b>%1</b> to %2 (%3) + <b>%1</b> para %2 (%3) + + + Confirm send coins + Confirmar el envío de bitcoins + + + Are you sure you want to send %1? + Estás seguro que quieres enviar %1? + + + and + y + + + 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. + + + Error: Transaction creation failed. + Error: Falla al crear la transacción. + + + 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ón ha sido rechazada. Esto puede ocurrir si algunas de sus monedas en el monedero ya se gastaron, por ejemplo, si se usa una copia del wallet.dat y se gastaron las monedas de la copia pero no se han marcado como gastadas aquí. + + + WARNING: Invalid BitBean address + ADVERTENCIA: Dirección BitBean inválida + + + (no label) + (sin etiqueta) + + + WARNING: unknown change address + ADVERTENCIA: dirección de cambio desconocida + + + + SendCoinsEntry + + Form + Formulario + + + A&mount: + Ca&ntidad: + + + Pay &To: + &Pagar a: + + + 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: + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + La dirección a la que se quiere enviar el pago (p.ej. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + Elije dirección de la libreta de direcciones + + + Alt+A + Alt+A + + + Paste address from clipboard + Pegar dirección desde portapapeles + + + Alt+P + Alt+P + + + Remove this recipient + Elimina este beneficiario + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Introduce una dirección BitBean (p.ej. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + La dirección a firmar con un mensaje (p.ej. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + Elije una dirección de la libreta de direcciones + + + + + 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í + + + + Copy the current signature to the system clipboard + Copiar la firma actual al portapapeles del sistema + + + + Sign the message to prove you own this BitBean address + Firma el mensaje para demostrar que posees esta dirección BitBean. + + + + Reset all sign message fields + Vaciar todos los campos de la firma de mensaje + + + + + Clear &All + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + La dirección firmada con un mensaje (p.ej. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + Verifique el mensaje para asegurarse de que se firmó con la dirección BitBean especificada. + + + + Reset all verify message fields + Vaciar todos los campos de la verificación de mensaje + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Introduce una dirección BitBean (p.ej 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + Haga clic en "Firmar mensaje" para generar la firma + + + + Enter BitBean signature + Introduce la firma BitBean + + + + + 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. + + + + TransactionDesc + + + Open until %1 + Abierto hasta %1 + + + + Open for %n block(s) + + Abierto para %n bloque + Abierto para %n bloques + + + + + 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ás + disponible 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 + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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 510 bloques antes de que puedan gastarse. Cuando generaste este bloque, este fue transmitido a la red para ser añadido a la cadena de bloques. Si falla al introducirse en la cadena, su estado cambiará a "no aceptado" y no se podrá gastar. Esto ocasionalmente puede ocurrir si otro nodo genera un bloque a unos segundos que el 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 + + + + unknown + desconocido + + + + 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 + + + + TransactionTableModel + + + Date + Fecha + + + + Type + Tipo + + + + Address + Dirección + + + + Amount + Cantidad + + + + Open until %1 + Abierto hasta %1 + + + + Confirmed (%1 confirmations) + Confirmado (%1 confirmaciones) + + + + Open for %n more block(s) + + Abrir para %n bloque más + Abrir para %n bloques más + + + + + Offline + Sin conexión + + + + Unconfirmed + Sin confirmar + + + + Confirming (%1 of %2 recommended confirmations) + Confirmando (%1 de %2 confirmaciones recomendadas) + + + + Conflicted + En conflicto + + + + Immature (%1 confirmations, will be available after %2) + No vencidos (%1 confirmaciones. Estarán disponibles al cabo de %2) + + + + 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 + + + + Received with + Recibido con + + + + Received from + Recibidos de + + + + Sent to + Enviado a + + + + Payment to yourself + Pago propio + + + + SPROUT + + + + 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. + + + + 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 Data + Exportar datos de transacción + + + + 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 + + + + Error exporting + Error al exportar + + + + Could not write to file %1. + No se puede escribir en el archivo %1. + + + + Range: + Rango: + + + + to + para + + + + WalletModel + + + Sending... + Enviando... + + + + bitbean-core + + + To use the %s option + Para utilizar la opción %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, debe establecer un rpcpassword en el fichero de configuración: +%s +Se recomienda utilizar la siguiente contraseña aleatoria: +rpcuser=BitBeanrpc +rpcpassword=%s +(no necesita recordar este password) +El nombre de usuario y contraseña no debe ser el mismo. +Si no existe el archivo, créelo con permisos de sólo lectura para el dueño. +También se recomienda establecer alertnotify para ser notificado de los problemas; +por ejemplo: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + Error + Error + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Tiene que establecer rpcpassword=<contraseña> en el fichero de configuración: ⏎ +%s ⏎ +Si el archivo no existe, créelo con permiso de lectura solamente del propietario. + + + + BitBean version + versión BitBean + + + + Usage: + Uso: + + + + Send command to -server or BitBeand + Envía un comando a -server o BitBeand + + + + List commands + Muestra comandos + + + + + Get help for a command + Recibir ayuda para un comando + + + + + BitBean + BitBean + + + + Options: + Opciones: + + + + + This help message + Este mensaje de ayuda + + + + + Specify configuration file (default: BitBean.conf) + Especifica un archivo de configuración (por defecto: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + Especifica un archivo pid (por defecto: BitBeand.pid) + + + + Specify data directory + Especificar directorio para los datos + + + + Specify wallet file (within data directory) + Especificar archivo de monedero (dentro del directorio de datos) + + + + Set database cache size in megabytes (default: 25) + Establecer el tamaño de caché de la base de datos en megabytes (predeterminado: 25) + + + + Set database disk log size in megabytes (default: 100) + Ajusta el tamaño de la base de datos del registro en megabytes (por defecto: 100) + + + + Specify connection timeout in milliseconds (default: 5000) + Especificar el tiempo máximo de conexión en milisegundos (predeterminado: 5000) + + + + Connect through socks proxy + Conecte a través del socks proxy + + + + Select the version of socks proxy to use (4-5, default: 5) + Selecciona la versión de socks proxy a usar (4-5, por defecto: 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + Usar proxy para alcanzar a ver los servicios ocultos (por defecto: los mismos que -proxy) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Permitir búsquedas DNS para -addnode, -seednode y -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Escuchando conexiones en el puerto <port> (por defecto: 15714 o testnet: 25714) + + + + Maintain at most <n> connections to peers (default: 125) + Mantener como máximo <n> conexiones a pares (predeterminado: 125) + + + + 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 + + + + Connect only to the specified node(s) + Conectar sólo a los nodos (o nodo) especificados + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Conectarse solo a nodos de la red <net> (IPv4, IPv6 o Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Descubrir dirección IP propia (predeterminado: 1 al escuchar sin -externalip) + + + + Find peers using internet relay chat (default: 0) + Encontrar pares usando IRC (por defecto:1) {0)?} + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Aceptar conexiones desde el exterior (predeterminado: 1 si no -proxy o -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + Enlazar a la dirección dada. Utilice la notación [host]:puerto para IPv6 + + + + Find peers using DNS lookup (default: 1) + Encontrar pares usando la búsqueda de DNS (por defecto: 1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Sincronizar el tiempo con otros nodos. Desactivar si el tiempo en su sistema es preciso, por ejemplo si usa sincronización con NTP (por defecto: 1) + + + + Sync checkpoints policy (default: strict) + Política de puntos de control de sincronización (por defecto: estricta) + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Usar UPnP para asignar el puerto de escucha (predeterminado: 1 al escuchar) + + + + Use UPnP to map the listening port (default: 0) + Usar UPnP para asignar el puerto de escucha (predeterminado: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + Separa el bloque y la base de datos de direcciones. Aumenta el tiempo de apagado (por defecto: 0) + + + + Fee per KB to add to transactions you send + Comisión por KB a añadir a las transacciones que envía + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Al crear transacciones, ignorar las entradas con valor inferior a esta (por defecto: 0.01) + + + + Accept command line and JSON-RPC commands + Aceptar comandos consola y JSON-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 + + + + + Output extra debugging information. Implies all other -debug* options + Salida de información de depuración extra. Implica todas las opciones -debug* de depuración + + + + Output extra network debugging information + Salida extra de información de depuración de red + + + + Prepend debug output with timestamp + Prefijar salida de depuración con marca de tiempo + + + + 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) + + + + 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 + + + + Send trace/debug info to debugger + Enviar información de rastreo / depurado al depurador + + + + Username for JSON-RPC connections + Nombre de usuario para las conexiones JSON-RPC + + + + + Password for JSON-RPC connections + Contraseña para las conexiones JSON-RPC + + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Escuchar conexiones JSON-RPC en <port> (predeterminado: 15715 o testnet: 25715) + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + Requerir confirmaciones para cambio (por defecto: 0) + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Exigir a los scripts de transacción que usen los operadores PUSH canónicos (por defecto: 1) + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Ejecutar comando cuando una alerta relevante sea recibida (%s en la linea de comandos es reemplazado por un mensaje) + + + + 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 + + + + Attempt to recover private keys from a corrupt wallet.dat + Intento de recuperar claves privadas de un wallet.dat corrupto + + + + How many blocks to check at startup (default: 2500, 0 = all) + Cuantos bloques para comprobar al inicio (por defecto: 2500, 0 = todos) + + + + How thorough the block verification is (0-6, default: 1) + Cómo de minuciosa es la verificación del bloque (0-6, por defecto: 1) + + + + Imports blocks from external blk000?.dat file + Importar bloques desde el archivo externo blk000?.dat + + + + Block creation options: + Opciones de creación de bloques: + + + + Set minimum block size in bytes (default: 0) + Establecer tamaño mínimo de bloque en bytes (predeterminado: 0) + + + + Set maximum block size in bytes (default: 250000) + Establecer el tamaño máximo de bloque en bytes (por defecto: 250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Establecer el tamaño máximo de las transacciones alta-prioridad/baja-comisión en bytes (por defecto: 27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Cifras aceptables: (por defecto: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Invalid amount for -paytxfee=<amount>: '%s' + Cantidad inválida para -paytxfee=<amount>: '%s' + + + + 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. + + + + Invalid amount for -mininput=<amount>: '%s' + Cantidad no válida para -mininput=<amount>: '%s' + + + + Wallet %s resides outside data directory %s. + El monedero %s reside fuera del directorio de datos %s. + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + No se puede obtener un bloqueo en el directorio de datos %s. BitBean probablemente ya esté en funcionamiento. + + + + Verifying database integrity... + Verificando la integridad de la base de datos... + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Error al inicializar el entorno de base de datos %s! Para recuperar, HAGA UNA COPIA DE SEGURIDAD DEL DIRECTORIO, a continuación, elimine todo de ella excepto el archivo 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. + 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. + + + + wallet.dat corrupt, salvage failed + wallet.dat corrupto. Ha fallado la recuperación. + + + + Unknown -socks proxy version requested: %i + Solicitada versión de proxy -socks desconocida: %i + + + + Unknown network specified in -onlynet: '%s' + La red especificada en -onlynet '%s' es desconocida + + + + Invalid -proxy address: '%s' + Dirección -proxy inválida: '%s' + + + + Invalid -tor address: '%s' + Dirección -tor inválida: '%s' + + + + Cannot resolve -bind address: '%s' + No se puede resolver la dirección de -bind: '%s' + + + + 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. + + + + Cannot resolve -externalip address: '%s' + No se puede resolver la dirección de -externalip: '%s' + + + + Invalid amount for -reservebalance=<amount> + Cantidad no válida para -reservebalance=<amount> + + + + Unable to sign checkpoint, wrong checkpointkey? + + No es posible firmar el punto de control, clave de punto de control incorrecta?%s + + + + Loading block index... + Cargando el índice de bloques... + + + + Error loading blkindex.dat + Error al cargar blkindex.dat + + + + Loading wallet... + Cargando monedero... + + + + Error loading wallet.dat: Wallet corrupted + Error al cargar wallet.dat: el monedero está dañado + + + + 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. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Error cargando wallet.dat: El monedero requiere una nueva versión de BitBean + + + + Wallet needed to be rewritten: restart BitBean to complete + El monedero necesita ser reescrito: reinicie BitBean para completar + + + + Error loading wallet.dat + Error al cargar wallet.dat + + + + Cannot downgrade wallet + No se puede rebajar el monedero + + + + Cannot initialize keypool + No se puede inicializar el keypool + + + + Cannot write default address + No se puede escribir la dirección predeterminada + + + + Rescanning... + Reexplorando... + + + + Importing blockchain data file. + Importando el archivo de datos de la cadena de bloques. + + + + Importing bootstrap blockchain data file. + Importando el archivo de datos de arranque de la cadena de bloques. + + + + Loading addresses... + Cargando direcciones... + + + + Error: could not start node + Error: no se pudo iniciar el nodo + + + + Done loading + Generado pero no aceptado + + + + Unable to bind to %s on this computer. BitBean is probably already running. + No se puede enlazar a %s en este equipo. BitBean probablemente ya esté en funcionamiento. + + + + 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) + + + + Error: Wallet locked, unable to create transaction + Error: Monedero bloqueado, no es posible crear una transacción + + + + Error: Wallet unlocked for staking only, unable to create transaction. + Error: Monedero desbloqueado sólo para hacer "stake", no es posible crear una transacción. + + + + 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 de una comisión de transacción de al menos %s debido a su tamaño, complejidad, o uso de fondos recibidos recientemente. + + + + Error: Transaction creation failed + Error: Fallo al crear la transacción. + + + + Sending... + Enviando... + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Cuantía no válida + + + + Insufficient funds + Fondos insuficientes + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Advertencia: Verifique que la fecha y hora del equipo sean correctas! Si su reloj es erróneo BitBean no funcionará correctamente. + + + + Warning: This version is obsolete, upgrade required! + Aviso: Esta versión es obsoleta, actualización necesaria! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + ADVERTENCIA: violación de un punto de control sincronizado detectada, se saltara! + + + + Warning: Disk space is low! + Advertencia: Espacio en disco bajo! + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + ADVERTENCIA: Punto de control no válido encontrado! Las transacciones que se muestran pueden no ser correctas! Puede que tenga que actualizar o notificar a los desarrolladores. + + + + bitcoin-core + + BitBean version + versión BitBean + + + Usage: + Uso: + + + Send command to -server or BitBeand + Envía un comando a -server o BitBeand + + + List commands + Muestra comandos + + + + Get help for a command + Recibir ayuda para un comando + + + + Options: + Opciones: + + + + Specify configuration file (default: BitBean.conf) + Especifica un archivo de configuración (por defecto: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + Especifica un archivo pid (por defecto: BitBeand.pid) + + + Specify wallet file (within data directory) + Especificar archivo de monedero (dentro del directorio de datos) + + + 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) + + + Set database disk log size in megabytes (default: 100) + Ajusta el tamaño de la base de datos del registro en megabytes (por defecto: 100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Escuchando conexiones en el puerto <port> (por defecto: 15714 o testnet: 25714) + + + 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 + + + Bind to given address. Use [host]:port notation for IPv6 + Enlazar a la dirección dada. Utilice la notación [host]:puerto para IPv6 + + + Stake your coins to support network and gain reward (default: 1) + Pon tus monedas en participación "Stake" para dar soporte a la red y ganar alguna recompensa (por defecto: 1) + + + 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 + + + Detach block and address databases. Increases shutdown time (default: 0) + Separa el bloque y la base de datos de direcciones. Aumenta el tiempo de apagado (por defecto: 0) + + + 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ón ha sido rechazada. Esto puede ocurrir si algunas de sus monedas en el monedero ya se gastaron, por ejemplo, si se usa una copia del wallet.dat y se gastaron las monedas de la copia pero no se han marcado 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 + Error: Esta transacción requiere de una comisión de transacción de al menos %s debido a su tamaño, complejidad, o uso de fondos recibidos recientemente. + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Escuchar conexiones JSON-RPC en <port> (predeterminado: 15715 o testnet: 25715) + + + Accept command line and JSON-RPC commands + Aceptar comandos consola y JSON-RPC + + + + Error: Transaction creation failed + Error: Fallo al crear la transacción. + + + Error: Wallet locked, unable to create transaction + Error: Monedero bloqueado, no es posible crear una transacción + + + Importing blockchain data file. + Importando el archivo de datos de la cadena de bloques. + + + Importing bootstrap blockchain data file. + Importando el archivo de datos de arranque de la cadena de bloques. + + + 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) + + + 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 + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Error al inicializar el entorno de base de datos %s! Para recuperar, HAGA UNA COPIA DE SEGURIDAD DEL DIRECTORIO, a continuación, elimine todo de ella excepto el archivo wallet.dat. + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Establecer el tamaño máximo de las transacciones alta-prioridad/baja-comisión en bytes (por defecto: 27000) + + + 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 BitBean will not work properly. + Advertencia: Verifique que la fecha y hora del equipo sean correctas! Si su reloj es erróneo BitBean no funcionará correctamente. + + + 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. + + + Attempt to recover private keys from a corrupt wallet.dat + Intento de recuperar claves privadas de un wallet.dat corrupto + + + Block creation options: + Opciones de creación de bloques: + + + Connect only to the specified node(s) + Conectar sólo a los nodos (o nodo) especificados + + + Discover own IP address (default: 1 when listening and no -externalip) + Descubrir dirección IP propia (predeterminado: 1 al escuchar sin -externalip) + + + 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. + + + Find peers using DNS lookup (default: 1) + Encontrar pares usando la búsqueda de DNS (por defecto: 1) + + + Sync checkpoints policy (default: strict) + Política de puntos de control de sincronización (por defecto: estricta) + + + Invalid -tor address: '%s' + Dirección -tor inválida: '%s' + + + Invalid amount for -reservebalance=<amount> + Cantidad no válida para -reservebalance=<amount> + + + 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) + Conectarse solo a nodos de la red <net> (IPv4, IPv6 o Tor) + + + Output extra debugging information. Implies all other -debug* options + Salida de información de depuración extra. Implica todas las opciones -debug* de depuración + + + Output extra network debugging information + Salida extra de información de depuración de red + + + Prepend debug output with timestamp + Prefijar salida de depuración con marca de tiempo + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) + + + Select the version of socks proxy to use (4-5, default: 5) + Selecciona la versión de socks proxy a usar (4-5, por defecto: 5) + + + 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 + + + Send trace/debug info to debugger + Enviar información de rastreo / depurado al depurador + + + Set maximum block size in bytes (default: 250000) + Establecer el tamaño máximo de bloque en bytes (por defecto: 250000) + + + Set minimum block size in bytes (default: 0) + Establecer tamaño mínimo de bloque en bytes (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) + + + Specify connection timeout in milliseconds (default: 5000) + Especificar el tiempo máximo de conexión en milisegundos (predeterminado: 5000) + + + Unable to sign checkpoint, wrong checkpointkey? + + No es posible firmar el punto de control, clave de punto de control incorrecta?%s + + + Use UPnP to map the listening port (default: 0) + Usar UPnP para asignar el puerto de escucha (predeterminado: 0) + + + Use UPnP to map the listening port (default: 1 when listening) + Usar UPnP para asignar el puerto de escucha (predeterminado: 1 al escuchar) + + + Use proxy to reach tor hidden services (default: same as -proxy) + Usar proxy para alcanzar a ver los servicios ocultos (por defecto: los mismos que -proxy) + + + Username for JSON-RPC connections + Nombre de usuario para las conexiones JSON-RPC + + + + Verifying database integrity... + Verificando la integridad de la base de datos... + + + WARNING: syncronized checkpoint violation detected, but skipped! + ADVERTENCIA: violación de un punto de control sincronizado detectada, se saltara! + + + Warning: Disk space is low! + Advertencia: Espacio en disco bajo! + + + Warning: This version is obsolete, upgrade required! + Aviso: Esta versión es obsoleta, actualización necesaria! + + + 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 + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, debe establecer un rpcpassword en el fichero de configuración: +%s +Se recomienda utilizar la siguiente contraseña aleatoria: +rpcuser=BitBeanrpc +rpcpassword=%s +(no necesita recordar este password) +El nombre de usuario y contraseña no debe ser el mismo. +Si no existe el archivo, créelo con permisos de sólo lectura para el dueño. +También se recomienda establecer alertnotify para ser notificado de los problemas; +por ejemplo: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + Find peers using internet relay chat (default: 0) + Encontrar pares usando IRC (por defecto:1) {0)?} + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Sincronizar el tiempo con otros nodos. Desactivar si el tiempo en su sistema es preciso, por ejemplo si usa sincronización con NTP (por defecto: 1) + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Al crear transacciones, ignorar las entradas con valor inferior a esta (por defecto: 0.01) + + + 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) + + + 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) + + + Require a confirmations for change (default: 0) + Requerir confirmaciones para cambio (por defecto: 0) + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Exigir a los scripts de transacción que usen los operadores PUSH canónicos (por defecto: 1) + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Ejecutar comando cuando una alerta relevante sea recibida (%s en la linea de comandos es reemplazado por un mensaje) + + + 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 + + + How many blocks to check at startup (default: 2500, 0 = all) + Cuantos bloques para comprobar al inicio (por defecto: 2500, 0 = todos) + + + How thorough the block verification is (0-6, default: 1) + Cómo de minuciosa es la verificación del bloque (0-6, por defecto: 1) + + + Imports blocks from external blk000?.dat file + Importar bloques desde el archivo externo blk000?.dat + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Cifras aceptables: (por defecto: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + Error: Wallet unlocked for staking only, unable to create transaction. + Error: Monedero desbloqueado sólo para hacer "stake", no es posible crear una transacción. + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + ADVERTENCIA: Punto de control no válido encontrado! Las transacciones que se muestran pueden no ser correctas! Puede que tenga que actualizar o notificar a los desarrolladores. + + + This help message + Este mensaje de ayuda + + + + Wallet %s resides outside data directory %s. + El monedero %s reside fuera del directorio de datos %s. + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + No se puede obtener un bloqueo en el directorio de datos %s. BitBean probablemente ya esté en funcionamiento. + + + BitBean + BitBean + + + 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) + + + Connect through socks proxy + Conecte a través del socks proxy + + + Allow DNS lookups for -addnode, -seednode and -connect + Permitir búsquedas DNS para -addnode, -seednode y -connect + + + Loading addresses... + Cargando direcciones... + + + Error loading blkindex.dat + Error al cargar blkindex.dat + + + Error loading wallet.dat: Wallet corrupted + Error al cargar wallet.dat: el monedero está dañado + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Error cargando wallet.dat: El monedero requiere una nueva versión de BitBean + + + Wallet needed to be rewritten: restart BitBean to complete + El monedero necesita ser reescrito: reinicie BitBean para completar + + + 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' + + + Error: could not start node + Error: no se pudo iniciar el nodo + + + Sending... + Enviando... + + + 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. BitBean is probably already running. + No se puede enlazar a %s en este equipo. BitBean probablemente ya esté en funcionamiento. + + + Fee per KB to add to transactions you send + Comisión por KB a añadir a las transacciones que envía + + + Invalid amount for -mininput=<amount>: '%s' + Cantidad no válida para -mininput=<amount>: '%s' + + + Loading wallet... + Cargando monedero... + + + Cannot downgrade wallet + No se puede rebajar el monedero + + + Cannot initialize keypool + No se puede inicializar el keypool + + + 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. + Tiene que establecer rpcpassword=<contraseña> en el fichero de configuración: ⏎ +%s ⏎ +Si el archivo no existe, créelo con permiso de lectura solamente del propietario. + + + diff --git a/src/qt/locale/bitcoin_es_CL.qm b/src/qt/locale/bitbean_es_CL.qm similarity index 50% rename from src/qt/locale/bitcoin_es_CL.qm rename to src/qt/locale/bitbean_es_CL.qm index 99000e5..41e1754 100644 Binary files a/src/qt/locale/bitcoin_es_CL.qm and b/src/qt/locale/bitbean_es_CL.qm differ diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitbean_es_CL.ts similarity index 57% rename from src/qt/locale/bitcoin_es_CL.ts rename to src/qt/locale/bitbean_es_CL.ts index 9f3c3d7..833e33f 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitbean_es_CL.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Este es un software experimental. Distribuido bajo la licencia MIT/X11, vea el archivo adjunto @@ -40,72 +52,72 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. AddressBookPage - + Address Book - + - + 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 - + Copy the currently selected address to the system clipboard Copia la dirección seleccionada al portapapeles - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &Copia dirección - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + &Firmar Mensaje - + &Delete &Borrar @@ -122,7 +134,7 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. Export Address Book Data - + @@ -132,12 +144,12 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. Error exporting - + Could not write to file %1. - + @@ -161,34 +173,34 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -237,16 +249,21 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + ¿Seguro que quieres seguir codificando la billetera? - Are you sure you wish to encrypt your wallet? - ¿Seguro que quieres seguir codificando la billetera? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 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. @@ -263,12 +280,7 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard.Billetera codificada - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -310,333 +322,585 @@ Eric Young (eay@cryptsoft.com) y UPnP software escrito por Thomas Bernard. - BitcoinGUI - - - Sign &message... - Firmar &Mensaje... - + BeanControlDialog - - Synchronizing with network... - Sincronizando con la red... + + Bean Control + - - &Overview - &Vista general + + Quantity: + - - Show general overview of wallet - Muestra una vista general de la billetera + + Bytes: + - - &Transactions - &Transacciones + + Amount: + Cantidad: - - Browse transaction history - Explora el historial de transacciónes + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - &Salir + + Tree mode + - - Quit application - Salir del programa + + List mode + - - Show information about BitBean - + + Amount + Cantidad - - About &Qt - Acerca de + + Label + Etiqueta - - Show information about Qt - Mostrar Información sobre QT + + Address + Dirección - - &Options... - &Opciones + + Date + Fecha - - &Encrypt Wallet... - &Codificar la billetera... + + Confirmations + - &Backup Wallet... - &Respaldar billetera... + Confirmed + Confirmado - - &Change Passphrase... - &Cambiar la contraseña... - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Copia dirección - - &Export... - + + Copy label + Copia etiqueta - - Send coins to a BitBean address - + + + Copy amount + Copiar Cantidad - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - Respaldar billetera en otra ubicación + + Copy after fee + - - Change the passphrase used for wallet encryption - Cambiar la contraseña utilizada para la codificación de la billetera + + Copy bytes + - - &Debug window - Ventana &Debug + + Copy priority + - Open debugging and diagnostic console - Abre consola de depuración y diagnóstico + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - Cartera + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - &Mostrar/Ocultar + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Archivo + + DUST + - - &Settings - &Configuración + + yes + - - &Help - &Ayuda + + no + - - Tabs toolbar - Barra de pestañas + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [red-de-pruebas] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + (sin etiqueta) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + - - Not staking because wallet is locked - + + (change) + + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - + + Vault + - - - %n second(s) ago - + + + &Overview + &Vista general - - &Unlock Wallet... - + + Show general overview of wallet + Muestra una vista general de la billetera + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transacciones + + + + Browse transaction history + Explora el historial de transacciónes + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + &Salir + + + + Quit application + Salir del programa + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + Acerca de + + + + Show information about Qt + Mostrar Información sobre QT + + + + &Options... + &Opciones + + + + Modify configuration options for BitBean + + + + + &Show / Hide + &Mostrar/Ocultar + + + + &Encrypt Wallet... + &Codificar la billetera... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &Respaldar billetera... + + + + Backup wallet to another location + Respaldar billetera en otra ubicación + + + + &Change Passphrase... + &Cambiar la contraseña... + + + + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para la codificación de la billetera + + + + &Unlock Wallet... + + + + + Unlock wallet + Desbloquea billetera + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Firmar &Mensaje... + + + + &Verify message... + + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + Ventana &Debug + + + + Open debugging and diagnostic console + Abre consola de depuración y diagnóstico + + + + &File + &Archivo + + + + &Settings + &Configuración + + + + &Help + &Ayuda + + + + Tabs toolbar + Barra de pestañas + + + + Actions toolbar + + + + + + [testnet] + [red-de-pruebas] + + + + + BitBean client + - + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + Sincronizando con la red... + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + %n minute(s) ago - + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - Actualizado + Actualizado Catching up... - Recuperando... + Recuperando... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Transacción enviada + Transacción enviada Incoming transaction - Transacción entrante + Transacción entrante @@ -645,7 +909,7 @@ Amount: %2 Type: %3 Address: %4 - Fecha: %1 + Fecha: %1 Cantidad: %2 Tipo: %3 Dirección: %4 @@ -654,341 +918,310 @@ Dirección: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - La billetera esta <b>codificada</b> y actualmente <b>desbloqueda</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> + La billetera esta <b>codificada</b> y actualmente <b>bloqueda</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - %n hora%n horas + + %n hora + %n horas + %n day(s) - %n día%n días - - - - Not staking - + + %n día + %n días + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - - ClientModel - - Network Alert - Alerta de Red + + Not staking because wallet is locked + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is offline + - - Quantity: - + + Not staking because wallet is syncing + - - Bytes: - + + Not staking because you don't have mature beans + - - Amount: - Cantidad: + + Not staking + + + + BitcoinGUI - - Priority: - + Sign &message... + Firmar &Mensaje... - - Fee: - + Synchronizing with network... + Sincronizando con la red... - - Low Output: - + &Overview + &Vista general - - no - + Show general overview of wallet + Muestra una vista general de la billetera - - After Fee: - + &Transactions + &Transacciones - - Change: - + Browse transaction history + Explora el historial de transacciónes - - (un)select all - + E&xit + &Salir - - Tree mode - + Quit application + Salir del programa - - List mode - + About &Qt + Acerca de - - Amount - Cantidad + Show information about Qt + Mostrar Información sobre QT - - Label - + &Options... + &Opciones - - Address - Dirección + &Encrypt Wallet... + &Codificar la billetera... - - Date - Fecha + &Backup Wallet... + &Respaldar billetera... - - Confirmations - + &Change Passphrase... + &Cambiar la contraseña... - - Confirmed - Confirmado + Backup wallet to another location + Respaldar billetera en otra ubicación - - Priority - + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para la codificación de la billetera - - Copy address - Copia dirección + &Debug window + Ventana &Debug - - Copy label - Copia etiqueta + Open debugging and diagnostic console + Abre consola de depuración y diagnóstico - - - Copy amount - Copiar Cantidad + Wallet + Cartera - - Copy transaction ID - + &Show / Hide + &Mostrar/Ocultar - - Copy quantity - + &File + &Archivo - - Copy fee - + &Settings + &Configuración - - Copy after fee - + &Help + &Ayuda - - Copy bytes - + Tabs toolbar + Barra de pestañas - - Copy priority - + [testnet] + [red-de-pruebas] - - Copy low output - + Up to date + Actualizado - - Copy change - + Catching up... + Recuperando... - - highest - + Sent transaction + Transacción enviada - - high - + Incoming transaction + Transacción entrante - - medium-high - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Fecha: %1 +Cantidad: %2 +Tipo: %3 +Dirección: %4 - - medium - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + La billetera esta <b>codificada</b> y actualmente <b>desbloqueda</b> - - low-medium - + Wallet is <b>encrypted</b> and currently <b>locked</b> + La billetera esta <b>codificada</b> y actualmente <b>bloqueda</b> - - - low - + + %n hour(s) + + %n hora + %n horas + + + %n day(s) + + %n día + %n días + + + + + ClientModel - - lowest - + + Network Alert + Alerta de Red + + + CoinControlDialog - - DUST - + Amount: + Cantidad: - - yes - + Amount + Cantidad - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Address + Dirección - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Date + Fecha - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Confirmed + Confirmado - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy address + Copia dirección - - - (no label) - (sin etiqueta) + Copy label + Copia etiqueta - - change from %1 (%2) - + Copy amount + Copiar Cantidad - - (change) - + (no label) + (sin etiqueta) EditAddressDialog - + Edit Address Editar dirección @@ -1000,7 +1233,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1010,7 +1243,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1040,7 +1273,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1056,98 +1289,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Uso: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Opciones - + &Main &Principal - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee Comisión de &transacciónes - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1157,7 +1390,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1167,12 +1400,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1182,7 +1415,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1197,17 +1430,17 @@ This label turns red, if the priority is smaller than "medium". SOCKS &Version: - + SOCKS version of the proxy (e.g. 5) - + &Window - + @@ -1237,12 +1470,12 @@ This label turns red, if the priority is smaller than "medium". User Interface &language: - + The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1251,31 +1484,35 @@ This label turns red, if the priority is smaller than "medium". - 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 + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - &Muestra direcciones en el listado de transaccioines + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + 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 BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + &Muestra direcciones en el listado de transaccioines - + &OK &OK @@ -1287,7 +1524,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1298,95 +1535,167 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + The supplied proxy address is invalid. - + OverviewPage - + Form Formulario - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: No confirmados: - Wallet - Cartera + Cartera - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: - + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + - Mined balance that has not yet matured - + Bean Stalk Height: + - - Total: - Total: + + Sprouting Difficulty: + - - Your current total balance - + + Bean Weight: + - - <b>Recent transactions</b> - <b>Transacciones recientes</b> + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + Total: + Total: - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Recent transactions</b> + <b>Transacciones recientes</b> - + out of sync desincronizado @@ -1395,65 +1704,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Cantidad: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Nombre del cliente @@ -1484,7 +1793,7 @@ This label turns red, if the priority is smaller than "medium". Using OpenSSL version - + @@ -1504,7 +1813,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1514,17 +1823,17 @@ This label turns red, if the priority is smaller than "medium". Current number of blocks - + Estimated total blocks - + Last block time - + @@ -1534,17 +1843,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1554,27 +1863,27 @@ This label turns red, if the priority is smaller than "medium". Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1584,73 +1893,73 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Enviar monedas + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - Cantidad: + Cantidad: @@ -1658,274 +1967,372 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Enviar a múltiples destinatarios + Enviar a múltiples destinatarios Add &Recipient - &Agrega destinatario + &Agrega destinatario Remove all transaction fields - + Clear &All - &Borra todos + &Borra todos Balance: - Balance: + Balance: 123.456 BC - + Confirm the send action - Confirma el envio + Confirma el envio S&end - &Envía + &Envía - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - Copiar Cantidad + Copiar Cantidad Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - Confirmar el envio de monedas + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - La dirección de destinatarion no es valida, comprueba otra vez. + 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. + La cantidad por pagar tiene que ser mayor 0. The amount exceeds your balance. - La cantidad sobrepasa tu saldo. + 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. + 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. + Tienes una dirección duplicada, solo puedes enviar a direcciónes individuales de una sola vez. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (sin etiqueta) + (sin etiqueta) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Formulario - + A&mount: - Cantidad: + Cantidad: Pay &To: - &Pagar a: + &Pagar a: - + 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 + Introduce una etiqueta a esta dirección para añadirla a tu guia &Label: - &Etiqueta: + &Etiqueta: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Pega dirección desde portapapeles + + + + Alt+P + Alt+P + + + + Remove this recipient + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Send Coins + Enviar monedas + + + Amount: + Cantidad: + + + Send to multiple recipients at once + Enviar a múltiples destinatarios + + + Add &Recipient + &Agrega destinatario + + + Clear &All + &Borra todos + + + Balance: + Balance: + + + Confirm the send action + Confirma el envio + + + S&end + &Envía + + + Copy amount + Copiar Cantidad + + + Confirm send coins + Confirmar el envio de monedas + + + 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. + + + (no label) + (sin etiqueta) + + + + SendCoinsEntry + + A&mount: + Cantidad: + + + Pay &To: + &Pagar a: + + + 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: - Alt+A - Alt+A + Alt+A - Paste address from clipboard - Pega dirección desde portapapeles + Pega dirección desde portapapeles - Alt+P - Alt+P - - - - Remove this recipient - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message - + @@ -1936,18 +2343,18 @@ This label turns red, if the priority is smaller than "medium". 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1973,17 +2380,17 @@ This label turns red, if the priority is smaller than "medium". Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + Reset all sign message fields - + @@ -2000,28 +2407,28 @@ This label turns red, if the priority is smaller than "medium". 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2031,7 +2438,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2051,7 +2458,7 @@ This label turns red, if the priority is smaller than "medium". The entered address does not refer to a key. - + @@ -2061,7 +2468,7 @@ This label turns red, if the priority is smaller than "medium". Private key for the entered address is not available. - + @@ -2076,23 +2483,23 @@ This label turns red, if the priority is smaller than "medium". The signature could not be decoded. - + Please check the signature and try again. - + The signature did not match the message digest. - + Message verification failed. - + @@ -2110,12 +2517,15 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + conflicted - + @@ -2140,7 +2550,10 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - + + + + @@ -2150,7 +2563,7 @@ This label turns red, if the priority is smaller than "medium". Source - + @@ -2193,7 +2606,10 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - + + + + @@ -2235,13 +2651,13 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + @@ -2251,7 +2667,7 @@ This label turns red, if the priority is smaller than "medium". Inputs - + @@ -2261,12 +2677,12 @@ This label turns red, if the priority is smaller than "medium". true - + false - + @@ -2282,7 +2698,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Detalles de transacción @@ -2327,32 +2743,35 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - Abierto para &n bloque másAbierto para &n bloques más + + Abierto para &n bloque más + Abierto para &n bloques más + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2386,8 +2805,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - Minado + Minado @@ -2505,801 +2928,1015 @@ This label turns red, if the priority is smaller than "medium". - Copy amount - Copiar Cantidad + Copy amount + Copiar Cantidad + + + + Copy transaction ID + + + + + Edit label + Edita etiqueta + + + + Show transaction details + Mostrar detalles de la transacción + + + + Export Transaction Data + + + + + Comma separated file (*.csv) + Archivos separados por coma (*.csv) + + + + Confirmed + Confirmado + + + + Date + Fecha + + + + Type + Tipo + + + + Label + Etiqueta + + + + Address + Dirección + + + + Amount + Cantidad + + + + ID + ID + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + Rango: + + + + to + para + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + Para utilizar la opción %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Error + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + + + + + BitBean version + + + + + Usage: + Uso: + + + + Send command to -server or BitBeand + + + + + List commands + Muestra comandos + + + + + Get help for a command + Recibir ayuda para un comando + + + + + BitBean + + + + + Options: + Opciones: + + + + + This help message + Este mensaje de ayuda + + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Especifica directorio para los datos + + + + + Specify wallet file (within data directory) + + + + + Set database cache size in megabytes (default: 25) + Asigna el tamaño del caché de la base de datos en MB (25 predeterminado) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Especifica tiempo de espera para conexion en milisegundos (predeterminado: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Permite búsqueda DNS para addnode y connect + + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Mantener al menos <n> conecciones por cliente (por defecto: 125) + + + + 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 + + + + Connect only to the specified node(s) + Conecta solo al nodo especificado + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + + Discover own IP address (default: 1 when listening and no -externalip) + + + + + Find peers using internet relay chat (default: 0) + - Copy transaction ID - + Accept connections from outside (default: 1 if no -proxy or -connect) + - Edit label - Edita etiqueta + Bind to given address. Use [host]:port notation for IPv6 + - Show transaction details - Mostrar detalles de la transacción + Find peers using DNS lookup (default: 1) + - - Export Transaction Data - + + Stake your beans to support network and gain reward (default: 1) + - Comma separated file (*.csv) - Archivos separados por coma (*.csv) + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Confirmed - Confirmado + + Sync checkpoints policy (default: strict) + - Date - Fecha + Threshold for disconnecting misbehaving peers (default: 100) + Umbral de desconección de clientes con mal comportamiento (por defecto: 100) - Type - Tipo + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Label - Etiqueta + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - Address - Dirección + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - Amount - Cantidad + Use UPnP to map the listening port (default: 1 when listening) + Intenta usar UPnP para mapear el puerto de escucha (default: 1 when listening) - ID - ID + Use UPnP to map the listening port (default: 0) + Intenta usar UPnP para mapear el puerto de escucha (default: 0) - - Error exporting - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Could not write to file %1. - + + Fee per KB to add to transactions you send + - - Range: - Rango: + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - to - para + + Accept command line and JSON-RPC commands + Aceptar comandos consola y JSON-RPC + - - - WalletModel - - Sending... - + + Run in the background as a daemon and accept commands + Correr como demonio y acepta comandos + - - - bitcoin-core - - BitBean version - + + Use the test network + Usa la red de pruebas + - Usage: - Uso: + Output extra debugging information. Implies all other -debug* options + - Send command to -server or BitBeand - + Output extra network debugging information + - List commands - Muestra comandos - + Prepend debug output with timestamp + - Get help for a command - Recibir ayuda para un comando - + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Options: - Opciones: - + + Send trace/debug info to console instead of debug.log file + Enviar informacion de seguimiento a la consola en vez del archivo debug.log - - Specify configuration file (default: BitBean.conf) - + + Send trace/debug info to debugger + - Specify pid file (default: BitBeand.pid) - + Username for JSON-RPC connections + Usuario para las conexiones JSON-RPC + - - Specify wallet file (within data directory) - + + Password for JSON-RPC connections + Contraseña para las conexiones JSON-RPC + - - Specify data directory - Especifica directorio para los datos - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - Set database cache size in megabytes (default: 25) - Asigna el tamaño del caché de la base de datos en MB (25 predeterminado) + Allow JSON-RPC connections from specified IP address + Permite conexiones JSON-RPC desde la dirección IP especificada + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send commands to node running on <ip> (default: 127.0.0.1) + Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) + - Maintain at most <n> connections to peers (default: 125) - Mantener al menos <n> conecciones por cliente (por defecto: 125) + Execute command when the best block changes (%s in cmd is replaced by block hash) + - Connect to a node to retrieve peer addresses, and disconnect - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + - - Specify your own public address - + + Require a confirmations for change (default: 0) + - - Bind to given address. Use [host]:port notation for IPv6 - + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - Stake your coins to support network and gain reward (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - - Threshold for disconnecting misbehaving peers (default: 100) - Umbral de desconección de clientes con mal comportamiento (por defecto: 100) + + Upgrade wallet to latest format + Actualizar billetera al formato actual - 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 - + Set key pool size to <n> (default: 100) + Ajusta el numero de claves en reserva <n> (predeterminado: 100) + - - Detach block and address databases. Increases shutdown time (default: 0) - + + Rescan the block chain for missing wallet transactions + Rescanea la cadena de bloques para transacciones perdidas de la cartera + - - 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. - + + Attempt to recover private keys from a corrupt wallet.dat + - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + How many blocks to check at startup (default: 2500, 0 = all) + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + How thorough the block verification is (0-6, default: 1) + - - Accept command line and JSON-RPC commands - Aceptar comandos consola y JSON-RPC - + + Imports blocks from external blk000?.dat file + - - Error: Transaction creation failed - + + Block creation options: + - - Error: Wallet locked, unable to create transaction - + + Set minimum block size in bytes (default: 0) + Establezca el tamaño mínimo del bloque en bytes (por defecto: 0) - - Importing blockchain data file. - + + Set maximum block size in bytes (default: 250000) + - Importing bootstrap blockchain data file. - + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Run in the background as a daemon and accept commands - Correr como demonio y acepta comandos - + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - Use the test network - Usa la red de pruebas + Use OpenSSL (https) for JSON-RPC connections + Usa OpenSSL (https) para las conexiones JSON-RPC - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Server certificate file (default: server.cert) + Certificado del servidor (Predeterminado: server.cert) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Server private key (default: server.pem) + Clave privada del servidor (Predeterminado: server.pem) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Invalid amount for -paytxfee=<amount>: '%s' + Cantidad inválida para -paytxfee=<amount>: '%s' - + 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. + 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 BitBean will not work properly. - + + Invalid amount for -mininput=<amount>: '%s' + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Wallet %s resides outside data directory %s. + - - 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. - + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Attempt to recover private keys from a corrupt wallet.dat - + + Verifying database integrity... + - - Block creation options: - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect only to the specified node(s) - Conecta solo al nodo especificado - + + 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. + - Discover own IP address (default: 1 when listening and no -externalip) - + wallet.dat corrupt, salvage failed + wallet.dat corrompió, guardado fallido - - Failed to listen on any port. Use -listen=0 if you want this. - + + Unknown -socks proxy version requested: %i + - - Find peers using DNS lookup (default: 1) - + + Unknown network specified in -onlynet: '%s' + - - Sync checkpoints policy (default: strict) - + + Invalid -proxy address: '%s' + Dirección -proxy invalida: '%s' - + Invalid -tor address: '%s' - + - - Invalid amount for -reservebalance=<amount> - + + Cannot resolve -bind address: '%s' + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Failed to listen on any port. Use -listen=0 if you want this. + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Cannot resolve -externalip address: '%s' + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Invalid amount for -reservebalance=<amount> + - - Output extra debugging information. Implies all other -debug* options - + + Unable to sign checkpoint, wrong checkpointkey? + + - Output extra network debugging information - + Loading block index... + Cargando el index de bloques... - Prepend debug output with timestamp - + Error loading blkindex.dat + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) + + Loading wallet... + Cargando cartera... - - Select the version of socks proxy to use (4-5, default: 5) - + + Error loading wallet.dat: Wallet corrupted + Error cargando wallet.dat: Billetera corrupta - - Send trace/debug info to console instead of debug.log file - Enviar informacion de seguimiento a la consola en vez del archivo debug.log + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - - Send trace/debug info to debugger - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Set maximum block size in bytes (default: 250000) - + + Wallet needed to be rewritten: restart BitBean to complete + - - Set minimum block size in bytes (default: 0) - Establezca el tamaño mínimo del bloque en bytes (por defecto: 0) + + Error loading wallet.dat + Error cargando wallet.dat - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Cannot downgrade wallet + - - Specify connection timeout in milliseconds (default: 5000) - Especifica tiempo de espera para conexion en milisegundos (predeterminado: 5000) + + Cannot initialize keypool + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Cannot write default address + - - Use UPnP to map the listening port (default: 0) - Intenta usar UPnP para mapear el puerto de escucha (default: 0) + + Rescanning... + Rescaneando... - - Use UPnP to map the listening port (default: 1 when listening) - Intenta usar UPnP para mapear el puerto de escucha (default: 1 when listening) + + Importing blockchain data file. + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Importing bootstrap blockchain data file. + - - Username for JSON-RPC connections - Usuario para las conexiones JSON-RPC - + + Loading addresses... + Cargando direcciónes... - - Verifying database integrity... - + + Error: could not start node + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Done loading + Carga completa - Warning: Disk space is low! - + Unable to bind to %s on this computer. BitBean is probably already running. + - - Warning: This version is obsolete, upgrade required! - Advertencia: Esta versión está obsoleta, se necesita actualizar! + + 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) - - wallet.dat corrupt, salvage failed - wallet.dat corrompió, guardado fallido + + Error: Wallet locked, unable to create transaction + - - Password for JSON-RPC connections - Contraseña para las conexiones JSON-RPC - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Find peers using internet relay chat (default: 0) - + + Error: Transaction creation failed + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Sending... + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Allow JSON-RPC connections from specified IP address - Permite conexiones JSON-RPC desde la dirección IP especificada - + + Invalid amount + Cantidad inválida - Send commands to node running on <ip> (default: 127.0.0.1) - Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) - + Insufficient funds + Fondos insuficientes - Execute command when the best block changes (%s in cmd is replaced by block hash) - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Warning: This version is obsolete, upgrade required! + Advertencia: Esta versión está obsoleta, se necesita actualizar! - - Require a confirmations for change (default: 0) - + + WARNING: syncronized checkpoint violation detected, but skipped! + - Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Warning: Disk space is low! + - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Upgrade wallet to latest format - Actualizar billetera al formato actual + Usage: + Uso: - - Set key pool size to <n> (default: 100) - Ajusta el numero de claves en reserva <n> (predeterminado: 100) + List commands + Muestra comandos - - Rescan the block chain for missing wallet transactions - Rescanea la cadena de bloques para transacciones perdidas de la cartera + Get help for a command + Recibir ayuda para un comando - - How many blocks to check at startup (default: 2500, 0 = all) - + Options: + Opciones: + - - How thorough the block verification is (0-6, default: 1) - + Specify data directory + Especifica directorio para los datos + - - Imports blocks from external blk000?.dat file - + Set database cache size in megabytes (default: 25) + Asigna el tamaño del caché de la base de datos en MB (25 predeterminado) - - Use OpenSSL (https) for JSON-RPC connections - Usa OpenSSL (https) para las conexiones JSON-RPC - + Maintain at most <n> connections to peers (default: 125) + Mantener al menos <n> conecciones por cliente (por defecto: 125) - - Server certificate file (default: server.cert) - Certificado del servidor (Predeterminado: server.cert) - + Threshold for disconnecting misbehaving peers (default: 100) + Umbral de desconección de clientes con mal comportamiento (por defecto: 100) - - Server private key (default: server.pem) - Clave privada del servidor (Predeterminado: server.pem) + Accept command line and JSON-RPC commands + Aceptar comandos consola y JSON-RPC - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + Run in the background as a daemon and accept commands + Correr como demonio y acepta comandos + - - Error: Wallet unlocked for staking only, unable to create transaction. - + Use the test network + Usa la red de pruebas + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + 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. - - This help message - Este mensaje de ayuda + Connect only to the specified node(s) + Conecta solo al nodo especificado - - Wallet %s resides outside data directory %s. - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + Send trace/debug info to console instead of debug.log file + Enviar informacion de seguimiento a la consola en vez del archivo debug.log - - BitBean - + Set minimum block size in bytes (default: 0) + Establezca el tamaño mínimo del bloque en bytes (por defecto: 0) - - 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) + Specify connection timeout in milliseconds (default: 5000) + Especifica tiempo de espera para conexion en milisegundos (predeterminado: 5000) - - Connect through socks proxy - + Use UPnP to map the listening port (default: 0) + Intenta usar UPnP para mapear el puerto de escucha (default: 0) - - Allow DNS lookups for -addnode, -seednode and -connect - Permite búsqueda DNS para addnode y connect - + Use UPnP to map the listening port (default: 1 when listening) + Intenta usar UPnP para mapear el puerto de escucha (default: 1 when listening) - - Loading addresses... - Cargando direcciónes... + Username for JSON-RPC connections + Usuario para las conexiones JSON-RPC + - - Error loading blkindex.dat - + Warning: This version is obsolete, upgrade required! + Advertencia: Esta versión está obsoleta, se necesita actualizar! - - Error loading wallet.dat: Wallet corrupted - Error cargando wallet.dat: Billetera corrupta + wallet.dat corrupt, salvage failed + wallet.dat corrompió, guardado fallido - - Error loading wallet.dat: Wallet requires newer version of BitBean - + Password for JSON-RPC connections + Contraseña para las conexiones JSON-RPC + - - Wallet needed to be rewritten: restart BitBean to complete - + Allow JSON-RPC connections from specified IP address + Permite conexiones JSON-RPC desde la dirección IP especificada + - - Error loading wallet.dat - Error cargando wallet.dat + Send commands to node running on <ip> (default: 127.0.0.1) + Envia comando al nodo situado en <ip> (predeterminado: 127.0.0.1) + - - Invalid -proxy address: '%s' - Dirección -proxy invalida: '%s' + Upgrade wallet to latest format + Actualizar billetera al formato actual - - Unknown network specified in -onlynet: '%s' - + Set key pool size to <n> (default: 100) + Ajusta el numero de claves en reserva <n> (predeterminado: 100) + - - Unknown -socks proxy version requested: %i - + Rescan the block chain for missing wallet transactions + Rescanea la cadena de bloques para transacciones perdidas de la cartera + - - Cannot resolve -bind address: '%s' - + Use OpenSSL (https) for JSON-RPC connections + Usa OpenSSL (https) para las conexiones JSON-RPC + - - Cannot resolve -externalip address: '%s' - + Server certificate file (default: server.cert) + Certificado del servidor (Predeterminado: server.cert) + - - Invalid amount for -paytxfee=<amount>: '%s' - Cantidad inválida para -paytxfee=<amount>: '%s' + Server private key (default: server.pem) + Clave privada del servidor (Predeterminado: server.pem) + - - Error: could not start node - + This help message + Este mensaje de ayuda + - - Sending... - + 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) - - Invalid amount - Cantidad inválida + Allow DNS lookups for -addnode, -seednode and -connect + Permite búsqueda DNS para addnode y connect + - - Insufficient funds - Fondos insuficientes + Loading addresses... + Cargando direcciónes... - - Loading block index... - Cargando el index de bloques... + Error loading wallet.dat: Wallet corrupted + Error cargando wallet.dat: Billetera corrupta - - 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 + Error loading wallet.dat + Error cargando wallet.dat - - Unable to bind to %s on this computer. BitBean is probably already running. - + Invalid -proxy address: '%s' + Dirección -proxy invalida: '%s' - - Fee per KB to add to transactions you send - + Invalid amount for -paytxfee=<amount>: '%s' + Cantidad inválida para -paytxfee=<amount>: '%s' - - Invalid amount for -mininput=<amount>: '%s' - + Invalid amount + Cantidad inválida - - Loading wallet... - Cargando cartera... + Insufficient funds + Fondos insuficientes - - Cannot downgrade wallet - + Loading block index... + Cargando el index de bloques... - - Cannot initialize keypool - + 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 - - Cannot write default address - + Loading wallet... + Cargando cartera... - Rescanning... - Rescaneando... + Rescaneando... - Done loading - Carga completa + Carga completa - To use the %s option - Para utilizar la opción %s + 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. - + Error - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_es_DO.qm b/src/qt/locale/bitbean_es_DO.qm similarity index 52% rename from src/qt/locale/bitcoin_es_DO.qm rename to src/qt/locale/bitbean_es_DO.qm index 6c603a6..3d1ffcd 100644 Binary files a/src/qt/locale/bitcoin_es_DO.qm and b/src/qt/locale/bitbean_es_DO.qm differ diff --git a/src/qt/locale/bitcoin_es_DO.ts b/src/qt/locale/bitbean_es_DO.ts similarity index 53% rename from src/qt/locale/bitcoin_es_DO.ts rename to src/qt/locale/bitbean_es_DO.ts index bc851ee..83d0dda 100644 --- a/src/qt/locale/bitcoin_es_DO.ts +++ b/src/qt/locale/bitbean_es_DO.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Este es un software experimental. Distribuido bajo la licencia MIT/X11, vea el archivo adjunto @@ -40,72 +52,72 @@ Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard. AddressBookPage - + Address Book - + - + 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 - + Copy the currently selected address to the system clipboard Copiar la dirección seleccionada al portapapeles del sistema - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &Copiar dirección - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list Borrar de la lista la dirección seleccionada - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + &Verificar mensaje - + &Delete &Eliminar @@ -122,7 +134,7 @@ Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard. Export Address Book Data - + @@ -132,12 +144,12 @@ Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard. Error exporting - + Could not write to file %1. - + @@ -161,34 +173,34 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -237,16 +249,21 @@ Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard. - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + ¿Seguro que desea cifrar su monedero? - Are you sure you wish to encrypt your wallet? - ¿Seguro que desea cifrar su monedero? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 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. @@ -263,12 +280,7 @@ Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard.Monedero cifrado - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -310,333 +322,585 @@ Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard. - BitcoinGUI - - - Sign &message... - Firmar &mensaje... - + BeanControlDialog - - Synchronizing with network... - Sincronizando con la red… + + Bean Control + - - &Overview - &Vista general + + Quantity: + Cantidad: - - Show general overview of wallet - Mostrar vista general del monedero + + Bytes: + Bytes: - - &Transactions - &Transacciones + + Amount: + Cuantía: - - Browse transaction history - Examinar el historial de transacciones + + Priority: + Prioridad: - - &Address Book - + + Fee: + Tasa: - - Edit the list of stored addresses and labels - + + Low Output: + Envío pequeño: - - &Receive coins - + + After Fee: + Después de tasas: - - Show the list of addresses for receiving payments - + + Change: + Cambio: - - &Send coins - + + (un)select all + (des)selecciona todos - - E&xit - &Salir + + Tree mode + Modo arbol - - Quit application - Salir de la aplicación + + List mode + Modo lista - - Show information about BitBean - + + Amount + Cantidad - - About &Qt - Acerca de &Qt + + Label + Etiqueta - - Show information about Qt - Mostrar información acerca de Qt + + Address + Dirección - - &Options... - &Opciones... + + Date + Fecha - - &Encrypt Wallet... - &Cifrar monedero… + + Confirmations + Confirmaciones - &Backup Wallet... - Copia de &respaldo del monedero... + Confirmed + Confirmado - - &Change Passphrase... - &Cambiar la contraseña… - - - - ~%n block(s) remaining - + + Priority + Prioridad - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Copiar dirección - - &Export... - + + Copy label + Copiar etiqueta - - Send coins to a BitBean address - + + + Copy amount + - - Modify configuration options for BitBean - + + Copy transaction ID + Copiar identificador de transacción - - Export the data in the current tab to a file - + + Copy quantity + Copiar cantidad - - Encrypt or decrypt wallet - + + Copy fee + Copiar donación - - Backup wallet to another location - Copia de seguridad del monedero en otra ubicación + + Copy after fee + Copiar después de aplicar donación - - Change the passphrase used for wallet encryption - Cambiar la contraseña utilizada para el cifrado del monedero + + Copy bytes + Copiar bytes - - &Debug window - Ventana de &depuración + + Copy priority + Copiar prioridad - Open debugging and diagnostic console - Abrir la consola de depuración y diagnóstico + Copy low output + Copiar envío pequeño - - &Verify message... - &Verificar mensaje... + + Copy change + - - BitBean - + + highest + lo más alto - - Wallet - Monedero + + high + alto - - &About BitBean - + + medium-high + medio-alto - - &Show / Hide - Mo&strar/ocultar + + medium + medio - - Unlock wallet - + + low-medium + bajo-medio - &Lock Wallet - + low + bajo - Lock wallet - + lowest + lo más bajo - - &File - &Archivo + + DUST + - - &Settings - &Configuración + + yes + si - - &Help - A&yuda + + no + no - - Tabs toolbar - Barra de pestañas + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + (sin etiqueta) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + Enviar desde %1 (%2) - - Not staking because wallet is locked - + + (change) + (cambio) + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - + + Vault + - - - %n second(s) ago - + + + &Overview + &Vista general - - &Unlock Wallet... - + + Show general overview of wallet + Mostrar vista general del monedero + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transacciones + + + + Browse transaction history + Examinar el historial de transacciones + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + &Salir + + + + Quit application + Salir de la aplicación + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + Acerca de &Qt + + + + Show information about Qt + Mostrar información acerca de Qt + + + + &Options... + &Opciones... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + Mo&strar/ocultar + + + + &Encrypt Wallet... + &Cifrar monedero… + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + Copia de &respaldo del monedero... + + + + Backup wallet to another location + Copia de seguridad del monedero en otra ubicación + + + + &Change Passphrase... + &Cambiar la contraseña… + + + + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para el cifrado del monedero + + + + &Unlock Wallet... + + + + + Unlock wallet + Desbloquear cartera + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Firmar &mensaje... + + + + &Verify message... + &Verificar mensaje... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + Ventana de &depuración + + + + Open debugging and diagnostic console + Abrir la consola de depuración y diagnóstico + + + + &File + &Archivo + + + + &Settings + &Configuración + + + + &Help + A&yuda + + + + Tabs toolbar + Barra de pestañas + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + Sincronizando con la red… + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + - + %n minute(s) ago - + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - Actualizado + Actualizado Catching up... - Actualizando... + Actualizando... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Transacción enviada + Transacción enviada Incoming transaction - Transacción entrante + Transacción entrante @@ -645,7 +909,7 @@ Amount: %2 Type: %3 Address: %4 - Fecha: %1 + Fecha: %1 Cantidad: %2 Tipo: %3 Dirección: %4 @@ -655,341 +919,439 @@ Dirección: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - El monedero está <b>cifrado</b> y actualmente <b>desbloqueado</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> + El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - %n hora%n horas + + %n hora + %n horas + %n day(s) - %n día%n días + + %n día + %n días + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Alerta de red + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - Cantidad: + + Not staking because you don't have mature beans + - - Bytes: - Bytes: + + Not staking + + + + BitcoinGUI - - Amount: - Cuantía: + Sign &message... + Firmar &mensaje... - - Priority: - Prioridad: + Synchronizing with network... + Sincronizando con la red… - - Fee: - Tasa: + &Overview + &Vista general - - Low Output: - Envío pequeño: + Show general overview of wallet + Mostrar vista general del monedero - - no - no + &Transactions + &Transacciones - - After Fee: - Después de tasas: + Browse transaction history + Examinar el historial de transacciones - - Change: - Cambio: + E&xit + &Salir - - (un)select all - (des)selecciona todos + Quit application + Salir de la aplicación - - Tree mode - Modo arbol + About &Qt + Acerca de &Qt - - List mode - Modo lista + Show information about Qt + Mostrar información acerca de Qt - - Amount - Cantidad + &Options... + &Opciones... - - Label - + &Encrypt Wallet... + &Cifrar monedero… - - Address - Dirección + &Backup Wallet... + Copia de &respaldo del monedero... + + + &Change Passphrase... + &Cambiar la contraseña… + + + 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... + + + Wallet + Monedero + + + &Show / Hide + Mo&strar/ocultar + + + &File + &Archivo + + + &Settings + &Configuración + + + &Help + A&yuda + + + Tabs toolbar + Barra de pestañas + + + [testnet] + [testnet] + + + Up to date + Actualizado + + + Catching up... + Actualizando... + + + Sent transaction + Transacción enviada + + + Incoming transaction + Transacción entrante + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Fecha: %1 +Cantidad: %2 +Tipo: %3 +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> + + + %n hour(s) + + %n hora + %n horas + + + + %n day(s) + + %n día + %n días + + + + + ClientModel + + + Network Alert + Alerta de red + + + + CoinControlDialog + + Quantity: + Cantidad: + + + Bytes: + Bytes: + + + Amount: + Cuantía: + + + Priority: + Prioridad: + + + Fee: + Tasa: + + + Low Output: + Envío pequeño: + + + no + no + + + 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 + Fecha - Confirmations - Confirmaciones + Confirmaciones - Confirmed - Confirmado + Confirmado - Priority - Prioridad + Prioridad - Copy address - Copiar dirección + Copiar dirección - Copy label - Copiar etiqueta + Copiar etiqueta - - Copy amount - Copiar cantidad + Copiar cantidad - Copy transaction ID - Copiar identificador de transacción + Copiar identificador de transacción - Copy quantity - Copiar cantidad + Copiar cantidad - Copy fee - Copiar donación + Copiar donación - Copy after fee - Copiar después de aplicar donación + Copiar después de aplicar donación - Copy bytes - Copiar bytes + Copiar bytes - Copy priority - Copiar prioridad + Copiar prioridad - Copy low output - Copiar envío pequeño + Copiar envío pequeño - Copy change - Copiar cambio + Copiar cambio - highest - lo más alto + lo más alto - high - alto + alto - medium-high - medio-alto + medio-alto - medium - medio + medio - low-medium - bajo-medio + bajo-medio - low - bajo + bajo - lowest - lo más bajo - - - - DUST - + lo más bajo - yes - si - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 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. - - This means a fee of at least %2 is required. - + si - - (no label) - (sin etiqueta) + (sin etiqueta) - change from %1 (%2) - Enviar desde %1 (%2) + Enviar desde %1 (%2) - (change) - (cambio) + (cambio) EditAddressDialog - + Edit Address Editar Dirección @@ -1001,7 +1363,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1011,7 +1373,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1041,7 +1403,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1057,98 +1419,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Uso: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Opciones - + &Main &Principal - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee Comisión de &transacciones - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1158,7 +1520,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1168,12 +1530,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1183,7 +1545,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1243,7 +1605,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1252,13 +1614,27 @@ This label turns red, if the priority is smaller than "medium". + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + 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. + Elegir la subdivisión predeterminada para mostrar cantidades en la interfaz y cuando se envían monedas. - + Whether to show BitBean addresses in the transaction list or not. - + @@ -1266,17 +1642,11 @@ This label turns red, if the priority is smaller than "medium". &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 + Mostrar o no características de control de moneda - - Display coin &control features (experts only!) - - - - + &OK &Aceptar @@ -1288,7 +1658,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1299,13 +1669,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1316,78 +1686,158 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Desde - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: No confirmado(s): - Wallet - Monedero + Monedero - + Spendable: - + - + Your current spendable balance Su balance actual gastable - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: No disponible: - - Mined balance that has not yet matured - Saldo recién minado que aún no está disponible. + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - Total: - Total: + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - Your current total balance - Su balance actual total + + BitBean Network + - - <b>Recent transactions</b> - <b>Movimientos recientes</b> + + Bean Stalk Height: + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + Sprouting Difficulty: + - - Total of coins that was staked, and do not yet count toward the current balance - + + Bean Weight: + - + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + 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 @@ -1396,65 +1846,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Cuantía: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Nombre del cliente @@ -1505,7 +1955,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1535,17 +1985,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1560,12 +2010,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1575,7 +2025,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1585,7 +2035,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1599,59 +2049,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Enviar monedas + Send Beans + - Coin Control Features - Características de control de la moneda + Bean Control Features + Inputs... - Entradas... + Entradas... automatically selected - Seleccionado automaticamente + Seleccionado automaticamente Insufficient funds! - Fondos insuficientes! + Fondos insuficientes! Quantity: - Cantidad: + Cantidad: 0 - + Bytes: - Bytes: + Bytes: Amount: - Cuantía: + Cuantía: @@ -1659,272 +2109,438 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - Prioridad: + Prioridad: medium - + medio Fee: - Tasa: + Tasa: Low Output: - Envío pequeño: + Envío pequeño: no - + no After Fee: - Después de tasas: + Después de tasas: Change - + custom change address - + Send to multiple recipients at once - Enviar a múltiples destinatarios de una vez + Enviar a múltiples destinatarios de una vez Add &Recipient - Añadir &destinatario + Añadir &destinatario Remove all transaction fields - + Clear &All - Limpiar &todo + Limpiar &todo Balance: - Saldo: + Saldo: 123.456 BC - + Confirm the send action - Confirmar el envío + Confirmar el envío S&end - &Enviar + &Enviar - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - Copiar cantidad + Copiar cantidad Copy amount - Copiar cuantía + Copy fee - Copiar donación + Copiar donación Copy after fee - Copiar después de aplicar donación + Copiar después de aplicar donación Copy bytes - Copiar bytes + Copiar bytes Copy priority - Copiar prioridad + Copiar prioridad Copy low output - Copiar envío pequeño + Copiar envío pequeño Copy change - Copiar Cambio + <b>%1</b> to %2 (%3) - + - Confirm send coins - Confirmar el envío de monedas + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - La dirección de recepción no es válida, compruébela de nuevo. + 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. + La cantidad por pagar tiene que ser mayor de 0. The amount exceeds your balance. - La cantidad sobrepasa su saldo. + 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 + 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. + Se ha encontrado una dirección duplicada. Solo se puede enviar a cada dirección una vez por operación de envío. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (sin etiqueta) + (sin etiqueta) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Desde - + A&mount: - Ca&ntidad: + Ca&ntidad: Pay &To: - &Pagar a: + &Pagar a: - + Enter a label for this address to add it to your address book - Etiquete esta dirección para añadirla a la libreta + Etiquete esta dirección para añadirla a la libreta &Label: - &Etiqueta: + &Etiqueta: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Pegar dirección desde portapapeles + Pegar dirección desde portapapeles Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + 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: + + + Send to multiple recipients at once + Enviar a múltiples destinatarios de una vez + + + Add &Recipient + Añadir &destinatario + + + Clear &All + Limpiar &todo + + + Balance: + Saldo: + + + Confirm the send action + Confirmar el envío + + + S&end + &Enviar + + + 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 + + + Confirm send coins + Confirmar el envío de monedas + + + 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. + + + (no label) + (sin etiqueta) + + + + SendCoinsEntry + + A&mount: + Ca&ntidad: + + + Pay &To: + &Pagar a: + + + 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: + + + Alt+A + Alt+A + + + Paste address from clipboard + Pegar dirección desde portapapeles + + + Alt+P + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message Firmas - Firmar / verificar un mensaje @@ -1942,13 +2558,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1979,7 +2595,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -2006,12 +2622,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2022,7 +2638,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2032,7 +2648,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2111,12 +2727,15 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + conflicted - + @@ -2141,7 +2760,10 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - , transmitir a través de %n nodo, transmitir a través de %n nodos + + , transmitir a través de %n nodo + , transmitir a través de %n nodos + @@ -2194,7 +2816,10 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - disponible en %n bloque másdisponible en %n bloques más + + disponible en %n bloque más + disponible en %n bloques más + @@ -2236,8 +2861,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2283,7 +2908,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Detalles de transacción @@ -2328,32 +2953,35 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - Abrir para %n bloque másAbrir para %n bloques más + + Abrir para %n bloque más + Abrir para %n bloques más + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2361,944 +2989,1266 @@ This label turns red, if the priority is smaller than "medium". Este bloque no ha sido recibido por otros nodos y probablemente no sea aceptado! - - Generated but not accepted - Generado pero no aceptado + + Generated but not accepted + Generado pero no aceptado + + + + Received with + Recibido con + + + + Received from + Recibidos de + + + + Sent to + Enviado a + + + + Payment to yourself + Pago propio + + + + SPROUT + + + + 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. + + + + 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 Data + + + + + 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 + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + Rango: + + + + to + para + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + Para utilizar la opción %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Error + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Tiene que establecer rpcpassword=<contraseña> en el fichero de configuración: ⏎ +%s ⏎ +Si el archivo no existe, créelo con permiso de lectura solamente del propietario. + + + + BitBean version + + + + + Usage: + Uso: + + + + Send command to -server or BitBeand + + + + + List commands + Muestra comandos + + + + + Get help for a command + Recibir ayuda para un comando + + + + + BitBean + + + + + Options: + Opciones: + + + + + This help message + Este mensaje de ayuda + + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Especificar directorio para los datos + + + + Specify wallet file (within data directory) + Especificar archivo de monedero (dentro del directorio de datos) + + + + Set database cache size in megabytes (default: 25) + Establecer el tamaño de caché de la base de datos en megabytes (predeterminado: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Especificar el tiempo máximo de conexión en milisegundos (predeterminado: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Permitir búsquedas DNS para -addnode, -seednode y -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Mantener como máximo <n> conexiones a pares (predeterminado: 125) + + + + 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 + + + + Connect only to the specified node(s) + Conectar sólo a los nodos (o nodo) especificados + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Conectarse solo a nodos de la red <net> (IPv4, IPv6 o Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Descubrir dirección IP propia (predeterminado: 1 al escuchar sin -externalip) + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Aceptar conexiones desde el exterior (predeterminado: 1 si no -proxy o -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Usar UPnP para asignar el puerto de escucha (predeterminado: 1 al escuchar) + + + + Use UPnP to map the listening port (default: 0) + Usar UPnP para asignar el puerto de escucha (predeterminado: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + Aceptar comandos consola y JSON-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 + + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + 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) + + + + 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 + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + Nombre de usuario para las conexiones JSON-RPC + + + + + Password for JSON-RPC connections + Contraseña para las conexiones JSON-RPC + + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + + + + + 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 + + + + Attempt to recover private keys from a corrupt wallet.dat + Intento de recuperar claves privadas de un wallet.dat corrupto - - Received with - Recibido con + + How many blocks to check at startup (default: 2500, 0 = all) + - - Received from - Recibidos de + + How thorough the block verification is (0-6, default: 1) + - - Sent to - Enviado a + + Imports blocks from external blk000?.dat file + - - Payment to yourself - Pago propio + + Block creation options: + Opciones de creación de bloques: - - Mined - Minado + + Set minimum block size in bytes (default: 0) + Establecer tamaño mínimo de bloque en bytes (predeterminado: 0) - - (n/a) - (nd) + + Set maximum block size in bytes (default: 250000) + - - 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. + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Date and time that the transaction was received. - Fecha y hora en que se recibió la transacción. + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - - Type of transaction. - Tipo de transacción. + + Use OpenSSL (https) for JSON-RPC connections + Usar OpenSSL (https) para las conexiones JSON-RPC + - - Destination address of transaction. - Dirección de destino de la transacción. + + Server certificate file (default: server.cert) + Certificado del servidor (predeterminado: server.cert) + - - Amount removed from or added to balance. - Cantidad retirada o añadida al saldo. + + Server private key (default: server.pem) + Clave privada del servidor (predeterminado: server.pem) + - - - TransactionView - - - All - Todo + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Today - Hoy + + Invalid amount for -paytxfee=<amount>: '%s' + Cantidad inválida para -paytxfee=<amount>: '%s' - This week - Esta semana + 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. - - This month - Este mes + + Invalid amount for -mininput=<amount>: '%s' + - Last month - Mes pasado + Wallet %s resides outside data directory %s. + - This year - Este año + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Range... - Rango... + + Verifying database integrity... + - - Received with - Recibido con + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Sent to - Enviado a + + 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. - - To yourself - A usted mismo + + wallet.dat corrupt, salvage failed + wallet.dat corrupto. Ha fallado la recuperación. - Mined - Minado + Unknown -socks proxy version requested: %i + Solicitada versión de proxy -socks desconocida: %i - Other - Otra + Unknown network specified in -onlynet: '%s' + La red especificada en -onlynet '%s' es desconocida - - Enter address or label to search - Introduzca una dirección o etiqueta que buscar + + Invalid -proxy address: '%s' + Dirección -proxy inválida: '%s' - - Min amount - Cantidad mínima + + Invalid -tor address: '%s' + - - Copy address - Copiar dirección + + Cannot resolve -bind address: '%s' + No se puede resolver la dirección de -bind: '%s' - Copy label - Copiar etiqueta + 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. - Copy amount - Copiar cuantía + Cannot resolve -externalip address: '%s' + No se puede resolver la dirección de -externalip: '%s' - Copy transaction ID - Copiar identificador de transacción + Invalid amount for -reservebalance=<amount> + - Edit label - Editar etiqueta + Unable to sign checkpoint, wrong checkpointkey? + + - Show transaction details - Mostrar detalles de la transacción + Loading block index... + Cargando el índice de bloques... - - Export Transaction Data - + + Error loading blkindex.dat + - Comma separated file (*.csv) - Archivos de columnas separadas por coma (*.csv) + Loading wallet... + Cargando monedero... - - Confirmed - Confirmado + + Error loading wallet.dat: Wallet corrupted + Error al cargar wallet.dat: el monedero está dañado - Date - Fecha + 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. - - Type - Tipo + + Error loading wallet.dat: Wallet requires newer version of BitBean + - Label - Etiqueta + Wallet needed to be rewritten: restart BitBean to complete + - Address - Dirección + Error loading wallet.dat + Error al cargar wallet.dat - Amount - Cantidad + Cannot downgrade wallet + No se puede rebajar el monedero - ID - ID + Cannot initialize keypool + - - Error exporting - + + Cannot write default address + No se puede escribir la dirección predeterminada - - Could not write to file %1. - + + Rescanning... + Reexplorando... - - Range: - Rango: + + Importing blockchain data file. + - - to - para + + Importing bootstrap blockchain data file. + - - - WalletModel - - Sending... - + + Loading addresses... + Cargando direcciones... - - - bitcoin-core - - BitBean version - + + Error: could not start node + - Usage: - Uso: + Done loading + Generado pero no aceptado - Send command to -server or BitBeand - + Unable to bind to %s on this computer. BitBean is probably already running. + + + + + 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) - List commands - Muestra comandos - + Error: Wallet locked, unable to create transaction + - Get help for a command - Recibir ayuda para un comando - + Error: Wallet unlocked for staking only, unable to create transaction. + - - Options: - Opciones: - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Specify configuration file (default: BitBean.conf) - + + Error: Transaction creation failed + - Specify pid file (default: BitBeand.pid) - + Sending... + - - Specify wallet file (within data directory) - Especificar archivo de monedero (dentro del directorio de datos) + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Specify data directory - Especificar directorio para los datos + + Invalid amount + Cuantía no válida - - Set database cache size in megabytes (default: 25) - Establecer el tamaño de caché de la base de datos en megabytes (predeterminado: 25) + + Insufficient funds + Fondos insuficientes - Set database disk log size in megabytes (default: 100) - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Warning: This version is obsolete, upgrade required! + Aviso: Esta versión es obsoleta, actualización necesaria! - Maintain at most <n> connections to peers (default: 125) - Mantener como máximo <n> conexiones a pares (predeterminado: 125) + WARNING: syncronized checkpoint violation detected, but skipped! + - - Connect to a node to retrieve peer addresses, and disconnect - Conectar a un nodo para obtener direcciones de pares y desconectar + + Warning: Disk space is low! + - Specify your own public address - Especifique su propia dirección pública + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Bind to given address. Use [host]:port notation for IPv6 - + Usage: + Uso: - - Stake your coins to support network and gain reward (default: 1) - + List commands + Muestra comandos + - - Threshold for disconnecting misbehaving peers (default: 100) - Umbral para la desconexión de pares con mal comportamiento (predeterminado: 100) + Get help for a command + Recibir ayuda para un comando + - - 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) + Options: + Opciones: + - - 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 + Specify wallet file (within data directory) + Especificar archivo de monedero (dentro del directorio de datos) - - Detach block and address databases. Increases shutdown time (default: 0) - + Specify data directory + Especificar directorio para los datos - - 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. - + Set database cache size in megabytes (default: 25) + Establecer el tamaño de caché de la base de datos en megabytes (predeterminado: 25) - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + Maintain at most <n> connections to peers (default: 125) + Mantener como máximo <n> conexiones a pares (predeterminado: 125) - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + Connect to a node to retrieve peer addresses, and disconnect + Conectar a un nodo para obtener direcciones de pares y desconectar - - Accept command line and JSON-RPC commands - Aceptar comandos consola y JSON-RPC - + Specify your own public address + Especifique su propia dirección pública - - Error: Transaction creation failed - + Threshold for disconnecting misbehaving peers (default: 100) + Umbral para la desconexión de pares con mal comportamiento (predeterminado: 100) - - Error: Wallet locked, unable to create transaction - + 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) - - Importing blockchain data file. - + 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 - - Importing bootstrap blockchain data file. - + Accept command line and JSON-RPC commands + Aceptar comandos consola y JSON-RPC + - Run in the background as a daemon and accept commands - Ejecutar en segundo plano como daemon y aceptar comandos + Ejecutar en segundo plano como daemon y aceptar comandos - Use the test network - Usar la red de pruebas + 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) + Aceptar conexiones desde el exterior (predeterminado: 1 si no -proxy o -connect) - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + Ha ocurrido un error al configurar el puerto RPC %u para escuchar mediante IPv6. Recurriendo a IPv4: %s - 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 BitBean will not work properly. - + Aviso: ¡-paytxfee tiene un valor muy alto! Esta es la comisión que pagará si envía una transacción. - 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. + 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. + 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. - Attempt to recover private keys from a corrupt wallet.dat - Intento de recuperar claves privadas de un wallet.dat corrupto + Intento de recuperar claves privadas de un wallet.dat corrupto - Block creation options: - Opciones de creación de bloques: + Opciones de creación de bloques: - Connect only to the specified node(s) - Conectar sólo a los nodos (o nodo) especificados + Conectar sólo a los nodos (o nodo) especificados - Discover own IP address (default: 1 when listening and no -externalip) - Descubrir dirección IP propia (predeterminado: 1 al escuchar sin -externalip) + Descubrir dirección IP propia (predeterminado: 1 al escuchar sin -externalip) - 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. - - - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - + Ha fallado la escucha en todos los puertos. Use -listen=0 si desea esto. - 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) + 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) + Búfer de recepción máximo por conexión, , <n>*1000 bytes (predeterminado: 1000) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Conectarse solo a nodos de la red <net> (IPv4, IPv6 o Tor) - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - + Conectarse solo a nodos de la red <net> (IPv4, IPv6 o Tor) - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) - - - - Select the version of socks proxy to use (4-5, default: 5) - + Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) - 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 - - - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - + 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) + Establecer tamaño mínimo de bloque en bytes (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) + Reducir el archivo debug.log al iniciar el cliente (predeterminado: 1 sin -debug) - Specify connection timeout in milliseconds (default: 5000) - Especificar el tiempo máximo de conexión en milisegundos (predeterminado: 5000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - + Especificar el tiempo máximo de conexión en milisegundos (predeterminado: 5000) - Use UPnP to map the listening port (default: 0) - Usar UPnP para asignar el puerto de escucha (predeterminado: 0) + Usar UPnP para asignar el puerto de escucha (predeterminado: 0) - Use UPnP to map the listening port (default: 1 when listening) - Usar UPnP para asignar el puerto de escucha (predeterminado: 1 al escuchar) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - + 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 + Nombre de usuario para las conexiones JSON-RPC - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - - - - Warning: This version is obsolete, upgrade required! - Aviso: Esta versión es obsoleta, actualización necesaria! + Aviso: Esta versión es obsoleta, actualización necesaria! - wallet.dat corrupt, salvage failed - wallet.dat corrupto. Ha fallado la recuperación. + wallet.dat corrupto. Ha fallado la recuperación. - Password for JSON-RPC connections - Contraseña para las conexiones JSON-RPC + Contraseña para las conexiones JSON-RPC - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - - - - Allow JSON-RPC connections from specified IP address - Permitir conexiones JSON-RPC desde la dirección IP especificada + 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) + 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) + Ejecutar un comando cuando cambia el mejor bloque (%s en cmd se sustituye por el hash de bloque) - 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) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Ejecutar comando cuando una transacción del monedero cambia (%s en cmd se remplazará por TxID) - Upgrade wallet to latest format - Actualizar el monedero al último formato + 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) + 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - + Volver a examinar la cadena de bloques en busca de transacciones del monedero perdidas - - Imports blocks from external blk000?.dat file - - - - Use OpenSSL (https) for JSON-RPC connections - Usar OpenSSL (https) para las conexiones JSON-RPC + Usar OpenSSL (https) para las conexiones JSON-RPC - Server certificate file (default: server.cert) - Certificado del servidor (predeterminado: server.cert) + Certificado del servidor (predeterminado: server.cert) - Server private key (default: server.pem) - Clave privada del servidor (predeterminado: server.pem) + Clave privada del servidor (predeterminado: server.pem) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - This help message - Este mensaje de ayuda + Este mensaje de ayuda - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - - - - 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) - - - - Connect through socks proxy - + 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 + Permitir búsquedas DNS para -addnode, -seednode y -connect - Loading addresses... - Cargando direcciones... - - - - Error loading blkindex.dat - + 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 BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + Error al cargar wallet.dat: el monedero está dañado - Error loading wallet.dat - Error al cargar wallet.dat + Error al cargar wallet.dat - Invalid -proxy address: '%s' - Dirección -proxy inválida: '%s' + Dirección -proxy inválida: '%s' - Unknown network specified in -onlynet: '%s' - La red especificada en -onlynet '%s' es desconocida + La red especificada en -onlynet '%s' es desconocida - Unknown -socks proxy version requested: %i - Solicitada versión de proxy -socks desconocida: %i + Solicitada versión de proxy -socks desconocida: %i - Cannot resolve -bind address: '%s' - No se puede resolver la dirección de -bind: '%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' + No se puede resolver la dirección de -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Cantidad inválida para -paytxfee=<amount>: '%s' - - - - Error: could not start node - - - - - Sending... - + Cantidad inválida para -paytxfee=<amount>: '%s' - Invalid amount - Cuantía no válida + Cuantía no válida - Insufficient funds - Fondos insuficientes + Fondos insuficientes - Loading block index... - Cargando el índice de bloques... + 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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + Añadir un nodo al que conectarse y tratar de mantener la conexión abierta - Loading wallet... - Cargando monedero... + Cargando monedero... - Cannot downgrade wallet - No se puede rebajar el monedero - - - - Cannot initialize keypool - + No se puede rebajar el monedero - Cannot write default address - No se puede escribir la dirección predeterminada + No se puede escribir la dirección predeterminada - Rescanning... - Reexplorando... + Reexplorando... - Done loading - Generado pero no aceptado + Generado pero no aceptado - To use the %s option - Para utilizar la opción %s + Para utilizar la opción %s - Error - 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. - Tiene que establecer rpcpassword=<contraseña> en el fichero de configuración: ⏎ + Tiene que establecer rpcpassword=<contraseña> en el fichero de configuración: ⏎ %s ⏎ 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/bitbean_es_MX.qm b/src/qt/locale/bitbean_es_MX.qm new file mode 100644 index 0000000..90e161f Binary files /dev/null and b/src/qt/locale/bitbean_es_MX.qm differ diff --git a/src/qt/locale/bitcoin_es_MX.ts b/src/qt/locale/bitbean_es_MX.ts similarity index 59% rename from src/qt/locale/bitcoin_es_MX.ts rename to src/qt/locale/bitbean_es_MX.ts index 37be580..f3ae2ee 100644 --- a/src/qt/locale/bitcoin_es_MX.ts +++ b/src/qt/locale/bitbean_es_MX.ts @@ -1,120 +1,123 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + 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 - + Copy the currently selected address to the system clipboard Copiar el domicilio seleccionado al portapapeles del sistema - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete &Borrar Copy &Label - + &Edit - + Export Address Book Data - + @@ -124,12 +127,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -153,34 +156,34 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -229,24 +232,29 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + @@ -255,12 +263,7 @@ This product includes software developed by the OpenSSL Project for use in the O Cartera encriptada - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -298,337 +301,589 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet passphrase was successfully changed. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - Sincronizando con la red... + + Bean Control + - - &Overview - &Vista previa + + Quantity: + - - Show general overview of wallet - Mostrar la vista previa general de la cartera + + Bytes: + Bytes: - - &Transactions - &Transacciones + + Amount: + Monto: - - Browse transaction history - Explorar el historial de transacciones + + Priority: + Prioridad: - - &Address Book - + + Fee: + Cuota: - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - S&alir + + Tree mode + - - Quit application - Salir de la aplicación + + List mode + - - Show information about BitBean - + + Amount + Monto - - About &Qt - + + Label + Etiqueta - - Show information about Qt - + + Address + Domicilio - - &Options... - &Opciones + + Date + Fecha - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - + Confirmed + Confirmado - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Copiar dirección - - &Export... - + + Copy label + Copiar capa - - Send coins to a BitBean address - + + + Copy amount + copiar monto - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + copiar cantidad - - Encrypt or decrypt wallet - + + Copy fee + copiar cuota - - Backup wallet to another location - + + Copy after fee + copiar despues de cuota - - Change the passphrase used for wallet encryption - Cambiar la contraseña usada para la encriptación de la cartera + + Copy bytes + copiar bytes - - &Debug window - + + Copy priority + copiar prioridad - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + copiar cambio - - BitBean - + + highest + - - Wallet - + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Archivo + + DUST + - - &Settings - &Configuraciones + + yes + - - &Help - &Ayuda + + no + - - Tabs toolbar - Pestañas + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + (sin etiqueta) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + - - Not staking because wallet is locked - + + (change) + + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - + + Vault + - - - %n second(s) ago - + + + &Overview + &Vista previa - - &Unlock Wallet... - + + Show general overview of wallet + Mostrar la vista previa general de la cartera - - - %n minute(s) ago - + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transacciones + + + + Browse transaction history + Explorar el historial de transacciones + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + S&alir + + + + Quit application + Salir de la aplicación + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + &Opciones + + + + Modify configuration options for BitBean + + + + + &Show / Hide + + + + + &Encrypt Wallet... + + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + + + + + Backup wallet to another location + + + + + &Change Passphrase... + + + + + Change the passphrase used for wallet encryption + Cambiar la contraseña usada para la encriptación de la cartera + + + + &Unlock Wallet... + + + + + Unlock wallet + Desbloquear cartera. + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + + + + + &Verify message... + + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + + + + + Open debugging and diagnostic console + + + + + &File + &Archivo + + + + &Settings + &Configuraciones + + + + &Help + &Ayuda + + + + Tabs toolbar + Pestañas + + + + Actions toolbar + + + + + + [testnet] + + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + Sincronizando con la red... + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + %n minute(s) ago + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - Actualizado al dia + Actualizado al dia Catching up... - Resiviendo... + Resiviendo... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Enviar Transacción + Enviar Transacción Incoming transaction - Transacción entrante + Transacción entrante @@ -637,347 +892,279 @@ Amount: %2 Type: %3 Address: %4 - + URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - La cartera esta <b>encriptada</b> y <b>desbloqueada</b> actualmente + 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 + La cartera esta <b>encriptada</b> y <b>bloqueada</b> actualmente Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - + + + + %n day(s) - - - - - Not staking - + + + + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - - - - - ClientModel - - - Network Alert - - - - - CoinControlDialog - - - Coin Control - - - - - Quantity: - - - - - Bytes: - Bytes: - - - - Amount: - Monto: + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - Priority: - Prioridad: + + Not staking because wallet is locked + - - Fee: - Cuota: + + Not staking because wallet is offline + - - Low Output: - + + Not staking because wallet is syncing + - - no - + + Not staking because you don't have mature beans + - - After Fee: - + + Not staking + + + + BitcoinGUI - - Change: - + Synchronizing with network... + Sincronizando con la red... - - (un)select all - + &Overview + &Vista previa - - Tree mode - + Show general overview of wallet + Mostrar la vista previa general de la cartera - - List mode - + &Transactions + &Transacciones - - Amount - Monto + Browse transaction history + Explorar el historial de transacciones - - Label - + E&xit + S&alir - - Address - Domicilio + Quit application + Salir de la aplicación - - Date - Fecha + &Options... + &Opciones - - Confirmations - + Change the passphrase used for wallet encryption + Cambiar la contraseña usada para la encriptación de la cartera - - Confirmed - Confirmado + &File + &Archivo - - Priority - + &Settings + &Configuraciones - - Copy address - Copiar dirección + &Help + &Ayuda - - Copy label - Copiar capa + Tabs toolbar + Pestañas - - - Copy amount - copiar monto + Up to date + Actualizado al dia - - Copy transaction ID - + Catching up... + Resiviendo... - - Copy quantity - copiar cantidad + Sent transaction + Enviar Transacción - - Copy fee - copiar cuota + Incoming transaction + Transacción entrante - - Copy after fee - copiar despues de cuota + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + La cartera esta <b>encriptada</b> y <b>desbloqueada</b> actualmente - - Copy bytes - copiar bytes + Wallet is <b>encrypted</b> and currently <b>locked</b> + La cartera esta <b>encriptada</b> y <b>bloqueada</b> actualmente + + + ClientModel - - Copy priority - copiar prioridad + + Network Alert + + + + CoinControlDialog - - Copy low output - + Bytes: + Bytes: - - Copy change - copiar cambio + Amount: + Monto: - - highest - + Priority: + Prioridad: - - high - + Fee: + Cuota: - - medium-high - + Amount + Monto - - medium - + Address + Domicilio - - - low-medium - + + Date + Fecha - - low - + Confirmed + Confirmado - - lowest - + Copy address + Copiar dirección - - DUST - + Copy label + Copiar capa - - yes - + Copy amount + copiar monto - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Copy quantity + copiar cantidad - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Copy fee + copiar cuota - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Copy after fee + copiar despues de cuota - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy bytes + copiar bytes - - - (no label) - (sin etiqueta) + Copy priority + copiar prioridad - - change from %1 (%2) - + Copy change + copiar cambio - - (change) - + (no label) + (sin etiqueta) EditAddressDialog - + Edit Address Editar dirección @@ -989,7 +1176,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -999,7 +1186,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1029,7 +1216,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1045,406 +1232,474 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Uso: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Opciones - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - + &Cancel - + &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + The supplied proxy address is invalid. - + OverviewPage - + Form Formulario - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - - Wallet - - - - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: - + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + - Mined balance that has not yet matured - + Bean Stalk Height: + - - Total: - + + Sprouting Difficulty: + - - Your current total balance - + + Bean Weight: + - - <b>Recent transactions</b> - <b>Transacciones recientes</b> + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>New Transactions</p></body></html> + + + + + Total: + - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Recent transactions</b> + <b>Transacciones recientes</b> - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Monto: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1458,188 +1713,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Mandar monedas + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - Bytes: + Bytes: Amount: - Monto: + Monto: @@ -1647,296 +1902,402 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - Prioridad: + Prioridad: medium - + Fee: - Cuota: + Cuota: Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Enviar a múltiples receptores a la vez + Enviar a múltiples receptores a la vez Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - Saldo: + Saldo: 123.456 BC - + Confirm the send action - Confirme la acción de enviar + Confirme la acción de enviar S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - copiar cantidad + copiar cantidad Copy amount - copiar monto + copiar monto Copy fee - copiar cuota + copiar cuota Copy after fee - copiar despues de cuota + copiar despues de cuota Copy bytes - copiar bytes + copiar bytes Copy priority - copiar prioridad + copiar prioridad Copy low output - + Copy change - copiar cambio + copiar cambio <b>%1</b> to %2 (%3) - + - Confirm send coins - Confirme para mandar monedas + Confirm send beans + Are you sure you want to send %1? - + and - + 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 + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + + + + + (no label) + (sin etiqueta) + + + + WARNING: unknown change address + + + + + SendBeansEntry + + + Form + Formulario + + + + A&mount: + M&onto + + + + Pay &To: + Pagar &a: + + + + + 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 + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose address from address book + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Pegar dirección del portapapeles + + + + Alt+P + Alt+P + + + + Remove this recipient + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Send Coins + Mandar monedas + + + Bytes: + Bytes: + + + Amount: + Monto: + + + Priority: + Prioridad: + + + Fee: + Cuota: + + + Send to multiple recipients at once + Enviar a múltiples receptores a la vez + + + Balance: + Saldo: + + + Confirm the send action + Confirme la acción de enviar + + + 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 change + copiar cambio + + + Confirm send coins + Confirme para mandar monedas - - WARNING: Invalid BitBean address - + The amount to pay must be larger than 0. + El monto a pagar debe ser mayor a 0 - (no label) - (sin etiqueta) - - - - WARNING: unknown change address - + (sin etiqueta) SendCoinsEntry - - Form - - - - A&mount: - M&onto + M&onto - Pay &To: - Pagar &a: + Pagar &a: - - 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. + Ingrese una etiqueta para esta dirección para agregarlo en su libreta de direcciones. - &Label: - &Etiqueta - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose address from address book - + &Etiqueta - Alt+A - Alt+A + Alt+A - Paste address from clipboard - Pegar dirección del portapapeles + Pegar dirección del portapapeles - Alt+P - Alt+P - - - - Remove this recipient - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Alt+P 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1957,76 +2318,76 @@ This label turns red, if the priority is smaller than "medium". Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2034,59 +2395,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2099,17 +2460,20 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + conflicted - + %1/offline - + @@ -2124,12 +2488,15 @@ This label turns red, if the priority is smaller than "medium". Status - + , broadcast through %n node(s) - + + + + @@ -2139,36 +2506,36 @@ This label turns red, if the priority is smaller than "medium". Source - + Generated - + From - + To - + own address - + label - + @@ -2177,17 +2544,20 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + + not accepted - + @@ -2195,52 +2565,52 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + @@ -2250,12 +2620,12 @@ This label turns red, if the priority is smaller than "medium". true - + false - + @@ -2271,7 +2641,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Detalles de la transacción @@ -2316,32 +2686,35 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2361,7 +2734,7 @@ This label turns red, if the priority is smaller than "medium". Received from - + @@ -2375,8 +2748,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - Minado + Minado @@ -2386,7 +2763,7 @@ This label turns red, if the priority is smaller than "medium". Transaction status. Hover over this field to show number of confirmations. - + @@ -2445,7 +2822,7 @@ This label turns red, if the priority is smaller than "medium". Range... - + @@ -2500,7 +2877,7 @@ This label turns red, if the priority is smaller than "medium". Copy transaction ID - + @@ -2510,12 +2887,12 @@ This label turns red, if the priority is smaller than "medium". Show transaction details - + Export Transaction Data - + @@ -2560,17 +2937,17 @@ This label turns red, if the priority is smaller than "medium". Error exporting - + Could not write to file %1. - + Range: - + @@ -2583,693 +2960,720 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core - - BitBean version - + + To use the %s option + - Usage: - Uso: + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - + + Error + - List commands - Lista de comandos + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - + + BitBean version + - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - + Usage: + Uso: - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send command to -server or BitBeand + - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - + List commands + Lista de comandos - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - + Get help for a command + - - Threshold for disconnecting misbehaving peers (default: 100) - + + BitBean + - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Options: + - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - + + This help message + - - Detach block and address databases. Increases shutdown time (default: 0) - + + Specify configuration file (default: BitBean.conf) + - - 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. - + + Specify pid file (default: BitBeand.pid) + - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Specify data directory + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Specify wallet file (within data directory) + - - Accept command line and JSON-RPC commands - + + Set database cache size in megabytes (default: 25) + - - Error: Transaction creation failed - + + Set database disk log size in megabytes (default: 100) + - - Error: Wallet locked, unable to create transaction - + + Specify connection timeout in milliseconds (default: 5000) + - - Importing blockchain data file. - + + Connect through socks proxy + - Importing bootstrap blockchain data file. - + Select the version of socks proxy to use (4-5, default: 5) + - - Run in the background as a daemon and accept commands - + + Use proxy to reach tor hidden services (default: same as -proxy) + - Use the test network - + Allow DNS lookups for -addnode, -seednode and -connect + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Maintain at most <n> connections to peers (default: 125) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Add a node to connect to and attempt to keep the connection open + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Connect only to the specified node(s) + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Connect to a node to retrieve peer addresses, and disconnect + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Specify your own public address + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - 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. - + + Discover own IP address (default: 1 when listening and no -externalip) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Find peers using internet relay chat (default: 0) + - - Block creation options: - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Connect only to the specified node(s) - + + Bind to given address. Use [host]:port notation for IPv6 + - - Discover own IP address (default: 1 when listening and no -externalip) - + + Find peers using DNS lookup (default: 1) + - - Failed to listen on any port. Use -listen=0 if you want this. - + + Stake your beans to support network and gain reward (default: 1) + - - Find peers using DNS lookup (default: 1) - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - + Sync checkpoints policy (default: strict) - + - - Invalid -tor address: '%s' - + + Threshold for disconnecting misbehaving peers (default: 100) + - - Invalid amount for -reservebalance=<amount> - + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - Output extra debugging information. Implies all other -debug* options - + - Output extra network debugging information - + Use UPnP to map the listening port (default: 1 when listening) + - Prepend debug output with timestamp - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Select the version of socks proxy to use (4-5, default: 5) - - - - - Send trace/debug info to console instead of debug.log file - + Use UPnP to map the listening port (default: 0) + - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - Unable to sign checkpoint, wrong checkpointkey? - - + Detach block and address databases. Increases shutdown time (default: 0) + - - Use UPnP to map the listening port (default: 0) - + + Fee per KB to add to transactions you send + - - Use UPnP to map the listening port (default: 1 when listening) - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Accept command line and JSON-RPC commands + - - Username for JSON-RPC connections - + + Run in the background as a daemon and accept commands + - - Verifying database integrity... - + + Use the test network + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Output extra debugging information. Implies all other -debug* options + - Warning: Disk space is low! - + Output extra network debugging information + - - Warning: This version is obsolete, upgrade required! - + + Prepend debug output with timestamp + - - wallet.dat corrupt, salvage failed - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Password for JSON-RPC connections - + + Send trace/debug info to console instead of debug.log file + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Send trace/debug info to debugger + - - Find peers using internet relay chat (default: 0) - + + Username for JSON-RPC connections + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Password for JSON-RPC connections + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - + 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) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Require a confirmations for change (default: 0) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Upgrade wallet to latest format - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + - + + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) - + How thorough the block verification is (0-6, default: 1) - + Imports blocks from external blk000?.dat file - + - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Invalid amount for -paytxfee=<amount>: '%s' + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - This help message - + + Invalid amount for -mininput=<amount>: '%s' + - + Wallet %s resides outside data directory %s. - + Cannot obtain a lock on data directory %s. BitBean is probably already running. - + - - BitBean - + + Verifying database integrity... + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect through socks proxy - + + 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. + - - Allow DNS lookups for -addnode, -seednode and -connect - + + wallet.dat corrupt, salvage failed + - - Loading addresses... - Cargando direcciones... + + Unknown -socks proxy version requested: %i + - + + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Cannot resolve -externalip address: '%s' + + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + Cargando indice de bloques... + + + Error loading blkindex.dat - + - + + Loading wallet... + Cargando billetera... + + + Error loading wallet.dat: Wallet corrupted - + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - + Wallet needed to be rewritten: restart BitBean to complete - + Error loading wallet.dat - + - - Invalid -proxy address: '%s' - + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - + + Cannot write default address + - - Cannot resolve -bind address: '%s' - + + Rescanning... + - - Cannot resolve -externalip address: '%s' - + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - + + Importing bootstrap blockchain data file. + - + + Loading addresses... + Cargando direcciones... + + + Error: could not start node - + - - Sending... - + + Done loading + Carga completa - - Invalid amount - + + Unable to bind to %s on this computer. BitBean is probably already running. + + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + - Insufficient funds - + Error: Wallet locked, unable to create transaction + - - Loading block index... - Cargando indice de bloques... + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Add a node to connect to and attempt to keep the connection open - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Unable to bind to %s on this computer. BitBean is probably already running. - + + Error: Transaction creation failed + - - Fee per KB to add to transactions you send - + + Sending... + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Loading wallet... - Cargando billetera... + + Invalid amount + - - Cannot downgrade wallet - + + Insufficient funds + - Cannot initialize keypool - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + + + + + Warning: This version is obsolete, upgrade required! + - Cannot write default address - + WARNING: syncronized checkpoint violation detected, but skipped! + - Rescanning... - + Warning: Disk space is low! + - - Done loading - Carga completa + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - To use the %s option - + Usage: + Uso: - - Error - + List commands + Lista de comandos - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + Loading addresses... + Cargando direcciones... + + + Loading block index... + Cargando indice de bloques... + + + Loading wallet... + Cargando billetera... + + + Done loading + Carga completa - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_es_UY.qm b/src/qt/locale/bitbean_es_UY.qm new file mode 100644 index 0000000..9695353 Binary files /dev/null and b/src/qt/locale/bitbean_es_UY.qm differ diff --git a/src/qt/locale/bitcoin_es_UY.ts b/src/qt/locale/bitbean_es_UY.ts similarity index 60% rename from src/qt/locale/bitcoin_es_UY.ts rename to src/qt/locale/bitbean_es_UY.ts index c376890..2bad853 100644 --- a/src/qt/locale/bitcoin_es_UY.ts +++ b/src/qt/locale/bitbean_es_UY.ts @@ -1,120 +1,123 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + Double-click to edit address or label Doble clic para editar etiqueta o dirección - + Create a new address Crear una nueva dirección - + Copy the currently selected address to the system clipboard Copia la dirección seleccionada al portapapeles del sistema - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete &Borrar Copy &Label - + &Edit - + Export Address Book Data - + @@ -124,12 +127,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -153,34 +156,34 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -229,24 +232,29 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + @@ -255,12 +263,7 @@ This product includes software developed by the OpenSSL Project for use in the O Monedero cifrado - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -298,337 +301,589 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet passphrase was successfully changed. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - Sincronizando con la red... + + Bean Control + - - &Overview - &Vista previa + + Quantity: + - - Show general overview of wallet - Mostrar descripción general del monedero + + Bytes: + - - &Transactions - &transaciones + + Amount: + - - Browse transaction history - Buscar en el historial de transacciones + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - + + Tree mode + - - Quit application - Salir de la aplicacion + + List mode + - - Show information about BitBean - + + Amount + - - About &Qt - + + Label + Etiqueta - - Show information about Qt - + + Address + Direccion - - &Options... - &Opciones... + + Date + Fecha - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - + Confirmed + - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - Cambie la clave utilizada para el cifrado del monedero + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Archivo + + DUST + - - &Settings - &Configuracion + + yes + - - &Help - &Ayuda + + no + - - Tabs toolbar - Barra de herramientas + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [prueba_de_red] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + (Sin etiqueta) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + - - Not staking because wallet is locked - + + (change) + + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - + + Vault + - - - %n second(s) ago - + + + &Overview + &Vista previa - - &Unlock Wallet... - + + Show general overview of wallet + Mostrar descripción general del monedero - - - %n minute(s) ago - + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &transaciones + + + + Browse transaction history + Buscar en el historial de transacciones + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + + + + + Quit application + Salir de la aplicacion + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + &Opciones... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + + + + + &Encrypt Wallet... + + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + + + + + Backup wallet to another location + + + + + &Change Passphrase... + + + + + Change the passphrase used for wallet encryption + Cambie la clave utilizada para el cifrado del monedero + + + + &Unlock Wallet... + + + + + Unlock wallet + Monedero destrabado + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + + + + + &Verify message... + + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + + + + + Open debugging and diagnostic console + + + + + &File + &Archivo + + + + &Settings + &Configuracion + + + + &Help + &Ayuda + + + + Tabs toolbar + Barra de herramientas + + + + Actions toolbar + + + + + + [testnet] + [prueba_de_red] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + Sincronizando con la red... + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + %n minute(s) ago + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - A la fecha + A la fecha Catching up... - Ponerse al dia... + Ponerse al dia... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Transaccion enviada + Transaccion enviada Incoming transaction - Transacción entrante + Transacción entrante @@ -637,347 +892,219 @@ Amount: %2 Type: %3 Address: %4 - + URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - El Monedero esta <b>cifrado</b> y actualmente <b>desbloqueado</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> + El Monedero esta <b>cifrado</b> y actualmente <b>bloqueado</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - + + + + %n day(s) - - - - - Not staking - - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - - - - - ClientModel - - - Network Alert - - - - - CoinControlDialog - - - Coin Control - - - - - Quantity: - - - - - Bytes: - - - - - Amount: - - - - - Priority: - - - - - Fee: - - - - - Low Output: - - - - - no - - - - - After Fee: - - - - - Change: - - - - - (un)select all - - - - - Tree mode - - - - - List mode - - - - - Amount - + + + + - - Label - - - - - Address - Direccion - - - - Date - Fecha + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - Confirmations - + + Not staking because wallet is locked + - - Confirmed - + + Not staking because wallet is offline + - - Priority - + + Not staking because wallet is syncing + - - Copy address - + + Not staking because you don't have mature beans + - - Copy label - + + Not staking + + + + BitcoinGUI - - - Copy amount - + Synchronizing with network... + Sincronizando con la red... - - Copy transaction ID - + &Overview + &Vista previa - - Copy quantity - + Show general overview of wallet + Mostrar descripción general del monedero - - Copy fee - + &Transactions + &transaciones - - Copy after fee - + Browse transaction history + Buscar en el historial de transacciones - - Copy bytes - + Quit application + Salir de la aplicacion - - Copy priority - + &Options... + &Opciones... - - Copy low output - + Change the passphrase used for wallet encryption + Cambie la clave utilizada para el cifrado del monedero - - Copy change - + &File + &Archivo - - highest - + &Settings + &Configuracion - - high - + &Help + &Ayuda - - medium-high - + Tabs toolbar + Barra de herramientas - - medium - + [testnet] + [prueba_de_red] - - low-medium - + Up to date + A la fecha - - low - + Catching up... + Ponerse al dia... - - lowest - + Sent transaction + Transaccion enviada - - DUST - + Incoming transaction + Transacción entrante - - yes - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + El Monedero esta <b>cifrado</b> y actualmente <b>desbloqueado</b> - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Wallet is <b>encrypted</b> and currently <b>locked</b> + El Monedero esta <b>cifrado</b> y actualmente <b>bloqueado</b> + + + ClientModel - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + + Network Alert + + + + CoinControlDialog - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Address + Direccion - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Date + Fecha - - (no label) - (Sin etiqueta) - - - - change from %1 (%2) - - - - - (change) - + (Sin etiqueta) EditAddressDialog - + Edit Address Editar dirección @@ -989,7 +1116,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -999,7 +1126,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1029,7 +1156,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1045,406 +1172,474 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Opciones - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - + &Cancel - + &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + The supplied proxy address is invalid. - + OverviewPage - + Form Formulario - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - - - - - Wallet - + - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: - + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + - Mined balance that has not yet matured - + Bean Stalk Height: + - - Total: - + + Sprouting Difficulty: + - - Your current total balance - + + Bean Weight: + - - <b>Recent transactions</b> - <b>Transacciones recientes</b> + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + - + + Total: + + + + <b>Recent transactions</b> + <b>Transacciones recientes</b> + + + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1458,188 +1653,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Enviar monedas + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - + @@ -1647,296 +1842,358 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Enviar a varios destinatarios a la vez + Enviar a varios destinatarios a la vez Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - Balance: + Balance: 123.456 BC - + Confirm the send action - Confirmar el envío + Confirmar el envío S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - + Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - Confirmar el envio de monedas + Confirm send beans + Are you sure you want to send %1? - + and - + 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. + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (Sin etiqueta) + (Sin etiqueta) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Formulario - + A&mount: - A&Monto: + A&Monto: Pay &To: - Pagar &A: + Pagar &A: - + 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 + Introduzca una etiqueta para esta dirección para añadirla a su libreta de direcciones &Label: - &Etiqueta: + &Etiqueta: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Pegar la dirección desde el portapapeles + Pegar la dirección desde el portapapeles Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + Enviar monedas + + + Send to multiple recipients at once + Enviar a varios destinatarios a la vez + + + Balance: + Balance: + + + Confirm the send action + Confirmar el envío + + + Confirm send coins + Confirmar el envio de monedas + + + The amount to pay must be larger than 0. + La cantidad a pagar debe ser mayor que 0. + + + (no label) + (Sin etiqueta) + + + + SendCoinsEntry + + A&mount: + A&Monto: + + + Pay &To: + Pagar &A: + + + 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: + + + Alt+A + Alt+A + + + Paste address from clipboard + Pegar la dirección desde el portapapeles + + + Alt+P + Alt+P 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1957,76 +2214,76 @@ This label turns red, if the priority is smaller than "medium". Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2034,59 +2291,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2099,37 +2356,43 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + conflicted - + %1/offline - + %1/unconfirmed - + %1 confirmations - + Status - + , broadcast through %n node(s) - + + + + @@ -2139,36 +2402,36 @@ This label turns red, if the priority is smaller than "medium". Source - + Generated - + From - + To - + own address - + label - + @@ -2177,17 +2440,20 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + + not accepted - + @@ -2195,72 +2461,72 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + @@ -2271,14 +2537,14 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details - + This pane shows a detailed description of the transaction - + @@ -2291,7 +2557,7 @@ This label turns red, if the priority is smaller than "medium". Type - + @@ -2301,7 +2567,7 @@ This label turns red, if the priority is smaller than "medium". Amount - + @@ -2311,102 +2577,105 @@ This label turns red, if the priority is smaller than "medium". Confirmed (%1 confirmations) - + Open for %n more block(s) - + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + This block was not received by any other nodes and will probably not be accepted! - + Generated but not accepted - + Received with - + Received from - + Sent to - + Payment to yourself - + - Mined - + SPROUT + (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. - + @@ -2415,107 +2684,107 @@ This label turns red, if the priority is smaller than "medium". 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 Data - + @@ -2525,7 +2794,7 @@ This label turns red, if the priority is smaller than "medium". Confirmed - + @@ -2535,7 +2804,7 @@ This label turns red, if the priority is smaller than "medium". Type - + @@ -2550,32 +2819,32 @@ This label turns red, if the priority is smaller than "medium". Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to - + @@ -2583,693 +2852,693 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core - - BitBean version - + + To use the %s option + - Usage: - + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - + + Error + - List commands - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - + + BitBean version + - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - + Usage: + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send command to -server or BitBeand + - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - + List commands + - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - - - - - Threshold for disconnecting misbehaving peers (default: 100) - + Get help for a command + - 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 - - - - - Detach block and address databases. Increases shutdown time (default: 0) - - - - - 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 - - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - - - - - Accept command line and JSON-RPC commands - + BitBean + - - Error: Transaction creation failed - + + Options: + - - Error: Wallet locked, unable to create transaction - + + This help message + - - Importing blockchain data file. - + + Specify configuration file (default: BitBean.conf) + - Importing bootstrap blockchain data file. - + Specify pid file (default: BitBeand.pid) + - - Run in the background as a daemon and accept commands - + + Specify data directory + - Use the test network - + Specify wallet file (within data directory) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Set database cache size in megabytes (default: 25) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Set database disk log size in megabytes (default: 100) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Specify connection timeout in milliseconds (default: 5000) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Connect through socks proxy + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Select the version of socks proxy to use (4-5, default: 5) + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Use proxy to reach tor hidden services (default: same as -proxy) + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Allow DNS lookups for -addnode, -seednode and -connect + - - 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. - + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Maintain at most <n> connections to peers (default: 125) + - - Block creation options: - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node(s) - - - - - Discover own IP address (default: 1 when listening and no -externalip) - - - - - Failed to listen on any port. Use -listen=0 if you want this. - - - - - Find peers using DNS lookup (default: 1) - + - - Sync checkpoints policy (default: strict) - + + Connect to a node to retrieve peer addresses, and disconnect + - - Invalid -tor address: '%s' - + + Specify your own public address + - - Invalid amount for -reservebalance=<amount> - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Discover own IP address (default: 1 when listening and no -externalip) + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Find peers using internet relay chat (default: 0) + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Output extra debugging information. Implies all other -debug* options - + + Bind to given address. Use [host]:port notation for IPv6 + - Output extra network debugging information - + Find peers using DNS lookup (default: 1) + - Prepend debug output with timestamp - + Stake your beans to support network and gain reward (default: 1) + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Select the version of socks proxy to use (4-5, default: 5) - + + Sync checkpoints policy (default: strict) + - - Send trace/debug info to console instead of debug.log file - + + Threshold for disconnecting misbehaving peers (default: 100) + - Send trace/debug info to debugger - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Set maximum block size in bytes (default: 250000) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Set minimum block size in bytes (default: 0) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Use UPnP to map the listening port (default: 1 when listening) + - - Specify connection timeout in milliseconds (default: 5000) - + + Use UPnP to map the listening port (default: 0) + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Use UPnP to map the listening port (default: 0) - + + Fee per KB to add to transactions you send + - - Use UPnP to map the listening port (default: 1 when listening) - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Accept command line and JSON-RPC commands + - - Username for JSON-RPC connections - + + Run in the background as a daemon and accept commands + - - Verifying database integrity... - + + Use the test network + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Output extra debugging information. Implies all other -debug* options + - Warning: Disk space is low! - + Output extra network debugging information + - - Warning: This version is obsolete, upgrade required! - + + Prepend debug output with timestamp + - - wallet.dat corrupt, salvage failed - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Password for JSON-RPC connections - + + Send trace/debug info to console instead of debug.log file + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Send trace/debug info to debugger + - - Find peers using internet relay chat (default: 0) - + + Username for JSON-RPC connections + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Password for JSON-RPC connections + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - + 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) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Require a confirmations for change (default: 0) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Upgrade wallet to latest format - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + - + + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) - + How thorough the block verification is (0-6, default: 1) - + Imports blocks from external blk000?.dat file - + - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Invalid amount for -paytxfee=<amount>: '%s' + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - This help message - + + Invalid amount for -mininput=<amount>: '%s' + - + Wallet %s resides outside data directory %s. - + Cannot obtain a lock on data directory %s. BitBean is probably already running. - + - - BitBean - + + Verifying database integrity... + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect through socks proxy - + + 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. + - - Allow DNS lookups for -addnode, -seednode and -connect - + + wallet.dat corrupt, salvage failed + - - Loading addresses... - + + Unknown -socks proxy version requested: %i + - + + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Cannot resolve -externalip address: '%s' + + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - + Wallet needed to be rewritten: restart BitBean to complete - + Error loading wallet.dat - + - - Invalid -proxy address: '%s' - + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - + + Cannot write default address + - - Cannot resolve -bind address: '%s' - + + Rescanning... + - - Cannot resolve -externalip address: '%s' - + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - + + Importing bootstrap blockchain data file. + - - Error: could not start node - + + Loading addresses... + - - Sending... - + + Error: could not start node + - - Invalid amount - + + Done loading + - Insufficient funds - + Unable to bind to %s on this computer. BitBean is probably already running. + - - Loading block index... - + + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Add a node to connect to and attempt to keep the connection open - + + Error: Wallet locked, unable to create transaction + - - Unable to bind to %s on this computer. BitBean is probably already running. - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Fee per KB to add to transactions you send - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: Transaction creation failed + - - Loading wallet... - + + Sending... + - - Cannot downgrade wallet - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Cannot initialize keypool - + + Invalid amount + - Cannot write default address - + Insufficient funds + - Rescanning... - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Done loading - + + Warning: This version is obsolete, upgrade required! + - - To use the %s option - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Error - + + Warning: Disk space is low! + - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_et.qm b/src/qt/locale/bitbean_et.qm new file mode 100644 index 0000000..7b6bdd6 Binary files /dev/null and b/src/qt/locale/bitbean_et.qm differ diff --git a/src/qt/locale/bitcoin_et.ts b/src/qt/locale/bitbean_et.ts similarity index 55% rename from src/qt/locale/bitcoin_et.ts rename to src/qt/locale/bitbean_et.ts index e09b592..147871e 100644 --- a/src/qt/locale/bitcoin_et.ts +++ b/src/qt/locale/bitbean_et.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean Info BitBean'i kohta - + <b>BitBean</b> version <b>BitBean</b>'i versioon - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - 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. - ⏎ + ⏎ See on eksperimentaalne tarkvara.⏎ ⏎ Levitatud MIT/X11 tarkvara litsentsi all, vaata kaasasolevat faili COPYING või http://www.opensource.org/licenses/mit-license.php⏎ @@ -37,72 +49,72 @@ Toode sisaldab OpenSSL Projekti all toodetud tarkvara, mis on kasutamiseks OpenS AddressBookPage - + Address Book Aadressiraamat - + Double-click to edit address or label Tee topeltklõps aadressi või märgise muutmiseks - + Create a new address Loo uus aadress - + Copy the currently selected address to the system clipboard Kopeeri valitud aadress vahemällu - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. Need on Sinu BitBean'i aadressid maksete vastuvõtmiseks. Soovi korral saad anda igale saatjale eraldi aadressi, et hõlpsamini omada ülevaadet, et kellelt mündid laekuvad. - + &Copy Address &Aadressi kopeerimine - + Show &QR Code Näita &QR koodi. - + Sign a message to prove you own a BitBean address Allkirjasta sõnum BitBean'i aadressi omamise tõestamiseks. Sign &Message - + - + Delete the currently selected address from the list Kustuta märgistatud aadress loetelust - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + &Kinnita Sõnum - + &Delete &Kustuta @@ -119,7 +131,7 @@ Toode sisaldab OpenSSL Projekti all toodetud tarkvara, mis on kasutamiseks OpenS Export Address Book Data - + @@ -129,12 +141,12 @@ Toode sisaldab OpenSSL Projekti all toodetud tarkvara, mis on kasutamiseks OpenS Error exporting - + Could not write to file %1. - + @@ -158,34 +170,34 @@ Toode sisaldab OpenSSL Projekti all toodetud tarkvara, mis on kasutamiseks OpenS AskPassphraseDialog - + Passphrase Dialog Salafraasi dialoog - + Enter passphrase Sisesta salasõna - + New passphrase Uus salasõna - + Repeat new passphrase Korda salafraasi - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -234,16 +246,21 @@ Toode sisaldab OpenSSL Projekti all toodetud tarkvara, mis on kasutamiseks OpenS - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + Kas soovid oma rahakoti krüpteerida? - Are you sure you wish to encrypt your wallet? - Kas soovid oma rahakoti krüpteerida? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 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. @@ -260,12 +277,7 @@ Toode sisaldab OpenSSL Projekti all toodetud tarkvara, mis on kasutamiseks OpenS Rahakott krüpteeritud - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -307,333 +319,585 @@ Toode sisaldab OpenSSL Projekti all toodetud tarkvara, mis on kasutamiseks OpenS - BitcoinGUI + BeanControlDialog - - Sign &message... - Signeeri &sõnum - - - - Synchronizing with network... - Võrgusünkimine... + + Bean Control + - - &Overview - &Ülevaade + + Quantity: + - - Show general overview of wallet - Kuva rahakoti üld-ülevaade + + Bytes: + - - &Transactions - &Tehingud + + Amount: + Summa: - - Browse transaction history - Sirvi tehingute ajalugu + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - V&älju + + Tree mode + - - Quit application - Väljumine + + List mode + - - Show information about BitBean - + + Amount + Kogus - - About &Qt - Teave &Qt kohta + + Label + Silt - - Show information about Qt - Kuva Qt kohta käiv info + + Address + Aadress - - &Options... - &Valikud... + + Date + Kuupäev - - &Encrypt Wallet... - &Krüpteeri Rahakott + + Confirmations + - &Backup Wallet... - &Varunda Rahakott + Confirmed + Kinnitatud - - &Change Passphrase... - &Salafraasi muutmine - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Aadressi kopeerimine - - &Export... - + + Copy label + Märgise kopeerimine - - Send coins to a BitBean address - + + + Copy amount + Kopeeri summa - - Modify configuration options for BitBean - + + Copy transaction ID + Kopeeri tehingu ID - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - Varunda rahakott teise asukohta + + Copy after fee + - - Change the passphrase used for wallet encryption - Rahakoti krüpteerimise salafraasi muutmine + + Copy bytes + - - &Debug window - &Debugimise aken + + Copy priority + - Open debugging and diagnostic console - Ava debugimise ja diagnostika konsool + Copy low output + - - &Verify message... - &Kontrolli sõnumit... + + Copy change + - - BitBean - + + highest + - - Wallet - Rahakott + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - &Näita / Peida + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Fail + + DUST + - - &Settings - &Seaded + + yes + - - &Help - &Abi + + no + - - Tabs toolbar - Vahelehe tööriistariba + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (silti pole) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + BitBean - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + &Ülevaade - - - %n second(s) ago - + + + Show general overview of wallet + Kuva rahakoti üld-ülevaade - - &Unlock Wallet... - + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Tehingud + + + + Browse transaction history + Sirvi tehingute ajalugu + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + V&älju + + + + Quit application + Väljumine + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + Teave &Qt kohta + + + + Show information about Qt + Kuva Qt kohta käiv info + + + + &Options... + &Valikud... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + &Näita / Peida + + + + &Encrypt Wallet... + &Krüpteeri Rahakott + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &Varunda Rahakott + + + + Backup wallet to another location + Varunda rahakott teise asukohta + + + + &Change Passphrase... + &Salafraasi muutmine + + + + Change the passphrase used for wallet encryption + Rahakoti krüpteerimise salafraasi muutmine + + + + &Unlock Wallet... + + + + + Unlock wallet + Tee rahakott lukust lahti. + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Signeeri &sõnum + + + + &Verify message... + &Kontrolli sõnumit... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + &Debugimise aken + + + + Open debugging and diagnostic console + Ava debugimise ja diagnostika konsool + + + + &File + &Fail + + + + &Settings + &Seaded + + + + &Help + &Abi + + + + Tabs toolbar + Vahelehe tööriistariba + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + Võrgusünkimine... + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + - + + %n second(s) ago + + + + + + + %n minute(s) ago - + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - Ajakohane + Ajakohane Catching up... - Jõuan... + Jõuan... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Saadetud tehing + Saadetud tehing Incoming transaction - Sisenev tehing + Sisenev tehing @@ -642,7 +906,7 @@ Amount: %2 Type: %3 Address: %4 - Kuupäev: %1⏎ + Kuupäev: %1⏎ Summa: %2⏎ Tüüp: %3⏎ Aadress: %4⏎ @@ -651,341 +915,318 @@ Aadress: %4⏎ URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Rahakott on <b>krüpteeritud</b> ning hetkel <b>avatud</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> + Rahakott on <b>krüpteeritud</b> ning hetkel <b>suletud</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - %n tund%n tundi + + %n tund + %n tundi + %n day(s) - %n päev%n päeva + + %n päev + %n päeva + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Võrgu Häire + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - + + Not staking because you don't have mature beans + - - Bytes: - + + Not staking + + + + BitcoinGUI - - Amount: - Summa: + Sign &message... + Signeeri &sõnum - - Priority: - + Synchronizing with network... + Võrgusünkimine... - - Fee: - + &Overview + &Ülevaade - - Low Output: - + Show general overview of wallet + Kuva rahakoti üld-ülevaade - - no - + &Transactions + &Tehingud - - After Fee: - + Browse transaction history + Sirvi tehingute ajalugu - - Change: - + E&xit + V&älju - - (un)select all - + Quit application + Väljumine - - Tree mode - + About &Qt + Teave &Qt kohta - - List mode - + Show information about Qt + Kuva Qt kohta käiv info - - Amount - Kogus + &Options... + &Valikud... - - Label - + &Encrypt Wallet... + &Krüpteeri Rahakott - - Address - Aadress + &Backup Wallet... + &Varunda Rahakott - - Date - Kuupäev + &Change Passphrase... + &Salafraasi muutmine - - Confirmations - + Backup wallet to another location + Varunda rahakott teise asukohta - - Confirmed - Kinnitatud + Change the passphrase used for wallet encryption + Rahakoti krüpteerimise salafraasi muutmine - - Priority - + &Debug window + &Debugimise aken - - Copy address - Aadressi kopeerimine + Open debugging and diagnostic console + Ava debugimise ja diagnostika konsool - - Copy label - Märgise kopeerimine + &Verify message... + &Kontrolli sõnumit... - - - Copy amount - Kopeeri summa + Wallet + Rahakott - - Copy transaction ID - Kopeeri tehingu ID + &Show / Hide + &Näita / Peida - - Copy quantity - + &File + &Fail - - Copy fee - + &Settings + &Seaded - - Copy after fee - + &Help + &Abi - - Copy bytes - + Tabs toolbar + Vahelehe tööriistariba - - Copy priority - + [testnet] + [testnet] - - Copy low output - + Up to date + Ajakohane - - Copy change - + Catching up... + Jõuan... - - highest - + Sent transaction + Saadetud tehing - - high - + Incoming transaction + Sisenev tehing - - medium-high - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Kuupäev: %1⏎ +Summa: %2⏎ +Tüüp: %3⏎ +Aadress: %4⏎ - - medium - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Rahakott on <b>krüpteeritud</b> ning hetkel <b>avatud</b> - - low-medium - + Wallet is <b>encrypted</b> and currently <b>locked</b> + Rahakott on <b>krüpteeritud</b> ning hetkel <b>suletud</b> + + + %n hour(s) + + %n tund + %n tundi + + + %n day(s) + + %n päev + %n päeva + + + + + ClientModel - - low - + + Network Alert + Võrgu Häire + + + CoinControlDialog - - lowest - + Amount: + Summa: - - DUST - + Amount + Kogus - - yes - + Address + Aadress - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Date + Kuupäev - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Confirmed + Kinnitatud - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Copy address + Aadressi kopeerimine - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy label + Märgise kopeerimine - - - (no label) - (silti pole) + Copy amount + Kopeeri summa - - change from %1 (%2) - + Copy transaction ID + Kopeeri tehingu ID - - (change) - + (no label) + (silti pole) EditAddressDialog - + Edit Address Muuda aadressi @@ -997,7 +1238,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1007,7 +1248,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1037,7 +1278,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1053,98 +1294,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Kasutus: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Valikud - + &Main %Peamine - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee Tasu tehingu &fee - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1154,7 +1395,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1164,12 +1405,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1179,7 +1420,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1239,7 +1480,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1248,31 +1489,35 @@ This label turns red, if the priority is smaller than "medium". - Choose the default subdivision unit to show in the interface and when sending coins. - Vali liideses ning müntide saatmisel kuvatav vaikimisi alajaotus. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - Tehingute loetelu &Display aadress + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + 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 BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + Tehingute loetelu &Display aadress - + &OK &OK @@ -1284,7 +1529,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1295,13 +1540,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1312,78 +1557,154 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Vorm - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - Rahakott + Rahakott - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: Ebaküps: + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + - Mined balance that has not yet matured - Mitte aegunud mine'itud jääk + Bean Stalk Height: + - - Total: - + + Sprouting Difficulty: + - - Your current total balance - + + Bean Weight: + - - <b>Recent transactions</b> - <b>Uuesti saadetud tehingud</b> + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + Mitte aegunud mine'itud jääk - - Total of coins that was staked, and do not yet count toward the current balance - + + Total: + + + + <b>Recent transactions</b> + <b>Uuesti saadetud tehingud</b> - + out of sync sünkimata @@ -1392,65 +1713,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Summa: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Kliendi nimi @@ -1501,7 +1822,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1531,17 +1852,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1556,12 +1877,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1571,7 +1892,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1581,7 +1902,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1595,59 +1916,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Müntide saatmine + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - Summa: + Summa: @@ -1655,296 +1976,394 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Saatmine mitmele korraga + Saatmine mitmele korraga Add &Recipient - Lisa &Saaja + Lisa &Saaja Remove all transaction fields - + Clear &All - Puhasta &Kõik + Puhasta &Kõik Balance: - Jääk: + Jääk: 123.456 BC - + Confirm the send action - Saatmise kinnitamine + Saatmise kinnitamine S&end - S&aada + S&aada - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - Kopeeri summa + Kopeeri summa Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - Müntide saatmise kinnitamine + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - Saaja aadress ei ole kehtiv, palun kontrolli. + Saaja aadress ei ole kehtiv, palun kontrolli. The amount to pay must be larger than 0. - Makstav summa peab olema suurem kui 0. + Makstav summa peab olema suurem kui 0. The amount exceeds your balance. - Summa ületab jäägi. + 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. + 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. + Ühe saatmisega topelt-adressaati olla ei tohi. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (silti pole) + (silti pole) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Vorm - + A&mount: - S&umma: + S&umma: Pay &To: - Maksa &: + Maksa &: - + Enter a label for this address to add it to your address book - Aadressiraamatusse sisestamiseks märgista aadress + Aadressiraamatusse sisestamiseks märgista aadress &Label: - &Märgis + &Märgis The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Kleebi aadress vahemälust + Kleebi aadress vahemälust Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + - SignVerifyMessageDialog + SendCoinsDialog - - Signatures - Sign / Verify a Message - Signatuurid - Allkirjasta / Kinnita Sõnum + Send Coins + Müntide saatmine - - - &Sign Message - &Allkirjastamise teade + Amount: + Summa: - + Send to multiple recipients at once + Saatmine mitmele korraga + + + Add &Recipient + Lisa &Saaja + + + Clear &All + Puhasta &Kõik + + + Balance: + Jääk: + + + Confirm the send action + Saatmise kinnitamine + + + S&end + S&aada + + + Copy amount + Kopeeri summa + + + Confirm send coins + Müntide saatmise kinnitamine + + + 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. + + + (no label) + (silti pole) + + + + SendCoinsEntry + + A&mount: + S&umma: + + + Pay &To: + Maksa &: + + + Enter a label for this address to add it to your address book + Aadressiraamatusse sisestamiseks märgista aadress + + + &Label: + &Märgis + + + Alt+A + Alt+A + + + Paste address from clipboard + Kleebi aadress vahemälust + + + Alt+P + Alt+P + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1975,7 +2394,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -2002,12 +2421,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2018,7 +2437,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2028,7 +2447,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2107,12 +2526,15 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + conflicted - + @@ -2137,7 +2559,10 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - , levita läbi %n node'i, levita läbi %n node'i + + , levita läbi %n node'i + , levita läbi %n node'i + @@ -2190,7 +2615,10 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - aegub %n bloki pärastaegub %n bloki pärast + + aegub %n bloki pärast + aegub %n bloki pärast + @@ -2232,8 +2660,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2279,7 +2707,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Tehingu üksikasjad @@ -2324,962 +2752,1292 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - Avaneb %n bloki pärastAvaneb %n bloki pärast + + Avaneb %n bloki pärast + Avaneb %n bloki pärast + + + + + Offline + + + + + Unconfirmed + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + 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 + + + + Received with + Saadud koos + + + + Received from + Kellelt saadud + + + + Sent to + Saadetud + + + + Payment to yourself + Makse iseendale + + + + SPROUT + + + + 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. + + + + 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 Data + + + + + Comma separated file (*.csv) + Komaeraldatud fail (*.csv) + + + + Confirmed + Kinnitatud + + + + Date + Kuupäev + + + + Type + Tüüp + + + + Label + Silt + + + + Address + Aadress + + + + Amount + Kogus + + + + ID + ID + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + Ulatus: + + + + to + saaja + + + + WalletModel + + + Sending... + Saatmine... + + + + bitbean-core + + + To use the %s option + %s valiku kasutamine + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Tõrge + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + rpcpassword=<password> peab sätete failis olema seadistatud:⏎ +%s⏎ +Kui seda faili ei ole, loo see ainult-omanikule-lugemiseks faili õigustes. + + + + BitBean version + + + + + Usage: + Kasutus: + + + + Send command to -server or BitBeand + + + + + List commands + Käskluste loetelu + + + + Get help for a command + Käskluste abiinfo + + + + BitBean + BitBean + + + + Options: + Valikud: + + + + This help message + Käesolev abitekst + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Täpsusta andmekataloog + + + + Specify wallet file (within data directory) + + + + + Set database cache size in megabytes (default: 25) + Sea andmebaasi vahemälu suurus MB (vaikeväärtus: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Sea ühenduse timeout millisekundites (vaikeväärtus: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + -addnode, -seednode ja -connect tohivad kasutada DNS lookup'i + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Säilita vähemalt <n> ühendust peeridega (vaikeväärtus: 125) + + + + Add a node to connect to and attempt to keep the connection open + Lisa node ning hoia ühendus avatud + + + + Connect only to the specified node(s) + Ühendu ainult määratud node'i(de)ga + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Ühenda ainult node'idega <net> võrgus (IPv4, IPv6 või Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Leia oma IP aadress (vaikeväärtus: 1, kui kuulatakse ning puudub -externalip) + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Luba välisühendusi (vaikeväärtus: 1 kui puudub -proxy või -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Kasuta kuulatava pordi määramiseks UPnP ühendust (vaikeväärtus: 1, kui kuulatakse) + + + + Use UPnP to map the listening port (default: 0) + Kasuta kuulatava pordi määramiseks UPnP ühendust (vaikeväärtus: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + Luba käsurea ning JSON-RPC käsklusi + + + + Run in the background as a daemon and accept commands + Tööta taustal ning aktsepteeri käsklusi + + + + Use the test network + Testvõrgu kasutamine + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + 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) + + + + Send trace/debug info to console instead of debug.log file + Saada jälitus/debug, debug.log faili asemel, konsooli + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + JSON-RPC ühenduste kasutajatunnus + + + + Password for JSON-RPC connections + JSON-RPC ühenduste salasõna + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + Allow JSON-RPC connections from specified IP address + JSON-RPC ühenduste lubamine kindla IP pealt - - Offline - + + 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) - - Unconfirmed - + + 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) - Confirming (%1 of %2 recommended confirmations) - + 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) - - Conflicted - + + Require a confirmations for change (default: 0) + - - Immature (%1 confirmations, will be available after %2) - + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - - 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! + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - Generated but not accepted - Loodud, kuid aktsepteerimata + Upgrade wallet to latest format + Uuenda rahakott uusimasse vormingusse - - Received with - Saadud koos + + Set key pool size to <n> (default: 100) + Sea võtmete hulgaks <n> (vaikeväärtus: 100) - - Received from - Kellelt saadud + + Rescan the block chain for missing wallet transactions + Otsi ploki jadast rahakoti kadunud tehinguid - - Sent to - Saadetud + + Attempt to recover private keys from a corrupt wallet.dat + Püüa vigasest wallet.dat failist taastada turvavõtmed - - Payment to yourself - Makse iseendale + + How many blocks to check at startup (default: 2500, 0 = all) + - - Mined - Mine'itud + + How thorough the block verification is (0-6, default: 1) + - - (n/a) - (n/a) + + Imports blocks from external blk000?.dat file + - - Transaction status. Hover over this field to show number of confirmations. - Tehingu staatus. Kinnituste arvu kuvamiseks liigu hiire noolega selle peale. + + Block creation options: + Blokeeri loomise valikud: - - Date and time that the transaction was received. - Tehingu saamise kuupäev ning kellaaeg. + + Set minimum block size in bytes (default: 0) + Sea minimaalne bloki suurus baitides (vaikeväärtus: 0) - - Type of transaction. - Tehingu tüüp. + + Set maximum block size in bytes (default: 250000) + - - Destination address of transaction. - Tehingu saaja aadress. + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Amount removed from or added to balance. - Jäägile lisatud või eemaldatud summa. + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - - - TransactionView - - - All - Kõik + + Use OpenSSL (https) for JSON-RPC connections + Kasuta JSON-RPC ühenduste jaoks OpenSSL'i (https) - - Today - Täna + + Server certificate file (default: server.cert) + Serveri sertifikaadifail (vaikeväärtus: server.cert) - This week - Jooksev nädal + Server private key (default: server.pem) + Serveri privaatvõti (vaikeväärtus: server.pem) - This month - Jooksev kuu + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + + Invalid amount for -paytxfee=<amount>: '%s' + -paytxfee=<amount> jaoks vigane kogus: '%s' - Last month - Eelmine kuu + 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. + + + + Invalid amount for -mininput=<amount>: '%s' + - This year - Jooksev aasta + Wallet %s resides outside data directory %s. + Rahakott %s paikenb väljaspool kataloogi %s. - Range... - Ulatus... + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Received with - Saadud koos + + Verifying database integrity... + - - Sent to - Saadetud + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - To yourself - Iseendale + + 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. - - Mined - Mine'itud + + wallet.dat corrupt, salvage failed + wallet.dat fail on katki, päästmine ebaõnnestus - Other - Muu + Unknown -socks proxy version requested: %i + Küsitud tundmatu -socks proxi versioon: %i - - Enter address or label to search - Otsimiseks sisesta märgis või aadress + + Unknown network specified in -onlynet: '%s' + Kirjeldatud tundmatu võrgustik -onlynet'is: '%s' - - Min amount - Vähim summa + + Invalid -proxy address: '%s' + Vigane -proxi aadress: '%s' - - Copy address - Aadressi kopeerimine + + Invalid -tor address: '%s' + - Copy label - Märgise kopeerimine + Cannot resolve -bind address: '%s' + Tundmatu -bind aadress: '%s' - Copy amount - Kopeeri summa + Failed to listen on any port. Use -listen=0 if you want this. + Pordi kuulamine nurjus. Soovikorral kasuta -listen=0. - Copy transaction ID - Kopeeri tehingu ID + Cannot resolve -externalip address: '%s' + Tundmatu -externalip aadress: '%s' - Edit label - Märgise muutmine + Invalid amount for -reservebalance=<amount> + - Show transaction details - Kuva tehingu detailid + Unable to sign checkpoint, wrong checkpointkey? + + - - Export Transaction Data - + + Loading block index... + Klotside indeksi laadimine... - Comma separated file (*.csv) - Komaeraldatud fail (*.csv) + Error loading blkindex.dat + Viga faili blkindex.dat laadimisel - - Confirmed - Kinnitatud + + Loading wallet... + Rahakoti laadimine... - Date - Kuupäev + Error loading wallet.dat: Wallet corrupted + Viga wallet.dat käivitamisel. Vigane rahakkott - Type - Tüüp + 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. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Viga faili wallet.dat laadimisel: rahakott vajab BitBean'i uuemat versiooni. - Label - Silt + Wallet needed to be rewritten: restart BitBean to complete + Rahakott on vaja üle kirjutada: käivita BitBean uuesti toimingu lõpetamiseks - Address - Aadress + Error loading wallet.dat + Viga wallet.dat käivitamisel - Amount - Kogus + Cannot downgrade wallet + Rahakoti vanandamine ebaõnnestus - ID - ID + Cannot initialize keypool + - - Error exporting - + + Cannot write default address + Tõrge vaikimisi aadressi kirjutamisel - - Could not write to file %1. - + + Rescanning... + Üleskaneerimine... - - Range: - Ulatus: + + Importing blockchain data file. + - - to - saaja + + Importing bootstrap blockchain data file. + - - - WalletModel - - Sending... - + + Loading addresses... + Aadresside laadimine... - - - bitcoin-core - - BitBean version - + + Error: could not start node + - Usage: - Kasutus: + Done loading + Laetud - Send command to -server or BitBeand - + Unable to bind to %s on this computer. BitBean is probably already running. + + + + + 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) - List commands - Käskluste loetelu + Error: Wallet locked, unable to create transaction + - Get help for a command - Käskluste abiinfo + Error: Wallet unlocked for staking only, unable to create transaction. + - - Options: - Valikud: + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Specify configuration file (default: BitBean.conf) - + + Error: Transaction creation failed + - Specify pid file (default: BitBeand.pid) - + Sending... + Saatmine... - - Specify wallet file (within data directory) - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Specify data directory - Täpsusta andmekataloog + + Invalid amount + Kehtetu summa - - Set database cache size in megabytes (default: 25) - Sea andmebaasi vahemälu suurus MB (vaikeväärtus: 25) + + Insufficient funds + Liiga suur summa - Set database disk log size in megabytes (default: 100) - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Warning: This version is obsolete, upgrade required! + Hoiatus: versioon on aegunud, uuendus on nõutav! - 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 + WARNING: syncronized checkpoint violation detected, but skipped! + - Specify your own public address - Täpsusta enda avalik aadress + Warning: Disk space is low! + - - Bind to given address. Use [host]:port notation for IPv6 - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Stake your coins to support network and gain reward (default: 1) - + Usage: + Kasutus: - - Threshold for disconnecting misbehaving peers (default: 100) - Ulakate peeride valulävi (vaikeväärtus: 100) + List commands + Käskluste loetelu - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Mitme sekundi pärast ulakad peerid tagasi võivad tulla (vaikeväärtus: 86400) + Get help for a command + Käskluste abiinfo - - 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 + Options: + Valikud: - - Detach block and address databases. Increases shutdown time (default: 0) - + Specify data directory + Täpsusta andmekataloog - - 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. - + Set database cache size in megabytes (default: 25) + Sea andmebaasi vahemälu suurus MB (vaikeväärtus: 25) - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + Maintain at most <n> connections to peers (default: 125) + Säilita vähemalt <n> ühendust peeridega (vaikeväärtus: 125) - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + Connect to a node to retrieve peer addresses, and disconnect + Peeri aadressi saamiseks ühendu korraks node'iga - - Accept command line and JSON-RPC commands - Luba käsurea ning JSON-RPC käsklusi + Specify your own public address + Täpsusta enda avalik aadress - - Error: Transaction creation failed - + Threshold for disconnecting misbehaving peers (default: 100) + Ulakate peeride valulävi (vaikeväärtus: 100) - - Error: Wallet locked, unable to create transaction - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Mitme sekundi pärast ulakad peerid tagasi võivad tulla (vaikeväärtus: 86400) - - Importing blockchain data file. - + 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 - - Importing bootstrap blockchain data file. - + Accept command line and JSON-RPC commands + Luba käsurea ning JSON-RPC käsklusi - Run in the background as a daemon and accept commands - Tööta taustal ning aktsepteeri käsklusi + Tööta taustal ning aktsepteeri käsklusi - Use the test network - Testvõrgu kasutamine + 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) + Luba välisühendusi (vaikeväärtus: 1 kui puudub -proxy või -connect) - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + RPC pordi %u kuulamiseks seadistamisel ilmnes viga IPv6'l, lülitumine tagasi IPv4'le : %s - 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. + 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 BitBean will not work properly. - - - - 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. + 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. + 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. - Attempt to recover private keys from a corrupt wallet.dat - Püüa vigasest wallet.dat failist taastada turvavõtmed + Püüa vigasest wallet.dat failist taastada turvavõtmed - Block creation options: - Blokeeri loomise valikud: + Blokeeri loomise valikud: - Connect only to the specified node(s) - Ühendu ainult määratud node'i(de)ga + Ühendu ainult määratud node'i(de)ga - Discover own IP address (default: 1 when listening and no -externalip) - Leia oma IP aadress (vaikeväärtus: 1, kui kuulatakse ning puudub -externalip) + Leia oma IP aadress (vaikeväärtus: 1, kui kuulatakse ning puudub -externalip) - Failed to listen on any port. Use -listen=0 if you want this. - Pordi kuulamine nurjus. Soovikorral kasuta -listen=0. - - - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - + Pordi kuulamine nurjus. Soovikorral kasuta -listen=0. - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Maksimaalne saamise puhver -connection kohta , <n>*1000 baiti (vaikeväärtus: 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) + Maksimaalne saatmise puhver -connection kohta , <n>*1000 baiti (vaikeväärtus: 1000) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Ühenda ainult node'idega <net> võrgus (IPv4, IPv6 või Tor) - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - + Ü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) - - - - Select the version of socks proxy to use (4-5, default: 5) - + SSL valikud: (vaata Bitcoini Wikist või SSL sätete juhendist) - Send trace/debug info to console instead of debug.log file - Saada jälitus/debug, debug.log faili asemel, konsooli - - - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - + 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) + Sea minimaalne bloki suurus baitides (vaikeväärtus: 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) + Kahanda programmi käivitamisel debug.log faili (vaikeväärtus: 1, kui ei ole -debug) - Specify connection timeout in milliseconds (default: 5000) - Sea ühenduse timeout millisekundites (vaikeväärtus: 5000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - + Sea ühenduse timeout millisekundites (vaikeväärtus: 5000) - Use UPnP to map the listening port (default: 0) - Kasuta kuulatava pordi määramiseks UPnP ühendust (vaikeväärtus: 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - + Kasuta kuulatava pordi määramiseks UPnP ühendust (vaikeväärtus: 1, kui kuulatakse) - Username for JSON-RPC connections - JSON-RPC ühenduste kasutajatunnus - - - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - + JSON-RPC ühenduste kasutajatunnus - Warning: This version is obsolete, upgrade required! - Hoiatus: versioon on aegunud, uuendus on nõutav! + Hoiatus: versioon on aegunud, uuendus on nõutav! - wallet.dat corrupt, salvage failed - wallet.dat fail on katki, päästmine ebaõnnestus + wallet.dat fail on katki, päästmine ebaõnnestus - Password for JSON-RPC connections - JSON-RPC ühenduste salasõna - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - + JSON-RPC ühenduste salasõna - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - - - - Allow JSON-RPC connections from specified IP address - JSON-RPC ühenduste lubamine kindla IP pealt + 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) + 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) + Käivita käsklus, kui parim plokk muutub (käskluse %s asendatakse ploki hash'iga) - 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) - - - - Require a confirmations for change (default: 0) - + Käivita käsklus, kui rahakoti tehing muutub (%s cmd's muudetakse TxID'ks) - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - - - - Upgrade wallet to latest format - Uuenda rahakott uusimasse vormingusse + Uuenda rahakott uusimasse vormingusse - Set key pool size to <n> (default: 100) - Sea võtmete hulgaks <n> (vaikeväärtus: 100) + Sea võtmete hulgaks <n> (vaikeväärtus: 100) - Rescan the block chain for missing wallet transactions - Otsi ploki jadast rahakoti kadunud tehinguid - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - + Otsi ploki jadast rahakoti kadunud tehinguid - Use OpenSSL (https) for JSON-RPC connections - Kasuta JSON-RPC ühenduste jaoks OpenSSL'i (https) + Kasuta JSON-RPC ühenduste jaoks OpenSSL'i (https) - Server certificate file (default: server.cert) - Serveri sertifikaadifail (vaikeväärtus: server.cert) + Serveri sertifikaadifail (vaikeväärtus: server.cert) - Server private key (default: server.pem) - Serveri privaatvõti (vaikeväärtus: server.pem) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + Serveri privaatvõti (vaikeväärtus: server.pem) - This help message - Käesolev abitekst + Käesolev abitekst - Wallet %s resides outside data directory %s. - Rahakott %s paikenb väljaspool kataloogi %s. - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + Rahakott %s paikenb väljaspool kataloogi %s. - BitBean - BitBean + BitBean - 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) - - - - Connect through socks proxy - + 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 + -addnode, -seednode ja -connect tohivad kasutada DNS lookup'i - Loading addresses... - Aadresside laadimine... + Aadresside laadimine... - Error loading blkindex.dat - Viga faili blkindex.dat laadimisel + Viga faili blkindex.dat laadimisel - Error loading wallet.dat: Wallet corrupted - Viga wallet.dat käivitamisel. Vigane rahakkott + Viga wallet.dat käivitamisel. Vigane rahakkott - Error loading wallet.dat: Wallet requires newer version of BitBean - Viga faili wallet.dat laadimisel: rahakott vajab BitBean'i uuemat versiooni. + Viga faili wallet.dat laadimisel: rahakott vajab BitBean'i uuemat versiooni. - Wallet needed to be rewritten: restart BitBean to complete - Rahakott on vaja üle kirjutada: käivita BitBean uuesti toimingu lõpetamiseks + Rahakott on vaja üle kirjutada: käivita BitBean uuesti toimingu lõpetamiseks - Error loading wallet.dat - Viga wallet.dat käivitamisel + Viga wallet.dat käivitamisel - Invalid -proxy address: '%s' - Vigane -proxi aadress: '%s' + Vigane -proxi aadress: '%s' - Unknown network specified in -onlynet: '%s' - Kirjeldatud tundmatu võrgustik -onlynet'is: '%s' + Kirjeldatud tundmatu võrgustik -onlynet'is: '%s' - Unknown -socks proxy version requested: %i - Küsitud tundmatu -socks proxi versioon: %i + Küsitud tundmatu -socks proxi versioon: %i - Cannot resolve -bind address: '%s' - Tundmatu -bind aadress: '%s' + Tundmatu -bind aadress: '%s' - Cannot resolve -externalip address: '%s' - Tundmatu -externalip aadress: '%s' + Tundmatu -externalip aadress: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - -paytxfee=<amount> jaoks vigane kogus: '%s' - - - - Error: could not start node - + -paytxfee=<amount> jaoks vigane kogus: '%s' - Sending... - Saatmine... + Saatmine... - Invalid amount - Kehtetu summa + Kehtetu summa - Insufficient funds - Liiga suur summa + Liiga suur summa - Loading block index... - Klotside indeksi laadimine... + 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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + Lisa node ning hoia ühendus avatud - Loading wallet... - Rahakoti laadimine... + Rahakoti laadimine... - Cannot downgrade wallet - Rahakoti vanandamine ebaõnnestus - - - - Cannot initialize keypool - + Rahakoti vanandamine ebaõnnestus - Cannot write default address - Tõrge vaikimisi aadressi kirjutamisel + Tõrge vaikimisi aadressi kirjutamisel - Rescanning... - Üleskaneerimine... + Üleskaneerimine... - Done loading - Laetud + Laetud - To use the %s option - %s valiku kasutamine + %s valiku kasutamine - Error - Tõrge + 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. - rpcpassword=<password> peab sätete failis olema seadistatud:⏎ + rpcpassword=<password> peab sätete failis olema seadistatud:⏎ %s⏎ 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.qm b/src/qt/locale/bitbean_eu_ES.qm similarity index 50% rename from src/qt/locale/bitcoin_eu_ES.qm rename to src/qt/locale/bitbean_eu_ES.qm index e265b8c..0c3a212 100644 Binary files a/src/qt/locale/bitcoin_eu_ES.qm and b/src/qt/locale/bitbean_eu_ES.qm differ diff --git a/src/qt/locale/bitcoin_eu_ES.ts b/src/qt/locale/bitbean_eu_ES.ts similarity index 60% rename from src/qt/locale/bitcoin_eu_ES.ts rename to src/qt/locale/bitbean_eu_ES.ts index c78fdac..d654eba 100644 --- a/src/qt/locale/bitcoin_eu_ES.ts +++ b/src/qt/locale/bitbean_eu_ES.ts @@ -1,120 +1,123 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + Double-click to edit address or label Klik bikoitza helbidea edo etiketa editatzeko - + Create a new address Sortu helbide berria - + Copy the currently selected address to the system clipboard Kopiatu hautatutako helbidea sistemaren arbelera - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete &Ezabatu Copy &Label - + &Edit - + Export Address Book Data - + @@ -124,12 +127,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -153,34 +156,34 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -229,24 +232,29 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + @@ -255,12 +263,7 @@ This product includes software developed by the OpenSSL Project for use in the O Zorroa enkriptatuta - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -298,337 +301,589 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet passphrase was successfully changed. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - Sarearekin sinkronizatzen... + + Bean Control + - - &Overview - &Gainbegiratu + + Quantity: + - - Show general overview of wallet - Ikusi zorroaren begirada orokorra + + Bytes: + - - &Transactions - &Transakzioak + + Amount: + Kopurua - - Browse transaction history - Ikusi transakzioen historia + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - Irten + + Tree mode + - - Quit application - Irten aplikaziotik + + List mode + - - Show information about BitBean - + + Amount + Kopurua - - About &Qt - &Qt-ari buruz + + Label + Etiketa - - Show information about Qt - Erakutsi Bitcoin-i buruzko informazioa + + Address + Helbidea - - &Options... - &Aukerak... + + Date + Data - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - + Confirmed + - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Kopiatu helbidea - - &Export... - + + Copy label + Kopiatu etiketa - - Send coins to a BitBean address - + + + Copy amount + - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - Aldatu zorroa enkriptatzeko erabilitako pasahitza + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Artxiboa + + DUST + - - &Settings - &Ezarpenak + + yes + - - &Help - &Laguntza + + no + - - Tabs toolbar - Fitxen tresna-barra + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + (etiketarik ez) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + - - Not staking because wallet is locked - + + (change) + + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - + + Vault + - - - %n second(s) ago - + + + &Overview + &Gainbegiratu - - &Unlock Wallet... - + + Show general overview of wallet + Ikusi zorroaren begirada orokorra - - - %n minute(s) ago - + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transakzioak + + + + Browse transaction history + Ikusi transakzioen historia + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + Irten + + + + Quit application + Irten aplikaziotik + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + &Qt-ari buruz + + + + Show information about Qt + Erakutsi Bitcoin-i buruzko informazioa + + + + &Options... + &Aukerak... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + + + + + &Encrypt Wallet... + + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + + + + + Backup wallet to another location + + + + + &Change Passphrase... + + + + + Change the passphrase used for wallet encryption + Aldatu zorroa enkriptatzeko erabilitako pasahitza + + + + &Unlock Wallet... + + + + + Unlock wallet + Desblokeatu zorroa + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + + + + + &Verify message... + + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + + + + + Open debugging and diagnostic console + + + + + &File + &Artxiboa + + + + &Settings + &Ezarpenak + + + + &Help + &Laguntza + + + + Tabs toolbar + Fitxen tresna-barra + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + Sarearekin sinkronizatzen... + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + %n minute(s) ago + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - Egunean + Egunean Catching up... - Eguneratzen... + Eguneratzen... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Bidalitako transakzioa + Bidalitako transakzioa Incoming transaction - Sarrerako transakzioa + Sarrerako transakzioa @@ -637,347 +892,247 @@ Amount: %2 Type: %3 Address: %4 - + URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Zorroa <b>enkriptatuta</b> eta <b>desblokeatuta</b> dago une honetan + 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 + Zorroa <b>enkriptatuta</b> eta <b>blokeatuta</b> dago une honetan Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - + + + + %n day(s) - - - - - Not staking - - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - - - - - ClientModel - - - Network Alert - - - - - CoinControlDialog - - - Coin Control - - - - - Quantity: - - - - - Bytes: - - - - - Amount: - Kopurua + + + + - - Priority: - - - - - Fee: - - - - - Low Output: - - - - - no - - - - - After Fee: - - - - - Change: - - - - - (un)select all - - - - - Tree mode - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - List mode - + + Not staking because wallet is locked + - - Amount - Kopurua + + Not staking because wallet is offline + - - Label - + + Not staking because wallet is syncing + - - Address - Helbidea + + Not staking because you don't have mature beans + - - Date - Data + + Not staking + + + + BitcoinGUI - - Confirmations - + Synchronizing with network... + Sarearekin sinkronizatzen... - - Confirmed - + &Overview + &Gainbegiratu - - Priority - + Show general overview of wallet + Ikusi zorroaren begirada orokorra - - Copy address - Kopiatu helbidea + &Transactions + &Transakzioak - - Copy label - Kopiatu etiketa + Browse transaction history + Ikusi transakzioen historia - - - Copy amount - + E&xit + Irten - - Copy transaction ID - + Quit application + Irten aplikaziotik - - Copy quantity - + About &Qt + &Qt-ari buruz - - Copy fee - + Show information about Qt + Erakutsi Bitcoin-i buruzko informazioa - - Copy after fee - + &Options... + &Aukerak... - - Copy bytes - + Change the passphrase used for wallet encryption + Aldatu zorroa enkriptatzeko erabilitako pasahitza - - Copy priority - + &File + &Artxiboa - - Copy low output - + &Settings + &Ezarpenak - - Copy change - + &Help + &Laguntza - - highest - + Tabs toolbar + Fitxen tresna-barra - - high - + [testnet] + [testnet] - - medium-high - + Up to date + Egunean - - medium - + Catching up... + Eguneratzen... - - low-medium - + Sent transaction + Bidalitako transakzioa - - low - + Incoming transaction + Sarrerako transakzioa - - lowest - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Zorroa <b>enkriptatuta</b> eta <b>desblokeatuta</b> dago une honetan - - DUST - + Wallet is <b>encrypted</b> and currently <b>locked</b> + Zorroa <b>enkriptatuta</b> eta <b>blokeatuta</b> dago une honetan + + + ClientModel - - yes - + + Network Alert + + + + CoinControlDialog - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Amount: + Kopurua - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Amount + Kopurua - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Address + Helbidea - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Date + Data - - - (no label) - (etiketarik ez) + Copy address + Kopiatu helbidea - - change from %1 (%2) - + Copy label + Kopiatu etiketa - - (change) - + (no label) + (etiketarik ez) EditAddressDialog - + Edit Address Editatu helbidea @@ -989,7 +1144,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -999,7 +1154,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1029,7 +1184,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1045,406 +1200,474 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Aukerak - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - + &Cancel - + &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + The supplied proxy address is invalid. - + OverviewPage - + Form Inprimakia - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - - - - - Wallet - + - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: - + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + - Mined balance that has not yet matured - + Bean Stalk Height: + - - Total: - + + Sprouting Difficulty: + - - Your current total balance - + + Bean Weight: + - - <b>Recent transactions</b> - <b>Azken transakzioak</b> + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + Total: + + + + <b>Recent transactions</b> + <b>Azken transakzioak</b> - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Kopurua Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1458,188 +1681,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Bidali txanponak + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - Kopurua + Kopurua @@ -1647,296 +1870,362 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Bidali hainbat jasotzaileri batera + Bidali hainbat jasotzaileri batera Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - Saldoa: + Saldoa: 123.456 BC - + Confirm the send action - Berretsi bidaltzeko ekintza + Berretsi bidaltzeko ekintza S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - + Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - Berretsi txanponak bidaltzea + Confirm send beans + Are you sure you want to send %1? - + and - + 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. + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + + + + + (no label) + (etiketarik ez) + + + + WARNING: unknown change address + + + + + SendBeansEntry + + + Form + Inprimakia + + + + A&mount: + K&opurua: + + + + Pay &To: + Ordaindu &honi: + + + + + 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: + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose address from address book + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Itsatsi helbidea arbeletik + + + + Alt+P + Alt+P + + + + Remove this recipient + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Send Coins + Bidali txanponak + + + Amount: + Kopurua + + + Send to multiple recipients at once + Bidali hainbat jasotzaileri batera + + + Balance: + Saldoa: + + + Confirm the send action + Berretsi bidaltzeko ekintza + + + Confirm send coins + Berretsi txanponak bidaltzea - - (no label) - (etiketarik ez) + The amount to pay must be larger than 0. + Ordaintzeko kopurua 0 baino handiagoa izan behar du. - - WARNING: unknown change address - + (no label) + (etiketarik ez) SendCoinsEntry - - Form - - - - A&mount: - K&opurua: + K&opurua: - Pay &To: - Ordaindu &honi: + Ordaindu &honi: - - Enter a label for this address to add it to your address book - Sartu etiketa bat helbide honetarako, eta gehitu zure helbide-liburuan + Sartu etiketa bat helbide honetarako, eta gehitu zure helbide-liburuan - &Label: - &Etiketa: - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose address from address book - + &Etiketa: - Alt+A - Alt+A + Alt+A - Paste address from clipboard - Itsatsi helbidea arbeletik + Itsatsi helbidea arbeletik - Alt+P - Alt+P - - - - Remove this recipient - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Alt+P 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1957,76 +2246,76 @@ This label turns red, if the priority is smaller than "medium". Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2034,59 +2323,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2099,17 +2388,20 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + conflicted - + %1/offline - + @@ -2124,12 +2416,15 @@ This label turns red, if the priority is smaller than "medium". Status - + , broadcast through %n node(s) - + + + + @@ -2139,36 +2434,36 @@ This label turns red, if the priority is smaller than "medium". Source - + Generated - + From - + To - + own address - + label - + @@ -2177,17 +2472,20 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + + not accepted - + @@ -2195,52 +2493,52 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + @@ -2250,12 +2548,12 @@ This label turns red, if the priority is smaller than "medium". true - + false - + @@ -2271,7 +2569,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Transakzioaren xehetasunak @@ -2316,32 +2614,35 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2361,7 +2662,7 @@ This label turns red, if the priority is smaller than "medium". Received from - + @@ -2375,8 +2676,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - Bildua + Bildua @@ -2495,27 +2800,27 @@ This label turns red, if the priority is smaller than "medium". Copy amount - + Copy transaction ID - + Edit label - + Show transaction details - + Export Transaction Data - + @@ -2525,7 +2830,7 @@ This label turns red, if the priority is smaller than "medium". Confirmed - + @@ -2555,27 +2860,27 @@ This label turns red, if the priority is smaller than "medium". ID - + Error exporting - + Could not write to file %1. - + Range: - + to - + @@ -2583,693 +2888,720 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core - - BitBean version - + + To use the %s option + - Usage: - + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - + + Error + - List commands - Komandoen lista + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - Laguntza komando batean + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - Aukerak + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - + + BitBean version + - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - + Usage: + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send command to -server or BitBeand + - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - + List commands + Komandoen lista - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - + Get help for a command + Laguntza komando batean - - Threshold for disconnecting misbehaving peers (default: 100) - + + BitBean + - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Options: + Aukerak - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - + + This help message + Laguntza mezu hau - - Detach block and address databases. Increases shutdown time (default: 0) - + + Specify configuration file (default: BitBean.conf) + - - 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. - + + Specify pid file (default: BitBeand.pid) + - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Specify data directory + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Specify wallet file (within data directory) + - - Accept command line and JSON-RPC commands - + + Set database cache size in megabytes (default: 25) + - - Error: Transaction creation failed - + + Set database disk log size in megabytes (default: 100) + - - Error: Wallet locked, unable to create transaction - + + Specify connection timeout in milliseconds (default: 5000) + - - Importing blockchain data file. - + + Connect through socks proxy + - Importing bootstrap blockchain data file. - + Select the version of socks proxy to use (4-5, default: 5) + - - Run in the background as a daemon and accept commands - + + Use proxy to reach tor hidden services (default: same as -proxy) + - Use the test network - + Allow DNS lookups for -addnode, -seednode and -connect + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Maintain at most <n> connections to peers (default: 125) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Add a node to connect to and attempt to keep the connection open + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Connect only to the specified node(s) + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Connect to a node to retrieve peer addresses, and disconnect + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Specify your own public address + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - 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. - + + Discover own IP address (default: 1 when listening and no -externalip) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Find peers using internet relay chat (default: 0) + - - Block creation options: - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Connect only to the specified node(s) - + + Bind to given address. Use [host]:port notation for IPv6 + - - Discover own IP address (default: 1 when listening and no -externalip) - + + Find peers using DNS lookup (default: 1) + - - Failed to listen on any port. Use -listen=0 if you want this. - + + Stake your beans to support network and gain reward (default: 1) + - - Find peers using DNS lookup (default: 1) - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - + Sync checkpoints policy (default: strict) - + - - Invalid -tor address: '%s' - + + Threshold for disconnecting misbehaving peers (default: 100) + - - Invalid amount for -reservebalance=<amount> - + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - Output extra debugging information. Implies all other -debug* options - + - Output extra network debugging information - + Use UPnP to map the listening port (default: 1 when listening) + - Prepend debug output with timestamp - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Select the version of socks proxy to use (4-5, default: 5) - - - - - Send trace/debug info to console instead of debug.log file - + Use UPnP to map the listening port (default: 0) + - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - Unable to sign checkpoint, wrong checkpointkey? - - + Detach block and address databases. Increases shutdown time (default: 0) + - - Use UPnP to map the listening port (default: 0) - + + Fee per KB to add to transactions you send + - - Use UPnP to map the listening port (default: 1 when listening) - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Accept command line and JSON-RPC commands + - - Username for JSON-RPC connections - + + Run in the background as a daemon and accept commands + - - Verifying database integrity... - + + Use the test network + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Output extra debugging information. Implies all other -debug* options + - Warning: Disk space is low! - + Output extra network debugging information + - - Warning: This version is obsolete, upgrade required! - + + Prepend debug output with timestamp + - - wallet.dat corrupt, salvage failed - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Password for JSON-RPC connections - + + Send trace/debug info to console instead of debug.log file + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Send trace/debug info to debugger + - - Find peers using internet relay chat (default: 0) - + + Username for JSON-RPC connections + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Password for JSON-RPC connections + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - + 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) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Require a confirmations for change (default: 0) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Upgrade wallet to latest format - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + - + + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) - + How thorough the block verification is (0-6, default: 1) - + Imports blocks from external blk000?.dat file - + - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Invalid amount for -paytxfee=<amount>: '%s' + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - This help message - Laguntza mezu hau + + Invalid amount for -mininput=<amount>: '%s' + - + Wallet %s resides outside data directory %s. - + Cannot obtain a lock on data directory %s. BitBean is probably already running. - + - - BitBean - + + Verifying database integrity... + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect through socks proxy - + + 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. + - - Allow DNS lookups for -addnode, -seednode and -connect - + + wallet.dat corrupt, salvage failed + - - Loading addresses... - + + Unknown -socks proxy version requested: %i + - + + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Cannot resolve -externalip address: '%s' + + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - + Wallet needed to be rewritten: restart BitBean to complete - + Error loading wallet.dat - + - - Invalid -proxy address: '%s' - + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - + + Cannot write default address + - - Cannot resolve -bind address: '%s' - + + Rescanning... + Birbilatzen... - - Cannot resolve -externalip address: '%s' - + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - + + Importing bootstrap blockchain data file. + - + + Loading addresses... + + + + Error: could not start node - + - - Sending... - + + Done loading + Zamaketa amaitua - - Invalid amount - + + Unable to bind to %s on this computer. BitBean is probably already running. + + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + - Insufficient funds - + Error: Wallet locked, unable to create transaction + - - Loading block index... - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Add a node to connect to and attempt to keep the connection open - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Unable to bind to %s on this computer. BitBean is probably already running. - + + Error: Transaction creation failed + - - Fee per KB to add to transactions you send - + + Sending... + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Loading wallet... - + + Invalid amount + - - Cannot downgrade wallet - + + Insufficient funds + - Cannot initialize keypool - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + + + + + Warning: This version is obsolete, upgrade required! + - Cannot write default address - + WARNING: syncronized checkpoint violation detected, but skipped! + - Rescanning... - Birbilatzen... + Warning: Disk space is low! + - - Done loading - Zamaketa amaitua + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - To use the %s option - + List commands + Komandoen lista - - Error - + Get help for a command + Laguntza komando batean - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + Options: + Aukerak + + + This help message + Laguntza mezu hau + + + Rescanning... + Birbilatzen... + + + Done loading + Zamaketa amaitua - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fa.qm b/src/qt/locale/bitbean_fa.qm similarity index 51% rename from src/qt/locale/bitcoin_fa.qm rename to src/qt/locale/bitbean_fa.qm index 7a58a7f..7d4acae 100644 Binary files a/src/qt/locale/bitcoin_fa.qm and b/src/qt/locale/bitbean_fa.qm differ diff --git a/src/qt/locale/bitcoin_fa.ts b/src/qt/locale/bitbean_fa.ts similarity index 55% rename from src/qt/locale/bitcoin_fa.ts rename to src/qt/locale/bitbean_fa.ts index 0ccc114..355bc5d 100644 --- a/src/qt/locale/bitcoin_fa.ts +++ b/src/qt/locale/bitbean_fa.ts @@ -1,103 +1,115 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - ⏎ ⏎ این یک نرم‌افزار آزمایشی است⏎ ⏎ نرم افزار تحت مجوز MIT/X11 منتشر شده است. پروندهٔ COPYING یا نشانی http://www.opensource.org/licenses/mit-license.php. را ببینید⏎ ⏎ این محصول شامل نرم‌افزار توسعه داده‌شده در پروژهٔ OpenSSL است. در این نرم‌افزار از OpenSSL Toolkit (http://www.openssl.org/) و نرم‌افزار رمزنگاری نوشته شده توسط اریک یانگ (eay@cryptsoft.com) و UPnP توسط توماس برنارد استفاده شده است. + ⏎ ⏎ این یک نرم‌افزار آزمایشی است⏎ ⏎ نرم افزار تحت مجوز MIT/X11 منتشر شده است. پروندهٔ COPYING یا نشانی http://www.opensource.org/licenses/mit-license.php. را ببینید⏎ ⏎ این محصول شامل نرم‌افزار توسعه داده‌شده در پروژهٔ OpenSSL است. در این نرم‌افزار از OpenSSL Toolkit (http://www.openssl.org/) و نرم‌افزار رمزنگاری نوشته شده توسط اریک یانگ (eay@cryptsoft.com) و UPnP توسط توماس برنارد استفاده شده است. AddressBookPage - + Address Book - + - + Double-click to edit address or label برای ویرایش نشانی یا برچسب دوبار کلیک کنید - + Create a new address ایجاد نشانی جدید - + Copy the currently selected address to the system clipboard نشانی انتخاب شده را در حافظهٔ سیستم کپی کن! - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &کپی نشانی - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list حذف نشانی انتخاب‌شده از لیست - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + &شناسایی پیام - + &Delete &حذف @@ -114,7 +126,7 @@ This product includes software developed by the OpenSSL Project for use in the O Export Address Book Data - + @@ -124,12 +136,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -153,34 +165,34 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog پنجرهٔ گذرواژه - + Enter passphrase گذرواژه را وارد کنید - + New passphrase گذرواژهٔ جدید - + Repeat new passphrase تکرار گذرواژهٔ جدید - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -229,16 +241,21 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + آیا مطمئن هستید که می‌خواهید کیف پول خود را رمزنگاری کنید؟ - Are you sure you wish to encrypt your wallet? - آیا مطمئن هستید که می‌خواهید کیف پول خود را رمزنگاری کنید؟ + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. مهم: هر نسخهٔ پشتیبانی که تا کنون از کیف پول خود تهیه کرده‌اید، باید با کیف پول رمزنگاری شدهٔ جدید جایگزین شود. به دلایل امنیتی، پروندهٔ قدیمی کیف پول بدون رمزنگاری، تا زمانی که از کیف پول رمزنگاری‌شدهٔ جدید استفاده نکنید، غیرقابل استفاده خواهد بود. @@ -255,12 +272,7 @@ This product includes software developed by the OpenSSL Project for use in the O کیف پول رمزنگاری شد - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -302,333 +314,579 @@ This product includes software developed by the OpenSSL Project for use in the O - BitcoinGUI + BeanControlDialog - - Sign &message... - &امضای پیام... - - - - Synchronizing with network... - همگام‌سازی با شبکه... + + Bean Control + - - &Overview - &بررسی اجمالی + + Quantity: + - - Show general overview of wallet - نمایش بررسی اجمالی کیف پول + + Bytes: + - - &Transactions - &تراکنش‌ها + + Amount: + مبلغ: - - Browse transaction history - مرور تاریخچهٔ تراکنش‌ها + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - &خروج + + Tree mode + - - Quit application - خروج از برنامه + + List mode + - - Show information about BitBean - + + Amount + مبلغ - - About &Qt - دربارهٔ &کیوت + + Label + برچسب - - Show information about Qt - نمایش اطلاعات دربارهٔ کیوت + + Address + نشانی - - &Options... - &تنظیمات... + + Date + تاریخ - - &Encrypt Wallet... - &رمزنگاری کیف پول... + + Confirmations + - &Backup Wallet... - &پیشتیبان‌گیری از کیف پول... + Confirmed + تأیید شده - - &Change Passphrase... - &تغییر گذرواژه... - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + کپی نشانی - - &Export... - + + Copy label + کپی برچسب - - Send coins to a BitBean address - + + + Copy amount + کپی مقدار - - Modify configuration options for BitBean - + + Copy transaction ID + کپی شناسهٔ تراکنش - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - تهیهٔ پشتیبان از کیف پول در یک مکان دیگر + + Copy after fee + - - Change the passphrase used for wallet encryption - تغییر گذرواژهٔ مورد استفاده در رمزنگاری کیف پول + + Copy bytes + - - &Debug window - پنجرهٔ ا&شکال‌زدایی + + Copy priority + - Open debugging and diagnostic console - باز کردن کنسول خطایابی و اشکال‌زدایی + Copy low output + - - &Verify message... - با&زبینی پیام... + + Copy change + - - BitBean - + + highest + - - Wallet - کیف پول + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - &نمایش/ عدم نمایش + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &پرونده + + DUST + - - &Settings - &تنظیمات + + yes + - - &Help - &کمک‌رسانی + + no + - - Tabs toolbar - نوارابزار برگه‌ها + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [شبکهٔ آزمایش] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (بدون برچسب) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + &بررسی اجمالی - - - %n second(s) ago - + + + Show general overview of wallet + نمایش بررسی اجمالی کیف پول - - &Unlock Wallet... - + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &تراکنش‌ها + + + + Browse transaction history + مرور تاریخچهٔ تراکنش‌ها + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + &خروج + + + + Quit application + خروج از برنامه + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + دربارهٔ &کیوت + + + + Show information about Qt + نمایش اطلاعات دربارهٔ کیوت + + + + &Options... + &تنظیمات... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + &نمایش/ عدم نمایش + + + + &Encrypt Wallet... + &رمزنگاری کیف پول... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &پیشتیبان‌گیری از کیف پول... + + + + Backup wallet to another location + تهیهٔ پشتیبان از کیف پول در یک مکان دیگر + + + + &Change Passphrase... + &تغییر گذرواژه... + + + + Change the passphrase used for wallet encryption + تغییر گذرواژهٔ مورد استفاده در رمزنگاری کیف پول + + + + &Unlock Wallet... + + + + + Unlock wallet + باز کردن قفل کیف پول + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + &امضای پیام... + + + + &Verify message... + با&زبینی پیام... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + پنجرهٔ ا&شکال‌زدایی + + + + Open debugging and diagnostic console + باز کردن کنسول خطایابی و اشکال‌زدایی + + + + &File + &پرونده + + + + &Settings + &تنظیمات + + + + &Help + &کمک‌رسانی + + + + Tabs toolbar + نوارابزار برگه‌ها + + + + Actions toolbar + + + + + + [testnet] + [شبکهٔ آزمایش] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + Synchronizing with network... + همگام‌سازی با شبکه... + + + + ~%n block(s) remaining + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + - + + %n second(s) ago + + + + + + %n minute(s) ago - + + + %n hour(s) ago - + + + %n day(s) ago - + + + Up to date - وضعیت به‌روز + وضعیت به‌روز Catching up... - به‌روز رسانی... + به‌روز رسانی... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - تراکنش ارسال شد + تراکنش ارسال شد Incoming transaction - تراکنش دریافت شد + تراکنش دریافت شد @@ -637,7 +895,7 @@ Amount: %2 Type: %3 Address: %4 - تاریخ: %1 + تاریخ: %1 مبلغ: %2 نوع: %3 نشانی: %4 @@ -647,341 +905,313 @@ Address: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - کیف پول <b>رمزنگاری شده</b> است و هم‌اکنون <b>باز</b> است + کیف پول <b>رمزنگاری شده</b> است و هم‌اکنون <b>باز</b> است Wallet is <b>encrypted</b> and currently <b>locked</b> - کیف پول <b>رمزنگاری شده</b> است و هم‌اکنون <b>قفل</b> است + کیف پول <b>رمزنگاری شده</b> است و هم‌اکنون <b>قفل</b> است Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + %n minute(s) - + + + %n hour(s) - %n ساعت + + %n ساعت + %n day(s) - %n روز + + %n روز + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - پیام شبکه + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - + + Not staking because you don't have mature beans + - - Bytes: - + + Not staking + + + + BitcoinGUI - - Amount: - مبلغ: + Sign &message... + &امضای پیام... - - Priority: - + Synchronizing with network... + همگام‌سازی با شبکه... - - Fee: - + &Overview + &بررسی اجمالی - - Low Output: - + Show general overview of wallet + نمایش بررسی اجمالی کیف پول - - no - + &Transactions + &تراکنش‌ها - - After Fee: - + Browse transaction history + مرور تاریخچهٔ تراکنش‌ها - - Change: - + E&xit + &خروج - - (un)select all - + Quit application + خروج از برنامه - - Tree mode - + About &Qt + دربارهٔ &کیوت - - List mode - + Show information about Qt + نمایش اطلاعات دربارهٔ کیوت - - Amount - مبلغ + &Options... + &تنظیمات... - - Label - + &Encrypt Wallet... + &رمزنگاری کیف پول... - - Address - نشانی + &Backup Wallet... + &پیشتیبان‌گیری از کیف پول... - - Date - تاریخ + &Change Passphrase... + &تغییر گذرواژه... - - Confirmations - + Backup wallet to another location + تهیهٔ پشتیبان از کیف پول در یک مکان دیگر - - Confirmed - تأیید شده + Change the passphrase used for wallet encryption + تغییر گذرواژهٔ مورد استفاده در رمزنگاری کیف پول - - Priority - + &Debug window + پنجرهٔ ا&شکال‌زدایی - - Copy address - کپی نشانی + Open debugging and diagnostic console + باز کردن کنسول خطایابی و اشکال‌زدایی - - Copy label - کپی برچسب + &Verify message... + با&زبینی پیام... - - - Copy amount - کپی مقدار + Wallet + کیف پول - - Copy transaction ID - کپی شناسهٔ تراکنش + &Show / Hide + &نمایش/ عدم نمایش - - Copy quantity - + &File + &پرونده - - Copy fee - + &Settings + &تنظیمات - - Copy after fee - + &Help + &کمک‌رسانی - - Copy bytes - + Tabs toolbar + نوارابزار برگه‌ها - - Copy priority - + [testnet] + [شبکهٔ آزمایش] - - Copy low output - + Up to date + وضعیت به‌روز - - Copy change - + Catching up... + به‌روز رسانی... - - highest - + Sent transaction + تراکنش ارسال شد - - high - + Incoming transaction + تراکنش دریافت شد - - medium-high - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + تاریخ: %1 +مبلغ: %2 +نوع: %3 +نشانی: %4 + - - medium - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + کیف پول <b>رمزنگاری شده</b> است و هم‌اکنون <b>باز</b> است - - low-medium - + Wallet is <b>encrypted</b> and currently <b>locked</b> + کیف پول <b>رمزنگاری شده</b> است و هم‌اکنون <b>قفل</b> است + + + %n hour(s) + + %n ساعت + + + + %n day(s) + + %n روز + + + + ClientModel - - low - + + Network Alert + پیام شبکه + + + CoinControlDialog - - lowest - + Amount: + مبلغ: - - DUST - + Amount + مبلغ - - yes - + Address + نشانی - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Date + تاریخ - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Confirmed + تأیید شده - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Copy address + کپی نشانی - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy label + کپی برچسب - - - (no label) - (بدون برچسب) + Copy amount + کپی مقدار - - change from %1 (%2) - + Copy transaction ID + کپی شناسهٔ تراکنش - - (change) - + (no label) + (بدون برچسب) EditAddressDialog - + Edit Address ویرایش نشانی @@ -993,7 +1223,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1003,7 +1233,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1033,7 +1263,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1049,98 +1279,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + استفاده: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options گزینه‌ها - + &Main &عمومی - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee پرداخت &کارمزد تراکنش - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1150,7 +1380,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1160,12 +1390,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1175,7 +1405,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1235,7 +1465,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1244,31 +1474,35 @@ This label turns red, if the priority is smaller than "medium". - Choose the default subdivision unit to show in the interface and when sending coins. - انتخاب واحد پول مورد استفاده برای نمایش در پنجره‌ها و برای ارسال سکه. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - نمایش ن&شانی‌ها در فهرست تراکنش‌ها + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + Choose the default subdivision unit to show in the interface and when sending coins. + انتخاب واحد پول مورد استفاده برای نمایش در پنجره‌ها و برای ارسال سکه. + + + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + نمایش ن&شانی‌ها در فهرست تراکنش‌ها - + &OK &تأیید @@ -1280,7 +1514,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1291,13 +1525,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1308,78 +1542,158 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form فرم - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - کیف پول + کیف پول - + Spendable: - + - + Your current spendable balance تراز علی‌الحساب شما - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: نارسیده: + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + Mined balance that has not yet matured - تراز استخراج شده از معدن که هنوز بالغ نشده است + تراز استخراج شده از معدن که هنوز بالغ نشده است - + Total: جمع کل: - Your current total balance - تراز کل فعلی شما + تراز کل فعلی شما - <b>Recent transactions</b> - <b>تراکنش‌های اخیر</b> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - - - - - Total of coins that was staked, and do not yet count toward the current balance - + <b>تراکنش‌های اخیر</b> - + out of sync ناهمگام @@ -1388,65 +1702,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + مبلغ: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name نام کلاینت @@ -1497,7 +1811,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1527,17 +1841,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1552,12 +1866,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1567,7 +1881,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1577,7 +1891,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1591,59 +1905,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - ارسال سکه + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - مبلغ: + مبلغ: @@ -1651,279 +1965,377 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - ارسال به چند دریافت‌کنندهٔ به‌طور همزمان + ارسال به چند دریافت‌کنندهٔ به‌طور همزمان Add &Recipient - &دریافت‌کنندهٔ جدید + &دریافت‌کنندهٔ جدید Remove all transaction fields - + Clear &All - پاکسازی &همه + Balance: - تزار: + تزار: 123.456 BC - + Confirm the send action - عملیات ارسال را تأیید کنید + عملیات ارسال را تأیید کنید S&end - &ارسال + &ارسال - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - کپی مقدار + کپی مقدار Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - ارسال سکه را تأیید کنید + Confirm send beans + Are you sure you want to send %1? - + and - + 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 برای هر تراکنش، مجموع میزان پرداختی از مبلغ تراز شما بیشتر می‌شود. + با احتساب هزینهٔ %1 برای هر تراکنش، مجموع میزان پرداختی از مبلغ تراز شما بیشتر می‌شود. Duplicate address found, can only send to each address once per send operation. - یک نشانی تکراری پیدا شد. در هر عملیات ارسال، به هر نشانی فقط مبلغ می‌توان ارسال کرد. + یک نشانی تکراری پیدا شد. در هر عملیات ارسال، به هر نشانی فقط مبلغ می‌توان ارسال کرد. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (بدون برچسب) + (بدون برچسب) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + فرم - + A&mount: - A&مبلغ : + A&مبلغ : Pay &To: - پرداخ&ت به: + پرداخ&ت به: - + Enter a label for this address to add it to your address book - برای این نشانی یک برچسب وارد کنید تا در دفترچهٔ آدرس ذخیره شود + برای این نشانی یک برچسب وارد کنید تا در دفترچهٔ آدرس ذخیره شود &Label: - &برچسب: + &برچسب: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - چسباندن نشانی از حافظهٔ سیستم + چسباندن نشانی از حافظهٔ سیستم Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + - SignVerifyMessageDialog + SendCoinsDialog - - Signatures - Sign / Verify a Message - امضاها - امضا / تأیید یک پیام + Send Coins + ارسال سکه - - - &Sign Message + Amount: + مبلغ: + + + Send to multiple recipients at once + ارسال به چند دریافت‌کنندهٔ به‌طور همزمان + + + Add &Recipient + &دریافت‌کنندهٔ جدید + + + Clear &All + پاکسازی &همه + + + Balance: + تزار: + + + Confirm the send action + عملیات ارسال را تأیید کنید + + + S&end + &ارسال + + + Copy amount + کپی مقدار + + + Confirm send coins + ارسال سکه را تأیید کنید + + + 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. + یک نشانی تکراری پیدا شد. در هر عملیات ارسال، به هر نشانی فقط مبلغ می‌توان ارسال کرد. + + + (no label) + (بدون برچسب) + + + + SendCoinsEntry + + A&mount: + A&مبلغ : + + + Pay &To: + پرداخ&ت به: + + + Enter a label for this address to add it to your address book + برای این نشانی یک برچسب وارد کنید تا در دفترچهٔ آدرس ذخیره شود + + + &Label: + &برچسب: + + + Alt+A + Alt+A + + + Paste address from clipboard + چسباندن نشانی از حافظهٔ سیستم + + + Alt+P + Alt+P + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + امضاها - امضا / تأیید یک پیام + + + + + &Sign Message ا&مضای پیام @@ -1934,13 +2346,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1971,7 +2383,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -1998,12 +2410,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2014,7 +2426,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2024,7 +2436,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2103,12 +2515,14 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + conflicted - + @@ -2133,7 +2547,9 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - ، پخش از طریق %n گره + + ، پخش از طریق %n گره + @@ -2186,7 +2602,9 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - بلوغ در %n بلوک دیگر + + بلوغ در %n بلوک دیگر + @@ -2228,8 +2646,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2275,7 +2693,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details جزئیات تراکنش @@ -2320,32 +2738,34 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - باز برای %n بلوک دیگر + + باز برای %n بلوک دیگر + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2379,8 +2799,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - استخراج‌شده + استخراج‌شده @@ -2428,853 +2852,1131 @@ This label turns red, if the priority is smaller than "medium". - This week - این هفته + 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 Data + + + + + Comma separated file (*.csv) + پروندهٔ نوع CSV جداشونده با کاما (*.csv) + + + + Confirmed + تأیید شده + + + + Date + تاریخ + + + + Type + نوع + + + + Label + برچسب + + + + Address + نشانی + + + + Amount + مبلغ + + + + ID + شناسه + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + محدوده: + + + + to + به + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + برای استفاده از %s از انتخابات + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + خطا + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + هنگام تنظیم پورت RPC %u برای گوش دادن روی IPv4 خطایی رخ داده است: %s + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + %s، شما باید یک rpcpassword را در فایل پیکربندی تنظیم کنید :⏎%s⏎ اگر فایل ایجاد نشد، یک فایل فقط متنی ایجاد کنید. + + + + + BitBean version + + + + + Usage: + استفاده: + + + + Send command to -server or BitBeand + + + + + List commands + نمایش لیست فرمان‌ها + + + + Get help for a command + راهنمایی در مورد یک دستور + + + + BitBean + + + + + Options: + گزینه‌ها: + + + + This help message + پیام کمکی + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + مشخص کردن دایرکتوری داده‌ها + + + + Specify wallet file (within data directory) + + + + + Set database cache size in megabytes (default: 25) + تنظیم اندازهٔ کَش پایگاه‌داده برحسب مگابایت (پیش‌فرض: ۲۵) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + (میلی ثانیه )فاصله ارتباط خاص + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + به DNS اجازه بده تا برای addnode ، seednode و اتصال جستجو کند + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + حداکثر <n> اتصال با همتایان برقرار شود (پیش‌فرض: ۱۲۵) + + + + Add a node to connect to and attempt to keep the connection open + به اتصال یک گره اضافه کنید و اتصال را باز نگاه دارید + + + + Connect only to the specified node(s) + تنها در گره (های) مشخص شده متصل شوید + + + + Connect to a node to retrieve peer addresses, and disconnect + اتصال به یک گره برای دریافت آدرس‌های همتا و قطع اتصال پس از اتمام عملیات + + + + Specify your own public address + آدرس عمومی خود را مشخص کنید + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + تنها =به گره ها در شبکه متصا شوید <net> (IPv4, IPv6 or Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + آدرس آی.پی. خود را شناسایی کنید (پیش فرض:1 در زمان when listening وno -externalip) + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + پذیرش اتصالات از بیرون (پیش فرض:1 بدون پراکسی یا اتصال) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + Threshold for disconnecting misbehaving peers (default: 100) + حد آستانه برای قطع ارتباط با همتایان بدرفتار (پیش‌فرض: ۱۰۰) - This month - این ماه + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + مدت زمان جلوگیری از اتصال مجدد همتایان بدرفتار، به ثانیه (پیش‌فرض: ۸۴۶۰۰) - - Last month - ماه گذشته + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + حداکثر بافر دریافت شده بر اساس اتصال <n>* 1000 بایت (پیش فرض:5000) - This year - امسال + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + حداکثر بافر دریافت شده بر اساس اتصال <n>* 1000 بایت (پیش فرض:1000) - Range... - محدوده... + Use UPnP to map the listening port (default: 1 when listening) + از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:1 در زمان شنیدن) - - Received with - دریافت‌شده با + + Use UPnP to map the listening port (default: 0) + از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:0) - - Sent to - ارسال به + + Detach block and address databases. Increases shutdown time (default: 0) + - To yourself - به خودتان + Fee per KB to add to transactions you send + - Mined - استخراج‌شده + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + پذیرش دستورات خط فرمان و دستورات JSON-RPC - Other - دیگر + Run in the background as a daemon and accept commands + اجرا در پشت زمینه به‌صورت یک سرویس و پذیرش دستورات - - Enter address or label to search - برای جست‌‌وجو نشانی یا برچسب را وارد کنید + + Use the test network + استفاده از شبکهٔ آزمایش - - Min amount - مبلغ حداقل + + Output extra debugging information. Implies all other -debug* options + - - Copy address - کپی نشانی + + Output extra network debugging information + - Copy label - کپی برچسب + Prepend debug output with timestamp + - Copy amount - کپی مقدار + Shrink debug.log file on client startup (default: 1 when no -debug) + فایل debug.log را در startup مشتری کوچک کن (پیش فرض:1 اگر اشکال زدایی روی نداد) - Copy transaction ID - کپی شناسهٔ تراکنش + Send trace/debug info to console instead of debug.log file + اطلاعات ردگیری/اشکال‌زدایی را به جای فایل لاگ اشکال‌زدایی به کنسول بفرستید - Edit label - ویرایش برچسب + Send trace/debug info to debugger + - Show transaction details - نمایش جزئیات تراکنش + Username for JSON-RPC connections + JSON-RPC شناسه برای ارتباطات - - Export Transaction Data - + + Password for JSON-RPC connections + JSON-RPC عبارت عبور برای ارتباطات - Comma separated file (*.csv) - پروندهٔ نوع CSV جداشونده با کاما (*.csv) + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - - Confirmed - تأیید شده + + Allow JSON-RPC connections from specified IP address + از آدرس آی پی خاص JSON-RPC قبول ارتباطات - Date - تاریخ + Send commands to node running on <ip> (default: 127.0.0.1) + (127.0.0.1پیش فرض: ) &lt;ip&gt; دادن فرمانها برای استفاده گره ها روی - Type - نوع + Execute command when the best block changes (%s in cmd is replaced by block hash) + زمانی که بهترین بلاک تغییر کرد، دستور را اجرا کن (%s در cmd با block hash جایگزین شده است) - - Label - برچسب + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + هنگامی که یک تراکنش در کیف پولی رخ می دهد، دستور را اجرا کن(%s در دستورات بوسیله ی TxID جایگزین می شود) - - Address - نشانی + + Require a confirmations for change (default: 0) + - Amount - مبلغ + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - - ID - شناسه + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - - Error exporting - + + Upgrade wallet to latest format + wallet را به جدیدترین فرمت روزآمد کنید - - Could not write to file %1. - + + Set key pool size to <n> (default: 100) + (100پیش فرض:)&lt;n&gt; گذاشتن اندازه کلید روی - - Range: - محدوده: + + Rescan the block chain for missing wallet transactions + اسکان مجدد زنجیر بلوکها برای گم والت معامله - - to - به + + Attempt to recover private keys from a corrupt wallet.dat + - - - WalletModel - - Sending... - + + How many blocks to check at startup (default: 2500, 0 = all) + - - - bitcoin-core - - BitBean version - + + How thorough the block verification is (0-6, default: 1) + - Usage: - استفاده: + Imports blocks from external blk000?.dat file + - Send command to -server or BitBeand - + Block creation options: + بستن گزینه ایجاد - List commands - نمایش لیست فرمان‌ها + Set minimum block size in bytes (default: 0) + حداقل سایز بلاک بر اساس بایت تنظیم شود (پیش فرض: 0) - Get help for a command - راهنمایی در مورد یک دستور + Set maximum block size in bytes (default: 250000) + - - Options: - گزینه‌ها: + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Specify configuration file (default: BitBean.conf) - + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - Specify pid file (default: BitBeand.pid) - + Use OpenSSL (https) for JSON-RPC connections + JSON-RPCبرای ارتباطات استفاده کنید OpenSSL (https) - - Specify wallet file (within data directory) - + + Server certificate file (default: server.cert) + (server.certپیش فرض: )گواهی نامه سرور - - Specify data directory - مشخص کردن دایرکتوری داده‌ها + + Server private key (default: server.pem) + (server.pemپیش فرض: ) کلید خصوصی سرور - - Set database cache size in megabytes (default: 25) - تنظیم اندازهٔ کَش پایگاه‌داده برحسب مگابایت (پیش‌فرض: ۲۵) + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + + Invalid amount for -paytxfee=<amount>: '%s' + میزان وجه اشتباه برای paytxfee=<میزان وجه>: %s - Set database disk log size in megabytes (default: 100) - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + هشدار: مبلغ paytxfee بسیار بالایی تنظیم شده است! این مبلغ هزینه‌ای است که شما برای تراکنش‌ها پرداخت می‌کنید. - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Invalid amount for -mininput=<amount>: '%s' + - Maintain at most <n> connections to peers (default: 125) - حداکثر <n> اتصال با همتایان برقرار شود (پیش‌فرض: ۱۲۵) + Wallet %s resides outside data directory %s. + + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - Connect to a node to retrieve peer addresses, and disconnect - اتصال به یک گره برای دریافت آدرس‌های همتا و قطع اتصال پس از اتمام عملیات + Verifying database integrity... + - Specify your own public address - آدرس عمومی خود را مشخص کنید + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Bind to given address. Use [host]:port notation for IPv6 - + + 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. + - - Stake your coins to support network and gain reward (default: 1) - + + wallet.dat corrupt, salvage failed + - - Threshold for disconnecting misbehaving peers (default: 100) - حد آستانه برای قطع ارتباط با همتایان بدرفتار (پیش‌فرض: ۱۰۰) + + Unknown -socks proxy version requested: %i + نسخه پراکسی ساکس غیرقابل شناسایی درخواست شده است: %i - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - مدت زمان جلوگیری از اتصال مجدد همتایان بدرفتار، به ثانیه (پیش‌فرض: ۸۴۶۰۰) + Unknown network specified in -onlynet: '%s' + شبکه مشخص شده غیرقابل شناسایی در onlynet: '%s' - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - هنگام تنظیم پورت RPC %u برای گوش دادن روی IPv4 خطایی رخ داده است: %s + + Invalid -proxy address: '%s' + آدرس پراکسی اشتباه %s - - Detach block and address databases. Increases shutdown time (default: 0) - + + Invalid -tor address: '%s' + - - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - + + Cannot resolve -bind address: '%s' + آدرس قابل اتصال- شناسایی نیست %s - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Failed to listen on any port. Use -listen=0 if you want this. + شنیدن هر گونه درگاه انجام پذیر نیست. ازlisten=0 برای اینکار استفاده کیند. - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Cannot resolve -externalip address: '%s' + آدرس خارجی قابل اتصال- شناسایی نیست %s - - Accept command line and JSON-RPC commands - پذیرش دستورات خط فرمان و دستورات JSON-RPC + + Invalid amount for -reservebalance=<amount> + - - Error: Transaction creation failed - + + Unable to sign checkpoint, wrong checkpointkey? + + - - Error: Wallet locked, unable to create transaction - + + Loading block index... + بار گیری شاخص بلوک - - Importing blockchain data file. - + + Error loading blkindex.dat + - Importing bootstrap blockchain data file. - + Loading wallet... + بار گیری والت - - Run in the background as a daemon and accept commands - اجرا در پشت زمینه به‌صورت یک سرویس و پذیرش دستورات + + Error loading wallet.dat: Wallet corrupted + خطا در بارگیری wallet.dat: کیف پول خراب شده است - Use the test network - استفاده از شبکهٔ آزمایش + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - - Accept connections from outside (default: 1 if no -proxy or -connect) - پذیرش اتصالات از بیرون (پیش فرض:1 بدون پراکسی یا اتصال) + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Wallet needed to be rewritten: restart BitBean to complete + + + + + Error loading wallet.dat + خطا در بارگیری wallet.dat + + + + Cannot downgrade wallet + امکان تنزل نسخه در wallet وجود ندارد + + + + Cannot initialize keypool + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Cannot write default address + آدرس پیش فرض قابل ذخیره نیست - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Rescanning... + اسکان مجدد - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - هشدار: مبلغ paytxfee بسیار بالایی تنظیم شده است! این مبلغ هزینه‌ای است که شما برای تراکنش‌ها پرداخت می‌کنید. + + Importing blockchain data file. + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Importing bootstrap blockchain data file. + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Loading addresses... + بار گیری آدرس ها - - 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. - + + Error: could not start node + - - Attempt to recover private keys from a corrupt wallet.dat - + + Done loading + بار گیری انجام شده است - - Block creation options: - بستن گزینه ایجاد + + Unable to bind to %s on this computer. BitBean is probably already running. + - - Connect only to the specified node(s) - تنها در گره (های) مشخص شده متصل شوید + + Unable to bind to %s on this computer (bind returned error %d, %s) + امکان اتصال به %s از این رایانه وجود ندارد ( bind returned error %d, %s) - - Discover own IP address (default: 1 when listening and no -externalip) - آدرس آی.پی. خود را شناسایی کنید (پیش فرض:1 در زمان when listening وno -externalip) + + Error: Wallet locked, unable to create transaction + - - Failed to listen on any port. Use -listen=0 if you want this. - شنیدن هر گونه درگاه انجام پذیر نیست. ازlisten=0 برای اینکار استفاده کیند. + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Find peers using DNS lookup (default: 1) - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Sync checkpoints policy (default: strict) - + + Error: Transaction creation failed + - - Invalid -tor address: '%s' - + + Sending... + - - Invalid amount for -reservebalance=<amount> - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - حداکثر بافر دریافت شده بر اساس اتصال <n>* 1000 بایت (پیش فرض:5000) + + Invalid amount + میزان وجه اشتباه - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - حداکثر بافر دریافت شده بر اساس اتصال <n>* 1000 بایت (پیش فرض:1000) + Insufficient funds + بود جه نا کافی - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - تنها =به گره ها در شبکه متصا شوید <net> (IPv4, IPv6 or Tor) + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Output extra debugging information. Implies all other -debug* options - + + Warning: This version is obsolete, upgrade required! + هشدار: این نسخه قدیمی است، روزآمدسازی مورد نیاز است - Output extra network debugging information - + WARNING: syncronized checkpoint violation detected, but skipped! + - Prepend debug output with timestamp - + Warning: Disk space is low! + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - گزینه ssl (به ویکیbitcoin برای راهنمای راه اندازی ssl مراجعه شود) + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Select the version of socks proxy to use (4-5, default: 5) - + Usage: + استفاده: - - Send trace/debug info to console instead of debug.log file - اطلاعات ردگیری/اشکال‌زدایی را به جای فایل لاگ اشکال‌زدایی به کنسول بفرستید + List commands + نمایش لیست فرمان‌ها - - Send trace/debug info to debugger - + Get help for a command + راهنمایی در مورد یک دستور - - Set maximum block size in bytes (default: 250000) - + Options: + گزینه‌ها: - - Set minimum block size in bytes (default: 0) - حداقل سایز بلاک بر اساس بایت تنظیم شود (پیش فرض: 0) + Specify data directory + مشخص کردن دایرکتوری داده‌ها - - Shrink debug.log file on client startup (default: 1 when no -debug) - فایل debug.log را در startup مشتری کوچک کن (پیش فرض:1 اگر اشکال زدایی روی نداد) + Set database cache size in megabytes (default: 25) + تنظیم اندازهٔ کَش پایگاه‌داده برحسب مگابایت (پیش‌فرض: ۲۵) - - Specify connection timeout in milliseconds (default: 5000) - (میلی ثانیه )فاصله ارتباط خاص + Maintain at most <n> connections to peers (default: 125) + حداکثر <n> اتصال با همتایان برقرار شود (پیش‌فرض: ۱۲۵) - - Unable to sign checkpoint, wrong checkpointkey? - - + Connect to a node to retrieve peer addresses, and disconnect + اتصال به یک گره برای دریافت آدرس‌های همتا و قطع اتصال پس از اتمام عملیات - - Use UPnP to map the listening port (default: 0) - از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:0) + Specify your own public address + آدرس عمومی خود را مشخص کنید - - Use UPnP to map the listening port (default: 1 when listening) - از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:1 در زمان شنیدن) + Threshold for disconnecting misbehaving peers (default: 100) + حد آستانه برای قطع ارتباط با همتایان بدرفتار (پیش‌فرض: ۱۰۰) - - Use proxy to reach tor hidden services (default: same as -proxy) - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + مدت زمان جلوگیری از اتصال مجدد همتایان بدرفتار، به ثانیه (پیش‌فرض: ۸۴۶۰۰) - - Username for JSON-RPC connections - JSON-RPC شناسه برای ارتباطات + An error occurred while setting up the RPC port %u for listening on IPv4: %s + هنگام تنظیم پورت RPC %u برای گوش دادن روی IPv4 خطایی رخ داده است: %s - - Verifying database integrity... - + Accept command line and JSON-RPC commands + پذیرش دستورات خط فرمان و دستورات JSON-RPC - - WARNING: syncronized checkpoint violation detected, but skipped! - + Run in the background as a daemon and accept commands + اجرا در پشت زمینه به‌صورت یک سرویس و پذیرش دستورات - - Warning: Disk space is low! - + Use the test network + استفاده از شبکهٔ آزمایش - - Warning: This version is obsolete, upgrade required! - هشدار: این نسخه قدیمی است، روزآمدسازی مورد نیاز است + Accept connections from outside (default: 1 if no -proxy or -connect) + پذیرش اتصالات از بیرون (پیش فرض:1 بدون پراکسی یا اتصال) - - wallet.dat corrupt, salvage failed - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + هشدار: مبلغ paytxfee بسیار بالایی تنظیم شده است! این مبلغ هزینه‌ای است که شما برای تراکنش‌ها پرداخت می‌کنید. - - Password for JSON-RPC connections - JSON-RPC عبارت عبور برای ارتباطات + Block creation options: + بستن گزینه ایجاد - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + Connect only to the specified node(s) + تنها در گره (های) مشخص شده متصل شوید - - Find peers using internet relay chat (default: 0) - + Discover own IP address (default: 1 when listening and no -externalip) + آدرس آی.پی. خود را شناسایی کنید (پیش فرض:1 در زمان when listening وno -externalip) - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + Failed to listen on any port. Use -listen=0 if you want this. + شنیدن هر گونه درگاه انجام پذیر نیست. ازlisten=0 برای اینکار استفاده کیند. - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + حداکثر بافر دریافت شده بر اساس اتصال <n>* 1000 بایت (پیش فرض:5000) - - Allow JSON-RPC connections from specified IP address - از آدرس آی پی خاص JSON-RPC قبول ارتباطات + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + حداکثر بافر دریافت شده بر اساس اتصال <n>* 1000 بایت (پیش فرض:1000) - - Send commands to node running on <ip> (default: 127.0.0.1) - (127.0.0.1پیش فرض: ) &lt;ip&gt; دادن فرمانها برای استفاده گره ها روی + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + تنها =به گره ها در شبکه متصا شوید <net> (IPv4, IPv6 or Tor) - - Execute command when the best block changes (%s in cmd is replaced by block hash) - زمانی که بهترین بلاک تغییر کرد، دستور را اجرا کن (%s در cmd با block hash جایگزین شده است) + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + گزینه ssl (به ویکیbitcoin برای راهنمای راه اندازی ssl مراجعه شود) - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - هنگامی که یک تراکنش در کیف پولی رخ می دهد، دستور را اجرا کن(%s در دستورات بوسیله ی TxID جایگزین می شود) + Send trace/debug info to console instead of debug.log file + اطلاعات ردگیری/اشکال‌زدایی را به جای فایل لاگ اشکال‌زدایی به کنسول بفرستید - - Require a confirmations for change (default: 0) - + Set minimum block size in bytes (default: 0) + حداقل سایز بلاک بر اساس بایت تنظیم شود (پیش فرض: 0) - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Shrink debug.log file on client startup (default: 1 when no -debug) + فایل debug.log را در startup مشتری کوچک کن (پیش فرض:1 اگر اشکال زدایی روی نداد) - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Specify connection timeout in milliseconds (default: 5000) + (میلی ثانیه )فاصله ارتباط خاص - - Upgrade wallet to latest format - wallet را به جدیدترین فرمت روزآمد کنید + Use UPnP to map the listening port (default: 0) + از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:0) - - Set key pool size to <n> (default: 100) - (100پیش فرض:)&lt;n&gt; گذاشتن اندازه کلید روی + Use UPnP to map the listening port (default: 1 when listening) + از UPnP برای شناسایی درگاه شنیداری استفاده کنید (پیش فرض:1 در زمان شنیدن) - - Rescan the block chain for missing wallet transactions - اسکان مجدد زنجیر بلوکها برای گم والت معامله + Username for JSON-RPC connections + JSON-RPC شناسه برای ارتباطات - - How many blocks to check at startup (default: 2500, 0 = all) - + Warning: This version is obsolete, upgrade required! + هشدار: این نسخه قدیمی است، روزآمدسازی مورد نیاز است - - How thorough the block verification is (0-6, default: 1) - + Password for JSON-RPC connections + JSON-RPC عبارت عبور برای ارتباطات - - Imports blocks from external blk000?.dat file - + Allow JSON-RPC connections from specified IP address + از آدرس آی پی خاص JSON-RPC قبول ارتباطات - - Use OpenSSL (https) for JSON-RPC connections - JSON-RPCبرای ارتباطات استفاده کنید OpenSSL (https) + Send commands to node running on <ip> (default: 127.0.0.1) + (127.0.0.1پیش فرض: ) &lt;ip&gt; دادن فرمانها برای استفاده گره ها روی - - Server certificate file (default: server.cert) - (server.certپیش فرض: )گواهی نامه سرور + Execute command when the best block changes (%s in cmd is replaced by block hash) + زمانی که بهترین بلاک تغییر کرد، دستور را اجرا کن (%s در cmd با block hash جایگزین شده است) - - Server private key (default: server.pem) - (server.pemپیش فرض: ) کلید خصوصی سرور + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + هنگامی که یک تراکنش در کیف پولی رخ می دهد، دستور را اجرا کن(%s در دستورات بوسیله ی TxID جایگزین می شود) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + Upgrade wallet to latest format + wallet را به جدیدترین فرمت روزآمد کنید - - Error: Wallet unlocked for staking only, unable to create transaction. - + Set key pool size to <n> (default: 100) + (100پیش فرض:)&lt;n&gt; گذاشتن اندازه کلید روی - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + Rescan the block chain for missing wallet transactions + اسکان مجدد زنجیر بلوکها برای گم والت معامله - - This help message - پیام کمکی + Use OpenSSL (https) for JSON-RPC connections + JSON-RPCبرای ارتباطات استفاده کنید OpenSSL (https) - - Wallet %s resides outside data directory %s. - + Server certificate file (default: server.cert) + (server.certپیش فرض: )گواهی نامه سرور - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + Server private key (default: server.pem) + (server.pemپیش فرض: ) کلید خصوصی سرور - - BitBean - + This help message + پیام کمکی - Unable to bind to %s on this computer (bind returned error %d, %s) - امکان اتصال به %s از این رایانه وجود ندارد ( bind returned error %d, %s) - - - - Connect through socks proxy - + امکان اتصال به %s از این رایانه وجود ندارد ( bind returned error %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect - به DNS اجازه بده تا برای addnode ، seednode و اتصال جستجو کند + به DNS اجازه بده تا برای addnode ، seednode و اتصال جستجو کند - Loading addresses... - بار گیری آدرس ها - - - - Error loading blkindex.dat - + بار گیری آدرس ها - Error loading wallet.dat: Wallet corrupted - خطا در بارگیری wallet.dat: کیف پول خراب شده است - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + خطا در بارگیری wallet.dat: کیف پول خراب شده است - Error loading wallet.dat - خطا در بارگیری wallet.dat + خطا در بارگیری wallet.dat - Invalid -proxy address: '%s' - آدرس پراکسی اشتباه %s + آدرس پراکسی اشتباه %s - Unknown network specified in -onlynet: '%s' - شبکه مشخص شده غیرقابل شناسایی در onlynet: '%s' + شبکه مشخص شده غیرقابل شناسایی در onlynet: '%s' - Unknown -socks proxy version requested: %i - نسخه پراکسی ساکس غیرقابل شناسایی درخواست شده است: %i + نسخه پراکسی ساکس غیرقابل شناسایی درخواست شده است: %i - Cannot resolve -bind address: '%s' - آدرس قابل اتصال- شناسایی نیست %s + آدرس قابل اتصال- شناسایی نیست %s - Cannot resolve -externalip address: '%s' - آدرس خارجی قابل اتصال- شناسایی نیست %s + آدرس خارجی قابل اتصال- شناسایی نیست %s - Invalid amount for -paytxfee=<amount>: '%s' - میزان وجه اشتباه برای paytxfee=<میزان وجه>: %s - - - - Error: could not start node - - - - - Sending... - + میزان وجه اشتباه برای 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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + به اتصال یک گره اضافه کنید و اتصال را باز نگاه دارید - Loading wallet... - بار گیری والت + بار گیری والت - Cannot downgrade wallet - امکان تنزل نسخه در wallet وجود ندارد - - - - Cannot initialize keypool - + امکان تنزل نسخه در wallet وجود ندارد - Cannot write default address - آدرس پیش فرض قابل ذخیره نیست + آدرس پیش فرض قابل ذخیره نیست - Rescanning... - اسکان مجدد + اسکان مجدد - Done loading - بار گیری انجام شده است + بار گیری انجام شده است - To use the %s option - برای استفاده از %s از انتخابات + برای استفاده از %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. - %s، شما باید یک rpcpassword را در فایل پیکربندی تنظیم کنید :⏎%s⏎ اگر فایل ایجاد نشد، یک فایل فقط متنی ایجاد کنید. + %s، شما باید یک rpcpassword را در فایل پیکربندی تنظیم کنید :⏎%s⏎ اگر فایل ایجاد نشد، یک فایل فقط متنی ایجاد کنید. - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_fa_IR.qm b/src/qt/locale/bitbean_fa_IR.qm similarity index 54% rename from src/qt/locale/bitcoin_fa_IR.qm rename to src/qt/locale/bitbean_fa_IR.qm index b7e4053..b29f21d 100644 Binary files a/src/qt/locale/bitcoin_fa_IR.qm and b/src/qt/locale/bitbean_fa_IR.qm differ diff --git a/src/qt/locale/bitcoin_fa_IR.ts b/src/qt/locale/bitbean_fa_IR.ts similarity index 56% rename from src/qt/locale/bitcoin_fa_IR.ts rename to src/qt/locale/bitbean_fa_IR.ts index 81294fd..5a74e56 100644 --- a/src/qt/locale/bitcoin_fa_IR.ts +++ b/src/qt/locale/bitbean_fa_IR.ts @@ -1,103 +1,106 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + Double-click to edit address or label برای ویرایش حساب و یا برچسب دوبار کلیک نمایید - + Create a new address گشایش حسابی جدید - + Copy the currently selected address to the system clipboard کپی کردن حساب انتخاب شده به حافظه سیستم - کلیپ بورد - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address و کپی آدرس - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete و حذف @@ -114,7 +117,7 @@ This product includes software developed by the OpenSSL Project for use in the O Export Address Book Data - + @@ -124,12 +127,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -153,34 +156,34 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog - + - + Enter passphrase رمز/پَس فرِیز را وارد کنید - + New passphrase رمز/پَس فرِیز جدید را وارد کنید - + Repeat new passphrase رمز/پَس فرِیز را دوباره وارد کنید - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -229,24 +232,29 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + @@ -255,12 +263,7 @@ This product includes software developed by the OpenSSL Project for use in the O تایید رمزگذاری - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -298,337 +301,583 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet passphrase was successfully changed. - + - BitcoinGUI - - - Sign &message... - امضا و پیام - + BeanControlDialog - - Synchronizing with network... - به روز رسانی با شبکه... + + Bean Control + - - &Overview - و بازبینی + + Quantity: + - - Show general overview of wallet - نمای کلی از wallet را نشان بده + + Bytes: + - - &Transactions - و تراکنش + + Amount: + میزان وجه: - - Browse transaction history - تاریخچه تراکنش را باز کن + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - خروج + + Tree mode + - - Quit application - از "درخواست نامه"/ application خارج شو + + List mode + - - Show information about BitBean - + + Amount + - - About &Qt - درباره و QT + + Label + برچسب - - Show information about Qt - نمایش اطلاعات درباره QT + + Address + - - &Options... - و انتخابها + + Date + تاریخ - - &Encrypt Wallet... - و رمزگذاری wallet + + Confirmations + - &Backup Wallet... - و گرفتن نسخه پیشتیبان از wallet + Confirmed + تایید شده - - &Change Passphrase... - تغییر رمز/پَس فرِیز - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + آدرس را کپی کنید - - &Export... - + + Copy label + برچسب را کپی کنید - - Send coins to a BitBean address - + + + Copy amount + میزان وجه کپی شود - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - گرفتن نسخه پیشتیبان در آدرسی دیگر + + Copy after fee + - - Change the passphrase used for wallet encryption - رمز مربوط به رمزگذاریِ wallet را تغییر دهید + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - کیف پول + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - &نمایش/ عدم نمایش و + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - و فایل + + DUST + - - &Settings - و تنظیمات + + yes + - - &Help - و راهنما + + no + - - Tabs toolbar - نوار ابزار + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (برچسب ندارد) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + و بازبینی - - - %n second(s) ago - + + + Show general overview of wallet + نمای کلی از wallet را نشان بده - - &Unlock Wallet... - + + &Send Beans + - - + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + و تراکنش + + + + Browse transaction history + تاریخچه تراکنش را باز کن + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + خروج + + + + Quit application + از "درخواست نامه"/ application خارج شو + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + درباره و QT + + + + Show information about Qt + نمایش اطلاعات درباره QT + + + + &Options... + و انتخابها + + + + Modify configuration options for BitBean + + + + + &Show / Hide + &نمایش/ عدم نمایش و + + + + &Encrypt Wallet... + و رمزگذاری wallet + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + و گرفتن نسخه پیشتیبان از wallet + + + + Backup wallet to another location + گرفتن نسخه پیشتیبان در آدرسی دیگر + + + + &Change Passphrase... + تغییر رمز/پَس فرِیز + + + + Change the passphrase used for wallet encryption + رمز مربوط به رمزگذاریِ wallet را تغییر دهید + + + + &Unlock Wallet... + + + + + Unlock wallet + باز کردن قفل wallet + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + امضا و پیام + + + + &Verify message... + + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + + + + + Open debugging and diagnostic console + + + + + &File + و فایل + + + + &Settings + و تنظیمات + + + + &Help + و راهنما + + + + Tabs toolbar + نوار ابزار + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + Synchronizing with network... + به روز رسانی با شبکه... + + + + ~%n block(s) remaining + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + %n minute(s) ago - + + + %n hour(s) ago - + + + %n day(s) ago - + + + Up to date - روزآمد + روزآمد Catching up... - در حال روزآمد سازی.. + در حال روزآمد سازی.. Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - ارسال تراکنش + ارسال تراکنش Incoming transaction - تراکنش دریافتی + تراکنش دریافتی @@ -637,348 +886,289 @@ Amount: %2 Type: %3 Address: %4 - تاریخ: %1⏎ میزان وجه : %2⏎ نوع: %3⏎ آدرس: %4⏎ + تاریخ: %1⏎ میزان وجه : %2⏎ نوع: %3⏎ آدرس: %4⏎ URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - wallet رمزگذاری شد و در حال حاضر از حالت قفل در آمده است + wallet رمزگذاری شد و در حال حاضر از حالت قفل در آمده است Wallet is <b>encrypted</b> and currently <b>locked</b> - wallet رمزگذاری شد و در حال حاضر قفل است + wallet رمزگذاری شد و در حال حاضر قفل است Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + %n minute(s) - + + + %n hour(s) - + + + %n day(s) - - - - - Not staking - - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - - - - - ClientModel - - - Network Alert - هشدار شبکه - - - - CoinControlDialog - - - Coin Control - + + + - - Quantity: - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - Bytes: - + + Not staking because wallet is locked + - - Amount: - میزان وجه: + + Not staking because wallet is offline + - - Priority: - + + Not staking because wallet is syncing + - - Fee: - + + Not staking because you don't have mature beans + - - Low Output: - + + Not staking + + + + BitcoinGUI - - no - + Sign &message... + امضا و پیام - - After Fee: - + Synchronizing with network... + به روز رسانی با شبکه... - - Change: - + &Overview + و بازبینی - - (un)select all - + Show general overview of wallet + نمای کلی از wallet را نشان بده - - Tree mode - + &Transactions + و تراکنش - - List mode - + Browse transaction history + تاریخچه تراکنش را باز کن - - Amount - میزان + E&xit + خروج - - Label - + Quit application + از "درخواست نامه"/ application خارج شو - - Address - حساب + About &Qt + درباره و QT - - Date - تاریخ + Show information about Qt + نمایش اطلاعات درباره QT - - Confirmations - + &Options... + و انتخابها - - Confirmed - تایید شده + &Encrypt Wallet... + و رمزگذاری wallet - - Priority - + &Backup Wallet... + و گرفتن نسخه پیشتیبان از wallet - - Copy address - آدرس را کپی کنید + &Change Passphrase... + تغییر رمز/پَس فرِیز - - Copy label - برچسب را کپی کنید + Backup wallet to another location + گرفتن نسخه پیشتیبان در آدرسی دیگر - - - Copy amount - میزان وجه کپی شود + Change the passphrase used for wallet encryption + رمز مربوط به رمزگذاریِ wallet را تغییر دهید - - Copy transaction ID - + Wallet + کیف پول - - Copy quantity - + &Show / Hide + &نمایش/ عدم نمایش و - - Copy fee - + &File + و فایل - - Copy after fee - + &Settings + و تنظیمات - - Copy bytes - + &Help + و راهنما - - Copy priority - + Tabs toolbar + نوار ابزار - - Copy low output - + [testnet] + [testnet] - - Copy change - + Up to date + روزآمد - - highest - + Catching up... + در حال روزآمد سازی.. - - high - + Sent transaction + ارسال تراکنش - - medium-high - + Incoming transaction + تراکنش دریافتی - - medium - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + تاریخ: %1⏎ میزان وجه : %2⏎ نوع: %3⏎ آدرس: %4⏎ + - - low-medium - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + wallet رمزگذاری شد و در حال حاضر از حالت قفل در آمده است - - low - + Wallet is <b>encrypted</b> and currently <b>locked</b> + wallet رمزگذاری شد و در حال حاضر قفل است + + + ClientModel - - lowest - + + Network Alert + هشدار شبکه + + + CoinControlDialog - - DUST - + Amount: + میزان وجه: - - yes - + Amount + میزان - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Address + حساب - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Date + تاریخ - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Confirmed + تایید شده - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy address + آدرس را کپی کنید - - - (no label) - (برچسب ندارد) + Copy label + برچسب را کپی کنید - - change from %1 (%2) - + Copy amount + میزان وجه کپی شود - - (change) - + (no label) + (برچسب ندارد) EditAddressDialog - + Edit Address ویرایش حساب @@ -990,7 +1180,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1000,7 +1190,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1031,7 +1221,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1047,226 +1237,226 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + میزان استفاده: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options انتخاب/آپشن - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - و نمایش آدرسها در فهرست تراکنش + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + و نمایش آدرسها در فهرست تراکنش - + &OK و تایید @@ -1278,7 +1468,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1289,95 +1479,167 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + The supplied proxy address is invalid. - + OverviewPage - + Form فرم - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - کیف پول + کیف پول - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: - + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + - Mined balance that has not yet matured - + Bean Stalk Height: + - - Total: - + + Sprouting Difficulty: + - - Your current total balance - + + Bean Weight: + - - <b>Recent transactions</b> - تراکنشهای اخیر + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + Total: + - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Recent transactions</b> + تراکنشهای اخیر - + out of sync خارج از روزآمد سازی @@ -1386,65 +1648,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + میزان وجه: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name نام کنسول RPC @@ -1460,7 +1722,7 @@ This label turns red, if the priority is smaller than "medium". N/A - + @@ -1470,17 +1732,17 @@ This label turns red, if the priority is smaller than "medium". &Information - + Using OpenSSL version - + Startup time - + @@ -1495,7 +1757,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1510,138 +1772,138 @@ This label turns red, if the priority is smaller than "medium". Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - سکه های ارسالی + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - میزان وجه: + میزان وجه: @@ -1649,274 +1911,352 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - ارسال همزمان به گیرنده های متعدد + ارسال همزمان به گیرنده های متعدد Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - مانده حساب: + مانده حساب: 123.456 BC - + Confirm the send action - تایید عملیات ارسال + تایید عملیات ارسال S&end - و ارسال + و ارسال - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - میزان وجه کپی شود + میزان وجه کپی شود Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - تایید ارسال بیت کوین ها + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Duplicate address found, can only send to each address once per send operation. - + + + + + Error: Transaction creation failed. + + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + + + + + (no label) + (برچسب ندارد) + + + + WARNING: unknown change address + + + + + SendBeansEntry + + + Form + فرم + + + + A&mount: + و میزان وجه + + + + Pay &To: + پرداخت و به چه کسی + + + + + Enter a label for this address to add it to your address book + یک برچسب برای این آدرس بنویسید تا به دفترچه آدرسهای شما اضافه شود + + + + &Label: + و برچسب + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose address from address book + + + + + Alt+A + Alt و A + + + + Paste address from clipboard + آدرس را بر کلیپ بورد کپی کنید + + + + Alt+P + Alt و P + + + + Remove this recipient + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Send Coins + سکه های ارسالی + + + Amount: + میزان وجه: + + + Send to multiple recipients at once + ارسال همزمان به گیرنده های متعدد + + + Balance: + مانده حساب: + + + Confirm the send action + تایید عملیات ارسال + + + S&end + و ارسال - - Error: Transaction creation failed. - + Copy amount + میزان وجه کپی شود - - 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. - + Confirm send coins + تایید ارسال بیت کوین ها - - WARNING: Invalid BitBean address - + The amount to pay must be larger than 0. + میزان پرداخت باید بیشتر از 0 باشد - - (no label) - (برچسب ندارد) + The amount exceeds your balance. + مقدار مورد نظر از مانده حساب بیشتر است. - - WARNING: unknown change address - + (no label) + (برچسب ندارد) SendCoinsEntry - - Form - - - - A&mount: - و میزان وجه + و میزان وجه - Pay &To: - پرداخت و به چه کسی + پرداخت و به چه کسی - - Enter a label for this address to add it to your address book - یک برچسب برای این آدرس بنویسید تا به دفترچه آدرسهای شما اضافه شود + یک برچسب برای این آدرس بنویسید تا به دفترچه آدرسهای شما اضافه شود - &Label: - و برچسب - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose address from address book - + و برچسب - Alt+A - Alt و A + Alt و A - Paste address from clipboard - آدرس را بر کلیپ بورد کپی کنید + آدرس را بر کلیپ بورد کپی کنید - Alt+P - Alt و P - - - - Remove this recipient - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Alt و P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message - + @@ -1927,18 +2267,18 @@ This label turns red, if the priority is smaller than "medium". 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1959,76 +2299,76 @@ This label turns red, if the priority is smaller than "medium". Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2036,59 +2376,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2101,17 +2441,19 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + conflicted - + %1/offline - + @@ -2126,12 +2468,14 @@ This label turns red, if the priority is smaller than "medium". Status - + , broadcast through %n node(s) - + + + @@ -2141,31 +2485,31 @@ This label turns red, if the priority is smaller than "medium". Source - + Generated - + From - + To - + own address - + @@ -2179,17 +2523,19 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + not accepted - + @@ -2197,17 +2543,17 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + @@ -2217,32 +2563,32 @@ This label turns red, if the priority is smaller than "medium". Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + @@ -2252,12 +2598,12 @@ This label turns red, if the priority is smaller than "medium". true - + false - + @@ -2273,7 +2619,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details جزئیات تراکنش @@ -2318,32 +2664,34 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2377,8 +2725,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - استخراج شده + استخراج شده @@ -2436,843 +2788,1017 @@ This label turns red, if the priority is smaller than "medium". - Last 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 Data + + + + + Comma separated file (*.csv) + Comma separated file (*.csv) فایل جداگانه دستوری + + + + Confirmed + تایید شده + + + + Date + تاریخ + + + + Type + نوع + + + + Label + برچسب + + + + Address + آدرس + + + + Amount + میزان + + + + ID + شناسه کاربری + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + دامنه: + + + + to + به + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + برای استفاده از %s از اختیارات + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + خطا + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + شما باید یک رمز rpcpassword=<password> را در فایل تنظیمات ایجاد کنید⏎ %s ⏎ اگر فایل ایجاد نشده است، آن را با یک فایل "فقط متنی" ایجاد کنید. + + + + + BitBean version + + + + + Usage: + میزان استفاده: + + + + Send command to -server or BitBeand + + + + + List commands + فهرست دستورها + + + + Get help for a command + درخواست کمک برای یک دستور + + + + BitBean + + + + + Options: + انتخابها: - This year - این سال + This help message + این پیام راهنما - Range... - حدود.. + Specify configuration file (default: BitBean.conf) + - - Received with - دریافت با + + Specify pid file (default: BitBeand.pid) + - - Sent to - ارسال به + + Specify data directory + دایرکتوری داده را مشخص کن - - To yourself - به شما + + Specify wallet file (within data directory) + - Mined - استخراج شده + Set database cache size in megabytes (default: 25) + حافظه بانک داده را به مگابایت تنظیم کنید (پیش فرض: 25) - Other - دیگر + Set database disk log size in megabytes (default: 100) + - - Enter address or label to search - آدرس یا برچسب را برای جستجو وارد کنید + + Specify connection timeout in milliseconds (default: 5000) + تعیین مدت زمان وقفه (time out) به هزارم ثانیه - - Min amount - حداقل میزان وجه + + Connect through socks proxy + - - Copy address - آدرس را کپی کنید + + Select the version of socks proxy to use (4-5, default: 5) + - Copy label - برچسب را کپی کنید + Use proxy to reach tor hidden services (default: same as -proxy) + - Copy amount - میزان وجه کپی شود + Allow DNS lookups for -addnode, -seednode and -connect + - Copy transaction ID - + Listen for connections on <port> (default: 15714 or testnet: 25714) + - Edit label - برچسب را ویرایش کنید + Maintain at most <n> connections to peers (default: 125) + نگهداری <N> ارتباطات برای قرینه سازی (پیش فرض:125) - Show transaction details - + Add a node to connect to and attempt to keep the connection open + یک گره برای اتصال اضافه کنید و تلاش کنید تا اتصال را باز نگاه دارید - - Export Transaction Data - + + Connect only to the specified node(s) + - Comma separated file (*.csv) - Comma separated file (*.csv) فایل جداگانه دستوری + Connect to a node to retrieve peer addresses, and disconnect + - - Confirmed - تایید شده + + Specify your own public address + - Date - تاریخ + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - Type - نوع + Discover own IP address (default: 1 when listening and no -externalip) + - Label - برچسب + Find peers using internet relay chat (default: 0) + - Address - آدرس + Accept connections from outside (default: 1 if no -proxy or -connect) + - Amount - میزان + Bind to given address. Use [host]:port notation for IPv6 + - ID - شناسه کاربری + Find peers using DNS lookup (default: 1) + - - Error exporting - + + Stake your beans to support network and gain reward (default: 1) + - - Could not write to file %1. - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Range: - دامنه: + + Sync checkpoints policy (default: strict) + - - to - به + + Threshold for disconnecting misbehaving peers (default: 100) + آستانه قطع برای قرینه سازی اشتباه (پیش فرض:100) - - - WalletModel - - Sending... - + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + تعداد ثانیه ها برای اتصال دوباره قرینه های اشتباه (پیش فرض:86400) - - - bitcoin-core - - BitBean version - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - Usage: - میزان استفاده: + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - Send command to -server or BitBeand - + Use UPnP to map the listening port (default: 1 when listening) + - List commands - فهرست دستورها + Use UPnP to map the listening port (default: 0) + - Get help for a command - درخواست کمک برای یک دستور + Detach block and address databases. Increases shutdown time (default: 0) + - Options: - انتخابها: + Fee per KB to add to transactions you send + - - Specify configuration file (default: BitBean.conf) - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + command line و JSON-RPC commands را قبول کنید - Specify pid file (default: BitBeand.pid) - + Run in the background as a daemon and accept commands + به عنوان daemon بک گراند را اجرا کنید و دستورات را قبول نمایید - - Specify wallet file (within data directory) - + + Use the test network + از تستِ شبکه استفاده نمایید - - Specify data directory - دایرکتوری داده را مشخص کن + + Output extra debugging information. Implies all other -debug* options + - - Set database cache size in megabytes (default: 25) - حافظه بانک داده را به مگابایت تنظیم کنید (پیش فرض: 25) + + Output extra network debugging information + - Set database disk log size in megabytes (default: 100) - + Prepend debug output with timestamp + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - Maintain at most <n> connections to peers (default: 125) - نگهداری <N> ارتباطات برای قرینه سازی (پیش فرض:125) + Send trace/debug info to console instead of debug.log file + ارسال اطلاعات پیگیری/خطایابی به کنسول به جای ارسال به فایل debug.log - - Connect to a node to retrieve peer addresses, and disconnect - + + Send trace/debug info to debugger + - Specify your own public address - + Username for JSON-RPC connections + شناسه کاربری برای ارتباطاتِ JSON-RPC - - Bind to given address. Use [host]:port notation for IPv6 - + + Password for JSON-RPC connections + رمز برای ارتباطاتِ JSON-RPC - - Stake your coins to support network and gain reward (default: 1) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - - Threshold for disconnecting misbehaving peers (default: 100) - آستانه قطع برای قرینه سازی اشتباه (پیش فرض:100) + + Allow JSON-RPC connections from specified IP address + ارتباطاتِ JSON-RPC را از آدرس آی.پی. مشخصی برقرار کنید. - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - تعداد ثانیه ها برای اتصال دوباره قرینه های اشتباه (پیش فرض:86400) + Send commands to node running on <ip> (default: 127.0.0.1) + دستورات را به گره اجرا شده در<ip> ارسال کنید (پیش فرض:127.0.0.1) - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + دستور را وقتی بهترین بلاک تغییر کرد اجرا کن (%s در دستور توسط block hash جایگزین شده است) - - Detach block and address databases. Increases shutdown time (default: 0) - + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + - - 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. - + + Require a confirmations for change (default: 0) + - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - - Accept command line and JSON-RPC commands - command line و JSON-RPC commands را قبول کنید + + Upgrade wallet to latest format + wallet را به جدیدترین نسخه روزآمد کنید - - Error: Transaction creation failed - + + Set key pool size to <n> (default: 100) + حجم key pool را به اندازه <n> تنظیم کنید (پیش فرض:100) - - Error: Wallet locked, unable to create transaction - + + Rescan the block chain for missing wallet transactions + زنجیره بلاک را برای تراکنش جا افتاده در WALLET دوباره اسکن کنید - - Importing blockchain data file. - + + Attempt to recover private keys from a corrupt wallet.dat + - Importing bootstrap blockchain data file. - + How many blocks to check at startup (default: 2500, 0 = all) + - - Run in the background as a daemon and accept commands - به عنوان daemon بک گراند را اجرا کنید و دستورات را قبول نمایید + + How thorough the block verification is (0-6, default: 1) + - Use the test network - از تستِ شبکه استفاده نمایید + Imports blocks from external blk000?.dat file + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Block creation options: + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Set minimum block size in bytes (default: 0) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Set maximum block size in bytes (default: 250000) + - + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Use OpenSSL (https) for JSON-RPC connections + برای ارتباطاتِ JSON-RPC از OpenSSL (https) استفاده کنید - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Server certificate file (default: server.cert) + فایل certificate سرور (پیش فرض server.cert) - - 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. - + + Server private key (default: server.pem) + رمز اختصاصی سرور (پیش فرض: server.pem) - - Attempt to recover private keys from a corrupt wallet.dat - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Block creation options: - + + Invalid amount for -paytxfee=<amount>: '%s' + میزان اشتباه است for -paytxfee=<amount>: '%s' - - Connect only to the specified node(s) - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - Discover own IP address (default: 1 when listening and no -externalip) - + + Invalid amount for -mininput=<amount>: '%s' + - - Failed to listen on any port. Use -listen=0 if you want this. - + + Wallet %s resides outside data directory %s. + - - Find peers using DNS lookup (default: 1) - + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Sync checkpoints policy (default: strict) - + + Verifying database integrity... + - - Invalid -tor address: '%s' - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Invalid amount for -reservebalance=<amount> - + + 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. + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + wallet.dat corrupt, salvage failed + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Unknown -socks proxy version requested: %i + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Unknown network specified in -onlynet: '%s' + - - Output extra debugging information. Implies all other -debug* options - + + Invalid -proxy address: '%s' + - Output extra network debugging information - + Invalid -tor address: '%s' + - Prepend debug output with timestamp - + Cannot resolve -bind address: '%s' + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Failed to listen on any port. Use -listen=0 if you want this. + - - Select the version of socks proxy to use (4-5, default: 5) - + + Cannot resolve -externalip address: '%s' + - - Send trace/debug info to console instead of debug.log file - ارسال اطلاعات پیگیری/خطایابی به کنسول به جای ارسال به فایل debug.log + + Invalid amount for -reservebalance=<amount> + - Send trace/debug info to debugger - + Unable to sign checkpoint, wrong checkpointkey? + + - - Set maximum block size in bytes (default: 250000) - + + Loading block index... + لود شدن نمایه بلاکها.. - - Set minimum block size in bytes (default: 0) - + + Error loading blkindex.dat + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Loading wallet... + wallet در حال لود شدن است... - - Specify connection timeout in milliseconds (default: 5000) - تعیین مدت زمان وقفه (time out) به هزارم ثانیه + + Error loading wallet.dat: Wallet corrupted + خطا در هنگام لود شدن wallet.dat: Wallet corrupted - - Unable to sign checkpoint, wrong checkpointkey? - - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - - Use UPnP to map the listening port (default: 0) - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Use UPnP to map the listening port (default: 1 when listening) - + + Wallet needed to be rewritten: restart BitBean to complete + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Error loading wallet.dat + خطا در هنگام لود شدن wallet.dat - - Username for JSON-RPC connections - شناسه کاربری برای ارتباطاتِ JSON-RPC + + Cannot downgrade wallet + قابلیت برگشت به نسخه قبلی برای wallet امکان پذیر نیست - - Verifying database integrity... - + + Cannot initialize keypool + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Cannot write default address + آدرس پیش فرض قابل ذخیره نیست - Warning: Disk space is low! - + Rescanning... + اسکنِ دوباره... - - Warning: This version is obsolete, upgrade required! - + + Importing blockchain data file. + - - wallet.dat corrupt, salvage failed - + + Importing bootstrap blockchain data file. + - - Password for JSON-RPC connections - رمز برای ارتباطاتِ JSON-RPC + + Loading addresses... + لود شدن آدرسها.. - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Error: could not start node + - - Find peers using internet relay chat (default: 0) - + + Done loading + اتمام لود شدن - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Unable to bind to %s on this computer. BitBean is probably already running. + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Allow JSON-RPC connections from specified IP address - ارتباطاتِ JSON-RPC را از آدرس آی.پی. مشخصی برقرار کنید. + + Error: Wallet locked, unable to create transaction + - Send commands to node running on <ip> (default: 127.0.0.1) - دستورات را به گره اجرا شده در<ip> ارسال کنید (پیش فرض:127.0.0.1) + Error: Wallet unlocked for staking only, unable to create transaction. + - Execute command when the best block changes (%s in cmd is replaced by block hash) - دستور را وقتی بهترین بلاک تغییر کرد اجرا کن (%s در دستور توسط block hash جایگزین شده است) + 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) - + Error: Transaction creation failed + - - Require a confirmations for change (default: 0) - + + Sending... + - Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + + Invalid amount + میزان اشتباه است - - Upgrade wallet to latest format - wallet را به جدیدترین نسخه روزآمد کنید + + Insufficient funds + وجوه ناکافی - Set key pool size to <n> (default: 100) - حجم key pool را به اندازه <n> تنظیم کنید (پیش فرض:100) + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Rescan the block chain for missing wallet transactions - زنجیره بلاک را برای تراکنش جا افتاده در WALLET دوباره اسکن کنید + + Warning: This version is obsolete, upgrade required! + - - How many blocks to check at startup (default: 2500, 0 = all) - + + WARNING: syncronized checkpoint violation detected, but skipped! + - How thorough the block verification is (0-6, default: 1) - + Warning: Disk space is low! + - Imports blocks from external blk000?.dat file - + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Use OpenSSL (https) for JSON-RPC connections - برای ارتباطاتِ JSON-RPC از OpenSSL (https) استفاده کنید + Usage: + میزان استفاده: - - Server certificate file (default: server.cert) - فایل certificate سرور (پیش فرض server.cert) + List commands + فهرست دستورها - - Server private key (default: server.pem) - رمز اختصاصی سرور (پیش فرض: server.pem) + Get help for a command + درخواست کمک برای یک دستور - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + Options: + انتخابها: - - Error: Wallet unlocked for staking only, unable to create transaction. - + Specify data directory + دایرکتوری داده را مشخص کن - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + Set database cache size in megabytes (default: 25) + حافظه بانک داده را به مگابایت تنظیم کنید (پیش فرض: 25) - - This help message - این پیام راهنما + Maintain at most <n> connections to peers (default: 125) + نگهداری <N> ارتباطات برای قرینه سازی (پیش فرض:125) - - Wallet %s resides outside data directory %s. - + Threshold for disconnecting misbehaving peers (default: 100) + آستانه قطع برای قرینه سازی اشتباه (پیش فرض:100) - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + تعداد ثانیه ها برای اتصال دوباره قرینه های اشتباه (پیش فرض:86400) - - BitBean - + Accept command line and JSON-RPC commands + command line و JSON-RPC commands را قبول کنید - - Unable to bind to %s on this computer (bind returned error %d, %s) - + Run in the background as a daemon and accept commands + به عنوان daemon بک گراند را اجرا کنید و دستورات را قبول نمایید - - Connect through socks proxy - + Use the test network + از تستِ شبکه استفاده نمایید - - Allow DNS lookups for -addnode, -seednode and -connect - + Send trace/debug info to console instead of debug.log file + ارسال اطلاعات پیگیری/خطایابی به کنسول به جای ارسال به فایل debug.log - - Loading addresses... - لود شدن آدرسها.. + Specify connection timeout in milliseconds (default: 5000) + تعیین مدت زمان وقفه (time out) به هزارم ثانیه - - Error loading blkindex.dat - + Username for JSON-RPC connections + شناسه کاربری برای ارتباطاتِ JSON-RPC - - Error loading wallet.dat: Wallet corrupted - خطا در هنگام لود شدن wallet.dat: Wallet corrupted + Password for JSON-RPC connections + رمز برای ارتباطاتِ JSON-RPC - - Error loading wallet.dat: Wallet requires newer version of BitBean - + Allow JSON-RPC connections from specified IP address + ارتباطاتِ JSON-RPC را از آدرس آی.پی. مشخصی برقرار کنید. - - Wallet needed to be rewritten: restart BitBean to complete - + Send commands to node running on <ip> (default: 127.0.0.1) + دستورات را به گره اجرا شده در<ip> ارسال کنید (پیش فرض:127.0.0.1) - - Error loading wallet.dat - خطا در هنگام لود شدن wallet.dat + Execute command when the best block changes (%s in cmd is replaced by block hash) + دستور را وقتی بهترین بلاک تغییر کرد اجرا کن (%s در دستور توسط block hash جایگزین شده است) - - Invalid -proxy address: '%s' - + Upgrade wallet to latest format + wallet را به جدیدترین نسخه روزآمد کنید - - Unknown network specified in -onlynet: '%s' - + Set key pool size to <n> (default: 100) + حجم key pool را به اندازه <n> تنظیم کنید (پیش فرض:100) - - Unknown -socks proxy version requested: %i - + Rescan the block chain for missing wallet transactions + زنجیره بلاک را برای تراکنش جا افتاده در WALLET دوباره اسکن کنید - - Cannot resolve -bind address: '%s' - + Use OpenSSL (https) for JSON-RPC connections + برای ارتباطاتِ JSON-RPC از OpenSSL (https) استفاده کنید - - Cannot resolve -externalip address: '%s' - + Server certificate file (default: server.cert) + فایل certificate سرور (پیش فرض server.cert) - - Invalid amount for -paytxfee=<amount>: '%s' - میزان اشتباه است for -paytxfee=<amount>: '%s' + Server private key (default: server.pem) + رمز اختصاصی سرور (پیش فرض: server.pem) - - Error: could not start node - + This help message + این پیام راهنما - - Sending... - + Loading addresses... + لود شدن آدرسها.. - - Invalid amount - میزان اشتباه است + Error loading wallet.dat: Wallet corrupted + خطا در هنگام لود شدن wallet.dat: Wallet corrupted - - Insufficient funds - وجوه ناکافی + Error loading wallet.dat + خطا در هنگام لود شدن wallet.dat - - Loading block index... - لود شدن نمایه بلاکها.. + Invalid amount for -paytxfee=<amount>: '%s' + میزان اشتباه است for -paytxfee=<amount>: '%s' - - Add a node to connect to and attempt to keep the connection open - یک گره برای اتصال اضافه کنید و تلاش کنید تا اتصال را باز نگاه دارید + Invalid amount + میزان اشتباه است - - Unable to bind to %s on this computer. BitBean is probably already running. - + Insufficient funds + وجوه ناکافی - - Fee per KB to add to transactions you send - + Loading block index... + لود شدن نمایه بلاکها.. - - Invalid amount for -mininput=<amount>: '%s' - + Add a node to connect to and attempt to keep the connection open + یک گره برای اتصال اضافه کنید و تلاش کنید تا اتصال را باز نگاه دارید - Loading wallet... - wallet در حال لود شدن است... + wallet در حال لود شدن است... - Cannot downgrade wallet - قابلیت برگشت به نسخه قبلی برای wallet امکان پذیر نیست - - - - Cannot initialize keypool - + قابلیت برگشت به نسخه قبلی برای wallet امکان پذیر نیست - Cannot write default address - آدرس پیش فرض قابل ذخیره نیست + آدرس پیش فرض قابل ذخیره نیست - Rescanning... - اسکنِ دوباره... + اسکنِ دوباره... - Done loading - اتمام لود شدن + اتمام لود شدن - To use the %s option - برای استفاده از %s از اختیارات + برای استفاده از %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=<password> را در فایل تنظیمات ایجاد کنید⏎ %s ⏎ اگر فایل ایجاد نشده است، آن را با یک فایل "فقط متنی" ایجاد کنید. + شما باید یک رمز rpcpassword=<password> را در فایل تنظیمات ایجاد کنید⏎ %s ⏎ اگر فایل ایجاد نشده است، آن را با یک فایل "فقط متنی" ایجاد کنید. - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_fi.qm b/src/qt/locale/bitbean_fi.qm new file mode 100644 index 0000000..554ef90 Binary files /dev/null and b/src/qt/locale/bitbean_fi.qm differ diff --git a/src/qt/locale/bitbean_fi.ts b/src/qt/locale/bitbean_fi.ts new file mode 100644 index 0000000..0194541 --- /dev/null +++ b/src/qt/locale/bitbean_fi.ts @@ -0,0 +1,4885 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + Tietoa BTestcoinista + + + + <b>BitBean</b> version + <b>BitBean</b> versio + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + +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. + +Tämä on kokeellista ohjelmistoa. + +Levitetään MIT/X11 ohjelmistolisenssin alaisuudessa. Tarkemmat tiedot löytyvät tiedostosta COPYING tai osoitteesta http://www.opensource.org/licenses/mit-license.php. + +Tämä tuote sisältää OpenSSL-projektin kehittämää ohjelmistoa OpenSSL-työkalupakettia varten (http://www.openssl.org/), Eric Youngin (eay@cryptsoft.com) kehittämän salausohjelmiston sekä Thomas Bernardin UPnP-ohjelmiston. + + + + + AddressBookPage + + + Address Book + Osoitekirja + + + + Double-click to edit address or label + Kaksoisnapauta muokataksesi osoitetta tai nimikettä + + + + Create a new address + Luo uusi osoite + + + + Copy the currently selected address to the system clipboard + Kopioi valittu osoite järjestelmän leikepöydälle + + + + &New Address + &Uusi osoite + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + Nämä ovat BitBean-osoitteesi rahansiirtojen vastaanottoa varten. Jos haluat, voit antaa jokaiselle lähettäjälle oman osoitteen jotta voit pitää kirjaa sinulle rahaa siirtäneistä henkilöistä. + + + + &Copy Address + &Kopioi osoite + + + + Show &QR Code + Näytä &QR-koodi + + + + Sign a message to prove you own a BitBean address + Allekirjoita viesti osoittaaksesi BitBean-osoitteesi omistajuus + + + + Sign &Message + Allekirjoita &Viesti + + + + Delete the currently selected address from the list + Poista valittu osoite listalta + + + + Verify a message to ensure it was signed with a specified BitBean address + Vahvista viesti varmistaaksesi että kyseinen BitBean-osoitteesi on allekirjoittanut sen + + + + &Verify Message + &Varmista viesti + + + + &Delete + &Poista + + + + Copy &Label + Kopioi &nimi + + + + &Edit + &Muokkaa + + + + Export Address Book Data + Vie osoitekirjasta tietoja + + + + Comma separated file (*.csv) + Pilkuilla eroteltu tiedosto (*.csv) + + + + Error exporting + Virhe vietäessä + + + + Could not write to file %1. + Ei voida kirjoittaa tiedostoon %1. + + + + AddressTableModel + + + Label + Nimi + + + + Address + Osoite + + + + (no label) + (ei nimeä) + + + + AskPassphraseDialog + + + Passphrase Dialog + Tunnuslauseen Dialogi + + + + Enter passphrase + Syötä tunnuslause + + + + New passphrase + Uusi tunnuslause + + + + Repeat new passphrase + Toista uusi tunnuslause uudelleen + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Sallii estettäväksi yksinkertaiset rahansiirrot kun käyttöjärjestelmän käyttäjätunnuksen turvallisuutta on rikottu. Tämä ei takaa oikeasti turvallisuutta. + + + + For staking only + Vain osakkuutta varten + + + + 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 merkkiä</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 lukituksestaan + + + + 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 COINS</b>! + Varoitus: Jos salaat lompakkosi ja hukkaat salasanasi, <b>MENETÄT KAIKKI KOLIKKOSI</b>! + + + + Are you sure you wish to encrypt your wallet? + Haluatko varmasti salata lompakkosi? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + TÄRKEÄÄ: Kaikki vanhat lompakon varmuuskopiot tulisi korvata uusilla suojatuilla varmuuskopioilla. Turvallisuussyistä edelliset varmuuskopiot muuttuvat käyttökelvottomiksi, kun aloitat uuden salatun lompakon käytön. + + + + + Warning: The Caps Lock key is on! + Varoitus: Caps Lock-näppäin on käytössä! + + + + + Wallet encrypted + Lompakko salattu + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + BitBean-ohjelma sulkee itsensä päättääkseen salauksen luonnin. Muista, että lompakon salaaminen ei täysin turvaa kolikoitasi haittaohjelmien aiheuttamien varkauksien uhalta. + + + + + + + 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. + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + Määrä: + + + + Bytes: + Tavua: + + + + Amount: + Määrä: + + + + Priority: + Prioriteetti: + + + + Fee: + Kulu: + + + + Low Output: + Heikko ulosanti: + + + + After Fee: + Kulujen jälkeen: + + + + Change: + Vaihdos: + + + + (un)select all + (tai ei)Valitse kaikki + + + + Tree mode + Puunäkymä + + + + List mode + Listanäkymä + + + + Amount + Määrä + + + + Label + + + + + Address + Osoite + + + + Date + + + + + Confirmations + Vahvistukset + + + + Confirmed + Vahvistettu + + + + Priority + Prioriteetti + + + + Copy address + Kopioi osoite + + + + Copy label + Kopioi nimi + + + + + Copy amount + Kopioi määrä + + + + Copy transaction ID + + + + + Copy quantity + Kopioi määrä + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + Kopioi tavuja + + + + Copy priority + Kopioi prioriteetti + + + + Copy low output + Kopioi heikko ulosanti + + + + Copy change + + + + + highest + korkein + + + + high + korkea + + + + medium-high + keskikorkea + + + + medium + + + + + low-medium + keskimatala + + + + low + matala + + + + lowest + matalin + + + + DUST + pölyä + + + + yes + kyllä + + + + no + ei + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Tämä nimike muuttuu punaiseksi, jos rahansiirron koko on suurempi kuin 10000 tavua. + +Tämä tarkoittaa, että ainakin %1 rahansiirtopalkkio per kilotavu tarvitaan. + +Voi vaihdella välillä +/- 1 Tavu per syöte. + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Suuremman prioriteetin rahansiirrot pääsevät suuremmalla todennäköisyydellä lohkoketjuun. + +Tämä nimike muuttuu punaiseksi, jos prioriteetti on pienempi kuin "keskikokoinen". + +Tämä tarkoittaa, että ainakin %1 rahansiirtopalkkio per kilotavu tarvitaan. + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Tämä nimike muuttuu punaiseksi, jos jokin asiakas saa pienemmän määrän kuin %1. + +Tämä tarkoittaa, että ainakin %2 rahansiirtopalkkio tarvitaan. + +Määrät alle 0.546 kertaa pienimmän rahansiirtokulun verran näytetään pölynä. + + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Tämä nimike muuttuu punaiseksi, jos vaihdos on pienempi kuin %1. + +Tämä tarkoittaa, että ainakin %2 rahansiirtopalkkio tarvitaan. + + + + + (no label) + (ei nimeä) + + + + change from %1 (%2) + vaihdos %1 (%2) + + + + (change) + (vaihdos) + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Vakava virhe kohdattu. BitBean-ohjelma ei voi enää jatkaa turvallisesti ja sulkee itsensä. + + + + BitBean + BitBean + + + + Vault + + + + + &Overview + &Yleisnäkymä + + + + Show general overview of wallet + Lompakon tilanteen yleiskatsaus + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Näytä osoitelista vastaanottaaksesi maksuja + + + + &Transactions + &Rahansiirrot + + + + Browse transaction history + Selaa rahansiirtohistoriaa + + + + &Address Book + %Osoitekirja + + + + Edit the list of stored addresses and labels + Muokkaa tallennettujen osoitteiden ja nimien listaa + + + + E&xit + L&opeta + + + + Quit application + Sulje ohjelma + + + + &About BitBean + &Tietoa BitBeanista + + + + Show information about BitBean + Näytä tietoja BitBeanista + + + + About &Qt + Tietoja &Qt + + + + Show information about Qt + Näytä tietoja Qt:sta + + + + &Options... + &Asetukset... + + + + Modify configuration options for BitBean + Mukauta BitBeanin konfigurointiasetuksia + + + + &Show / Hide + &Näytä / Piilota + + + + &Encrypt Wallet... + &Salaa lompakko... + + + + Encrypt or decrypt wallet + Salaa tai pura salaus lompakosta + + + + &Backup Wallet... + &Varmuuskopioi lompakko... + + + + Backup wallet to another location + Varmuuskopioi lompakko toiseen sijaintiin + + + + &Change Passphrase... + &Vaihda tunnuslause... + + + + Change the passphrase used for wallet encryption + Vaihda lompakon salaukseen käytettävä tunnuslause + + + + &Unlock Wallet... + &Aukaise lompakko + + + + Unlock wallet + + + + + &Lock Wallet + &Lukitse Lompakko + + + + Lock wallet + Lukitse lompakko + + + + Sign &message... + Allekirjoita &viesti... + + + + &Verify message... + &Vahvista viesti... + + + + &Export... + Vie... + + + + Export the data in the current tab to a file + Vie data tämänhetkisestä välilehdestä tiedostoon + + + + &Debug window + &Testausikkuna + + + + Open debugging and diagnostic console + Avaa debuggaus- ja diagnostiikkakonsoli + + + + &File + &Tiedosto + + + + &Settings + &Asetukset + + + + &Help + &Apua + + + + Tabs toolbar + Välilehtipalkki + + + + Actions toolbar + Toimintopalkki + + + + + [testnet] + [testnet] + + + + + BitBean client + BitBean-asiakas + + + + %n active connection(s) to BitBean network + + %n aktiivinen yhteys BitBean-verkkoon + %n aktiivista yhteyttä BitBean-verkkoon + + + + + Synchronizing with network... + Synkronoidaan verkon kanssa... + + + + ~%n block(s) remaining + + ~%n lohko jäljellä + ~%n lohkoa jäljellä + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Ladattu %1 lohkoa %2 lohkosta rahansiirtohistoriassa (%3% ladattu). + + + + Downloaded %1 blocks of transaction history. + Ladattu %1 lohkoa rahansiirtohistoriasta. + + + + %n second(s) ago + + %n sekunti sitten + %n sekuntia sitten + + + + + %n minute(s) ago + + %n minuutti sitten + %n minuuttia sitten + + + + + %n hour(s) ago + + %n tunti sitten + %n tuntia sitten + + + + + %n day(s) ago + + %n päivä sitten + %n päivää sitten + + + + + Up to date + Rahansiirtohistoria on ajan tasalla + + + + Catching up... + Saavutetaan verkkoa... + + + + Last received block was generated %1. + Viimeinen vastaanotettu lohko generoitu %1. + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Tämä rahansiirto ylittää siirtorajan. Voit silti lähettää sen %1 rahansiirtopalkkiota vastaan, joka siirretään rahansiirtoasi käsitteleville solmuille jotta se auttaisi ja tukisi verkkoa. Haluatko maksaa rahansiirtopalkkion? + + + + Confirm transaction fee + Hyväksy rahansiirtopalkkio + + + + Sent transaction + Lähetetyt rahansiirrot + + + + Incoming transaction + Saapuva rahansiirto + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Päivä: %1 +Määrä: %2 +Tyyppi: %3 +Osoite: %4 + + + + + URI handling + URI-merkkijonojen käsittely + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI-merkkijonoa ei voida jäsentää! Tämä voi johtua väärästä BitBean-osoitteesta tai väärässä muodossa olevista URI-parametreistä. + + + + 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> + + + + Backup Wallet + Varmuuskopioi lompakkosi + + + + Wallet Data (*.dat) + Lompakkodata (*.dat) + + + + Backup Failed + Varmuuskopion luonti epäonnistui + + + + There was an error trying to save the wallet data to the new location. + Virhe tallentaessa lompakkotiedostoa uuteen sijaintiinsa. + + + + %n second(s) + + %n sekunti + %n sekuntia + + + + + %n minute(s) + + %n minuutti + %n minuuttia + + + + + %n hour(s) + + %n tunti + %n tuntia + + + + + %n day(s) + + %n päivä + %n päivää + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Osakkaana.<br>Osuutesi on %1<br>Verkon osuus on %2<br>Odotettu aika palkkion ansaitsemiselle on %3 + + + + Not staking because wallet is locked + Ei osakkaana koska lompakko on lukittu + + + + Not staking because wallet is offline + Ei osakkaana koska lompakko on offline-tilassa + + + + Not staking because wallet is syncing + Ei osakkaana koska lompakko synkronoituu + + + + Not staking because you don't have mature beans + + + + + Not staking + Ei osakkaana + + + + BitcoinGUI + + Sign &message... + Allekirjoita &viesti... + + + Synchronizing with network... + Synkronoidaan verkon kanssa... + + + &Overview + &Yleisnäkymä + + + Show general overview of wallet + Lompakon tilanteen yleiskatsaus + + + &Transactions + &Rahansiirrot + + + Browse transaction history + Selaa rahansiirtohistoriaa + + + &Address Book + %Osoitekirja + + + Edit the list of stored addresses and labels + Muokkaa tallennettujen osoitteiden ja nimien listaa + + + &Receive coins + &Vastaanota kolikoita + + + Show the list of addresses for receiving payments + Näytä osoitelista vastaanottaaksesi maksuja + + + &Send coins + &Lähetä kolikoita + + + E&xit + L&opeta + + + Quit application + Sulje ohjelma + + + Show information about BitBean + Näytä tietoja BitBeanista + + + About &Qt + Tietoja &Qt + + + Show information about Qt + Näytä tietoja Qt:sta + + + &Options... + &Asetukset... + + + &Encrypt Wallet... + &Salaa lompakko... + + + &Backup Wallet... + &Varmuuskopioi lompakko... + + + &Change Passphrase... + &Vaihda tunnuslause... + + + ~%n block(s) remaining + + ~%n lohko jäljellä + ~%n lohkoa jäljellä + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Ladattu %1 lohkoa %2 lohkosta rahansiirtohistoriassa (%3% ladattu). + + + &Export... + Vie... + + + Send coins to a BitBean address + Lähetä kolikkoja BitBean osoitteeseen + + + Modify configuration options for BitBean + Mukauta BitBeanin konfigurointiasetuksia + + + Export the data in the current tab to a file + Vie data tämänhetkisestä välilehdestä tiedostoon + + + Encrypt or decrypt wallet + Salaa tai pura salaus lompakosta + + + 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... + &Vahvista viesti... + + + BitBean + BitBean + + + Wallet + Lompakko + + + &About BitBean + &Tietoa BitBeanista + + + &Show / Hide + &Näytä / Piilota + + + Unlock wallet + Avaa Lompakko + + + &Lock Wallet + &Lukitse Lompakko + + + Lock wallet + Lukitse lompakko + + + &File + &Tiedosto + + + &Settings + &Asetukset + + + &Help + &Apua + + + Tabs toolbar + Välilehtipalkki + + + Actions toolbar + Toimintopalkki + + + [testnet] + [testnet] + + + BitBean client + BitBean-asiakas + + + %n active connection(s) to BitBean network + + %n aktiivinen yhteys BitBean-verkkoon + %n aktiivista yhteyttä BitBean-verkkoon + + + + Downloaded %1 blocks of transaction history. + Ladattu %1 lohkoa rahansiirtohistoriasta. + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Osakkaana.<br>Osuutesi on %1<br>Verkon osuus on %2<br>Odotettu aika palkkion ansaitsemiselle on %3 + + + Not staking because wallet is locked + Ei osakkaana koska lompakko on lukittu + + + Not staking because wallet is offline + Ei osakkaana koska lompakko on offline-tilassa + + + Not staking because wallet is syncing + Ei osakkaana koska lompakko synkronoituu + + + Not staking because you don't have mature coins + Ei osakkaana koska sinulle ei ole erääntynyt kolikoita + + + %n second(s) ago + + %n sekunti sitten + %n sekuntia sitten + + + + &Unlock Wallet... + &Aukaise lompakko + + + %n minute(s) ago + + %n minuutti sitten + %n minuuttia sitten + + + + %n hour(s) ago + + %n tunti sitten + %n tuntia sitten + + + + %n day(s) ago + + %n päivä sitten + %n päivää sitten + + + + Up to date + Rahansiirtohistoria on ajan tasalla + + + Catching up... + Saavutetaan verkkoa... + + + Last received block was generated %1. + Viimeinen vastaanotettu lohko generoitu %1. + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Tämä rahansiirto ylittää siirtorajan. Voit silti lähettää sen %1 rahansiirtopalkkiota vastaan, joka siirretään rahansiirtoasi käsitteleville solmuille jotta se auttaisi ja tukisi verkkoa. Haluatko maksaa rahansiirtopalkkion? + + + Confirm transaction fee + Hyväksy rahansiirtopalkkio + + + Sent transaction + Lähetetyt rahansiirrot + + + Incoming transaction + Saapuva rahansiirto + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Päivä: %1 +Määrä: %2 +Tyyppi: %3 +Osoite: %4 + + + URI handling + URI-merkkijonojen käsittely + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI-merkkijonoa ei voida jäsentää! Tämä voi johtua väärästä BitBean-osoitteesta tai väärässä muodossa olevista URI-parametreistä. + + + 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> + + + Backup Wallet + Varmuuskopioi lompakkosi + + + Wallet Data (*.dat) + Lompakkodata (*.dat) + + + Backup Failed + Varmuuskopion luonti epäonnistui + + + There was an error trying to save the wallet data to the new location. + Virhe tallentaessa lompakkotiedostoa uuteen sijaintiinsa. + + + %n second(s) + + %n sekunti + %n sekuntia + + + + %n minute(s) + + %n minuutti + %n minuuttia + + + + %n hour(s) + + %n tunti + %n tuntia + + + + %n day(s) + + %n päivä + %n päivää + + + + Not staking + Ei osakkaana + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Vakava virhe kohdattu. BitBean-ohjelma ei voi enää jatkaa turvallisesti ja sulkee itsensä. + + + + ClientModel + + + Network Alert + Verkkohälytys + + + + CoinControlDialog + + Coin Control + Rahan hallinta + + + Quantity: + Määrä: + + + Bytes: + Tavua: + + + Amount: + Määrä: + + + Priority: + Prioriteetti: + + + Fee: + Kulu: + + + Low Output: + Heikko ulosanti: + + + no + ei + + + After Fee: + Kulujen jälkeen: + + + Change: + Vaihdos: + + + (un)select all + (tai ei)Valitse kaikki + + + Tree mode + Puunäkymä + + + List mode + Listanäkymä + + + Amount + Määrä + + + Label + Nimike + + + Address + Osoite + + + Date + Päivämäärä + + + Confirmations + Vahvistukset + + + Confirmed + Vahvistettu + + + Priority + Prioriteetti + + + Copy address + Kopioi osoite + + + Copy label + Kopioi nimi + + + Copy amount + Kopioi määrä + + + Copy transaction ID + Kopioi siirtotunnus + + + Copy quantity + Kopioi määrä + + + Copy fee + Kopioi kulu + + + Copy after fee + Kopioi kulun jälkeen + + + Copy bytes + Kopioi tavuja + + + Copy priority + Kopioi prioriteetti + + + Copy low output + Kopioi heikko ulosanti + + + Copy change + Kopioi vaihdos + + + highest + korkein + + + high + korkea + + + medium-high + keskikorkea + + + medium + keski + + + low-medium + keskimatala + + + low + matala + + + lowest + matalin + + + DUST + pölyä + + + yes + kyllä + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Tämä nimike muuttuu punaiseksi, jos rahansiirron koko on suurempi kuin 10000 tavua. + +Tämä tarkoittaa, että ainakin %1 rahansiirtopalkkio per kilotavu tarvitaan. + +Voi vaihdella välillä +/- 1 Tavu per syöte. + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Suuremman prioriteetin rahansiirrot pääsevät suuremmalla todennäköisyydellä lohkoketjuun. + +Tämä nimike muuttuu punaiseksi, jos prioriteetti on pienempi kuin "keskikokoinen". + +Tämä tarkoittaa, että ainakin %1 rahansiirtopalkkio per kilotavu tarvitaan. + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Tämä nimike muuttuu punaiseksi, jos jokin asiakas saa pienemmän määrän kuin %1. + +Tämä tarkoittaa, että ainakin %2 rahansiirtopalkkio tarvitaan. + +Määrät alle 0.546 kertaa pienimmän rahansiirtokulun verran näytetään pölynä. + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Tämä nimike muuttuu punaiseksi, jos vaihdos on pienempi kuin %1. + +Tämä tarkoittaa, että ainakin %2 rahansiirtopalkkio tarvitaan. + + + (no label) + (ei nimeä) + + + change from %1 (%2) + vaihdos %1 (%2) + + + (change) + (vaihdos) + + + + EditAddressDialog + + + Edit Address + Muokkaa osoitetta + + + + &Label + &Nimi + + + + The label associated with this address book entry + Tämän syötteen nimike osoitekirjassa + + + + &Address + &Osoite + + + + The address associated with this address book entry. This can only be modified for sending addresses. + Tämän syötteen nimike osoitekirjassa. Nimikettä voidaan muuttaa vain lähetysosoitteille. + + + + 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 BitBean address. + Syöttämäsi osoite "%1" ei ole hyväksytty BitBean-osoite. + + + + Could not unlock wallet. + Lompakkoa ei voitu avata. + + + + New key generation failed. + Uuden avaimen luonti epäonnistui. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + version + versio + + + + Usage: + Kulutus: + + + + command-line options + komentokehotteen asetukset + + + + UI options + Käyttäjärajapinnan asetukset + + + + Set language, for example "de_DE" (default: system locale) + Aseta kieli, esimerkiksi "fi_FI" (oletus: järjestelmän oma) + + + + Start minimized + Käynnistä pienennettynä + + + + Show splash screen on startup (default: 1) + Näytä logo käynnistettäessä (oletus: 1) + + + + OptionsDialog + + + Options + Asetukset + + + + &Main + &Yleiset + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. + Vapaavalintainen rahansiirtopalkkio kilotavua kohden auttaa varmistamaan että rahansiirtosi käsitellään nopeasti. Suurin osa rahansiirroista on alle yhden kilotavun. Palkkiota 0.01 suositellaan. + + + + Pay transaction &fee + Maksa rahansiirtopalkkio + + + Reserved amount does not participate in staking and is therefore spendable at any time. + Varattu määrä ei vaadi osakkuutta jonka vuoksi se on mahdollista käyttää milloin tahansa. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + Varattuna + + + + Automatically start BitBean after logging in to the system. + Käynnistä BitBean-asiakasohjelma automaattisesti kun olet kirjautunut järjestelmään. + + + + &Start BitBean on system login + %Käynnistä BitBean-asiakasohjelma kirjautuessasi + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + Irroita lohko- ja osoitetietokannat lopetettaessa. Tämä tarkoittaa, että tietokannat voidaan siirtää eri hakemistoon mutta se hidastaa ohjelman sammumista. Lompakko on aina irroitettuna. + + + + &Detach databases at shutdown + %Irroita tietokannat lopetettaessa + + + + &Network + &Verkko + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + Avaa BitBean-asiakkaalle automaattisesti portti reitittimestä. Tämä toimii vain, kun reitittimesi tukee UPnP:tä ja se on aktivoituna. + + + + Map port using &UPnP + Portin uudelleenohjaus &UPnP:llä + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + Yhdistä BitBean-verkkoon SOCKS-välityspalvelimen lävitse. (esim. yhdistettäessä Tor:n läpi). + + + + &Connect through SOCKS proxy: + %Yhdistä SOCKS-välityspalvelimen läpi: + + + + Proxy &IP: + Proxyn &IP: + + + + IP address of the proxy (e.g. 127.0.0.1) + Välityspalvelimen IP-osoite (esim. 127.0.0.1) + + + + &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ää Bitcoin-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 BitBean. + Käyttöliittymän kieli voidaan valita tästä. Tämä asetus tulee voimaan vasta BitBean-asiakasohjelman uudelleenkäynnistyksen jälkeen. + + + + &Unit to show amounts in: + Yksikkö jona bitcoin-määrät näytetään + + + + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Valitse mitä yksikköä käytetään ensisijaisesti bitcoin-määrien näyttämiseen. + + + + Whether to show BitBean addresses in the transaction list or not. + Näytä tai piilota BitBean-osoitteet rahansiirtolistassa. + + + + &Display addresses in transaction list + &Näytä osoitteet rahansiirrot listassa + + + Whether to show coin control features or not. + Näytä tai piilota rahanhallintaominaisuudet. + + + Display coin &control features (experts only!) + Näytä rahan&hallinnan ominaisuudet (vain kokeneille käyttäjille!) + + + + &OK + &OK + + + + &Cancel + &Peruuta + + + + &Apply + %Käytä + + + + default + oletus + + + + + Warning + Varoitus + + + + + This setting will take effect after restarting BitBean. + Tämä asetus tulee voimaan vasta BitBean-asiakasohjelman uudelleenkäynnistyksen jälkeen. + + + + The supplied proxy address is invalid. + Antamasi proxy-osoite on virheellinen. + + + + OverviewPage + + + Form + Lomake + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + Näytettävät tiedot voivat olla vanhentuneet. Lompakkosi synkronoituu automaattisesti BitBean-verkon kanssa kun yhteys on muodostettu, mutta tätä prosessia ei ole viety vielä päätökseen. + + + Stake: + Vaihdos: + + + + Unconfirmed: + Hyväksymätöntä: + + + Wallet + Lompakko + + + + Spendable: + Käytettävissä: + + + + Your current spendable balance + Käytettävissä olevat varat: + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + Epäkypsää: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + 0 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + 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 Bitcoinien määrä + + + <b>Recent transactions</b> + <b>Viimeisimmät rahansiirrot</b> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Kaikki vahvistamattomat rahansiirrot yhteensä, joita ei vielä lasketa saldoosi. + + + Total of coins that was staked, and do not yet count toward the current balance + Kolikoiden kokoinaismäärä, jotka eivät vielä ole laskettu tämänhetkiseen saldoon. + + + + + out of sync + Ei ajan tasalla + + + + QRCodeDialog + + + QR Code Dialog + QR-koodidialogi + + + + Request Payment + Pyydä rahansiirtoa + + + + Amount: + Määrä: + + + + Label: + Nimike: + + + + Message: + Viesti: + + + + &Save As... + %Tallenna nimellä... + + + + Error encoding URI into QR Code. + Virhe koodatessa linkkiä QR-koodiin. + + + + The entered amount is invalid, please check. + Syötetty määrä on epäkelpoinen; tarkista. + + + + Resulting URI too long, try to reduce the text for label / message. + Tuloksena liian pitkä URI, yritä lyhentää nimikkeen tai viestin pituutta. + + + + Save QR Code + Tallenna QR-koodi + + + + PNG Images (*.png) + PNG-kuvat (*.png) + + + + RPCConsole + + + Client name + Pääteohjelman nimi + + + + + + + + + + + + + N/A + Ei saatavilla + + + + Client version + Pääteohjelman versio + + + + &Information + T&ietoa + + + + Using OpenSSL version + Käytössä oleva OpenSSL-versio + + + + Startup time + Käynnistysaika + + + + Network + Verkko + + + + Number of connections + Yhteyksien lukumäärä + + + + On testnet + Testiverkossa + + + + 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 + + + + Command-line options + Komentokehotteen ominaisuudet + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + Näytä BitBean-Qt:n avustusohje saadaksesi listan käytettävistä BitBeanin komentokehotteen määritteistä. + + + + &Show + %Näytä + + + + &Console + &Konsoli + + + + Build date + Kääntöpäiväys + + + + BitBean - Debug window + BitBean - Debug-ikkuna + + + + BitBean Core + BitBeanin ydin + + + + Debug log file + Debug lokitiedosto + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + Avaa BitBean-asiakasohjelman debug-lokitiedosto nykyisestä hakemistostaan. Tämä voi kestää muutaman sekunnin avattaessa suuria lokitiedostoja. + + + + Clear console + Tyhjennä konsoli + + + + Welcome to the BitBean RPC console. + Tervetuloa BitBeanin 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. + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + Syötteet... + + + + automatically selected + automaattisesti valittu + + + + Insufficient funds! + Ei tarpeeksi varoja! + + + + Quantity: + Määrä: + + + + + 0 + 0 + + + + Bytes: + Tavua: + + + + Amount: + Määrä: + + + + + + + 0.00 BC + 123.456 BC {0.00 ?} + + + + Priority: + Prioriteetti: + + + + medium + + + + + Fee: + Kulu: + + + + Low Output: + Heikko ulosanti: + + + + no + ei + + + + After Fee: + Kulujen jälkeen: + + + + Change + Vaihtoraha + + + + custom change address + erikseen määritetty vaihtorahaosoite + + + + Send to multiple recipients at once + Lähetä monelle vastaanottajalle + + + + Add &Recipient + Lisää &Vastaanottaja + + + + Remove all transaction fields + Tyhjennä kaikki rahansiirtokentät + + + + Clear &All + + + + + Balance: + Saldo: + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + Vahvista lähetys + + + + S&end + &Lähetä + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Syötä BitBean-osoite (esim. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Copy quantity + Kopioi määrä + + + + Copy amount + Kopioi määrä + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + Kopioi tavuja + + + + Copy priority + Kopioi prioriteetti + + + + Copy low output + Kopioi heikko ulosanti + + + + Copy change + + + + + <b>%1</b> to %2 (%3) + <b>%1</b>:sta %2 (%3) + + + + Confirm send beans + + + + + Are you sure you want to send %1? + Oletko varma että haluat lähettää %1? + + + + and + ja + + + + 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 Bitcoinia. + + + + 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. + + + + Error: Transaction creation failed. + Virhe: Rahansiirron luonti epäonnistui. + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + VAROITUS: Epäkelpo BitBean-osoite + + + + (no label) + (ei nimeä) + + + + WARNING: unknown change address + VAROITUS: Tuntematon vaihtorahaosoite + + + + SendBeansEntry + + + Form + + + + + A&mount: + M&äärä: + + + + Pay &To: + Maksun saaja: + + + + + 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: + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Osoite, johon maksu lähetetään (esim. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + Valitse osoite osoitekirjasta + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Liitä osoite leikepöydältä + + + + Alt+P + Alt+P + + + + Remove this recipient + Poista tämä vastaanottaja + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Syötä BitBean-osoite (esim. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + SendCoinsDialog + + Send Coins + Lähetä Bitcoineja + + + Coin Control Features + Kolikoidenhallinnan ominaisuudet + + + Inputs... + Syötteet... + + + automatically selected + automaattisesti valittu + + + Insufficient funds! + Ei tarpeeksi varoja! + + + Quantity: + Määrä: + + + 0 + 0 + + + Bytes: + Tavua: + + + Amount: + Määrä: + + + 0.00 BC + 123.456 BC {0.00 ?} + + + Priority: + Prioriteetti: + + + medium + keskikokoinen + + + Fee: + Kulu: + + + Low Output: + Heikko ulosanti: + + + no + ei + + + After Fee: + Kulujen jälkeen: + + + Change + Vaihtoraha + + + custom change address + erikseen määritetty vaihtorahaosoite + + + Send to multiple recipients at once + Lähetä monelle vastaanottajalle + + + Add &Recipient + Lisää &Vastaanottaja + + + Remove all transaction fields + Tyhjennä kaikki rahansiirtokentät + + + Clear &All + &Tyhjennnä Kaikki + + + Balance: + Saldo: + + + 123.456 BC + 123.456 BC + + + Confirm the send action + Vahvista lähetys + + + S&end + &Lähetä + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Syötä BitBean-osoite (esim. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Copy quantity + Kopioi määrä + + + Copy amount + Kopioi määrä + + + Copy fee + Kopioi rahansiirtokulu + + + Copy after fee + Kopioi rahansiirtokulun jälkeen + + + Copy bytes + Kopioi tavuja + + + Copy priority + Kopioi prioriteetti + + + Copy low output + Kopioi heikko ulosanti + + + Copy change + Kopioi vaihtoraha + + + <b>%1</b> to %2 (%3) + <b>%1</b>:sta %2 (%3) + + + Confirm send coins + Hyväksy Bitcoinien lähettäminen + + + Are you sure you want to send %1? + Oletko varma että haluat lähettää %1? + + + and + ja + + + 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 Bitcoinia. + + + 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. + + + Error: Transaction creation failed. + Virhe: Rahansiirron luonti epäonnistui. + + + 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 evätty. Tämä voi tapahtua kun jotkut kolikot lompakossasi ovat jo käytetty, kuten myös tilanteessa jos käytit wallet.dat-tiedoston kopiota ja rahat olivat käytetty kopiossa, mutta eivät ole merkitty käytetyiksi tässä. + + + WARNING: Invalid BitBean address + VAROITUS: Epäkelpo BitBean-osoite + + + (no label) + (ei nimeä) + + + WARNING: unknown change address + VAROITUS: Tuntematon vaihtorahaosoite + + + + SendCoinsEntry + + Form + Kaavake + + + A&mount: + M&äärä: + + + Pay &To: + Maksun saaja: + + + 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: + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Osoite, johon maksu lähetetään (esim. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + Valitse osoite osoitekirjasta + + + Alt+A + Alt+A + + + Paste address from clipboard + Liitä osoite leikepöydältä + + + Alt+P + Alt+P + + + Remove this recipient + Poista tämä vastaanottaja + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Syötä BitBean-osoite (esim. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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, ettet allekirjoita mitään epämääräistä, sillä phishing-hyökkääjät voivat yrittää huijata sinua allekirjoittamaan henkilöllisyytesi heidän hyväksi. Allekirjoita vain se, mihin olet sitoutunut. + + + + The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Osoite, jolle viesti kirjataan (esim. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + Valitse osoite osoitekirjasta + + + + + 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 viesti, jonka haluat allekirjoittaa tähän + + + + Copy the current signature to the system clipboard + Kopioi tämänhetkinen allekirjoitus järjestelmän leikepöydälle + + + + Sign the message to prove you own this BitBean address + Allekirjoita viesti vahvistaaksesi, että omistat tämän BitBean-osoitteen + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Osoite, jolla viesti on allekirjoitettu (esim. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + Vahvista viesti varmistaaksesi että se on allekirjoitettu kyseisellä BitBean-osoitteella + + + + Reset all verify message fields + Tyhjennä kaikki varmista-viesti-kentät + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Syötä BitBean-osoite (esim. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + Klikkaa "Allekirjoita Viesti luodaksesi allekirjoituksen + + + + Enter BitBean signature + Syötä BitBean-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. + + + + TransactionDesc + + + Open until %1 + Avoinna %1 asti + + + + Open for %n block(s) + + Avoinna %n:lle lohkolle + Avoinna %n lohkolle + + + + + conflicted + törmännyt + + + + %1/offline + %1/offline + + + + %1/unconfirmed + %1/vahvistamaton + + + + %1 confirmations + %1 vahvistusta + + + + Status + Tila + + + + , broadcast through %n node(s) + + lähetetty %n noodin läpi + lä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 kuluttua + kypsyy %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 + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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. + Luotujen kolikoiden on eräännyttävä 510 lohkon ajan ennenkuin niitä voidaan käyttää. Kun loit tämän lohkon, se oli lähetetty verkkoon lohkoketjuun lisättäväksi. Jos lohkon siirtyminen ketjuun epäonnistuu, tilaksi muuttuu "ei hyväksytty" ja sillon sitä ei voida käyttää. Tämä voi tapahtua joskus jos toinen verkon noodi luo lohkon muutaman sekunnin sisällä luodusta lohkostasi. + + + + 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 + + + + unknown + tuntematon + + + + TransactionDescDialog + + + Transaction details + Rahansiirron yksityiskohdat + + + + This pane shows a detailed description of the transaction + Tämä ruutu näyttää yksityiskohtaisen tiedon rahansiirrosta + + + + TransactionTableModel + + + Date + Päivämäärä + + + + Type + Laatu + + + + Address + Osoite + + + + Amount + Määrä + + + + Open until %1 + Avoinna %1 asti + + + + Confirmed (%1 confirmations) + Vahvistettu (%1 vahvistusta) + + + + Open for %n more block(s) + + Avoinna %n lohkolle + Avoinna %n lohkolle + + + + + Offline + Offline-tila + + + + Unconfirmed + Vahvistamaton + + + + Confirming (%1 of %2 recommended confirmations) + Vahvistetaan (%1 %2:sta suositellusta vahvistuksesta) + + + + Conflicted + Törmännyt + + + + Immature (%1 confirmations, will be available after %2) + Ei vahvistettu (%1 vahvistusta, on saatavilla %2:n jälkeen) + + + + 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 + + + + Received with + Vastaanotettu osoitteella + + + + Received from + Vastaanotettu + + + + Sent to + Saaja + + + + Payment to yourself + Maksu itsellesi + + + + SPROUT + + + + 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 Bitcoin-osoite + + + + Amount removed from or added to balance. + Saldoon lisätty tai siitä vähennetty määrä. + + + + 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 rahansiirron ID + + + + Edit label + Muokkaa nimeä + + + + Show transaction details + Näytä rahansiirron yksityiskohdat + + + + Export Transaction Data + Vie tiedot rahansiirrosta + + + + Comma separated file (*.csv) + Comma separated file (*.csv) + + + + Confirmed + Vahvistettu + + + + Date + Aika + + + + Type + Laatu + + + + Label + Nimi + + + + Address + Osoite + + + + Amount + Määrä + + + + ID + ID + + + + Error exporting + Virhe vietäessä + + + + Could not write to file %1. + Ei voida kirjoittaa tiedostoon %1. + + + + Range: + Alue: + + + + to + kenelle + + + + WalletModel + + + Sending... + Lähetetään... + + + + bitbean-core + + + To use the %s option + Käytä %s optiota + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, sinun on asetettava rpcpassword asetustiedostoon: +%s +On suositeltavaa, että käytät seuraavaa arvottua salasanaa: +rpcuser=BitBeanrpc +rpcpassword=%s +(Sinun ei tarvitse muistaa tätä salasanaa) +Käyttäjänimen ja salasanan EI TULE OLLA SAMOJA. +Jos tiedostoa ei ole olemassa, luo se asettaen samalla omistajan lukuoikeudet. +On myös suositeltavaa asettaa alertnotify jolloin olet tiedotettu ongelmista; esimerkiksi: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + Error + Virhe + + + + 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 + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + Virhe valmisteltaessa RPC-portin %u avaamista kuunneltavaksi: %s + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Sinun täytyy asettaa rpcpassword=<password> asetustiedostoon: +%s +Jos tiedostoa ei ole, niin luo se ainoastaan omistajan kirjoitusoikeuksin. + + + + BitBean version + BitBeanin versio + + + + Usage: + + + + + Send command to -server or BitBeand + Syötä komento kohteeseen -server tai BitBeand + + + + List commands + Lista komennoista + + + + Get help for a command + Hanki apua käskyyn + + + + BitBean + BitBean + + + + Options: + Asetukset: + + + + This help message + Tämä ohjeviesti + + + + Specify configuration file (default: BitBean.conf) + Määritä asetustiedosto (oletus: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + Määritä prosessitiedosto (oletus: BitBean.pid) + + + + Specify data directory + Määritä data-hakemisto + + + + Specify wallet file (within data directory) + Määritä lompakkotiedosto (datahakemiston sisällä) + + + + Set database cache size in megabytes (default: 25) + Aseta tietokannan välimuistin koko megatavuina (oletus: 25) + + + + Set database disk log size in megabytes (default: 100) + Aseta tietokannan lokien maksimikoko megatavuissa (oletus: 100) + + + + Specify connection timeout in milliseconds (default: 5000) + Määritä yhteyden aikakataisu millisekunneissa (vakioasetus: 5000) + + + + Connect through socks proxy + Yhdistä SOCKS-välityspalvelimen lävitse + + + + Select the version of socks proxy to use (4-5, default: 5) + Valitse SOCKS-välityspalvelimen versio (4-5, oletus 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + Käytä välityspalvelinta saavuttaaksesi tor:n piilotetut palvelut (oletus: sama kuin -proxy) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Salli DNS kyselyt -addnode, -seednode ja -connect yhteydessä + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Kuuntele yhteyksiä portissa <port> (oletus: 15714 tai testiverkko: 25714) + + + + Maintain at most <n> connections to peers (default: 125) + Pidä enintään <n> yhteyttä verkkoihin (oletus: 125) + + + + Add a node to connect to and attempt to keep the connection open + Linää solmu mihin liittyä pitääksesi yhteyden auki + + + + Connect only to the specified node(s) + Yhidstä ainoastaan määrättyihin noodeihin + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Yhdistä vain noodeihin verkossa <net> (IPv4, IPv6 tai Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Hae oma IP osoite (vakioasetus: 1 kun kuuntelemassa ja ei -externalip) + + + + Find peers using internet relay chat (default: 0) + Etsi vertaisiasi käyttäen Internet Relay Chatia (oletus: 1) {0)?} + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Hyväksy yhteyksiä ulkopuolelta (vakioasetus: 1 jos -proxy tai -connect ei määritelty) + + + + Bind to given address. Use [host]:port notation for IPv6 + Liitä annettuun osoitteeseen. Käytä [host]:port merkintää IPv6:lle + + + + Find peers using DNS lookup (default: 1) + Etsi vertaisiasi käyttäen DNS-nimihakua (oletus: 1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Synkronoi kello muiden noodien kanssa. Poista käytöstä, jos järjestelmäsi aika on tarkka esim. päivittää itsensä NTP-palvelimelta. (oletus: 1) + + + + Sync checkpoints policy (default: strict) + Synkronoi tallennuspisteiden käytännöt (oletus: strict) + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Käytä UPnP:tä kuunneltavan portin avaamiseen (vakioasetus: 1 kun kuuntelemassa) + + + + Use UPnP to map the listening port (default: 0) + Käytä UPnP:tä kuunneltavan portin avaamiseen (vakioasetus: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + Irroita lohko- ja osoitetietokannat lopetuksessa. Nostaa ohjelman lopetusaikaa (oletus: 0) + + + + Fee per KB to add to transactions you send + Rahansiirtopalkkio kilotavua kohden lähetettäviin rahansiirtoihisi + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Rahansiirtoja luodessa jätä huomioimatta syötteet joiden arvo on vähemmän kuin tämä (oletus: 0.01) + + + + Accept command line and JSON-RPC commands + Hyväksy merkkipohjaiset- ja JSON-RPC-käskyt + + + + 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 + + + + Output extra debugging information. Implies all other -debug* options + Tulosta lisäksi debug-tietoa, seuraa kaikkia muita -debug*-asetuksia + + + + Output extra network debugging information + Tulosta lisäksi verkon debug-tietoa + + + + Prepend debug output with timestamp + Lisää debug-tulosteiden alkuun aikaleimat + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Pienennä debug.log tiedosto käynnistyksen yhteydessä (vakioasetus: 1 kun ei -debug) + + + + Send trace/debug info to console instead of debug.log file + Lähetä jäljitys/debug-tieto konsoliin, debug.log-tiedoston sijaan + + + + Send trace/debug info to debugger + Lähetä debug-tuloste kehittäjille + + + + Username for JSON-RPC connections + Käyttäjätunnus JSON-RPC-yhteyksille + + + + Password for JSON-RPC connections + Salasana JSON-RPC-yhteyksille + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Kuuntele JSON-RPC-yhteyksiä portissa <port> (oletus: 15715 tai testiverkko: 25715) + + + + 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) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Suorita komento kun lompakon rahansiirrossa muutoksia (%s komennossa on korvattu TxID:llä) + + + + Require a confirmations for change (default: 0) + Vaadi vaihtorahalle vahvistus (oletus: 0) + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Vahvista, että rahansiirtoskriptit käyttävät sääntöjen mukaisia PUSH-toimijoita (oletus: 1) + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Suorita komento kun olennainen varoitus on saatu (%s komennossa korvattu viestillä) + + + + 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 + + + + Attempt to recover private keys from a corrupt wallet.dat + Yritetään palauttaa yksityisiä salausavaimia korruptoituneesta wallet.dat-tiedostosta + + + + How many blocks to check at startup (default: 2500, 0 = all) + Kuinka monta lohkoa tarkistetaan käynnistyksen yhteydessä (oletus: 2500, 0 = kaikki) + + + + How thorough the block verification is (0-6, default: 1) + Kuinka perusteellisesti lohko vahvistetaan (0-6, oletus: 1) + + + + Imports blocks from external blk000?.dat file + Tuo lohkoja erillisestä blk000?.dat-tiedostosta + + + + Block creation options: + Lohkon luonnin asetukset: + + + + Set minimum block size in bytes (default: 0) + Asetan pienin lohkon koko tavuissa (vakioasetus: 0) + + + + Set maximum block size in bytes (default: 250000) + Aseta lohkon maksimikoko tavuissa (oletus: 250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Aseta maksimikoko korkean prioriteetin/pienen siirtokulun maksutapahtumille tavuina (oletus: 27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Hyväksytyt salaustyypit (oletus: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Invalid amount for -paytxfee=<amount>: '%s' + -paytxfee=<amount>: '%s' on virheellinen + + + + 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. + + + + Invalid amount for -mininput=<amount>: '%s' + Epäkelpo määrä parametrille -mininput=<amount>: '%s' + + + + Wallet %s resides outside data directory %s. + Lompakko %s on datahakemiston %s ulkopuolella. + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Ei voida saavuttaa lukkoa datatiedostossa %s. BitBean-asiakasohjelma on ehkä jo käynnissä. + + + + Verifying database integrity... + Tarkistetaan tietokannan eheyttä... + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Virhe alustettaessa tietokantaympäristöä %s! Palauttaaksesi sen, TEE VARMUUSKOPIO HAKEMISTOSTA ja poista tämän jälkeen kaikki hakemiston tiedostot paitsi wallet.dat-tiedosto. + + + + 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-tiedosto on korruptoitunut, data pelastettu! Alkuperäinen wallet.dat on tallennettu nimellä wallet.{aikaleima}.bak kohteeseen %s; Jos saldosi tai rahansiirrot ovat väärät, sinun tulee palauttaa lompakko varmuuskopiosta. + + + + wallet.dat corrupt, salvage failed + wallet.dat on korruptoitunut, pelastusyritys epäonnistui + + + + Unknown -socks proxy version requested: %i + Tuntematon -socks proxy versio pyydetty: %i + + + + Unknown network specified in -onlynet: '%s' + Tuntematon verkko -onlynet parametrina: '%s' + + + + Invalid -proxy address: '%s' + Virheellinen proxy-osoite '%s' + + + + Invalid -tor address: '%s' + Epäkelpo -tor-osoite: '%s' + + + + Cannot resolve -bind address: '%s' + -bind osoitteen '%s' selvittäminen epäonnistui + + + + 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ä. + + + + Cannot resolve -externalip address: '%s' + -externalip osoitteen '%s' selvittäminen epäonnistui + + + + Invalid amount for -reservebalance=<amount> + Epäkelpo määrä -reservebalance=<amount> + + + + Unable to sign checkpoint, wrong checkpointkey? + + Ei voitu kirjata tallennuspistettä, väärä checkpointkey? + + + + + Loading block index... + Ladataan lohkoindeksiä... + + + + Error loading blkindex.dat + Virhe ladattaessa blkindex.dat-tiedostoa + + + + Loading wallet... + Ladataan lompakkoa... + + + + Error loading wallet.dat: Wallet corrupted + Virhe ladattaessa wallet.dat-tiedostoa: Lompakko vioittunut + + + + 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-tiedostoa! Kaikki avaimet luettiin oikein, mutta rahansiirtodata tai osoitekirjan kentät voivat olla puuttuvat tai väärät. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Virhe ladattaessa wallet.dat-tiedostoa: Lompakko tarvitsee uudemman version BitBean-asiakasohjelmasta + + + + Wallet needed to be rewritten: restart BitBean to complete + Lompakko on kirjoitettava uudelleen: käynnistä BitBean-asiakasohjelma uudelleen päättääksesi toiminnon + + + + Error loading wallet.dat + Virhe ladattaessa wallet.dat-tiedostoa + + + + Cannot downgrade wallet + Et voi päivittää lompakkoasi vanhempaan versioon + + + + Cannot initialize keypool + Ei voida alustaa avainallasta + + + + Cannot write default address + Oletusosoitetta ei voi kirjoittaa + + + + Rescanning... + Skannataan uudelleen... + + + + Importing blockchain data file. + Tuodaan lohkoketjun datatiedostoa. + + + + Importing bootstrap blockchain data file. + Tuodaan esilatausohjelma lohkoketjun datatiedostolle. + + + + Loading addresses... + Ladataan osoitteita... + + + + Error: could not start node + Virhe: Ei voitu käynnistää noodia + + + + Done loading + Lataus on valmis + + + + Unable to bind to %s on this computer. BitBean is probably already running. + Ei voitu liittää %s tällä tietokoneella. BitBean-asiakasohjelma on jo ehkä päällä. + + + + 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) + + + + Error: Wallet locked, unable to create transaction + Virhe: Lompakko lukittu, rahansiirtoa ei voida luoda + + + + Error: Wallet unlocked for staking only, unable to create transaction. + Virhe: Lompakko avattu vain osakkuutta varten, rahansiirtoja ei voida luoda. + + + + 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 tarvitsee rahansiirtopalkkion, kooltaan %s, kokonsa, monimutkaisuutensa tai aikaisemmin saatujen varojen käytön takia. + + + + Error: Transaction creation failed + Virhe: Rahansiirron luonti epäonnistui + + + + Sending... + Lähetetään... + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Virheellinen määrä + + + + Insufficient funds + Lompakon saldo ei riitä + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Varoitus: Tarkista, että tietokoneesi aika ja päivämäärä ovat oikeassa! Jos kellosi on väärässä, BitBean ei toimi oikein. + + + + Warning: This version is obsolete, upgrade required! + Varoitus: Tämä versio on vanhentunut, päivitys tarpeen! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + VAROITUS: synkronoidun tallennuspisteen rikkomista havaittu, mutta ohitettu! + + + + Warning: Disk space is low! + Varoitus: Kiintolevytila on vähissä! + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + VAROITUS: Epäkelpo tarkistuspiste löydetty! Ilmoitetut rahansiirrot eivät välttämättä pidä paikkaansa! Sinun täytyy päivittää asiakasohjelma, tai ilmoittaa kehittäjille ongelmasta. + + + + bitcoin-core + + BitBean version + BitBeanin versio + + + Usage: + Käyttö: + + + Send command to -server or BitBeand + Syötä komento kohteeseen -server tai BitBeand + + + List commands + Lista komennoista + + + Get help for a command + Hanki apua käskyyn + + + Options: + Asetukset: + + + Specify configuration file (default: BitBean.conf) + Määritä asetustiedosto (oletus: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + Määritä prosessitiedosto (oletus: BitBean.pid) + + + Specify wallet file (within data directory) + Määritä lompakkotiedosto (datahakemiston sisällä) + + + Specify data directory + Määritä data-hakemisto + + + Set database cache size in megabytes (default: 25) + Aseta tietokannan välimuistin koko megatavuina (oletus: 25) + + + Set database disk log size in megabytes (default: 100) + Aseta tietokannan lokien maksimikoko megatavuissa (oletus: 100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Kuuntele yhteyksiä portissa <port> (oletus: 15714 tai testiverkko: 25714) + + + 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 + + + Bind to given address. Use [host]:port notation for IPv6 + Liitä annettuun osoitteeseen. Käytä [host]:port merkintää IPv6:lle + + + Stake your coins to support network and gain reward (default: 1) + Panosta rahasi tukeaksi verkkoa ja saadaksesi palkkiota (oletus: 1) + + + 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 + + + Detach block and address databases. Increases shutdown time (default: 0) + Irroita lohko- ja osoitetietokannat lopetuksessa. Nostaa ohjelman lopetusaikaa (oletus: 0) + + + 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 on evätty. Tämä voi tapahtua jos joitakin kolikoistasi lompakossasi on jo käytetty, tai jos olet käyttänyt wallet.dat-tiedoston kopiota ja rahat olivat käytetyt kopiossa, mutta ei merkitty käytetyksi tässä. + + + 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 tarvitsee rahansiirtopalkkion, kooltaan %s, kokonsa, monimutkaisuutensa tai aikaisemmin saatujen varojen käytön takia. + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Kuuntele JSON-RPC-yhteyksiä portissa <port> (oletus: 15715 tai testiverkko: 25715) + + + Accept command line and JSON-RPC commands + Hyväksy merkkipohjaiset- ja JSON-RPC-käskyt + + + Error: Transaction creation failed + Virhe: Rahansiirron luonti epäonnistui + + + Error: Wallet locked, unable to create transaction + Virhe: Lompakko lukittu, rahansiirtoa ei voida luoda + + + Importing blockchain data file. + Tuodaan lohkoketjun datatiedostoa. + + + Importing bootstrap blockchain data file. + Tuodaan esilatausohjelma lohkoketjun datatiedostolle. + + + 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) + + + 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 + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Virhe alustettaessa tietokantaympäristöä %s! Palauttaaksesi sen, TEE VARMUUSKOPIO HAKEMISTOSTA ja poista tämän jälkeen kaikki hakemiston tiedostot paitsi wallet.dat-tiedosto. + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Aseta maksimikoko korkean prioriteetin/pienen siirtokulun maksutapahtumille tavuina (oletus: 27000) + + + 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 BitBean will not work properly. + Varoitus: Tarkista, että tietokoneesi aika ja päivämäärä ovat oikeassa! Jos kellosi on väärässä, BitBean ei toimi oikein. + + + 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-tiedostoa! Kaikki avaimet luettiin oikein, mutta rahansiirtodata tai osoitekirjan kentät voivat olla puuttuvat tai väärät. + + + 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-tiedosto on korruptoitunut, data pelastettu! Alkuperäinen wallet.dat on tallennettu nimellä wallet.{aikaleima}.bak kohteeseen %s; Jos saldosi tai rahansiirrot ovat väärät, sinun tulee palauttaa lompakko varmuuskopiosta. + + + Attempt to recover private keys from a corrupt wallet.dat + Yritetään palauttaa yksityisiä salausavaimia korruptoituneesta wallet.dat-tiedostosta + + + Block creation options: + Lohkon luonnin asetukset: + + + Connect only to the specified node(s) + Yhidstä ainoastaan määrättyihin noodeihin + + + Discover own IP address (default: 1 when listening and no -externalip) + Hae oma IP osoite (vakioasetus: 1 kun kuuntelemassa ja ei -externalip) + + + 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ä. + + + Find peers using DNS lookup (default: 1) + Etsi vertaisiasi käyttäen DNS-nimihakua (oletus: 1) + + + Sync checkpoints policy (default: strict) + Synkronoi tallennuspisteiden käytännöt (oletus: strict) + + + Invalid -tor address: '%s' + Epäkelpo -tor-osoite: '%s' + + + Invalid amount for -reservebalance=<amount> + Epäkelpo määrä -reservebalance=<amount> + + + 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) + Yhdistä vain noodeihin verkossa <net> (IPv4, IPv6 tai Tor) + + + Output extra debugging information. Implies all other -debug* options + Tulosta lisäksi debug-tietoa, seuraa kaikkia muita -debug*-asetuksia + + + Output extra network debugging information + Tulosta lisäksi verkon debug-tietoa + + + Prepend debug output with timestamp + Lisää debug-tulosteiden alkuun aikaleimat + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL asetukset (katso Bitcoin Wikistä tarkemmat SSL ohjeet) + + + Select the version of socks proxy to use (4-5, default: 5) + Valitse SOCKS-välityspalvelimen versio (4-5, oletus 5) + + + Send trace/debug info to console instead of debug.log file + Lähetä jäljitys/debug-tieto konsoliin, debug.log-tiedoston sijaan + + + Send trace/debug info to debugger + Lähetä debug-tuloste kehittäjille + + + Set maximum block size in bytes (default: 250000) + Aseta lohkon maksimikoko tavuissa (oletus: 250000) + + + Set minimum block size in bytes (default: 0) + Asetan pienin lohkon koko tavuissa (vakioasetus: 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) + + + Specify connection timeout in milliseconds (default: 5000) + Määritä yhteyden aikakataisu millisekunneissa (vakioasetus: 5000) + + + Unable to sign checkpoint, wrong checkpointkey? + + Ei voitu kirjata tallennuspistettä, väärä checkpointkey? + + + + 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) + + + Use proxy to reach tor hidden services (default: same as -proxy) + Käytä välityspalvelinta saavuttaaksesi tor:n piilotetut palvelut (oletus: sama kuin -proxy) + + + Username for JSON-RPC connections + Käyttäjätunnus JSON-RPC-yhteyksille + + + Verifying database integrity... + Tarkistetaan tietokannan eheyttä... + + + WARNING: syncronized checkpoint violation detected, but skipped! + VAROITUS: synkronoidun tallennuspisteen rikkomista havaittu, mutta ohitettu! + + + Warning: Disk space is low! + Varoitus: Kiintolevytila on vähissä! + + + Warning: This version is obsolete, upgrade required! + Varoitus: Tämä versio on vanhentunut, päivitys tarpeen! + + + wallet.dat corrupt, salvage failed + wallet.dat on korruptoitunut, pelastusyritys epäonnistui + + + Password for JSON-RPC connections + Salasana JSON-RPC-yhteyksille + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, sinun on asetettava rpcpassword asetustiedostoon: +%s +On suositeltavaa, että käytät seuraavaa arvottua salasanaa: +rpcuser=BitBeanrpc +rpcpassword=%s +(Sinun ei tarvitse muistaa tätä salasanaa) +Käyttäjänimen ja salasanan EI TULE OLLA SAMOJA. +Jos tiedostoa ei ole olemassa, luo se asettaen samalla omistajan lukuoikeudet. +On myös suositeltavaa asettaa alertnotify jolloin olet tiedotettu ongelmista; esimerkiksi: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + Find peers using internet relay chat (default: 0) + Etsi vertaisiasi käyttäen Internet Relay Chatia (oletus: 1) {0)?} + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Synkronoi kello muiden noodien kanssa. Poista käytöstä, jos järjestelmäsi aika on tarkka esim. päivittää itsensä NTP-palvelimelta. (oletus: 1) + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Rahansiirtoja luodessa jätä huomioimatta syötteet joiden arvo on vähemmän kuin tämä (oletus: 0.01) + + + 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) + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Suorita komento kun lompakon rahansiirrossa muutoksia (%s komennossa on korvattu TxID:llä) + + + Require a confirmations for change (default: 0) + Vaadi vaihtorahalle vahvistus (oletus: 0) + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Vahvista, että rahansiirtoskriptit käyttävät sääntöjen mukaisia PUSH-toimijoita (oletus: 1) + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Suorita komento kun olennainen varoitus on saatu (%s komennossa korvattu viestillä) + + + 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 + + + How many blocks to check at startup (default: 2500, 0 = all) + Kuinka monta lohkoa tarkistetaan käynnistyksen yhteydessä (oletus: 2500, 0 = kaikki) + + + How thorough the block verification is (0-6, default: 1) + Kuinka perusteellisesti lohko vahvistetaan (0-6, oletus: 1) + + + Imports blocks from external blk000?.dat file + Tuo lohkoja erillisestä blk000?.dat-tiedostosta + + + 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) + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Hyväksytyt salaustyypit (oletus: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + Error: Wallet unlocked for staking only, unable to create transaction. + Virhe: Lompakko avattu vain osakkuutta varten, rahansiirtoja ei voida luoda. + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + VAROITUS: Epäkelpo tarkistuspiste löydetty! Ilmoitetut rahansiirrot eivät välttämättä pidä paikkaansa! Sinun täytyy päivittää asiakasohjelma, tai ilmoittaa kehittäjille ongelmasta. + + + This help message + Tämä ohjeviesti + + + Wallet %s resides outside data directory %s. + Lompakko %s on datahakemiston %s ulkopuolella. + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Ei voida saavuttaa lukkoa datatiedostossa %s. BitBean-asiakasohjelma on ehkä jo käynnissä. + + + BitBean + BitBean + + + 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) + + + Connect through socks proxy + Yhdistä SOCKS-välityspalvelimen lävitse + + + Allow DNS lookups for -addnode, -seednode and -connect + Salli DNS kyselyt -addnode, -seednode ja -connect yhteydessä + + + Loading addresses... + Ladataan osoitteita... + + + Error loading blkindex.dat + Virhe ladattaessa blkindex.dat-tiedostoa + + + Error loading wallet.dat: Wallet corrupted + Virhe ladattaessa wallet.dat-tiedostoa: Lompakko vioittunut + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Virhe ladattaessa wallet.dat-tiedostoa: Lompakko tarvitsee uudemman version BitBean-asiakasohjelmasta + + + Wallet needed to be rewritten: restart BitBean to complete + Lompakko on kirjoitettava uudelleen: käynnistä BitBean-asiakasohjelma uudelleen päättääksesi toiminnon + + + 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 + + + Error: could not start node + Virhe: Ei voitu käynnistää noodia + + + Sending... + Lähetetään... + + + 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. BitBean is probably already running. + Ei voitu liittää %s tällä tietokoneella. BitBean-asiakasohjelma on jo ehkä päällä. + + + Fee per KB to add to transactions you send + Rahansiirtopalkkio kilotavua kohden lähetettäviin rahansiirtoihisi + + + Invalid amount for -mininput=<amount>: '%s' + Epäkelpo määrä parametrille -mininput=<amount>: '%s' + + + Loading wallet... + Ladataan lompakkoa... + + + Cannot downgrade wallet + Et voi päivittää lompakkoasi vanhempaan versioon + + + Cannot initialize keypool + Ei voida alustaa avainallasta + + + 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. + Sinun täytyy asettaa rpcpassword=<password> asetustiedostoon: +%s +Jos tiedostoa ei ole, niin luo se ainoastaan omistajan kirjoitusoikeuksin. + + + diff --git a/src/qt/locale/bitbean_fr.qm b/src/qt/locale/bitbean_fr.qm new file mode 100644 index 0000000..fc6cec0 Binary files /dev/null and b/src/qt/locale/bitbean_fr.qm differ diff --git a/src/qt/locale/bitbean_fr.ts b/src/qt/locale/bitbean_fr.ts new file mode 100644 index 0000000..370c71a --- /dev/null +++ b/src/qt/locale/bitbean_fr.ts @@ -0,0 +1,4896 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + Au sujet de BitBean + + + + <b>BitBean</b> version + Version de <b>BitBean</b> + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + Copyright © 2009-2014 Les développeurs Bitcoin +Copyright © 2012-2014 Les développeurs NovaCoin +Copyright © 2014 Les développeurs BitBean + + + +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. + + Ce logiciel est expérimental. + + Distribué sous licence logicielle MIT/X11, voir le fichier COPYING joint ou http://www.opensource.org/licenses/mit-license.php. + + 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. + + + + AddressBookPage + + + Address Book + Répertoire d'adresses + + + + 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 + + + + Copy the currently selected address to the system clipboard + Copier l'adresse sélectionnée vers le presse-papier système + + + + &New Address + &Nouvelle adresse + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + Ce sont vos adresses pour recevoir vos paiements. Vous pouvez utiliser une adresse différente pour chaque réception afin d'identifier facilement le payeur. + + + + &Copy Address + &Copier l'adresse + + + + Show &QR Code + Montrer le &QR Code + + + + Sign a message to prove you own a BitBean address + Signer un message afin de valider l'identité de votre adresse BitBean + + + + Sign &Message + Signer le &message + + + + Delete the currently selected address from the list + Effacer l'adresse actuellement sélectionnée de la liste + + + + Verify a message to ensure it was signed with a specified BitBean address + Vérifier un message pour s'assurer qu'il vient d'un adresse BitBean spécifique. + + + + &Verify Message + &Vérifier un message + + + + &Delete + &Supprimer + + + + Copy &Label + Copier l'&Étiquette + + + + &Edit + &Modifier + + + + Export Address Book Data + Exporter votre répertoire d'adresses + + + + Comma separated file (*.csv) + Fichier de valeurs séparées par des virgules (*.csv) + + + + Error exporting + Erreur lors de l'export + + + + Could not write to file %1. + Impossible d'écrire dans le fichier %1. + + + + AddressTableModel + + + Label + Étiquette + + + + Address + Adresse + + + + (no label) + (aucune étiquette) + + + + 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 + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Sert à désactiver les transactions sortantes si votre compte de système d'exploitation est compromis. Ne procure pas de réelle sécurité. + + + + For staking only + Pour "staking" seulement + + + + 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 COINS</b>! + Avertissement : Si vous chiffrez votre portefeuille et perdez votre passphrase, vous ne pourrez <b>plus accéder à vos BitBeans</b>! + + + + Are you sure you wish to encrypt your wallet? + Êtes-vous sûr de vouloir chiffrer votre portefeuille ? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + 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 lors 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é + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + L'application BitBean va désormais se terminer afin de finaliser le processus de chiffrage. Merci de noter que le chiffrage du portefeuille ne garantit pas de se prémunir du vol via utilisation de malware, qui auraient pu infecter 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 est 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. + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Priority: + + + + + Fee: + + + + + Low Output: + + + + + After Fee: + + + + + Change: + Monnaie : + + + + (un)select all + Tout (dé)sélectionner + + + + Tree mode + Mode arborescence + + + + List mode + Mode liste + + + + Amount + Montant + + + + Label + Étiquette + + + + 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 + + + + 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 + + + + high + élevée + + + + medium-high + moyennement-élevée + + + + medium + + + + + low-medium + moyennement-basse + + + + low + basse + + + + lowest + la plus basse + + + + DUST + DUST + + + + yes + oui + + + + no + non + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Cette étiquette passe au rouge, si la taille de la transaction est supérieure à 10000 bytes. + +Cela implique que des frais à hauteur d'au moins %1 par kb seront nécessaires. + +Ceux-ci Peuvent varier de +/- 1 Byte par entrée. + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Les transactions avec une priorité haute ont plus de chances d'être traitées en un block. + +L'étiquette passe au rouge si votre priorité est plus basse que la "moyenne". + +Cela implique que des frais d'un minimum de %1 par kb sont requis + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Cette étiquette passe au rouge, Lorsqu'un destinataire reçoit un montant inférieur à %1. + +Cela implique que des frais à hauteur de %2 seront nécessaire + +Les montants inférieurs à 0.546 fois les frais minimum de relais apparaissent en tant que DUST. + + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Cette étiquette passe au rouge, lorsque la différence est inférieure à %1. + +Cela implique que des frais à hauteur d'au moins %2 seront nécessaires. + + + + + (no label) + + + + + change from %1 (%2) + monnaie de %1 (%2) + + + + (change) + (monnaie) + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Une erreur fatale a été rencontrée. L'application BitBean ne peut plus être s'exécuter de façon correcte et va se terminer. + + + + BitBean + BitBean + + + + Vault + + + + + &Overview + &Vue d'ensemble + + + + Show general overview of wallet + Afficher une vue d’ensemble du portefeuille + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Montrer la liste d'adresses de réception de paiements + + + + &Transactions + &Transactions + + + + Browse transaction history + Parcourir l'historique des transactions + + + + &Address Book + Carnet d'adresses + + + + Edit the list of stored addresses and labels + Éditer la liste d'adresses et étiquettes + + + + E&xit + Q&uitter + + + + Quit application + Quitter l’application + + + + &About BitBean + &Au sujet de BitBean + + + + Show information about BitBean + Afficher des informations au sujet de BitBean + + + + About &Qt + À propos de &Qt + + + + Show information about Qt + Afficher les informations au sujet de Qt + + + + &Options... + &Options… + + + + Modify configuration options for BitBean + Modification des options de configuration de BitBean + + + + &Show / Hide + &Montrer / Masquer + + + + &Encrypt Wallet... + &Chiffrer le portefeuille... + + + + Encrypt or decrypt wallet + Chiffrer ou déchiffrer le portefeuille + + + + &Backup Wallet... + Sauvegarder le &portefeuille... + + + + Backup wallet to another location + Sauvegarder le portefeuille vers un autre emplacement + + + + &Change Passphrase... + &Changer la phrase de passe... + + + + Change the passphrase used for wallet encryption + Modifier la phrase de passe utilisée pour le chiffrement du portefeuille + + + + &Unlock Wallet... + &Déverrouiller le portefeuille... + + + + Unlock wallet + Déverrouiller le portefeuille + + + + &Lock Wallet + &Verrouiller le portefeuille + + + + Lock wallet + Verrouiller le portefeuille + + + + Sign &message... + Signer le &message... + + + + &Verify message... + &Vérifier un message... + + + + &Export... + &Exporter... + + + + Export the data in the current tab to a file + Export des données de l'onglet courant vers un fichier + + + + &Debug window + &Fenêtre de débogage + + + + Open debugging and diagnostic console + Ouvrir la console de débogage et de diagnostic + + + + &File + &Fichier + + + + &Settings + &Paramètres + + + + &Help + &Aide + + + + Tabs toolbar + Barre d'onglets + + + + Actions toolbar + Barre d'actions + + + + + [testnet] + [testnet] + + + + + BitBean client + Client BitBean + + + + %n active connection(s) to BitBean network + + %n connexion active au réseau BitBean + %n connexions actives au réseau BitBean + + + + + Synchronizing with network... + Synchronisation avec le réseau en cours… + + + + ~%n block(s) remaining + + ~%n blocks restants + ~%n blocs restants + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Téléchargement des blocks de l'historique des transactions : 1% sur 2% (%3% effectués). + + + + Downloaded %1 blocks of transaction history. + Téléchargement de blocs de l'historique de transactions : 1% blocks + + + + %n second(s) ago + + il y a %n seconde + il y a %n secondes + + + + + %n minute(s) ago + + il y a %n minute + il y a %n minutes + + + + + %n hour(s) ago + + il y a %n heure + il y a %n heures + + + + + %n day(s) ago + + il y a %n jour + il y a %n jours + + + + + Up to date + À jour + + + + Catching up... + Rattrapage en cours… + + + + Last received block was generated %1. + Le dernier block reçu à été généré %1. + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Cette transaction dépasse la limite autorisée. Vous pouvez tout de même effectuer cette opération, moyennant %1 de frais, qui seront envoyés aux noeuds qui valideront cette transaction, et dont l'objectif vise à supporter le réseau. Souhaitez-vous payer ces frais ? + + + + Confirm transaction fee + Confirmer le paiement des frais de transaction + + + + Sent transaction + Transaction envoyée + + + + Incoming transaction + Transaction entrante + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Date : %1 +Montant : %2 +Type : %3 +Adresse : %4 + + + + + + URI handling + Prise en charge de l'URL + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + L'adresse du portefeuille BitBean n'as pas pu être correctement identifiée, car invalide ou malformée. + + + + 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> + + + + Backup Wallet + Sauvegarder le portefeuille + + + + Wallet Data (*.dat) + Données liées au portefeuille (*.dat) + + + + Backup Failed + Echec de la sauvegarde + + + + There was an error trying to save the wallet data to the new location. + Une erreur a été rencontrée lors de la sauvegarde du portefeuille vers la nouvelle destination. + + + + %n second(s) + + %n seconde + %n secondes + + + + + %n minute(s) + + %n minute + %n minutes + + + + + %n hour(s) + + %n heure + %n heures + + + + + %n day(s) + + %n jour + %n jours + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Staking.<br>Votre poids est de %1<br>Le poids du réseau est de %2<br>Temps estimé avant récompense %3 + + + + Not staking because wallet is locked + Pas de staking car votre portefeuille est verouillé + + + + Not staking because wallet is offline + Pas de staking car votre portefeuille est hors ligne + + + + Not staking because wallet is syncing + Pas de staking car votre portefeuille est en cours de synchronisation + + + + Not staking because you don't have mature beans + + + + + Not staking + Pas de staking + + + + BitcoinGUI + + Sign &message... + Signer le &message... + + + Synchronizing with network... + Synchronisation avec le réseau en cours… + + + &Overview + &Vue d'ensemble + + + Show general overview of wallet + Afficher une vue d’ensemble du portefeuille + + + &Transactions + &Transactions + + + Browse transaction history + Parcourir l'historique des transactions + + + &Address Book + Carnet d'adresses + + + Edit the list of stored addresses and labels + Éditer la liste d'adresses et étiquettes + + + &Receive coins + &Recevoir des monnaies + + + Show the list of addresses for receiving payments + Montrer la liste d'adresses de réception de paiements + + + &Send coins + &Envoyer des monnaies + + + E&xit + Q&uitter + + + Quit application + Quitter l’application + + + Show information about BitBean + Afficher des informations au sujet de BitBean + + + About &Qt + À propos de &Qt + + + Show information about Qt + Afficher les informations au sujet de Qt + + + &Options... + &Options… + + + &Encrypt Wallet... + &Chiffrer le portefeuille... + + + &Backup Wallet... + Sauvegarder le &portefeuille... + + + &Change Passphrase... + &Changer la phrase de passe... + + + ~%n block(s) remaining + + ~%n blocks restants + ~%n blocs restants + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Téléchargement des blocks de l'historique des transactions : 1% sur 2% (%3% effectués). + + + &Export... + &Exporter... + + + Send coins to a BitBean address + Envoyer des monnaies vers une adresse BitBean + + + Modify configuration options for BitBean + Modification des options de configuration de BitBean + + + Export the data in the current tab to a file + Export des données de l'onglet courant vers un fichier + + + Encrypt or decrypt wallet + Chiffrer ou déchiffrer le portefeuille + + + 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 la console de débogage et de diagnostic + + + &Verify message... + &Vérifier un message... + + + BitBean + BitBean + + + Wallet + Portefeuille + + + &About BitBean + &Au sujet de BitBean + + + &Show / Hide + &Montrer / Masquer + + + Unlock wallet + Déverrouiller le portefeuille + + + &Lock Wallet + &Verrouiller le portefeuille + + + Lock wallet + Verrouiller le portefeuille + + + &File + &Fichier + + + &Settings + &Paramètres + + + &Help + &Aide + + + Tabs toolbar + Barre d'onglets + + + Actions toolbar + Barre d'actions + + + [testnet] + [testnet] + + + BitBean client + Client BitBean + + + %n active connection(s) to BitBean network + + %n connexion active au réseau BitBean + %n connexions actives au réseau BitBean + + + + Downloaded %1 blocks of transaction history. + Téléchargement de blocs de l'historique de transactions : 1% blocks + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Staking.<br>Votre poids est de %1<br>Le poids du réseau est de %2<br>Temps estimé avant récompense %3 + + + Not staking because wallet is locked + Pas de staking car votre portefeuille est verouillé + + + Not staking because wallet is offline + Pas de staking car votre portefeuille est hors ligne + + + Not staking because wallet is syncing + Pas de staking car votre portefeuille est en cours de synchronisation + + + Not staking because you don't have mature coins + Pas de staking car vos monnaies ne sont pas encore matures + + + %n second(s) ago + + il y a %n seconde + il y a %n secondes + + + + &Unlock Wallet... + &Déverrouiller le portefeuille... + + + %n minute(s) ago + + il y a %n minute + il y a %n minutes + + + + %n hour(s) ago + + il y a %n heure + il y a %n heures + + + + %n day(s) ago + + il y a %n jour + il y a %n jours + + + + Up to date + À jour + + + Catching up... + Rattrapage en cours… + + + Last received block was generated %1. + Le dernier block reçu à été généré %1. + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Cette transaction dépasse la limite autorisée. Vous pouvez tout de même effectuer cette opération, moyennant %1 de frais, qui seront envoyés aux noeuds qui valideront cette transaction, et dont l'objectif vise à supporter le réseau. Souhaitez-vous payer ces frais ? + + + Confirm transaction fee + Confirmer le paiement des frais de transaction + + + Sent transaction + Transaction envoyée + + + Incoming transaction + Transaction entrante + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Date : %1 +Montant : %2 +Type : %3 +Adresse : %4 + + + + URI handling + Prise en charge de l'URL + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + L'adresse du portefeuille BitBean n'as pas pu être correctement identifiée, car invalide ou malformée. + + + 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> + + + Backup Wallet + Sauvegarder le portefeuille + + + Wallet Data (*.dat) + Données liées au portefeuille (*.dat) + + + Backup Failed + Echec de la sauvegarde + + + There was an error trying to save the wallet data to the new location. + Une erreur a été rencontrée lors de la sauvegarde du portefeuille vers la nouvelle destination. + + + %n second(s) + + %n seconde + %n secondes + + + + %n minute(s) + + %n minute + %n minutes + + + + %n hour(s) + + %n heure + %n heures + + + + %n day(s) + + %n jour + %n jours + + + + Not staking + Pas de staking + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Une erreur fatale a été rencontrée. L'application BitBean ne peut plus être s'exécuter de façon correcte et va se terminer. + + + + ClientModel + + + Network Alert + Alerte réseau + + + + CoinControlDialog + + Coin Control + Fonctions de contrôle des monnaies + + + Quantity: + Quantité : + + + Bytes: + Octets : + + + Amount: + Montant : + + + Priority: + Priorité : + + + Fee: + Frais : + + + Low Output: + Sortie faible: + + + no + non + + + 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 + + + Label + Étiquette + + + 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 + + + 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 + + + high + élevée + + + medium-high + moyennement-élevée + + + medium + moyenne + + + low-medium + moyennement-basse + + + low + basse + + + lowest + la plus basse + + + DUST + DUST + + + yes + oui + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Cette étiquette passe au rouge, si la taille de la transaction est supérieure à 10000 bytes. + +Cela implique que des frais à hauteur d'au moins %1 par kb seront nécessaires. + +Ceux-ci Peuvent varier de +/- 1 Byte par entrée. + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Les transactions avec une priorité haute ont plus de chances d'être traitées en un block. + +L'étiquette passe au rouge si votre priorité est plus basse que la "moyenne". + +Cela implique que des frais d'un minimum de %1 par kb sont requis + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Cette étiquette passe au rouge, Lorsqu'un destinataire reçoit un montant inférieur à %1. + +Cela implique que des frais à hauteur de %2 seront nécessaire + +Les montants inférieurs à 0.546 fois les frais minimum de relais apparaissent en tant que DUST. + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Cette étiquette passe au rouge, lorsque la différence est inférieure à %1. + +Cela implique que des frais à hauteur d'au moins %2 seront nécessaires. + + + (no label) + (aucune étiquette) + + + change from %1 (%2) + monnaie de %1 (%2) + + + (change) + (monnaie) + + + + EditAddressDialog + + + Edit Address + Modifier l'adresse + + + + &Label + &Étiquette + + + + The label associated with this address book entry + L'étiquette associée à cette entrée du carnet d'adresse + + + + &Address + &Adresse + + + + The address associated with this address book entry. This can only be modified for sending addresses. + L'adresse associée à cette entrée du carnet d'adresse. Seules les adresses d'envoi peuvent être modifiées. + + + + 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 BitBean address. + L'adresse "%1" renseignée n'est pas une adresse BitBean valide. + + + + Could not unlock wallet. + Impossible de déverrouiller le portefeuille. + + + + New key generation failed. + Échec de génération de la nouvelle clef. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + version + version + + + + Usage: + Utilisation: + + + + command-line options + Options de ligne de commande + + + + UI options + Options graphiques + + + + Set language, for example "de_DE" (default: system locale) + Définir la langue, par exemple « fr_FR » (par défaut: la langue du système) + + + + Start minimized + Démarrer en mode réduit + + + + Show splash screen on startup (default: 1) + Affichage de l'écran de démarrage (par défaut: 1) + + + + 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. Fee 5.00 recommended. + Frais de transaction optionnels par kB permettant d'assurer la rapidité de traitement de votre transaction. La plupart des transactions sont de 1 kB. Frais de 0.01 recommandés. + + + + Pay transaction &fee + Payer des &frais de transaction + + + Reserved amount does not participate in staking and is therefore spendable at any time. + Montants réservés ne participant pas au "staking" pouvant être utilisés pour dépensés à tout moment. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + Réserve + + + + Automatically start BitBean after logging in to the system. + Démarrage automatique du client BitBean lors de la connexion au système + + + + &Start BitBean on system login + &Démarrage du client BitBean à la connexion au système + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + Détacher la base des blocs et adresses à la fermeture. Vous pourrez les utiliser dans un autre dossier mais cela ralentit la fermeture. Le portefeuille est lui toujours détaché. + + + + &Detach databases at shutdown + &Détacher la base de données lors de la fermeture du logiciel + + + + &Network + &Réseau + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + Ouvrir automatiquemwnr le port client de BitBean sur le routeur. Ceci ne fonctionne que dans le cas où le support UPnP sur votre routeur existe et est actif. + + + + Map port using &UPnP + Mapper le port avec l'&UPnP + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + Connexion au réseau BitBean à travers un proxy SOCKS (e.g. Connexion via le réseau Tor). + + + + &Connect through SOCKS proxy: + &Connexion à travers du proxy SOCKS: + + + + Proxy &IP: + &IP du serveur Proxy mandataire : + + + + IP address of the proxy (e.g. 127.0.0.1) + Addresse IP du proxy (e.g. 127.0.0.1) + + + + &Port: + &Port: + + + + Port of the proxy (e.g. 9050) + Port du serveur Proxy 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 BitBean. + La langue d'interface de l'utilisateur peut être définie ici. Les modification seront prises en compte après redémarrage de l'application BitBean + + + + &Unit to show amounts in: + &Unité d'affichage des montants: + + + + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + 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 BitBean addresses in the transaction list or not. + Afficher les adresses BitBean au sein de la liste de 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 options de monnaie & contrôle (mode expert) + + + + &OK + &OK + + + + &Cancel + &Annuler + + + + &Apply + &Appliquer + + + + default + par défaut + + + + + Warning + Avertissement + + + + + This setting will take effect after restarting BitBean. + Les paramètres prendront effet après redémarrage du client BitBean + + + + The supplied proxy address is invalid. + L'adresse de serveur mandataire -proxy- fournie est invalide. + + + + OverviewPage + + + Form + Formulaire + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + Les informations affichées peuvent être obsolètes. Votre portefeuille se synchronise automatiquement avec le réseau BitBean mais ce processus n'est pas encore terminé. + + + Stake: + Stake: + + + + Unconfirmed: + Non confirmé: + + + Wallet + Portefeuille + + + + Spendable: + Disponible pour dépense: + + + + Your current spendable balance + Votre solde actuel pouvant être dépensé + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + Immature: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + 0 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + Le solde généré n'est pas encore mature + + + + Total: + Total: + + + Your current total balance + Votre solde total actuel + + + <b>Recent transactions</b> + <b>Transactions récentes</b> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Montant total des transactions nécessitant confirmation, et ne figurant pas encore dans le solde actuel + + + Total of coins that was staked, and do not yet count toward the current balance + Montant total des transactions en "staking" et ne figurant pas encore dans le solde actuel + + + + + out of sync + désynchronisé + + + + QRCodeDialog + + + QR Code Dialog + Boîte de dialogue QR Code + + + + Request Payment + Demander un paiement + + + + Amount: + Montant: + + + + Label: + Étiquette: + + + + Message: + Message: + + + + &Save As... + &Enregistrer sous... + + + + Error encoding URI into QR Code. + Erreur d'encodage de l'URI en code QR. + + + + The entered amount is invalid, please check. + Le montant indiqué est invalide, veuillez vérifier. + + + + 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. + + + + Save QR Code + Sauvegarder le QR Code + + + + PNG Images (*.png) + Images PNG (*.png) + + + + RPCConsole + + + Client name + Nom du client + + + + + + + + + + + + + N/A + N.D. + + + + Client version + Version du client + + + + &Information + &Informations + + + + Using OpenSSL version + Version d'OpenSSL utilisée + + + + Startup time + Heure de démarrage + + + + Network + Réseau + + + + Number of connections + Nombre de connexions + + + + On testnet + Sur testnet + + + + Block chain + Chaîne de blocs + + + + Current number of blocks + Nombre actuel de blocs + + + + Estimated total blocks + Nombre total de blocs estimé + + + + Last block time + Horodatage du dernier bloc + + + + &Open + &Ouvrir + + + + Command-line options + Options de ligne de commande + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + Afficher le message d'aide BitBean-Qt afin d'obtenir la liste des options de de L'outil en ligne de commande BitBean + + + + &Show + &Afficher + + + + &Console + &Console + + + + Build date + Date de compilation + + + + BitBean - Debug window + BitBean - Fenêtre de déboggage + + + + BitBean Core + BitBean Core + + + + Debug log file + Journal de débogage + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + Ouvrir le fichier journal de debug BitBean au sein du répertoire courant. Cette opération peut prendre quelques secondes dans le cas de fichiers journaux volumineux. + + + + Clear console + Nettoyer la console + + + + Welcome to the BitBean RPC console. + Bienvenue sur la console RPC de BitBean. + + + + 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. + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + Entrants... + + + + automatically selected + choisi automatiquement + + + + Insufficient funds! + Fonds insuffisants! + + + + Quantity: + + + + + + 0 + 0 + + + + Bytes: + + + + + Amount: + + + + + + + + 0.00 BC + 123.456 BC {0.00 ?} + + + + Priority: + + + + + medium + + + + + Fee: + + + + + Low Output: + + + + + no + non + + + + After Fee: + + + + + Change + Monnaie : + + + + custom change address + adresse de change personnalisée + + + + Send to multiple recipients at once + Envoyer à plusieurs destinataires à la fois + + + + Add &Recipient + Ajouter un &Destinataire + + + + Remove all transaction fields + Réinitialiser tous les champs liés à la transaction + + + + Clear &All + &Tout nettoyer + + + + Balance: + Solde: + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + Confirmer l’action d'envoi + + + + S&end + E&nvoyer + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Entrer une adresse BitBean (par ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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 + + + + <b>%1</b> to %2 (%3) + <b>%1</b> à %2 (%3) + + + + Confirm send beans + + + + + Are you sure you want to send %1? + Etes-vous sûr de vouloir envoyer %1? + + + + and + et + + + + 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. + + + + Error: Transaction creation failed. + Erreur: Echec lors de la création de la transaction + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + AVERTISSEMENT: Adresse BitBean Invalide + + + + (no label) + + + + + WARNING: unknown change address + AVERTISSEMENT: Adresse BitBean Invalide + + + + SendBeansEntry + + + Form + Formulaire + + + + A&mount: + &Montant: + + + + Pay &To: + &Payer à: + + + + + 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 : + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adresse destinataire du paiement (par ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + Choisir une adresse du carnet d'adresse + + + + Alt+A + Alt+A + + + + Paste address from clipboard + + + + + Alt+P + Alt+P + + + + Remove this recipient + Supprimer ce destinataire + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Entrer une adresse BitBean (par ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + SendCoinsDialog + + Send Coins + Envoyer des monnaies + + + Coin Control Features + Fonctions de contrôle des monnaies + + + Inputs... + Entrants... + + + automatically selected + choisi automatiquement + + + Insufficient funds! + Fonds insuffisants! + + + Quantity: + Quantité: + + + 0 + 0 + + + Bytes: + Octets: + + + Amount: + Montant: + + + 0.00 BC + 123.456 BC {0.00 ?} + + + Priority: + Priorité: + + + medium + medium + + + Fee: + Frais: + + + Low Output: + Sortie faible + + + no + non + + + After Fee: + Après frais: + + + Change + Monnaie : + + + custom change address + adresse de change personnalisée + + + Send to multiple recipients at once + Envoyer à plusieurs destinataires à la fois + + + Add &Recipient + Ajouter un &Destinataire + + + Remove all transaction fields + Réinitialiser tous les champs liés à la transaction + + + Clear &All + &Tout nettoyer + + + Balance: + Solde: + + + 123.456 BC + 123.456 BC + + + Confirm the send action + Confirmer l’action d'envoi + + + S&end + E&nvoyer + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Entrer une adresse BitBean (par ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + 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 + + + <b>%1</b> to %2 (%3) + <b>%1</b> à %2 (%3) + + + Confirm send coins + Confirmer l’envoi des pièces + + + Are you sure you want to send %1? + Etes-vous sûr de vouloir envoyer %1? + + + and + et + + + 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. + + + Error: Transaction creation failed. + Erreur: Echec lors de la création de la transaction + + + 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. Cela peut se produire si une quantité d'argent de votre portefeuille a déjà été dépensée, comme dans le cas où une copie du fichier wallet.dat aurait été utilisée afin d'effectuer des dépenses, à la place du fichier courant. + + + WARNING: Invalid BitBean address + AVERTISSEMENT: Adresse BitBean Invalide + + + (no label) + (pas d'étiquette) + + + WARNING: unknown change address + AVERTISSEMENT: Adresse BitBean Invalide + + + + SendCoinsEntry + + Form + Formulaire + + + A&mount: + &Montant: + + + Pay &To: + &Payer à: + + + 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 : + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adresse destinataire du paiement (par ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + Choisir une adresse du carnet d'adresse + + + Alt+A + Alt+A + + + Paste address from clipboard + Coller l'adresse depuis le presse-papier + + + Alt+P + Alt+P + + + Remove this recipient + Supprimer ce destinataire + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Entrer une adresse BitBean (par ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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 rien signer de suspect 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Entrer une adresse BitBean (par ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + Choisir une adresse du carnet d'adresse + + + + + 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 + + + + Copy the current signature to the system clipboard + Copier la signature actuelle dans le presse-papier + + + + Sign the message to prove you own this BitBean address + Signer le message afin de prouver l'identité de votre adresse BitBean + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + L'adresse avec laquelle le message à été signé (ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + Vérifiez le message afin de vous assurer qu'il provient de l'adresse BitBean spécifiée. + + + + Reset all verify message fields + Réinitialiser tous les champs de vérification de message + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Entrer une adresse BitBean (par ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + Cliquez sur « Signer le message » pour générer la signature + + + + Enter BitBean signature + Entrer une signature BitBean + + + + + 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é. + + + + TransactionDesc + + + Open until %1 + Ouvert jusqu'à %1 + + + + Open for %n block(s) + + Ouvert pour %n bloc + Ouvert pour %n blocks + + + + + 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 plus + arrive à maturité dans %n blocks supplémentaires + + + + + 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 + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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 de monnaie générées nécessitent une maturation de 110 blocks avant de pouvoir être utilisées. Lors de la génération d'un blokc, celui-ci est diffusé sur le réseau afin d'être ajouté à la chaîne de blocks. En cas d'échec, son état passera en "non accepté" et celui-ci ne pourra pas être dépensé. Cela peut occasionnellement se produire, lorsqu'un noeud différent génère un block à quelques secondes d'intervalle du vôtre. + + + + 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 + + + + unknown + inconnu + + + + 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 + + + + TransactionTableModel + + + Date + Date + + + + Type + Type + + + + Address + Adresse + + + + Amount + Montant + + + + Open until %1 + Ouvert jusqu'à %1 + + + + Confirmed (%1 confirmations) + Confirmée (%1 confirmations) + + + + Open for %n more block(s) + + Ouvert pour %n bloc de plus + Ouvert pour %n blocs de plus + + + + + Offline + Hors ligne + + + + Unconfirmed + Non confirmé + + + + Confirming (%1 of %2 recommended confirmations) + En cours de confirmation (%1 sur %2 confirmations recommandées) + + + + Conflicted + En conflit + + + + Immature (%1 confirmations, will be available after %2) + Immature (%1 confirmations, sera disponible après %2) + + + + 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é + + + + Received with + Reçue avec + + + + Received from + Reçue de + + + + Sent to + Envoyée à + + + + Payment to yourself + Paiement à vous-même + + + + SPROUT + + + + 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. + + + + 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 Data + Exporter les données de la transaction + + + + Comma separated file (*.csv) + Fichier de valeurs séparées par des virgules (*.csv) + + + + Confirmed + Confirmée + + + + Date + Date + + + + Type + Type + + + + Label + Étiquette + + + + Address + Adresse + + + + Amount + Montant + + + + ID + ID + + + + Error exporting + Erreur lors de l'export + + + + Could not write to file %1. + Impossible d'écrire dans le fichier %1 + + + + Range: + Intervalle: + + + + to + à + + + + WalletModel + + + Sending... + Envoi... + + + + bitbean-core + + + To use the %s option + Pour utiliser l'option %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, vous devez définir un mot de passe rpc 'rpcpassword' au sein du fichier de configuration: + %s +Il est recommandé d'utiliser le mot de passe aléatoire suivant: +rpcuser=BitBeanrpc +rpcpassword=%s +(il n'est pas nécessaire de retenir ce mot de passe) +Le nom d'utilisateur et le mot de passe doivent IMPERATIVEMENT être différents. +Si le fichier n'existe pas, il est nécessaire de le créer, avec les droit de lecture au propriétaire seulement. +Il est également recommandé d'utiliser l'option alertnotify afin d'être notifié des problèmes; +par exemple: alertnotify=echo %%s | mail -s "Alerte BitBean" admin@foo.com + + + + + Error + Erreur + + + + 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 + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + Une erreur est survenue lors du positionnement du port RPC %u pour écouter sur une adresse IPv4 : %s + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Vous devez ajouter la ligne rpcpassword=<mot-de-passe> au fichier de configuration : +%s +Si le fichier n'existe pas, créez-le avec les droits de lecture seule accordés au propriétaire. + + + + BitBean version + Version BitBean + + + + Usage: + Utilisation: + + + + Send command to -server or BitBeand + Envoyer commande à -server ou BitBeand + + + + List commands + Lister les commandes + + + + Get help for a command + Obtenir de l’aide pour une commande + + + + BitBean + BitBean + + + + Options: + Options: + + + + This help message + Ce message d'aide + + + + Specify configuration file (default: BitBean.conf) + Spécifier le fichier de configuration (par défaut: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + Spécifier le fichier pid (par défaut: BitBeand.pid) + + + + Specify data directory + Spécifier le répertoire de données + + + + Specify wallet file (within data directory) + Spécifier le fichier de portefeuille (dans le répertoire de données) + + + + Set database cache size in megabytes (default: 25) + Définir la taille du tampon de base de données en mégaoctets (par défaut : 25) + + + + Set database disk log size in megabytes (default: 100) + Définir la taille du journal de base de données en mégaoctets (par défaut : 100) + + + + Specify connection timeout in milliseconds (default: 5000) + Spécifier le délai d'expiration de la connexion en millisecondes (par défaut: 5000) + + + + Connect through socks proxy + Se connecter à travers un proxy socks + + + + Select the version of socks proxy to use (4-5, default: 5) + Sélectionner la version du proxy socks à utiliser (4-5, par défaut: 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + Utiliser un proxy pour atteindre les services cachés (par défaut: équivalent à -proxy) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Autoriser les recherches DNS pour -addnode, -seednode et -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Écouter les connexions sur le <port> (par défault: 15714 ou testnet: 25714) + + + + Maintain at most <n> connections to peers (default: 125) + Garder au plus <n> connexions avec les pairs (par défaut : 125) + + + + 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 + + + + Connect only to the specified node(s) + Ne se connecter qu'au(x) nœud(s) spécifié(s) + + + + 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 + + + + 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) + + + + 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) + + + + Find peers using internet relay chat (default: 0) + Trouvez des pairs utilisant DNS lookup (par défault: 1) {0)?} + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Accepter les connexions entrantes (par défaut : 1 si aucun -proxy ou -connect ) + + + + Bind to given address. Use [host]:port notation for IPv6 + Connexion à l'adresse fournie. Utiliser la notation [machine]:port pour les adresses IPv6 + + + + Find peers using DNS lookup (default: 1) + Trouvez des peers utilisant DNS lookup (default: 1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Synchronisation de l'horloge avec d'autres noeuds. Désactiver si votre serveur est déjà synchronisé avec le protocole NTP (défaut: 1) + + + + Sync checkpoints policy (default: strict) + Politique de synchronisation des checkpoints (default: strict) + + + + 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) + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 0) + Utiliser l'UPnP pour rediriger le port d'écoute (par défaut: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + Détacher la base de donnée des blocks et adresses. Augmente le temps de fermeture (default: 0) + + + + Fee per KB to add to transactions you send + Frais par KB à ajouter à vos transactions sortantes + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Lors de la création de transactions, ignorer les entrées dont la valeur sont inférieures (défaut: 0.01) + + + + Accept command line and JSON-RPC commands + Accepter les commandes de JSON-RPC et de la ligne de commande + + + + 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 + + + + Output extra debugging information. Implies all other -debug* options + Voir les autres informations de débogage. Implique toutes les autres options -debug* + + + + Output extra network debugging information + Voir les autres informations de débogage du réseau + + + + Prepend debug output with timestamp + Horodater les messages de debug + + + + 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ésente) + + + + 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 + + + + Send trace/debug info to debugger + Envoyer les informations de débogage/trace à la console au lieu du fichier debug.log + + + + Username for JSON-RPC connections + Nom d'utilisateur pour les connexions JSON-RPC + + + + Password for JSON-RPC connections + Mot de passe pour les connexions JSON-RPC + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Écouter les connexions JSON-RPC sur le <port> (default: 15715 or testnet: 25715) + + + + 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) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Exécuter la commande lorsqu'une transaction du portefeuille change (%s dans la commande est remplacée par TxID) + + + + Require a confirmations for change (default: 0) + Nécessite a confirmations pour modification (par défaut: 0) + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Force les scripts de transaction à utiliser des opérateurs PUSH canoniques (défaut: 1) + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Exécute une commande lorsqu'une alerte correspondante est reçue (%s dans la commande est remplacé par message) + + + + 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 + + + + Attempt to recover private keys from a corrupt wallet.dat + Tenter de récupérer les clefs privées d'un wallet.dat corrompu + + + + How many blocks to check at startup (default: 2500, 0 = all) + Nombre de blocs à vérifier lors du démarrage (par défaut: 2500, 0 = tous) + + + + How thorough the block verification is (0-6, default: 1) + Niveau d'approfondissement de la vérification des blocs (0-6, default: 1) + + + + Imports blocks from external blk000?.dat file + Importe les blocs d'un fichier externe blk000?.dat + + + + Block creation options: + Options de création de bloc: + + + + Set minimum block size in bytes (default: 0) + Définir la taille minimale de bloc en octets (par défaut : 0) + + + + Set maximum block size in bytes (default: 250000) + Fixer la taille maximale d'un block en bytes (default: 250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Fixer la taille maximale d'un bloc en octets (par défault: 27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Algorithmes de chiffrements acceptés (par défaut: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Invalid amount for -paytxfee=<amount>: '%s' + Montant invalide pour -paytxfee=<montant> : « %s » + + + + 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. + + + + Invalid amount for -mininput=<amount>: '%s' + Montant invalide pour -mininput=<amount>: '%s' + + + + Wallet %s resides outside data directory %s. + Le portefeuille %s est situé en dehors du répertoire de données %s + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Echec lors de la tentative de verrou des données du répertoire %s. L'application BitBean est probablement déjà en cours d'exécution + + + + Verifying database integrity... + Vérification d'intégrité de la base de données... + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Erreur lors de l'initialisation de l'environnement de base de données %s! Afin de procéder à la récupération, une SAUVEGARDE DE CE REPERTOIRE est nécessaire, puis, supprimez le contenu entier de ce répertoire, à l'exception du fichier 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. + 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. + + + + wallet.dat corrupt, salvage failed + wallet.dat corrompu, la récupération a échoué + + + + Unknown -socks proxy version requested: %i + Version inconnue de serveur mandataire -socks demandée : %i + + + + Unknown network specified in -onlynet: '%s' + Réseau inconnu spécifié sur -onlynet : « %s » + + + + Invalid -proxy address: '%s' + Adresse -proxy invalide : « %s » + + + + Invalid -tor address: '%s' + Adresse -tor invalide: '%s' + + + + Cannot resolve -bind address: '%s' + Impossible de résoudre l'adresse -bind : « %s » + + + + 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. + + + + Cannot resolve -externalip address: '%s' + Impossible de résoudre l'adresse -externalip : « %s » + + + + Invalid amount for -reservebalance=<amount> + Montant incorrect pour -reservebalance=<montant> + + + + Unable to sign checkpoint, wrong checkpointkey? + + Impossible de "signer" le checkpoint, mauvaise clef de checkpoint? + + + + + Loading block index... + Chargement de l’index des blocs… + + + + Error loading blkindex.dat + Erreur de chargement du fichier blkindex.dat + + + + Loading wallet... + Chargement du portefeuille… + + + + Error loading wallet.dat: Wallet corrupted + Erreur lors du chargement de wallet.dat: portefeuille corrompu + + + + 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. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Erreur de chargement du fichier wallet.dat: le portefeuille nécessite une version plus récente de l'application BitBean + + + + Wallet needed to be rewritten: restart BitBean to complete + Le portefeuille nécessite d'être réédité : Merci de relancer l'application BitBean + + + + Error loading wallet.dat + Erreur lors du chargement du fichier wallet.dat + + + + Cannot downgrade wallet + Impossible de revenir à une version inférieure du portefeuille + + + + Cannot initialize keypool + Impossible d'initialiser la "keypool" + + + + Cannot write default address + Impossible d'écrire l'adresse par défaut + + + + Rescanning... + Nouvelle analyse… + + + + Importing blockchain data file. + Import en cours du fichier de chaîne de blocs + + + + Importing bootstrap blockchain data file. + Import en masse du fichier de chaîne bloc + + + + Loading addresses... + Chargement des adresses… + + + + Error: could not start node + Erreur: Impossible de démarrer le noeud + + + + Done loading + Chargement terminé + + + + Unable to bind to %s on this computer. BitBean is probably already running. + Connexion au port %s impossible. L'application BitBean est probablement déjà en cours d'exécution + + + + 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) + + + + Error: Wallet locked, unable to create transaction + Erreur: Portefeuille verrouillé, impossible d'effectuer cette transaction + + + + Error: Wallet unlocked for staking only, unable to create transaction. + Erreur: Portefeuille déverrouillé uniquement pour "staking" , impossible d'effectuer cette transaction + + + + 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 requière des frais minimum de %s a cause de son montant, de sa complexité ou de l'utilisation de fonds récemment reçus. + + + + Error: Transaction creation failed + Erreur: La création de cette transaction à échouée + + + + Sending... + Envoi... + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Montant invalide + + + + Insufficient funds + Fonds insuffisants + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Avertissement: Veuillez vérifier la date et l'heure de votre ordinateur. BitBean ne pourra pas fonctionner correctement si l'horloge est réglée de façon incorrecte + + + + Warning: This version is obsolete, upgrade required! + Avertissement : cette version est obsolète, une mise à niveau est nécessaire ! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + ATTENTION : violation du checkpoint de synchronisation, mais ignorée! + + + + Warning: Disk space is low! + Avertissement: Espace disque faible! + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + AVERTISSEMENT: point de contrôle invalide! Les transactions affichées peuvent être incorrectes! Il est peut-être nécessaire d'effectuer une mise à jour, ou d'avertir les développeurs du projet. + + + + bitcoin-core + + BitBean version + Version BitBean + + + Usage: + Utilisation: + + + Send command to -server or BitBeand + Envoyer commande à -server ou BitBeand + + + List commands + Lister les commandes + + + Get help for a command + Obtenir de l’aide pour une commande + + + Options: + Options: + + + Specify configuration file (default: BitBean.conf) + Spécifier le fichier de configuration (par défaut: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + Spécifier le fichier pid (par défaut: BitBeand.pid) + + + Specify wallet file (within data directory) + Spécifier le fichier de portefeuille (dans le répertoire de données) + + + 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 de base de données en mégaoctets (par défaut : 25) + + + Set database disk log size in megabytes (default: 100) + Définir la taille du journal de base de données en mégaoctets (par défaut : 100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Écouter les connexions sur le <port> (par défault: 15714 ou testnet: 25714) + + + 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 + + + Bind to given address. Use [host]:port notation for IPv6 + Connexion à l'adresse fournie. Utiliser la notation [machine]:port pour les adresses IPv6 + + + Stake your coins to support network and gain reward (default: 1) + Placer vos monnaies en staking, afin de soutenir le réseau et obtenir des intérêts (par défault: 1) + + + 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 positionnement du port RPC %u pour écouter sur une adresse IPv4 : %s + + + Detach block and address databases. Increases shutdown time (default: 0) + Détacher la base de donnée des blocks et adresses. Augmente le temps de fermeture (default: 0) + + + 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. Cela peut se produire si une quantité d'argent de votre portefeuille a déjà été dépensée, comme dans le cas où une copie du fichier wallet.dat aurait été utilisée afin d'effectuer des dépenses, à la place du fichier courant. + + + 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 requière des frais minimum de %s a cause de son montant, de sa complexité ou de l'utilisation de fonds récemment reçus. + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Écouter les connexions JSON-RPC sur le <port> (default: 15715 or testnet: 25715) + + + Accept command line and JSON-RPC commands + Accepter les commandes de JSON-RPC et de la ligne de commande + + + Error: Transaction creation failed + Erreur: La création de cette transaction à échouée + + + Error: Wallet locked, unable to create transaction + Erreur: Portefeuille verrouillé, impossible d'effectuer cette transaction + + + Importing blockchain data file. + Import en cours du fichier de chaîne de blocs + + + Importing bootstrap blockchain data file. + Import en masse du fichier de chaîne bloc + + + 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 ) + + + 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 + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Erreur lors de l'initialisation de l'environnement de base de données %s! Afin de procéder à la récupération, une SAUVEGARDE DE CE REPERTOIRE est nécessaire, puis, supprimez le contenu entier de ce répertoire, à l'exception du fichier wallet.dat + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Fixer la taille maximale d'un bloc en octets (par défault: 27000) + + + 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 BitBean will not work properly. + Avertissement: Veuillez vérifier la date et l'heure de votre ordinateur. BitBean ne pourra pas fonctionner correctement si l'horloge est réglée de façon incorrecte + + + 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. + + + Attempt to recover private keys from a corrupt wallet.dat + Tenter de récupérer les clefs privées d'un wallet.dat corrompu + + + Block creation options: + Options de création de bloc: + + + Connect only to the specified node(s) + Ne se connecter qu'au(x) nœud(s) spécifié(s) + + + 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) + + + 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. + + + Find peers using DNS lookup (default: 1) + Trouvez des peers utilisant DNS lookup (default: 1) + + + Sync checkpoints policy (default: strict) + Politique de synchronisation des checkpoints (default: strict) + + + Invalid -tor address: '%s' + Adresse -tor invalide: '%s' + + + Invalid amount for -reservebalance=<amount> + Montant incorrect pour -reservebalance=<montant> + + + 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) + Se connecter uniquement aux nœuds du réseau <net> (IPv4, IPv6 ou Tor) + + + Output extra debugging information. Implies all other -debug* options + Voir les autres informations de débogage. Implique toutes les autres options -debug* + + + Output extra network debugging information + Voir les autres informations de débogage du réseau + + + Prepend debug output with timestamp + Horodater les messages de debug + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Options SSL : (voir le Wiki de Bitcoin pour les instructions de configuration du SSL) + + + Select the version of socks proxy to use (4-5, default: 5) + Sélectionner la version du proxy socks à utiliser (4-5, par défaut: 5) + + + 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 + + + Send trace/debug info to debugger + Envoyer les informations de débogage/trace à la console au lieu du fichier debug.log + + + Set maximum block size in bytes (default: 250000) + Fixer la taille maximale d'un block en bytes (default: 250000) + + + 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ésente) + + + Specify connection timeout in milliseconds (default: 5000) + Spécifier le délai d'expiration de la connexion en millisecondes (par défaut: 5000) + + + Unable to sign checkpoint, wrong checkpointkey? + + Impossible de "signer" le checkpoint, mauvaise clef de checkpoint? + + + + 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) + + + Use proxy to reach tor hidden services (default: same as -proxy) + Utiliser un proxy pour atteindre les services cachés (par défaut: équivalent à -proxy) + + + Username for JSON-RPC connections + Nom d'utilisateur pour les connexions JSON-RPC + + + Verifying database integrity... + Vérification d'intégrité de la base de données... + + + WARNING: syncronized checkpoint violation detected, but skipped! + ATTENTION : violation du checkpoint de synchronisation, mais ignorée! + + + Warning: Disk space is low! + Avertissement: Espace disque faible! + + + Warning: This version is obsolete, upgrade required! + Avertissement : cette version est obsolète, une mise à niveau est nécessaire ! + + + 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 + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, vous devez définir un mot de passe rpc 'rpcpassword' au sein du fichier de configuration: + %s +Il est recommandé d'utiliser le mot de passe aléatoire suivant: +rpcuser=BitBeanrpc +rpcpassword=%s +(il n'est pas nécessaire de retenir ce mot de passe) +Le nom d'utilisateur et le mot de passe doivent IMPERATIVEMENT être différents. +Si le fichier n'existe pas, il est nécessaire de le créer, avec les droit de lecture au propriétaire seulement. +Il est également recommandé d'utiliser l'option alertnotify afin d'être notifié des problèmes; +par exemple: alertnotify=echo %%s | mail -s "Alerte BitBean" admin@foo.com + + + + Find peers using internet relay chat (default: 0) + Trouvez des pairs utilisant DNS lookup (par défault: 1) {0)?} + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Synchronisation de l'horloge avec d'autres noeuds. Désactiver si votre serveur est déjà synchronisé avec le protocole NTP (défaut: 1) + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Lors de la création de transactions, ignorer les entrées dont la valeur sont inférieures (défaut: 0.01) + + + 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) + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Exécuter la commande lorsqu'une transaction du portefeuille change (%s dans la commande est remplacée par TxID) + + + Require a confirmations for change (default: 0) + Nécessite a confirmations pour modification (par défaut: 0) + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Force les scripts de transaction à utiliser des opérateurs PUSH canoniques (défaut: 1) + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Exécute une commande lorsqu'une alerte correspondante est reçue (%s dans la commande est remplacé par message) + + + 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 + + + How many blocks to check at startup (default: 2500, 0 = all) + Nombre de blocs à vérifier lors du démarrage (par défaut: 2500, 0 = tous) + + + How thorough the block verification is (0-6, default: 1) + Niveau d'approfondissement de la vérification des blocs (0-6, default: 1) + + + Imports blocks from external blk000?.dat file + Importe les blocs d'un fichier externe blk000?.dat + + + 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) + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Algorithmes de chiffrements acceptés (par défaut: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + Error: Wallet unlocked for staking only, unable to create transaction. + Erreur: Portefeuille déverrouillé uniquement pour "staking" , impossible d'effectuer cette transaction + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + AVERTISSEMENT: point de contrôle invalide! Les transactions affichées peuvent être incorrectes! Il est peut-être nécessaire d'effectuer une mise à jour, ou d'avertir les développeurs du projet. + + + This help message + Ce message d'aide + + + Wallet %s resides outside data directory %s. + Le portefeuille %s est situé en dehors du répertoire de données %s + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Echec lors de la tentative de verrou des données du répertoire %s. L'application BitBean est probablement déjà en cours d'exécution + + + BitBean + BitBean + + + 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) + + + Connect through socks proxy + Se connecter à travers un proxy socks + + + Allow DNS lookups for -addnode, -seednode and -connect + Autoriser les recherches DNS pour -addnode, -seednode et -connect + + + Loading addresses... + Chargement des adresses… + + + Error loading blkindex.dat + Erreur de chargement du fichier blkindex.dat + + + Error loading wallet.dat: Wallet corrupted + Erreur lors du chargement de wallet.dat: portefeuille corrompu + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Erreur de chargement du fichier wallet.dat: le portefeuille nécessite une version plus récente de l'application BitBean + + + Wallet needed to be rewritten: restart BitBean to complete + Le portefeuille nécessite d'être réédité : Merci de relancer l'application BitBean + + + Error loading wallet.dat + Erreur lors du chargement du fichier 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 » + + + Error: could not start node + Erreur: Impossible de démarrer le noeud + + + Sending... + Envoi... + + + 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. BitBean is probably already running. + Connexion au port %s impossible. L'application BitBean est probablement déjà en cours d'exécution + + + Fee per KB to add to transactions you send + Frais par KB à ajouter à vos transactions sortantes + + + Invalid amount for -mininput=<amount>: '%s' + Montant invalide pour -mininput=<amount>: '%s' + + + Loading wallet... + Chargement du portefeuille… + + + Cannot downgrade wallet + Impossible de revenir à une version inférieure du portefeuille + + + Cannot initialize keypool + Impossible d'initialiser la "keypool" + + + 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. + Vous devez ajouter la ligne rpcpassword=<mot-de-passe> au fichier de configuration : +%s +Si le fichier n'existe pas, créez-le avec les droits de lecture seule accordés au propriétaire. + + + diff --git a/src/qt/locale/bitbean_fr_CA.qm b/src/qt/locale/bitbean_fr_CA.qm new file mode 100644 index 0000000..5ccd670 Binary files /dev/null and b/src/qt/locale/bitbean_fr_CA.qm differ diff --git a/src/qt/locale/bitbean_fr_CA.ts b/src/qt/locale/bitbean_fr_CA.ts new file mode 100644 index 0000000..4b07eeb --- /dev/null +++ b/src/qt/locale/bitbean_fr_CA.ts @@ -0,0 +1,4898 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + Au sujet de BitBean + + + + <b>BitBean</b> version + Version de <b>BitBean</b> + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + Copyright © 2009-2014 Les développeurs Bitcoin +Copyright © 2012-2014 Les développeurs NovaCoin +Copyright © 2014 Les développeurs BitBean + + + +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. + + Ce logiciel est expérimental. + + Distribué sous licence logicielle MIT/X11, voir le fichier COPYING joint ou http://www.opensource.org/licenses/mit-license.php. + + 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. + + + + AddressBookPage + + + Address Book + Répertoire d'adresses + + + + 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 + + + + Copy the currently selected address to the system clipboard + Copier l'adresse sélectionnée vers le presse-papier système + + + + &New Address + &Nouvelle adresse + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + Ce sont vos adresses pour recevoir vos paiements. Vous pouvez utiliser une adresse différente pour chaque réception afin d'identifier facilement le payeur. + + + + &Copy Address + &Copier l'adresse + + + + Show &QR Code + Montrer le &QR Code + + + + Sign a message to prove you own a BitBean address + Signer un message afin de valider l'identité de votre adresse BitBean + + + + Sign &Message + Signer le &message + + + + Delete the currently selected address from the list + Effacer l'adresse actuellement sélectionnée de la liste + + + + Verify a message to ensure it was signed with a specified BitBean address + Vérifier un message pour s'assurer qu'il vient d'un adresse BitBean spécifique. + + + + &Verify Message + &Vérifier un message + + + + &Delete + &Supprimer + + + + Copy &Label + Copier l'&Étiquette + + + + &Edit + &Modifier + + + + Export Address Book Data + Exporter votre répertoire d'adresses + + + + Comma separated file (*.csv) + Fichier de valeurs séparées par des virgules (*.csv) + + + + Error exporting + Erreur lors de l'export + + + + Could not write to file %1. + Impossible d'écrire dans le fichier %1. + + + + AddressTableModel + + + Label + Étiquette + + + + Address + Adresse + + + + (no label) + (aucune étiquette) + + + + 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 + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Sert à désactiver les transactions sortantes si votre compte de système d'exploitation est compromis. Ne procure pas de réelle sécurité. + + + + For staking only + Pour "staking" seulement + + + + 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 + Crypter 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 et la nouvelle phrase de passe du portefeuille + + + + Confirm wallet encryption + Confirmer le cryptage du portefeuille + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! + ATTENTION : Si vous cryptez votre portefeuille et perdez votre passphrase, vous ne pourrez plus accéder à vos BitBeans + + + + Are you sure you wish to encrypt your wallet? + Êtes-vous sûr de vouloir crypter votre portefeuille ? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + IMPORTANT : Toute sauvegarde précédente de votre fichier de portefeuille devrait être remplacée par le nouveau fichier de portefeuille crypté. Pour des raisons de sécurité, les sauvegardes précédentes de votre fichier de portefeuille non crypté deviendront inutilisables dès lors que vous commencerez à utiliser le nouveau portefeuille crypté. + + + + + Warning: The Caps Lock key is on! + Attention : la touche Verr. Maj. est activée ! + + + + + Wallet encrypted + Portefeuille crypté + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + L'application BitBean va désormais se terminer afin de finaliser le processus de cryptage. Merci de noter que le cryptage du portefeuille ne garantit pas de se prémunir du vol via l'utilisation de malware, qui auraient pu infecter votre ordinateur. + + + + + + + Wallet encryption failed + Le cryptage du portefeuille a échoué + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Le cryptage du portefeuille a échoué en raison d'une erreur interne. Votre portefeuille n'a pas été crypté. + + + + + 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écrypter le portefeuille était incorrecte. + + + + Wallet decryption failed + Le décryptage du portefeuille a échoué + + + + Wallet passphrase was successfully changed. + La phrase de passe du portefeuille a été modifiée avec succès. + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + Quantité : + + + + Bytes: + Octets : + + + + Amount: + Montant : + + + + Priority: + Priorité : + + + + Fee: + Frais : + + + + Low Output: + + + + + 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 + + + + Label + + + + + 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 + + + + 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 + + + + high + élevée + + + + medium-high + moyennement-élevée + + + + medium + + + + + low-medium + moyennement-basse + + + + low + basse + + + + lowest + la plus basse + + + + DUST + DUST + + + + yes + oui + + + + no + non + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Cet intitulé passe au rouge, si la taille de la transaction est supérieure à 10000 bytes. + +Cela implique que des frais à hauteur d'au moins %1 par kb seront nécessaires. + +Ceux-ci Peuvent varier de +/- 1 Byte par entrée. + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Les transactions avec une priorité haute ont plus de chances d'être traitées en un block. + + Rouge si votre priorité est plus petite que "moyenne". + +Cela veut dire que des frais d'un minimum de %1 par kb sont requis + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Ce label passe au rouge, Lorsqu'un destinataire reçoit un montant inférieur à %1. + + Cela implique que des frais à hauteur de %2 seront nécessaire + +Les montants inférieurs à 0.546 fois les frais minimum de relais apparaissent en tant que DUST. + + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Ce label passe au rouge, lorsque la différence est inférieure à %1. + + Cela implique que des frais à hauteur d'au moins %2 seront nécessaires. + + + + + (no label) + + + + + change from %1 (%2) + monnaie de %1 (%2) + + + + (change) + (monnaie) + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Une erreur fatale a été rencontrée. L'application BitBean ne peut plus être s'exécuter de façon correcte et doit se terminer. + + + + BitBean + BitBean + + + + Vault + + + + + &Overview + &Vue d'ensemble + + + + Show general overview of wallet + Afficher une vue d’ensemble du portefeuille + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Montrer la liste d'adresses de réception des paiements + + + + &Transactions + &Transactions + + + + Browse transaction history + Parcourir l'historique des transactions + + + + &Address Book + Carnet d'adresses + + + + Edit the list of stored addresses and labels + Éditer la liste d'adresses et libellés + + + + E&xit + Q&uitter + + + + Quit application + Quitter l’application + + + + &About BitBean + A propos de BitBean + + + + Show information about BitBean + Afficher des informations au sujet du BitBean + + + + About &Qt + À propos de &Qt + + + + Show information about Qt + Afficher des informations sur Qt + + + + &Options... + &Options… + + + + Modify configuration options for BitBean + Modification des options de configuration de BitBean + + + + &Show / Hide + &Afficher / Cacher + + + + &Encrypt Wallet... + &Crypter le portefeuille... + + + + Encrypt or decrypt wallet + Crypter ou décrypter le portefeuille + + + + &Backup Wallet... + Sauvegarder le &portefeuille... + + + + Backup wallet to another location + Sauvegarder le portefeuille vers un autre emplacement + + + + &Change Passphrase... + &Changer la phrase de passe... + + + + Change the passphrase used for wallet encryption + Modifier la phrase de passe utilisée pour le cryptage du portefeuille + + + + &Unlock Wallet... + &Déverrouiller le portefeuille + + + + Unlock wallet + Déverrouiller le portefeuille + + + + &Lock Wallet + &Verrouiller le portefeuille + + + + Lock wallet + Verrouiller le portefeuille + + + + Sign &message... + Signer le &message... + + + + &Verify message... + &Vérifier un message... + + + + &Export... + &Export... + + + + Export the data in the current tab to a file + Export des données de l'onglet courant vers un fichier + + + + &Debug window + &Fenêtre de débogage + + + + Open debugging and diagnostic console + Ouvrir une console de débogage et de diagnostic + + + + &File + &Fichier + + + + &Settings + &Réglages + + + + &Help + &Aide + + + + Tabs toolbar + Barre d'outils des onglets + + + + Actions toolbar + Barre d'actions + + + + + [testnet] + [testnet] + + + + + BitBean client + Client BitBean + + + + %n active connection(s) to BitBean network + + %n connexion active au réseau BitBean + %n connexions actives au réseau BitBean + + + + + Synchronizing with network... + Synchronisation avec le réseau en cours… + + + + ~%n block(s) remaining + + ~%n blocks restants + ~%n blocs restants + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Téléchargement des blocks de l'historique des transactions : 1% sur 2% (%3% effectués). + + + + Downloaded %1 blocks of transaction history. + Téléchargement de blocs de l'historique de transactions : 1% blocks + + + + %n second(s) ago + + il y a %n seconde + il y a %n secondes + + + + + %n minute(s) ago + + il y a %n minute + il y a %n minutes + + + + + %n hour(s) ago + + il y a %n heure + il y a %n heures + + + + + %n day(s) ago + + il y a %n jour + il y a %n jours + + + + + Up to date + À jour + + + + Catching up... + Rattrapage en cours… + + + + Last received block was generated %1. + Le dernier block reçu à été généré %1. + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Cette transaction dépasse la limite autorisée. Vous pouvez tout de même effectuer cette opération, moyennant %1 de frais, qui seront envoyés aux noeuds qui valideront cette transaction, et dont l'objectif vise à supporter le réseau. Etes-vous d'accord pour payer ces frais ? + + + + Confirm transaction fee + Confirmer le Paiement des frais de transaction + + + + Sent transaction + Transaction envoyée + + + + Incoming transaction + Transaction entrante + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Date : %1 +Montant : %2 +Type : %3 +Adresse : %4 + + + + + + URI handling + Prise en charge de l'URL + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + L'adresse du portefeuille BitBean n'as pas pu être correctement identifiée, car invalide ou malformée. + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Le portefeuille est <b>crypté</b> et est actuellement <b>déverrouillé</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Le portefeuille est <b>crypté</b> et actuellement <b>verrouillé</b> + + + + Backup Wallet + Sauvegarder le portefeuille + + + + Wallet Data (*.dat) + Données liées au portefeuille (*.dat) + + + + Backup Failed + Echec de la sauvegarde + + + + There was an error trying to save the wallet data to the new location. + Une erreur a été rencontrée lors de la tentative de sauvegarde du portefeuille vers la nouvelle destination. + + + + %n second(s) + + %n seconde + %n secondes + + + + + %n minute(s) + + %n minute + %n minutes + + + + + %n hour(s) + + %n heure + %n heures + + + + + %n day(s) + + %n jour + %n jours + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Staking.<br>Votre poids est de %1<br>Le poids du réseau est de %2<br>Temps estimé avant récompense %3 + + + + Not staking because wallet is locked + Ne stack pas, votre portefeuilles est verouillé + + + + Not staking because wallet is offline + Ne stack pas, votre portefeuilles est hors ligne + + + + Not staking because wallet is syncing + Ne stack pas, votre portefeuille est en cours de synchronisation + + + + Not staking because you don't have mature beans + + + + + Not staking + Pas de stacking + + + + BitcoinGUI + + Sign &message... + Signer le &message... + + + Synchronizing with network... + Synchronisation avec le réseau en cours… + + + &Overview + &Vue d'ensemble + + + Show general overview of wallet + Afficher une vue d’ensemble du portefeuille + + + &Transactions + &Transactions + + + Browse transaction history + Parcourir l'historique des transactions + + + &Address Book + Carnet d'adresses + + + Edit the list of stored addresses and labels + Éditer la liste d'adresses et libellés + + + &Receive coins + &Recevoir des monnaies + + + Show the list of addresses for receiving payments + Montrer la liste d'adresses de réception des paiements + + + &Send coins + &Envoyer des monnaies + + + E&xit + Q&uitter + + + Quit application + Quitter l’application + + + Show information about BitBean + Afficher des informations au sujet du BitBean + + + About &Qt + À propos de &Qt + + + Show information about Qt + Afficher des informations sur Qt + + + &Options... + &Options… + + + &Encrypt Wallet... + &Crypter le portefeuille... + + + &Backup Wallet... + Sauvegarder le &portefeuille... + + + &Change Passphrase... + &Changer la phrase de passe... + + + ~%n block(s) remaining + + ~%n blocks restants + ~%n blocs restants + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Téléchargement des blocks de l'historique des transactions : 1% sur 2% (%3% effectués). + + + &Export... + &Export... + + + Send coins to a BitBean address + Envoyer des monnaies vers une adresse BitBean + + + Modify configuration options for BitBean + Modification des options de configuration de BitBean + + + Export the data in the current tab to a file + Export des données de l'onglet courant vers un fichier + + + Encrypt or decrypt wallet + Crypter ou décrypter le portefeuille + + + 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 cryptage 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... + + + BitBean + BitBean + + + Wallet + Portefeuille + + + &About BitBean + A propos de BitBean + + + &Show / Hide + &Afficher / Cacher + + + Unlock wallet + Déverrouiller le portefeuille + + + &Lock Wallet + &Verrouiller le portefeuille + + + Lock wallet + Verrouiller le portefeuille + + + &File + &Fichier + + + &Settings + &Réglages + + + &Help + &Aide + + + Tabs toolbar + Barre d'outils des onglets + + + Actions toolbar + Barre d'actions + + + [testnet] + [testnet] + + + BitBean client + Client BitBean + + + %n active connection(s) to BitBean network + + %n connexion active au réseau BitBean + %n connexions actives au réseau BitBean + + + + Downloaded %1 blocks of transaction history. + Téléchargement de blocs de l'historique de transactions : 1% blocks + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Staking.<br>Votre poids est de %1<br>Le poids du réseau est de %2<br>Temps estimé avant récompense %3 + + + Not staking because wallet is locked + Ne stack pas, votre portefeuilles est verouillé + + + Not staking because wallet is offline + Ne stack pas, votre portefeuilles est hors ligne + + + Not staking because wallet is syncing + Ne stack pas, votre portefeuille est en cours de synchronisation + + + Not staking because you don't have mature coins + Ne stack pas, vos monnaies ne sont pas encore matures + + + %n second(s) ago + + il y a %n seconde + il y a %n secondes + + + + &Unlock Wallet... + &Déverrouiller le portefeuille + + + %n minute(s) ago + + il y a %n minute + il y a %n minutes + + + + %n hour(s) ago + + il y a %n heure + il y a %n heures + + + + %n day(s) ago + + il y a %n jour + il y a %n jours + + + + Up to date + À jour + + + Catching up... + Rattrapage en cours… + + + Last received block was generated %1. + Le dernier block reçu à été généré %1. + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Cette transaction dépasse la limite autorisée. Vous pouvez tout de même effectuer cette opération, moyennant %1 de frais, qui seront envoyés aux noeuds qui valideront cette transaction, et dont l'objectif vise à supporter le réseau. Etes-vous d'accord pour payer ces frais ? + + + Confirm transaction fee + Confirmer le Paiement des frais de transaction + + + Sent transaction + Transaction envoyée + + + Incoming transaction + Transaction entrante + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Date : %1 +Montant : %2 +Type : %3 +Adresse : %4 + + + + URI handling + Prise en charge de l'URL + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + L'adresse du portefeuille BitBean n'as pas pu être correctement identifiée, car invalide ou malformée. + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Le portefeuille est <b>crypté</b> et est actuellement <b>déverrouillé</b> + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Le portefeuille est <b>crypté</b> et actuellement <b>verrouillé</b> + + + Backup Wallet + Sauvegarder le portefeuille + + + Wallet Data (*.dat) + Données liées au portefeuille (*.dat) + + + Backup Failed + Echec de la sauvegarde + + + There was an error trying to save the wallet data to the new location. + Une erreur a été rencontrée lors de la tentative de sauvegarde du portefeuille vers la nouvelle destination. + + + %n second(s) + + %n seconde + %n secondes + + + + %n minute(s) + + %n minute + %n minutes + + + + %n hour(s) + + %n heure + %n heures + + + + %n day(s) + + %n jour + %n jours + + + + Not staking + Pas de stacking + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Une erreur fatale a été rencontrée. L'application BitBean ne peut plus être s'exécuter de façon correcte et doit se terminer. + + + + ClientModel + + + Network Alert + Alerte réseau + + + + CoinControlDialog + + Coin Control + Fonctions de contrôle des monnaies + + + Quantity: + Quantité : + + + Bytes: + Octets : + + + Amount: + Montant : + + + Priority: + Priorité : + + + Fee: + Frais : + + + Low Output: + Sortie faible : + + + no + non + + + 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 + + + Label + Intitulé + + + 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 + + + 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 + + + high + élevée + + + medium-high + moyennement-élevée + + + medium + moyenne + + + low-medium + moyennement-basse + + + low + basse + + + lowest + la plus basse + + + DUST + DUST + + + yes + oui + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Cet intitulé passe au rouge, si la taille de la transaction est supérieure à 10000 bytes. + +Cela implique que des frais à hauteur d'au moins %1 par kb seront nécessaires. + +Ceux-ci Peuvent varier de +/- 1 Byte par entrée. + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Les transactions avec une priorité haute ont plus de chances d'être traitées en un block. + + Rouge si votre priorité est plus petite que "moyenne". + +Cela veut dire que des frais d'un minimum de %1 par kb sont requis + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Ce label passe au rouge, Lorsqu'un destinataire reçoit un montant inférieur à %1. + + Cela implique que des frais à hauteur de %2 seront nécessaire + +Les montants inférieurs à 0.546 fois les frais minimum de relais apparaissent en tant que DUST. + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Ce label passe au rouge, lorsque la différence est inférieure à %1. + + Cela implique que des frais à hauteur d'au moins %2 seront nécessaires. + + + (no label) + (aucune étiquette) + + + change from %1 (%2) + monnaie de %1 (%2) + + + (change) + (monnaie) + + + + EditAddressDialog + + + Edit Address + Modifier l'adresse + + + + &Label + &Étiquette + + + + The label associated with this address book entry + L'intitulé associé à cette entrée du carnet d'adresse + + + + &Address + &Adresse + + + + The address associated with this address book entry. This can only be modified for sending addresses. + L'intitulé associé à cette entrée du carnet d'adresse. Seules les adresses d'envoi peuvent être modifiées. + + + + 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 BitBean address. + L'adresse "%1" renseignée n'est pas une adresse BitBean valide. + + + + Could not unlock wallet. + Impossible de déverrouiller le portefeuille. + + + + New key generation failed. + Échec de génération de la nouvelle clef. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + version + version + + + + Usage: + Utilisation: + + + + command-line options + Options de ligne de commande + + + + UI options + Options graphiques + + + + Set language, for example "de_DE" (default: system locale) + Définir la langue, par exemple « fr_FR » (par défaut : la langue du système) + + + + Start minimized + Démarrer en mode réduit + + + + Show splash screen on startup (default: 1) + Affichage de l'écran de démarrage (défaut: 1) + + + + 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. Fee 5.00 recommended. + Frais de transaction optionnels par kB afin d'assurer la rapidité de traitement de votre transaction. La plupart des transactions sont de 1 kB. Frais de 0.01 recommandés. + + + + Pay transaction &fee + Payer des &frais de transaction + + + Reserved amount does not participate in staking and is therefore spendable at any time. + Montant réservé qui ne "stake" pas est reste utilisable pour réalisés des envois à tout moment. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + Réserve + + + + Automatically start BitBean after logging in to the system. + Démarrage automatique du client BitBean lors de la connexion au système + + + + &Start BitBean on system login + &Démarrage du client BitBean à la connexion au système + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + Détacher la base des block et adresses à la fermeture. Vous pourrez les utiliser dans un autre dossier mais cela ralenti la fermeture. Le portefeuille est lui toujours détaché. + + + + &Detach databases at shutdown + &Détacher la base de données à la fermeture + + + + &Network + &Réseau + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + Ouverture automatique du port client de BitBean sur le routeur. Ceci ne fonctionne que dans le cas où le support UPnP sur votre routeur existe et est actif. + + + + Map port using &UPnP + Mapper le port avec l'&UPnP + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + Connexion au réseau BitBean à travers un proxy SOCKS (e.g. Connexion via le réseau Tor). + + + + &Connect through SOCKS proxy: + &Connexion à travers du proxy SOCKS: + + + + Proxy &IP: + &IP du serveur mandataire : + + + + IP address of the proxy (e.g. 127.0.0.1) + Addresse IP du proxy (e.g. 127.0.0.1) + + + + &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 BitBean. + La langue d'interface de de l'utilisateur peut être définie ici. Ces modification seront effectives après redémarrage de l'application BitBean + + + + &Unit to show amounts in: + &Unité d'affichage des montants : + + + + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + 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 BitBean addresses in the transaction list or not. + Afficher les adresses BitBean au sein de la liste de 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 options de monnaie & contrôle (mode expert) + + + + &OK + &OK + + + + &Cancel + &Annuler + + + + &Apply + &Exécuter + + + + default + par défaut + + + + + Warning + Avertissement + + + + + This setting will take effect after restarting BitBean. + Les paramètres prendront effet après redémarrage du client BitBean + + + + The supplied proxy address is invalid. + L'adresse de serveur mandataire -proxy- fournie est invalide. + + + + OverviewPage + + + Form + Formulaire + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + Les informations affichées peuvent être obsolètes. Votre portefeuille se synchronise automatiquement avec le réseau BitBean mais ce processus n'est pas encore terminé. + + + Stake: + Stake: + + + + Unconfirmed: + Non confirmé: + + + Wallet + Portefeuille + + + + Spendable: + Disponible pour dépense: + + + + Your current spendable balance + Votre solde actuel pouvant être dépensé + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + Immature : + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + 0 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + Le solde généré n'est pas encore mature + + + + Total: + Total : + + + Your current total balance + Votre solde total actuel + + + <b>Recent transactions</b> + <b>Transactions récentes</b> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Montant total des transactions nécessitant confirmation, et ne figurant pas encore dans la balance actuelle + + + Total of coins that was staked, and do not yet count toward the current balance + Montant total des transactions en "staking" et ne figurant pas encore dans la balance actuelle + + + + + out of sync + désynchronisé + + + + QRCodeDialog + + + QR Code Dialog + Boîte de dialogue QR Code + + + + Request Payment + Demander un paiement + + + + Amount: + Montant : + + + + Label: + Intitulé: + + + + Message: + Message: + + + + &Save As... + &Enregistrer sous... + + + + Error encoding URI into QR Code. + Erreur d'encodage de l'URI en code QR. + + + + The entered amount is invalid, please check. + Le montant indiqué est invalide, veuillez vérifier. + + + + 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. + + + + Save QR Code + Sauvegarder le QR Code + + + + PNG Images (*.png) + Images PNG (*.png) + + + + RPCConsole + + + Client name + Nom du client + + + + + + + + + + + + + N/A + N.D. + + + + Client version + Version du client + + + + &Information + &Informations + + + + Using OpenSSL version + Version d'OpenSSL utilisée + + + + Startup time + Heure de démarrage + + + + Network + Réseau + + + + Number of connections + Nombre de connexions + + + + On testnet + Sur testnet + + + + Block chain + Chaîne de blocks + + + + Current number of blocks + Nombre actuel de blocks + + + + Estimated total blocks + Nombre total estimé de blocks + + + + Last block time + Horodatage du dernier block + + + + &Open + &Ouvrir + + + + Command-line options + Options de ligne de commande + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + Afficher le message d'aide BitBean-Qt afin d'obtenir la liste des options de de L'outil en ligne de commande BitBean + + + + &Show + &Afficher + + + + &Console + &Console + + + + Build date + Date de compilation + + + + BitBean - Debug window + BitBean - Fenêtre de déboggage + + + + BitBean Core + BitBean Core + + + + Debug log file + Journal de débogage + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + Ouvrir le fichier journal de debug BitBean au sein du répertoire courant. Cette opération peut prendre quelques secondes dans le cas de fichiers journaux volumineux. + + + + Clear console + Nettoyer la console + + + + Welcome to the BitBean RPC console. + Bienvenue sur la console BitBean RPC. + + + + 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. + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + Entrants... + + + + automatically selected + choisi automatiquement + + + + Insufficient funds! + Fonds insuffisants ! + + + + Quantity: + Quantité : + + + + + 0 + 0 + + + + Bytes: + Octets : + + + + Amount: + Montant : + + + + + + + 0.00 BC + 123.456 BC {0.00 ?} + + + + Priority: + Priorité : + + + + medium + + + + + Fee: + Frais : + + + + Low Output: + + + + + no + non + + + + After Fee: + Après les frais : + + + + Change + Monnaie : + + + + custom change address + adresse de change personnalisée + + + + Send to multiple recipients at once + Envoyer à plusieurs destinataires à la fois + + + + Add &Recipient + Ajouter un &destinataire + + + + Remove all transaction fields + Réinitialiser tous les champs liés à la transaction + + + + Clear &All + &Tout nettoyer + + + + Balance: + Solde : + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + Confirmer l’action d'envoi + + + + S&end + E&nvoyer + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Entrer une adresse BitBean (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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 + + + + <b>%1</b> to %2 (%3) + <b>%1</b> to %2 (%3) + + + + Confirm send beans + + + + + Are you sure you want to send %1? + Etes-vous sûr de vouloir envoyer %1? + + + + and + et + + + + 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. + + + + Error: Transaction creation failed. + Erreur: Echec lors de la création de la transaction + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + AVERTISSEMENT: Adresse BitBean Invalide + + + + (no label) + + + + + WARNING: unknown change address + AVERTISSEMET: Adresse BitBean Invalide + + + + SendBeansEntry + + + Form + Formulaire + + + + A&mount: + &Montant : + + + + Pay &To: + &Payer à : + + + + + 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 : + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adresse destinataire du paiement ( ex : 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + Choisir une adresse du carnet d'adresse + + + + Alt+A + Alt+A + + + + Paste address from clipboard + + + + + Alt+P + Alt+P + + + + Remove this recipient + Supprimer ce destinataire + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Entrer une adresse BitBean (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + SendCoinsDialog + + Send Coins + Envoyer des monnaies + + + Coin Control Features + Fonctions de contrôle des monnaies + + + Inputs... + Entrants... + + + automatically selected + choisi automatiquement + + + Insufficient funds! + Fonds insuffisants ! + + + Quantity: + Quantité : + + + 0 + 0 + + + Bytes: + Octets : + + + Amount: + Montant : + + + 0.00 BC + 123.456 BC {0.00 ?} + + + Priority: + Priorité : + + + medium + medium + + + Fee: + Frais : + + + Low Output: + Sortie faible + + + no + non + + + After Fee: + Après les frais : + + + Change + Monnaie : + + + custom change address + adresse de change personnalisée + + + Send to multiple recipients at once + Envoyer à plusieurs destinataires à la fois + + + Add &Recipient + Ajouter un &destinataire + + + Remove all transaction fields + Réinitialiser tous les champs liés à la transaction + + + Clear &All + &Tout nettoyer + + + Balance: + Solde : + + + 123.456 BC + 123.456 BC + + + Confirm the send action + Confirmer l’action d'envoi + + + S&end + E&nvoyer + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Entrer une adresse BitBean (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + 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 + + + <b>%1</b> to %2 (%3) + <b>%1</b> to %2 (%3) + + + Confirm send coins + Confirmer l’envoi des pièces + + + Are you sure you want to send %1? + Etes-vous sûr de vouloir envoyer %1? + + + and + et + + + 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. + + + Error: Transaction creation failed. + Erreur: Echec lors de la création de la transaction + + + 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. Cela peut se produire si une quantité d'argent de votre portefeuille a déjà été dépensée, comme dans le cas où une copie du fichier wallet.dat aurait été utilisée afin d'effectuer des dépenses, à la place du fichier courant. + + + WARNING: Invalid BitBean address + AVERTISSEMENT: Adresse BitBean Invalide + + + (no label) + (pas d'étiquette) + + + WARNING: unknown change address + AVERTISSEMET: Adresse BitBean Invalide + + + + SendCoinsEntry + + Form + Formulaire + + + A&mount: + &Montant : + + + Pay &To: + &Payer à : + + + 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 : + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adresse destinataire du paiement ( ex : 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + Choisir une adresse du carnet d'adresse + + + Alt+A + Alt+A + + + Paste address from clipboard + Coller l'adresse depuis le presse-papier + + + Alt+P + Alt+P + + + Remove this recipient + Supprimer ce destinataire + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Entrer une adresse BitBean (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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 rien signer de suspect 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Entrer une adresse BitBean (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + Choisir une adresse du carnet d'adresse + + + + + 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 + + + + Copy the current signature to the system clipboard + Copier la signature actuelle dans le presse-papier + + + + Sign the message to prove you own this BitBean address + Signer le message afin de prouver l'identité de votre adresse BitBean + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + L'adresse avec laquelle le message à été signé (ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + Vérifier un message pour s'assurer qu'il vient d'un adresse BitBean spécifique. + + + + Reset all verify message fields + Réinitialiser tous les champs de vérification de message + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Entrer une adresse BitBean (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + Cliquez sur « Signer le message » pour générer la signature + + + + Enter BitBean signature + Entrer une signature BitBean + + + + + 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é. + + + + TransactionDesc + + + Open until %1 + Ouvert jusqu'à %1 + + + + Open for %n block(s) + + Ouvert pour %n bloc + Ouvert pour %n blocks + + + + + 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 plus + arrive à maturité dans %n blocks supplémentaires + + + + + 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 + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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 de monnaie générées nécessitent une maturation de 110 blocks avant de pouvoir être utilisées. Lors de la génération d'un blokc, celui-ci est diffusé sur le réseau afin d'être ajouté à la chaîne de blocks. En cas d'échec, son état passera en "non accepté" et celui-ci ne pourra pas être dépensé. Cela peut occasionnellement se produire, lorsqu'un noeud différent génère un block à quelques secondes d'intervalle du vôtre. + + + + 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 + + + + unknown + inconnu + + + + 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 + + + + TransactionTableModel + + + Date + Date + + + + Type + Type + + + + Address + Adresse + + + + Amount + Montant + + + + Open until %1 + Ouvert jusqu'à %1 + + + + Confirmed (%1 confirmations) + Confirmée (%1 confirmations) + + + + Open for %n more block(s) + + Ouvert pour %n bloc de plus + Ouvert pour %n blocs de plus + + + + + Offline + Hors ligne + + + + Unconfirmed + Non confirmé + + + + Confirming (%1 of %2 recommended confirmations) + Confirmation (%1 sur %2 confirmations recommandées) + + + + Conflicted + En conflit + + + + Immature (%1 confirmations, will be available after %2) + Immature (%1 confirmations, sera disponible après %2) + + + + 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é + + + + Received with + Reçue avec + + + + Received from + Reçue de + + + + Sent to + Envoyée à + + + + Payment to yourself + Paiement à vous-même + + + + SPROUT + + + + 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. + + + + 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 Data + Exporter les données de la transaction + + + + 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 + + + + Error exporting + Erreur lors de l'export + + + + Could not write to file %1. + Impossible d'écrire dans le fichier %1 + + + + Range: + Intervalle : + + + + to + à + + + + WalletModel + + + Sending... + Envoi... + + + + bitbean-core + + + To use the %s option + Pour utiliser l'option %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, vous devez définir un mot de passe rpc 'rpcpassword' au sein du fichier de configuration: + %s +Il est recommandé d'utiliser le mot de passe aléatoire suivant: +rpcuser=BitBeanrpc +rpcpassword=%s +(il n'est pas nécessaire de retenir ce mot de passe) +Le nom d'utilisateur et le mot de passe doivent IMPERATIVEMENT être différents. +Si le fichier n'existe pas, il est nécessaire de le créer, avec les droit de lecture au propriétaire seulement. +Il est également recommandé d'utiliser l'option alertnotify afin d'être notifié des problèmes; +par exemple: alertnotify=echo %%s | mail -s "Alerte BitBean" admin@foo.com + + + + + Error + Erreur + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Vous devez ajouter la ligne rpcpassword=<mot-de-passe> au fichier de configuration : +%s +Si le fichier n'existe pas, créez-le avec les droits de lecture seule accordés au propriétaire. + + + + BitBean version + Version BitBean + + + + Usage: + + + + + Send command to -server or BitBeand + Envoyer commande à -server ou BitBeand + + + + List commands + Lister les commandes + + + + Get help for a command + Obtenir de l’aide pour une commande + + + + BitBean + BitBean + + + + Options: + Options : + + + + This help message + Ce message d'aide + + + + Specify configuration file (default: BitBean.conf) + Spécifier le fichier de configuration (defaut: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + Spécifier le fichier pid (defaut: BitBeand.pid) + + + + + Specify data directory + Spécifier le répertoire de données + + + + Specify wallet file (within data directory) + Spécifiez le fichier de portefeuille (dans 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) + + + + Set database disk log size in megabytes (default: 100) + Définir la taille du tampon en mégaoctets (par défaut : 100) + + + + Specify connection timeout in milliseconds (default: 5000) + Spécifier le délai d'expiration de la connexion en millisecondes (par défaut : 5 000) + + + + Connect through socks proxy + Se connecter à travers un proxy socks + + + + Select the version of socks proxy to use (4-5, default: 5) + Sélectionner la version du proxy socks à utiliser (4-5, par défaut: 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + Utiliser un proxy pour atteindre les services cachés (défaut: équivalent à -proxy) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Autoriser les recherches DNS pour -addnode, -seednode et -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Écouter les connexions sur le <port> (default: 15714 or testnet: 25714) + + + + Maintain at most <n> connections to peers (default: 125) + Garder au plus <n> connexions avec les pairs (par défaut : 125) + + + + 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 + + + + Connect only to the specified node(s) + Ne se connecter qu'au(x) nœud(s) spécifié(s) + + + + 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 + + + + 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) + + + + 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) + + + + Find peers using internet relay chat (default: 0) + Find peers using internet relay chat (default: 1) {0)?} + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Accepter les connexions entrantes (par défaut : 1 si aucun -proxy ou -connect ) + + + + Bind to given address. Use [host]:port notation for IPv6 + Connexion à l'adresse fournie. Utiliser la notation [machine]:port pour les adresses IPv6 + + + + Find peers using DNS lookup (default: 1) + Trouvez des peers utilisant DNS lookup (default: 1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Synchronisation de l'horloge avec d'autres noeuds. Désactiver si votre serveur est déjà synchronisé avec le protocole NTP (défaut: 1) + + + + Sync checkpoints policy (default: strict) + Politique de synchronisation des checkpoints (default: strict) + + + + 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) + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 0) + Utiliser l'UPnP pour rediriger le port d'écoute (par défaut : 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + Détacher la base de donnée des blocks et adresses. Augmente le temps de fermeture (default: 0) + + + + Fee per KB to add to transactions you send + Frais par KB à ajouter à vos transactions sortantes + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Lors de la création de transactions, ignore les entrées dont la valeur sont inférieures (défaut: 0.01) + + + + Accept command line and JSON-RPC commands + Accepter les commandes de JSON-RPC et de la ligne de commande + + + + 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 + + + + Output extra debugging information. Implies all other -debug* options + Voir les autres informations de débogage. Implique toutes les autres options -debug* + + + + Output extra network debugging information + Voir les autres informations de débogage du réseau + + + + Prepend debug output with timestamp + Horodater les messages de debug + + + + 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) + + + + 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 + + + + Send trace/debug info to debugger + Envoyer les informations de débogage/trace à la console au lieu du fichier debug.log + + + + Username for JSON-RPC connections + Nom d'utilisateur pour les connexions JSON-RPC + + + + Password for JSON-RPC connections + Mot de passe pour les connexions JSON-RPC + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Écouter les connexions JSON-RPC sur le <port> (default: 15715 or testnet: 25715) + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + Nécessite a confirmations pour modification (défaut: 0) + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Force les scripts de transaction à utiliser des opérateurs PUSH canoniques (défaut: 1) + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Exécute une commande lorsqu'une alerte correspondante est reçue (%s dans la commande est remplacé par message) + + + + 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 + + + + Attempt to recover private keys from a corrupt wallet.dat + Tenter de récupérer les clefs privées d'un wallet.dat corrompu + + + + How many blocks to check at startup (default: 2500, 0 = all) + Nombre de blocs à vérifier loes du démarrage (défaut: 2500, 0 = tous) + + + + How thorough the block verification is (0-6, default: 1) + Niveau d'approfondissement de la vérification des blocs (0-6, default: 1) + + + + Imports blocks from external blk000?.dat file + Importe les blocs d'un fichier externe blk000?.dat + + + + Block creation options: + Options de création de bloc : + + + + Set minimum block size in bytes (default: 0) + Définir la taille minimale de bloc en octets (par défaut : 0) + + + + Set maximum block size in bytes (default: 250000) + Fixer la taille maximale d'un block en bytes (default: 250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Fixer la taille maximale d'un block en bytes (default: 27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Algorithmes de chiffrements acceptés (défaut: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Invalid amount for -paytxfee=<amount>: '%s' + Montant invalide pour -paytxfee=<montant> : « %s » + + + + 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. + + + + Invalid amount for -mininput=<amount>: '%s' + Montant invalide pour -mininput=<amount>: '%s' + + + + Wallet %s resides outside data directory %s. + Le portefeuille %s réside en dehors répertoire de données %s + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Echec lors de la tentative de verrouillage des données du répertoire %s. L'application BitBean est probablement déjà en cours d'exécution + + + + Verifying database integrity... + Vérification d'intégrité de la base de données... + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Erreur lors de l'initialisation de l'environnement de base de données %s! Afin de procéder à la récupération, une SAUVEGARDE DE CE REPERTOIRE est nécessaire, puis, supprimez le contenu entier de ce répertoire, à l'exception du fichier 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. + 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. + + + + wallet.dat corrupt, salvage failed + wallet.dat corrompu, la récupération a échoué + + + + Unknown -socks proxy version requested: %i + Version inconnue de serveur mandataire -socks demandée : %i + + + + Unknown network specified in -onlynet: '%s' + Réseau inconnu spécifié sur -onlynet : « %s » + + + + Invalid -proxy address: '%s' + Adresse -proxy invalide : « %s » + + + + Invalid -tor address: '%s' + Adresse -tor invalide: '%s' + + + + Cannot resolve -bind address: '%s' + Impossible de résoudre l'adresse -bind : « %s » + + + + 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. + + + + Cannot resolve -externalip address: '%s' + Impossible de résoudre l'adresse -externalip : « %s » + + + + Invalid amount for -reservebalance=<amount> + Montant incorrect pour -reservebalance=<montant> + + + + Unable to sign checkpoint, wrong checkpointkey? + + Impossible de "signer" le checkpoint, mauvaise clef de checkpoint? + + + + + Loading block index... + Chargement de l’index des blocs… + + + + Error loading blkindex.dat + Erreur de chargement du fichier blkindex.dat + + + + Loading wallet... + Chargement du portefeuille… + + + + Error loading wallet.dat: Wallet corrupted + Erreur lors du chargement de wallet.dat : portefeuille corrompu + + + + 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. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Erreur de chargement du fichier wallet.dat: le portefeuille nécessite une version plus récente de l'application BitBean + + + + Wallet needed to be rewritten: restart BitBean to complete + le portefeuille nécessite d'être réédité : Merci de relancer l'application BitBean + + + + Error loading wallet.dat + Erreur lors du chargement de wallet.dat + + + + Cannot downgrade wallet + Impossible de revenir à une version inférieure du portefeuille + + + + Cannot initialize keypool + Impossible d'initialiser la "keypool" + + + + Cannot write default address + Impossible d'écrire l'adresse par défaut + + + + Rescanning... + Nouvelle analyse… + + + + Importing blockchain data file. + Importation du fichier blockchain + + + + Importing bootstrap blockchain data file. + Importation du fichier blockchain + + + + Loading addresses... + Chargement des adresses… + + + + Error: could not start node + Erreur: Impossible de démarrer le noeud + + + + Done loading + Chargement terminé + + + + Unable to bind to %s on this computer. BitBean is probably already running. + Connexion au port %s impossible. L'application BitBean est probablement déjà en cours d'exécution + + + + 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) + + + + Error: Wallet locked, unable to create transaction + Erreur: Portefeuille verrouillé, impossible d'effectuer cette transaction + + + + Error: Wallet unlocked for staking only, unable to create transaction. + Erreur: Portefeuille déverrouillé uniquement pour "stacking" , impossible d'effectuer cette transaction + + + + 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 requière des frais minimum de %s a cause de son montant, de sa complexité ou de l'utilisation de fonds récemment reçus. + + + + Error: Transaction creation failed + Erreur: La création de cette transaction à échouée + + + + Sending... + Envoi... + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Montant invalide + + + + Insufficient funds + Fonds insuffisants + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Avertissement: Veuillez vérifier la date et l'heure de votre ordinateur. BitBean ne pourra pas fonctionner correctement si l'horloge est réglée de façon incorrecte + + + + Warning: This version is obsolete, upgrade required! + Avertissement : cette version est obsolète, une mise à niveau est nécessaire ! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + ATTENTION : violation du checkpoint de synchronisation, mais ignorée! + + + + Warning: Disk space is low! + Avertissement: Espace disque faible! + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + AVERTISSEMENT: point de contrôle invalide! Les transactions affichées peuvent être incorrectes! Il est peut-être nécessaire d'effectuer une mise à jour, ou d'avertir les développeurs du projet. + + + + bitcoin-core + + BitBean version + Version BitBean + + + Usage: + Utilisation : + + + Send command to -server or BitBeand + Envoyer commande à -server ou BitBeand + + + List commands + Lister les commandes + + + Get help for a command + Obtenir de l’aide pour une commande + + + Options: + Options : + + + Specify configuration file (default: BitBean.conf) + Spécifier le fichier de configuration (defaut: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + Spécifier le fichier pid (defaut: BitBeand.pid) + + + + Specify wallet file (within data directory) + Spécifiez le fichier de portefeuille (dans le répertoire de données) + + + 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) + + + Set database disk log size in megabytes (default: 100) + Définir la taille du tampon en mégaoctets (par défaut : 100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Écouter les connexions sur le <port> (default: 15714 or testnet: 25714) + + + 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 + + + Bind to given address. Use [host]:port notation for IPv6 + Connexion à l'adresse fournie. Utiliser la notation [machine]:port pour les adresses IPv6 + + + Stake your coins to support network and gain reward (default: 1) + Stacker vos monnaies afin de soutenir le réseau et d'obtenir des intérêts (default: 1) + + + 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 + + + Detach block and address databases. Increases shutdown time (default: 0) + Détacher la base de donnée des blocks et adresses. Augmente le temps de fermeture (default: 0) + + + 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. Cela peut se produire si une quantité d'argent de votre portefeuille a déjà été dépensée, comme dans le cas où une copie du fichier wallet.dat aurait été utilisée afin d'effectuer des dépenses, à la place du fichier courant. + + + 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 requière des frais minimum de %s a cause de son montant, de sa complexité ou de l'utilisation de fonds récemment reçus. + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Écouter les connexions JSON-RPC sur le <port> (default: 15715 or testnet: 25715) + + + Accept command line and JSON-RPC commands + Accepter les commandes de JSON-RPC et de la ligne de commande + + + Error: Transaction creation failed + Erreur: La création de cette transaction à échouée + + + Error: Wallet locked, unable to create transaction + Erreur: Portefeuille verrouillé, impossible d'effectuer cette transaction + + + Importing blockchain data file. + Importation du fichier blockchain + + + Importing bootstrap blockchain data file. + Importation du fichier blockchain + + + 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 ) + + + 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 + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Erreur lors de l'initialisation de l'environnement de base de données %s! Afin de procéder à la récupération, une SAUVEGARDE DE CE REPERTOIRE est nécessaire, puis, supprimez le contenu entier de ce répertoire, à l'exception du fichier wallet.dat + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Fixer la taille maximale d'un block en bytes (default: 27000) + + + 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 BitBean will not work properly. + Avertissement: Veuillez vérifier la date et l'heure de votre ordinateur. BitBean ne pourra pas fonctionner correctement si l'horloge est réglée de façon incorrecte + + + 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. + + + Attempt to recover private keys from a corrupt wallet.dat + Tenter de récupérer les clefs privées d'un wallet.dat corrompu + + + Block creation options: + Options de création de bloc : + + + Connect only to the specified node(s) + Ne se connecter qu'au(x) nœud(s) spécifié(s) + + + 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) + + + 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. + + + Find peers using DNS lookup (default: 1) + Trouvez des peers utilisant DNS lookup (default: 1) + + + Sync checkpoints policy (default: strict) + Politique de synchronisation des checkpoints (default: strict) + + + Invalid -tor address: '%s' + Adresse -tor invalide: '%s' + + + Invalid amount for -reservebalance=<amount> + Montant incorrect pour -reservebalance=<montant> + + + 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) + Se connecter uniquement aux nœuds du réseau <net> (IPv4, IPv6 ou Tor) + + + Output extra debugging information. Implies all other -debug* options + Voir les autres informations de débogage. Implique toutes les autres options -debug* + + + Output extra network debugging information + Voir les autres informations de débogage du réseau + + + Prepend debug output with timestamp + Horodater les messages de debug + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Options SSL : (voir le Wiki de Bitcoin pour les instructions de configuration du SSL) + + + Select the version of socks proxy to use (4-5, default: 5) + Sélectionner la version du proxy socks à utiliser (4-5, par défaut: 5) + + + 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 + + + Send trace/debug info to debugger + Envoyer les informations de débogage/trace à la console au lieu du fichier debug.log + + + Set maximum block size in bytes (default: 250000) + Fixer la taille maximale d'un block en bytes (default: 250000) + + + 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) + + + Specify connection timeout in milliseconds (default: 5000) + Spécifier le délai d'expiration de la connexion en millisecondes (par défaut : 5 000) + + + Unable to sign checkpoint, wrong checkpointkey? + + Impossible de "signer" le checkpoint, mauvaise clef de checkpoint? + + + + 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) + + + Use proxy to reach tor hidden services (default: same as -proxy) + Utiliser un proxy pour atteindre les services cachés (défaut: équivalent à -proxy) + + + Username for JSON-RPC connections + Nom d'utilisateur pour les connexions JSON-RPC + + + Verifying database integrity... + Vérification d'intégrité de la base de données... + + + WARNING: syncronized checkpoint violation detected, but skipped! + ATTENTION : violation du checkpoint de synchronisation, mais ignorée! + + + Warning: Disk space is low! + Avertissement: Espace disque faible! + + + Warning: This version is obsolete, upgrade required! + Avertissement : cette version est obsolète, une mise à niveau est nécessaire ! + + + 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 + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, vous devez définir un mot de passe rpc 'rpcpassword' au sein du fichier de configuration: + %s +Il est recommandé d'utiliser le mot de passe aléatoire suivant: +rpcuser=BitBeanrpc +rpcpassword=%s +(il n'est pas nécessaire de retenir ce mot de passe) +Le nom d'utilisateur et le mot de passe doivent IMPERATIVEMENT être différents. +Si le fichier n'existe pas, il est nécessaire de le créer, avec les droit de lecture au propriétaire seulement. +Il est également recommandé d'utiliser l'option alertnotify afin d'être notifié des problèmes; +par exemple: alertnotify=echo %%s | mail -s "Alerte BitBean" admin@foo.com + + + + Find peers using internet relay chat (default: 0) + Find peers using internet relay chat (default: 1) {0)?} + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Synchronisation de l'horloge avec d'autres noeuds. Désactiver si votre serveur est déjà synchronisé avec le protocole NTP (défaut: 1) + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Lors de la création de transactions, ignore les entrées dont la valeur sont inférieures (défaut: 0.01) + + + 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) + + + 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) + + + Require a confirmations for change (default: 0) + Nécessite a confirmations pour modification (défaut: 0) + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Force les scripts de transaction à utiliser des opérateurs PUSH canoniques (défaut: 1) + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Exécute une commande lorsqu'une alerte correspondante est reçue (%s dans la commande est remplacé par message) + + + 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 + + + How many blocks to check at startup (default: 2500, 0 = all) + Nombre de blocs à vérifier loes du démarrage (défaut: 2500, 0 = tous) + + + How thorough the block verification is (0-6, default: 1) + Niveau d'approfondissement de la vérification des blocs (0-6, default: 1) + + + Imports blocks from external blk000?.dat file + Importe les blocs d'un fichier externe blk000?.dat + + + 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) + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Algorithmes de chiffrements acceptés (défaut: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + Error: Wallet unlocked for staking only, unable to create transaction. + Erreur: Portefeuille déverrouillé uniquement pour "stacking" , impossible d'effectuer cette transaction + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + AVERTISSEMENT: point de contrôle invalide! Les transactions affichées peuvent être incorrectes! Il est peut-être nécessaire d'effectuer une mise à jour, ou d'avertir les développeurs du projet. + + + This help message + Ce message d'aide + + + Wallet %s resides outside data directory %s. + Le portefeuille %s réside en dehors répertoire de données %s + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Echec lors de la tentative de verrouillage des données du répertoire %s. L'application BitBean est probablement déjà en cours d'exécution + + + BitBean + BitBean + + + 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) + + + Connect through socks proxy + Se connecter à travers un proxy socks + + + Allow DNS lookups for -addnode, -seednode and -connect + Autoriser les recherches DNS pour -addnode, -seednode et -connect + + + Loading addresses... + Chargement des adresses… + + + Error loading blkindex.dat + Erreur de chargement du fichier blkindex.dat + + + Error loading wallet.dat: Wallet corrupted + Erreur lors du chargement de wallet.dat : portefeuille corrompu + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Erreur de chargement du fichier wallet.dat: le portefeuille nécessite une version plus récente de l'application BitBean + + + Wallet needed to be rewritten: restart BitBean to complete + le portefeuille nécessite d'être réédité : Merci de relancer l'application BitBean + + + 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 » + + + Error: could not start node + Erreur: Impossible de démarrer le noeud + + + Sending... + Envoi... + + + 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. BitBean is probably already running. + Connexion au port %s impossible. L'application BitBean est probablement déjà en cours d'exécution + + + Fee per KB to add to transactions you send + Frais par KB à ajouter à vos transactions sortantes + + + Invalid amount for -mininput=<amount>: '%s' + Montant invalide pour -mininput=<amount>: '%s' + + + Loading wallet... + Chargement du portefeuille… + + + Cannot downgrade wallet + Impossible de revenir à une version inférieure du portefeuille + + + Cannot initialize keypool + Impossible d'initialiser la "keypool" + + + 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. + Vous devez ajouter la ligne rpcpassword=<mot-de-passe> au fichier de configuration : +%s +Si le fichier n'existe pas, créez-le avec les droits de lecture seule accordés au propriétaire. + + + diff --git a/src/qt/locale/bitbean_gl.qm b/src/qt/locale/bitbean_gl.qm new file mode 100644 index 0000000..87cb2ed Binary files /dev/null and b/src/qt/locale/bitbean_gl.qm differ diff --git a/src/qt/locale/bitcoin_gl.ts b/src/qt/locale/bitbean_gl.ts similarity index 52% rename from src/qt/locale/bitcoin_gl.ts rename to src/qt/locale/bitbean_gl.ts index ae3bd33..bba9ab2 100644 --- a/src/qt/locale/bitcoin_gl.ts +++ b/src/qt/locale/bitbean_gl.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean Acerca de BTestcoin - + <b>BitBean</b> version Versión <b>BitBean</b> . - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - 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. - + Isto é software experimental. Distribuído baixo a licencia de software MIT/X11, véxase o arquivo que acompaña COPYING ou http://www.opensource.org/licenses/mit-license.php. @@ -37,47 +49,47 @@ Este produto inclúe software desenvolvido polo OpenSSL Project para o uso no Op AddressBookPage - + Address Book Libreta de direccións - + 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 - + Copy the currently selected address to the system clipboard Copiar a dirección seleccionada ao cartafol - + &New Address &Nova dirección. - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. Estas son as túas dIreccións de BTestcoin para recibir os pagos. Pode que quieras asignarlle unha a cada remitente e así reconocer quen te está a pagar. - + &Copy Address &Copiar Dirección - + Show &QR Code Amosar &QR Code - + Sign a message to prove you own a BitBean address Firma a mensaxe para probar que tes unha dirección BTestcoin @@ -87,12 +99,12 @@ Este produto inclúe software desenvolvido polo OpenSSL Project para o uso no Op Firmar &Mensaxe - + Delete the currently selected address from the list Borrar a dirección actualmente seleccionada da listaxe - + Verify a message to ensure it was signed with a specified BitBean address Verifica a mensaxe para asegurar que foi asinada por unha concreta dirección de BTestcoin @@ -102,7 +114,7 @@ Este produto inclúe software desenvolvido polo OpenSSL Project para o uso no Op &Verificar Mensaxe. - + &Delete &Borrar @@ -158,29 +170,29 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + @@ -233,17 +245,26 @@ Este produto inclúe software desenvolvido polo OpenSSL Project para o uso no Op Confirmar encriptación de moedeiro - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - Coidado: Se enctriptas a tua carteira e perdes o contrasinal, <b>PERDERÁS TODAS AS TÚAS MOEDAS</b>! + Coidado: Se enctriptas a tua carteira e perdes o contrasinal, <b>PERDERÁS TODAS AS TÚAS MOEDAS</b>! - + Are you sure you wish to encrypt your wallet? Estás seguro de que desexas encriptar o teu moedeiro? - + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 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. @@ -260,12 +281,11 @@ Este produto inclúe software desenvolvido polo OpenSSL Project para o uso no Op Moedeiro encriptado - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - BitBean pecharase agora para rematar o proceso de encriptación. Recorda que encriptar a túa carteira non te protexe na totalidade do roubo das tuas moedas por infeccións de malware no teu ordenador. + BitBean pecharase agora para rematar o proceso de encriptación. Recorda que encriptar a túa carteira non te protexe na totalidade do roubo das tuas moedas por infeccións de malware no teu ordenador. - + @@ -307,333 +327,585 @@ Este produto inclúe software desenvolvido polo OpenSSL Project para o uso no Op - BitcoinGUI - - - Sign &message... - &Asinar mensaxe... - + BeanControlDialog - - Synchronizing with network... - Sincronizando coa rede... + + Bean Control + - - &Overview - &Vista xeral + + Quantity: + Cantidade: - - Show general overview of wallet - Amosar vista xeral do moedeiro + + Bytes: + Bytes: - - &Transactions - &Transacciones + + Amount: + Importe: - - Browse transaction history - Navegar historial de transaccións + + Priority: + Prioridade: - - &Address Book - &Libreta de Direccións + + Fee: + Pago: - - Edit the list of stored addresses and labels - Edita a lista de direccións e etiquetas almaceadas + + Low Output: + - - &Receive coins - &Recibe moedas + + After Fee: + - - Show the list of addresses for receiving payments - Amosa a lista de dirección para recibir os pagos + + Change: + Cambiar: - - &Send coins - &Enviar moedas + + (un)select all + (des)selecciona todo - - E&xit - &Saír + + Tree mode + Modo árbore - - Quit application - Saír da aplicación + + List mode + Modo lista - - Show information about BitBean - Amosa información sobre BitBean + + Amount + Cantidade - - About &Qt - Acerca de &Qt + + Label + Etiqueta - - Show information about Qt - Amosar información acerca de Qt + + Address + Dirección - - &Options... - &Opcións... + + Date + Data - - &Encrypt Wallet... - &Encriptar Moedeiro... + + Confirmations + Confirmacións - &Backup Wallet... - Copia de &Seguridade do Moedeiro... + Confirmed + Confirmado - - &Change Passphrase... - &Cambiar contrasinal... - - - - ~%n block(s) remaining - ~%n bloque restante~%n bloques restantes + + Priority + Prioridade - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Descargado %1 de %2 bloques de historial de transaccións (%3% feito). + + Copy address + Copiar dirección - - &Export... - &Exportar... + + Copy label + Copiar etiqueta - - Send coins to a BitBean address - Enviar moedas a unha dirección BTestcoin + + + Copy amount + Copiar cantidade - - Modify configuration options for BitBean - Modificar opcións de configuración para BitBean + + Copy transaction ID + Copiar ID de transacción - - Export the data in the current tab to a file - Exportar datos da pestana actual a un arquivo + + Copy quantity + Copiar cantidade - - Encrypt or decrypt wallet - Encriptar ou desencriptar carteira + + Copy fee + Copiar pago - - Backup wallet to another location - Facer copia de seguridade do moedeiro noutra localización + + Copy after fee + Copiar despóis do pago - - Change the passphrase used for wallet encryption - Cambiar o contrasinal empregado para a encriptación do moedeiro + + Copy bytes + Copiar bytes - - &Debug window - Ventana de &Depuración + + Copy priority + Copiar prioridade - Open debugging and diagnostic console - Abrir consola de depuración e diagnóstico + Copy low output + - - &Verify message... - &Verificar mensaxe... + + Copy change + Copiar cambio - - BitBean - BitBean + + highest + O máis alto - - Wallet - Moedeiro + + high + alto - - &About BitBean - &Sobre BitBean + + medium-high + medio-alto - - &Show / Hide - &Amosar/Agachar + + medium + - - Unlock wallet - Desbloquear carteira + + low-medium + medio-baixo - &Lock Wallet - &Bloquear Carteira + low + baixo - Lock wallet - Bloquear carteira + lowest + o máis baixo - - &File - &Arquivo + + DUST + - - &Settings - Axus&tes + + yes + Si - - &Help - A&xuda + + no + non - - Tabs toolbar - Barra de ferramentas + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - Cliente BitBean - - - - %n active connection(s) to BitBean network - %n conexión activa á red de BitBean%n conexións activas á red de BitBean + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - Descargados %1 bloques do historial de transaccións. + + + (no label) + (sen etiqueta) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - "Staking".<br>O teu peso na rede é %1<br>O peso da rede é %2<br>Tempo esperado para gañar a recompensa %3 + + change from %1 (%2) + - - Not staking because wallet is locked - Non "staking" porque a carteira está bloqueada + + (change) + (cambio) + + + BitbeanGUI - - Not staking because wallet is offline - Non "staking" porque a carteira está sen conexión + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - Non "staking" porque a carteira está a sincronizar. + + BitBean + BitBean - - Not staking because you don't have mature coins - Non "staking" porque non tes moedas maduras - - - - %n second(s) ago - Fai %n segundoFai %n segundos + + Vault + - + + &Overview + &Vista xeral + + + + Show general overview of wallet + Amosar vista xeral do moedeiro + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Amosa a lista de dirección para recibir os pagos + + + + &Transactions + &Transacciones + + + + Browse transaction history + Navegar historial de transaccións + + + + &Address Book + &Libreta de Direccións + + + + Edit the list of stored addresses and labels + Edita a lista de direccións e etiquetas almaceadas + + + + E&xit + &Saír + + + + Quit application + Saír da aplicación + + + + &About BitBean + &Sobre BitBean + + + + Show information about BitBean + Amosa información sobre BitBean + + + + About &Qt + Acerca de &Qt + + + + Show information about Qt + Amosar información acerca de Qt + + + + &Options... + &Opcións... + + + + Modify configuration options for BitBean + Modificar opcións de configuración para BitBean + + + + &Show / Hide + &Amosar/Agachar + + + + &Encrypt Wallet... + &Encriptar Moedeiro... + + + + Encrypt or decrypt wallet + Encriptar ou desencriptar carteira + + + + &Backup Wallet... + Copia de &Seguridade do Moedeiro... + + + + Backup wallet to another location + Facer copia de seguridade do moedeiro noutra localización + + + + &Change Passphrase... + &Cambiar contrasinal... + + + + Change the passphrase used for wallet encryption + Cambiar o contrasinal empregado para a encriptación do moedeiro + + + &Unlock Wallet... - &Desbloquear Carteira... + &Desbloquear Carteira... + + + + Unlock wallet + + + + + &Lock Wallet + &Bloquear Carteira + + + + Lock wallet + Bloquear carteira + + + + Sign &message... + &Asinar mensaxe... + + + + &Verify message... + &Verificar mensaxe... + + + + &Export... + &Exportar... + + + + Export the data in the current tab to a file + Exportar datos da pestana actual a un arquivo + + + + &Debug window + Ventana de &Depuración + + + + Open debugging and diagnostic console + Abrir consola de depuración e diagnóstico + + + + &File + &Arquivo + + + + &Settings + Axus&tes + + + + &Help + A&xuda + + + + Tabs toolbar + Barra de ferramentas + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + Cliente BitBean + + + + %n active connection(s) to BitBean network + + %n conexión activa á red de BitBean + %n conexións activas á red de BitBean + + + + + Synchronizing with network... + Sincronizando coa rede... + + + + ~%n block(s) remaining + + ~%n bloque restante + ~%n bloques restantes + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Descargado %1 de %2 bloques de historial de transaccións (%3% feito). + + + + Downloaded %1 blocks of transaction history. + Descargados %1 bloques do historial de transaccións. + + + + %n second(s) ago + + Fai %n segundo + Fai %n segundos + - + %n minute(s) ago - Fai %n minutoFai %n minutos + + Fai %n minuto + Fai %n minutos + %n hour(s) ago - Fai %n horaFai %n horas + + Fai %n hora + Fai %n horas + %n day(s) ago - Fai %n díaFai %n días + + Fai %n día + Fai %n días + Up to date - Actualizado + Actualizado Catching up... - Poñendo ao día... + Poñendo ao día... Last received block was generated %1. - Último bloque recibido foi generado %1. + Último bloque recibido foi generado %1. This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - Confirmar cuota da transacción + Confirmar cuota da transacción Sent transaction - Transacción enviada + Transacción enviada Incoming transaction - Transacción entrante + Transacción entrante @@ -642,7 +914,7 @@ Amount: %2 Type: %3 Address: %4 - Data: %1 + Data: %1 Cantidade: %2 Tipo: %3 Dirección: %4 @@ -652,500 +924,732 @@ Dirección: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - O moedeiro está <b>encriptado</b> e actualmente <b>desbloqueado</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> + O moedeiro está <b>encriptado</b> e actualmente <b>bloqueado</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - %n hora%n horas + + %n hora + %n horas + %n day(s) - %n día%n días + + %n día + %n días + - - Not staking - Non "staking" + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + "Staking".<br>O teu peso na rede é %1<br>O peso da rede é %2<br>Tempo esperado para gañar a recompensa %3 - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + Non "staking" porque a carteira está bloqueada - - - ClientModel - - Network Alert - Alerta de Rede + + Not staking because wallet is offline + Non "staking" porque a carteira está sen conexión - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + Non "staking" porque a carteira está a sincronizar. - - Quantity: - Cantidade: + + Not staking because you don't have mature beans + - - Bytes: - Bytes: + + Not staking + Non "staking" + + + BitcoinGUI - - Amount: - Importe: + Sign &message... + &Asinar mensaxe... - - Priority: - Prioridade: + Synchronizing with network... + Sincronizando coa rede... - - Fee: - Pago: + &Overview + &Vista xeral - - Low Output: - + Show general overview of wallet + Amosar vista xeral do moedeiro - - no - non + &Transactions + &Transacciones - - After Fee: - + Browse transaction history + Navegar historial de transaccións - - Change: - Cambiar: + &Address Book + &Libreta de Direccións - - (un)select all - (des)selecciona todo + Edit the list of stored addresses and labels + Edita a lista de direccións e etiquetas almaceadas - - Tree mode - Modo árbore + &Receive coins + &Recibe moedas - - List mode - Modo lista + Show the list of addresses for receiving payments + Amosa a lista de dirección para recibir os pagos - - Amount - Cantidade + &Send coins + &Enviar moedas - - Label - + E&xit + &Saír - - Address - Dirección + Quit application + Saír da aplicación - - Date - Data + Show information about BitBean + Amosa información sobre BitBean - - Confirmations - Confirmacións + About &Qt + Acerca de &Qt - - Confirmed - Confirmado + Show information about Qt + Amosar información acerca de Qt - - Priority - Prioridade + &Options... + &Opcións... - - Copy address - Copiar dirección + &Encrypt Wallet... + &Encriptar Moedeiro... - - Copy label - Copiar etiqueta + &Backup Wallet... + Copia de &Seguridade do Moedeiro... - - - Copy amount - Copiar cantidade + &Change Passphrase... + &Cambiar contrasinal... - - - Copy transaction ID - Copiar ID de transacción + + ~%n block(s) remaining + + ~%n bloque restante + ~%n bloques restantes + - - Copy quantity - Copiar cantidade + Downloaded %1 of %2 blocks of transaction history (%3% done). + Descargado %1 de %2 bloques de historial de transaccións (%3% feito). - - Copy fee - Copiar pago + &Export... + &Exportar... - - Copy after fee - Copiar despóis do pago + Send coins to a BitBean address + Enviar moedas a unha dirección BTestcoin - - Copy bytes - Copiar bytes + Modify configuration options for BitBean + Modificar opcións de configuración para BitBean - - Copy priority - Copiar prioridade + Export the data in the current tab to a file + Exportar datos da pestana actual a un arquivo - - Copy low output - + Encrypt or decrypt wallet + Encriptar ou desencriptar carteira - - Copy change - Copiar cambio + Backup wallet to another location + Facer copia de seguridade do moedeiro noutra localización - - highest - O máis alto + Change the passphrase used for wallet encryption + Cambiar o contrasinal empregado para a encriptación do moedeiro - - high - alto + &Debug window + Ventana de &Depuración - - medium-high - medio-alto + Open debugging and diagnostic console + Abrir consola de depuración e diagnóstico - - medium - + &Verify message... + &Verificar mensaxe... - - low-medium - medio-baixo + BitBean + BitBean - - low - baixo + Wallet + Moedeiro - - lowest - o máis baixo + &About BitBean + &Sobre BitBean - - DUST - + &Show / Hide + &Amosar/Agachar - - yes - Si + Unlock wallet + Desbloquear carteira - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + &Lock Wallet + &Bloquear Carteira - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Lock wallet + Bloquear carteira - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + &File + &Arquivo - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + &Settings + Axus&tes - - - (no label) - (sen etiqueta) + &Help + A&xuda - - change from %1 (%2) - + Tabs toolbar + Barra de ferramentas - - (change) - (cambio) + [testnet] + [testnet] - - - EditAddressDialog - - Edit Address - Modificar Dirección + BitBean client + Cliente BitBean - - - &Label - &Etiqueta + + %n active connection(s) to BitBean network + + %n conexión activa á red de BitBean + %n conexións activas á red de BitBean + - - The label associated with this address book entry - + Downloaded %1 blocks of transaction history. + Descargados %1 bloques do historial de transaccións. - - &Address - &Dirección + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + "Staking".<br>O teu peso na rede é %1<br>O peso da rede é %2<br>Tempo esperado para gañar a recompensa %3 - - The address associated with this address book entry. This can only be modified for sending addresses. - + Not staking because wallet is locked + Non "staking" porque a carteira está bloqueada - - New receiving address - Nova dirección para recibir + Not staking because wallet is offline + Non "staking" porque a carteira está sen conexión - - New sending address - Nova dirección para enviar + Not staking because wallet is syncing + Non "staking" porque a carteira está a sincronizar. - - Edit receiving address - Modificar dirección para recibir + Not staking because you don't have mature coins + Non "staking" porque non tes moedas maduras - - - Edit sending address - Modificar dirección para enviar + + %n second(s) ago + + Fai %n segundo + Fai %n segundos + - - The entered address "%1" is already in the address book. - A dirección introducida "%1" xa está no libro de direccións. + &Unlock Wallet... + &Desbloquear Carteira... + + + %n minute(s) ago + + Fai %n minuto + Fai %n minutos + + + + %n hour(s) ago + + Fai %n hora + Fai %n horas + + + + %n day(s) ago + + Fai %n día + Fai %n días + - - The entered address "%1" is not a valid BitBean address. - + Up to date + Actualizado - - Could not unlock wallet. - Non se puido desbloquear o moedeiro. + Catching up... + Poñendo ao día... - - New key generation failed. - A xeración de nova clave fallou. + Last received block was generated %1. + Último bloque recibido foi generado %1. - - - GUIUtil::HelpMessageBox - - - BitBean-Qt - BitBean-Qt + Confirm transaction fee + Confirmar cuota da transacción - - version - + Sent transaction + Transacción enviada - - Usage: - + Incoming transaction + Transacción entrante - - command-line options - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1 +Cantidade: %2 +Tipo: %3 +Dirección: %4 + - - UI options - Opcións UI + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + O moedeiro está <b>encriptado</b> e actualmente <b>desbloqueado</b> - - Set language, for example "de_DE" (default: system locale) - + Wallet is <b>encrypted</b> and currently <b>locked</b> + O moedeiro está <b>encriptado</b> e actualmente <b>bloqueado</b> + + + %n hour(s) + + %n hora + %n horas + + + + %n day(s) + + %n día + %n días + - - Start minimized - Comezar minimizado + Not staking + Non "staking" + + + ClientModel - - Show splash screen on startup (default: 1) - + + Network Alert + Alerta de Rede - OptionsDialog + CoinControlDialog - - Options - Opcións + Quantity: + Cantidade: - - &Main - &Principal + Bytes: + Bytes: - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + Amount: + Importe: - - Pay transaction &fee - Pagar &tarifa da transacción + Priority: + Prioridade: - - Reserved amount does not participate in staking and is therefore spendable at any time. - + Fee: + Pago: - - Reserve - Reserva + no + non - + 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 + + + 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 change + Copiar cambio + + + highest + O máis alto + + + high + alto + + + medium-high + medio-alto + + + low-medium + medio-baixo + + + low + baixo + + + lowest + o máis baixo + + + yes + Si + + + (no label) + (sen etiqueta) + + + (change) + (cambio) + + + + EditAddressDialog + + + Edit Address + Modificar Dirección + + + + &Label + &Etiqueta + + + + The label associated with this address book entry + + + + + &Address + &Dirección + + + + The address associated with this address book entry. This can only be modified for sending addresses. + + + + + 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 BitBean address. + + + + + Could not unlock wallet. + Non se puido desbloquear o moedeiro. + + + + New key generation failed. + A xeración de nova clave fallou. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + version + + + + + Usage: + Emprego: + + + + command-line options + + + + + UI options + Opcións UI + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + Comezar minimizado + + + + Show splash screen on startup (default: 1) + + + + + OptionsDialog + + + Options + Opcións + + + + &Main + &Principal + + + + Pay transaction &fee + Pagar &tarifa da transacción + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + Reserva + + + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1155,7 +1659,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1165,12 +1669,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1180,7 +1684,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1240,7 +1744,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1249,31 +1753,35 @@ This label turns red, if the priority is smaller than "medium". - 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. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - &Visualizar direccións na listaxe de transaccións + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + 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 BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + &Visualizar direccións na listaxe de transaccións - + &OK &OK @@ -1285,7 +1793,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1296,13 +1804,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1313,78 +1821,158 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Formulario - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: Sen confirmar: - Wallet - Moedeiro + Moedeiro - + Spendable: - + - + Your current spendable balance O teu balance actualmente dispoñible - - Immature: - Inmaduro: + + Sprouting: + - - Mined balance that has not yet matured - O balance minado todavía non madurou + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + - - Total: - Total: + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + - - Your current total balance - O teu balance actual total + + Immature: + Inmaduro: - - <b>Recent transactions</b> - <b>Transaccións recentes</b> + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + O balance minado todavía non madurou - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + Total: + Total: + + + Your current total balance + O teu balance actual total - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Recent transactions</b> + <b>Transaccións recentes</b> - + out of sync non sincronizado @@ -1393,65 +1981,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Importe: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Nome do cliente @@ -1502,7 +2090,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1532,17 +2120,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1557,12 +2145,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1572,7 +2160,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1582,7 +2170,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1596,59 +2184,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Moedas Enviadas + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - Cantidade: + Cantidade: 0 - + Bytes: - Bytes: + Bytes: Amount: - Importe: + Importe: @@ -1656,272 +2244,410 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - Prioridade: + Prioridade: medium - + Fee: - Pago: + Pago: Low Output: - + no - + non After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Enviar a múltiples receptores á vez + Enviar a múltiples receptores á vez Add &Recipient - Engadir &Receptor + Engadir &Receptor Remove all transaction fields - + Clear &All - Limpar &Todo + Limpar &Todo Balance: - Balance: + Balance: 123.456 BC - + Confirm the send action - Confirmar a acción de envío + Confirmar a acción de envío S&end - &Enviar + &Enviar - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - Copiar cantidade + Copiar cantidade Copy amount - Copiar cantidade + Copiar cantidade Copy fee - Copiar pago + Copiar pago Copy after fee - Copiar despóis do pago + Copiar despóis do pago Copy bytes - Copiar bytes + Copiar bytes Copy priority - Copiar prioridade + Copiar prioridade Copy low output - + Copy change - Copiar cambio + Copiar cambio <b>%1</b> to %2 (%3) - + - Confirm send coins - Confirmar envío de moedas + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - A dirección de recepción non é válida, por favor compróbea. + 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. + A cantidade a pagar debe ser maior que 0. The amount exceeds your balance. - A cantidade sobrepasa o teu 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. + 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. + Atopouse dirección duplicada, so se pode enviar a cada dirección unha vez por operación. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (sen etiqueta) + (sen etiqueta) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Formulario - + A&mount: - &Cantidade: + &Cantidade: Pay &To: - Pagar &A: + Pagar &A: - + 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 + Introduce unha etiqueta para esta dirección para engadila ao teu libro de direccións &Label: - &Etiqueta: + &Etiqueta: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Pegar dirección dende portapapeis + Pegar dirección dende portapapeis Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + Moedas Enviadas + + + Quantity: + Cantidade: + + + Bytes: + Bytes: + + + Amount: + Importe: + + + Priority: + Prioridade: + + + Fee: + Pago: + + + Send to multiple recipients at once + Enviar a múltiples receptores á vez + + + Add &Recipient + Engadir &Receptor + + + Clear &All + Limpar &Todo + + + Balance: + Balance: + + + Confirm the send action + Confirmar a acción de envío + + + S&end + &Enviar + + + 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 change + Copiar cambio + + + Confirm send coins + Confirmar envío de moedas + + + 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. + + + (no label) + (sen etiqueta) + + + + SendCoinsEntry + + A&mount: + &Cantidade: + + + Pay &To: + Pagar &A: + + + 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: + + + Alt+A + Alt+A + + + Paste address from clipboard + Pegar dirección dende portapapeis + + + Alt+P + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message Sinaturas - Asinar / Verificar unha Mensaxe @@ -1939,13 +2665,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1976,7 +2702,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -2003,12 +2729,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2019,7 +2745,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2029,7 +2755,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2108,12 +2834,15 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + conflicted - + @@ -2138,7 +2867,10 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - , propagado a % nodo, propagado a % nodos + + , propagado a % nodo + , propagado a % nodos + @@ -2191,7 +2923,10 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - madura nun bloque máismadura en %n bloques máis + + madura nun bloque máis + madura en %n bloques máis + @@ -2233,8 +2968,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2280,7 +3015,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Detalles de transacción @@ -2325,32 +3060,35 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - Abrir para %n bloque máisAbrir para %n bloques máis + + Abrir para %n bloque máis + Abrir para %n bloques máis + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2359,928 +3097,1235 @@ This label turns red, if the priority is smaller than "medium". - Generated but not accepted - Xerado pero non aceptado + Generated but not accepted + Xerado pero non aceptado + + + + Received with + Recibido con + + + + Received from + Recibido de + + + + Sent to + Enviado a + + + + Payment to yourself + Pago a ti mesmo + + + + SPROUT + + + + 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. + + + + 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 Data + + + + + Comma separated file (*.csv) + Arquivo separado por comas (*.csv) + + + + Confirmed + Confirmado + + + + Date + Data + + + + Type + Tipo + + + + Label + Etiqueta + + + + Address + Dirección + + + + Amount + Cantidade + + + + ID + ID + + + + Error exporting + Error exportando + + + + Could not write to file %1. + Non se puido escribir a arquivo %1 + + + + Range: + Periodo: + + + + to + a + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + Empregar a opción %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Erro + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Debes fixar rpcpassword=<contrasinal> no arquivo de configuración: +%s +Se o arquivo non existe, debes crealo con permisos de so lectura para o propietario. + + + + BitBean version + + + + + Usage: + Emprego: + + + + Send command to -server or BitBeand + + + + + List commands + Listar comandos + + + + Get help for a command + Obter axuda para un comando + + + + BitBean + BitBean + + + + Options: + Opcións: + + + + This help message + Esta mensaxe de axuda + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Especificar directorio de datos + + + + Specify wallet file (within data directory) + Especificar arquivo do moedeiro (dentro do 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) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Especificar tempo límite da conexión en milisegundos (por defecto: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Permitir lookup de DNS para -addnote, -seednote e -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Manter como moito <n> conexións con pares (por defecto: 125) + + + + 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 + + + + Connect only to the specified node(s) + Conectar so ao(s) nodo(s) especificado(s) + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Conectar so a nodos na rede <net> (IPv4, IPv6 ou Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Descobrir dirección IP propia (por defecto: 1 se á escoita e non -externalip) + + + + Find peers using internet relay chat (default: 0) + + + + + 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) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Usar UPnP para mapear o porto de escoita (por defecto: 1 se á escoita) + + + + Use UPnP to map the listening port (default: 0) + Usar UPnP para mapear o porto de escoita (por defecto: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + Aceptar liña de comandos e comandos JSON-RPC + + + + 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 + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + 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) + + + + 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 + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + Nome de usuario para conexións JSON-RPC + + + + Password for JSON-RPC connections + Contrasinal para conexións JSON-RPC + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + - - Received with - Recibido con + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - Received from - Recibido de + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - Sent to - Enviado a + Upgrade wallet to latest format + Actualizar moedeiro ao formato máis recente - - Payment to yourself - Pago a ti mesmo + + Set key pool size to <n> (default: 100) + Fixar tamaño do pool de claves a <n> (por defecto: 100) - - Mined - Minado + + Rescan the block chain for missing wallet transactions + Rescanear transaccións ausentes na cadea de bloques - - (n/a) - (n/a) + + Attempt to recover private keys from a corrupt wallet.dat + Tentar recuperar claves privadas dende un wallet.dat corrupto - - 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. + + How many blocks to check at startup (default: 2500, 0 = all) + - - Date and time that the transaction was received. - Data e hora na que foi recibida a transacción. + + How thorough the block verification is (0-6, default: 1) + - - Type of transaction. - Tipo de transacción. + + Imports blocks from external blk000?.dat file + - - Destination address of transaction. - Dirección de destino da transacción. + + Block creation options: + Opcións de creación de bloque: - - Amount removed from or added to balance. - Cantidade borrada ou engadida no balance. + + Set minimum block size in bytes (default: 0) + Fixar tamaño mínimo de bloque en bytes (por defecto: 0) - - - TransactionView - - - All - Todo + + Set maximum block size in bytes (default: 250000) + - - Today - Hoxe + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - This week - Esta semana + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - This month - Este mes + Use OpenSSL (https) for JSON-RPC connections + Empregar OpenSSL (https) para conexións JSON-RPC - Last month - O último mes + Server certificate file (default: server.cert) + Arquivo de certificado do servidor (por defecto: server.cert) - This year - Este ano + Server private key (default: server.pem) + Clave privada do servidor (por defecto: server.perm) - Range... - Periodo... + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Received with - Recibido con + + Invalid amount for -paytxfee=<amount>: '%s' + Cantidade inválida para -paytxfee=<cantidade>: '%s' - - Sent to - Enviado a + + 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. - - To yourself - A ti mesmo + + Invalid amount for -mininput=<amount>: '%s' + - Mined - Minado + Wallet %s resides outside data directory %s. + - Other - Outro + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Enter address or label to search - Introduce dirección ou etiqueta para buscar + + Verifying database integrity... + - - Min amount - Cantidade mínima + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Copy address - Copiar dirección + + 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. + + + + wallet.dat corrupt, salvage failed + wallet.dat corrupto, fallou o gardado - Copy label - Copiar etiqueta + Unknown -socks proxy version requested: %i + Versión solicitada de proxy -socks descoñecida: %i - Copy amount - Copiar cantidade + Unknown network specified in -onlynet: '%s' + Rede descoñecida especificada en -onlynet: '%s' - Copy transaction ID - Copiar ID de transacción + Invalid -proxy address: '%s' + Dirección -proxy inválida: '%s' - Edit label - Modificar etiqueta + Invalid -tor address: '%s' + - Show transaction details - Amosar detalles da transacción + Cannot resolve -bind address: '%s' + Non se pode resolver a dirección -bind: '%s' - - Export Transaction Data - + + Failed to listen on any port. Use -listen=0 if you want this. + Fallou escoitar en calquera porto. Emprega -listen=0 se queres esto. - Comma separated file (*.csv) - Arquivo separado por comas (*.csv) + Cannot resolve -externalip address: '%s' + Non se pode resolver dirección -externalip: '%s' - - Confirmed - Confirmado + + Invalid amount for -reservebalance=<amount> + - Date - Data + Unable to sign checkpoint, wrong checkpointkey? + + - Type - Tipo + Loading block index... + Cargando índice de bloques... - Label - Etiqueta + Error loading blkindex.dat + - Address - Dirección + Loading wallet... + Cargando moedeiro... - Amount - Cantidade + Error loading wallet.dat: Wallet corrupted + Erro cargando wallet.dat: Moedeiro corrupto - ID - ID + 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. - - Error exporting - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Could not write to file %1. - + + Wallet needed to be rewritten: restart BitBean to complete + - - Range: - Periodo: + + Error loading wallet.dat + Erro cargando wallet.dat - - to - a + + Cannot downgrade wallet + Non se pode desactualizar o moedeiro - - - WalletModel - - Sending... - + + Cannot initialize keypool + - - - bitcoin-core - - BitBean version - + + Cannot write default address + Non se pode escribir a dirección por defecto - Usage: - Emprego: + Rescanning... + Rescaneando... - Send command to -server or BitBeand - + Importing blockchain data file. + - List commands - Listar comandos + Importing bootstrap blockchain data file. + - Get help for a command - Obter axuda para un comando + Loading addresses... + Cargando direccións... - - Options: - Opcións: + + Error: could not start node + - - Specify configuration file (default: BitBean.conf) - + + Done loading + Carga completa - Specify pid file (default: BitBeand.pid) - + Unable to bind to %s on this computer. BitBean is probably already running. + - Specify wallet file (within data directory) - Especificar arquivo do moedeiro (dentro do directorio de datos) + Unable to bind to %s on this computer (bind returned error %d, %s) + Imposible enlazar con %s neste ordenador (enlace devolveu erro %d, %s) - - Specify data directory - Especificar directorio de datos + + Error: Wallet locked, unable to create transaction + - - Set database cache size in megabytes (default: 25) - Fixar tamaño da caché da base de datos en megabytes (por defecto: 25) + + Error: Wallet unlocked for staking only, unable to create transaction. + - Set database disk log size in megabytes (default: 100) - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Error: Transaction creation failed + + + + + Sending... + + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Cantidade inválida + + + + Insufficient funds + Fondos insuficientes + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + + + + + Warning: This version is obsolete, upgrade required! + Precaución: Esta versión é obsoleta, precísase unha actualización! - Maintain at most <n> connections to peers (default: 125) - Manter como moito <n> conexións con pares (por defecto: 125) + WARNING: syncronized checkpoint violation detected, but skipped! + - - Connect to a node to retrieve peer addresses, and disconnect - Conectar a nodo para recuperar direccións de pares, e desconectar + + Warning: Disk space is low! + - Specify your own public address - Especificar a túa propia dirección pública + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Bind to given address. Use [host]:port notation for IPv6 - + Usage: + Emprego: - - Stake your coins to support network and gain reward (default: 1) - + List commands + Listar comandos - - Threshold for disconnecting misbehaving peers (default: 100) - Umbral para desconectar pares con mal comportamento (por defecto: 100) + Get help for a command + Obter axuda para un comando - - 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) + Options: + Opcións: - - 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 + Specify wallet file (within data directory) + Especificar arquivo do moedeiro (dentro do directorio de datos) - - Detach block and address databases. Increases shutdown time (default: 0) - + Specify data directory + Especificar directorio de datos - - 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. - + Set database cache size in megabytes (default: 25) + Fixar tamaño da caché da base de datos en megabytes (por defecto: 25) - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + Maintain at most <n> connections to peers (default: 125) + Manter como moito <n> conexións con pares (por defecto: 125) - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + Connect to a node to retrieve peer addresses, and disconnect + Conectar a nodo para recuperar direccións de pares, e desconectar - - Accept command line and JSON-RPC commands - Aceptar liña de comandos e comandos JSON-RPC + Specify your own public address + Especificar a túa propia dirección pública - - Error: Transaction creation failed - + Threshold for disconnecting misbehaving peers (default: 100) + Umbral para desconectar pares con mal comportamento (por defecto: 100) - - Error: Wallet locked, unable to create transaction - + 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) - - Importing blockchain data file. - + 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 - - Importing bootstrap blockchain data file. - + Accept command line and JSON-RPC commands + Aceptar liña de comandos e comandos JSON-RPC - Run in the background as a daemon and accept commands - Executar no fondo como un demo e aceptar comandos + Executar no fondo como un demo e aceptar comandos - Use the test network - Empregar a rede de proba + 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) + Aceptar conexións de fóra (por defecto: 1 se non -proxy ou -connect) - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + Ocorreu un erro mentres se establecía o porto RPC %u para escoitar sobre IPv6, voltando a IPv4: %s - 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 BitBean will not work properly. - + Precaución: -paytxfee está posto moi algo! Esta é a tarifa de transacción que ti pagarás se envías unha transacción. - 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. + 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. + 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. - Attempt to recover private keys from a corrupt wallet.dat - Tentar recuperar claves privadas dende un wallet.dat corrupto + Tentar recuperar claves privadas dende un wallet.dat corrupto - Block creation options: - Opcións de creación de bloque: + Opcións de creación de bloque: - Connect only to the specified node(s) - Conectar so ao(s) nodo(s) especificado(s) + Conectar so ao(s) nodo(s) especificado(s) - Discover own IP address (default: 1 when listening and no -externalip) - Descobrir dirección IP propia (por defecto: 1 se á escoita e non -externalip) + Descobrir dirección IP propia (por defecto: 1 se á escoita e non -externalip) - Failed to listen on any port. Use -listen=0 if you want this. - Fallou escoitar en calquera porto. Emprega -listen=0 se queres esto. + Fallou escoitar en calquera porto. Emprega -listen=0 se queres esto. - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Máximo buffer por-conexión para recibir, <n>*1000 bytes (por defecto: 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) + Máximo buffer por-conexión para enviar, <n>*1000 bytes (por defecto: 1000) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Conectar so a nodos na rede <net> (IPv4, IPv6 ou Tor) - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - + 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) - - - - Select the version of socks proxy to use (4-5, default: 5) - + Opcións SSL: (ver ńa Wiki Bitcoin as instrucción de configuración de SSL) - 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 + Enviar traza/información de depuración á consola en lugar de ao arquivo debug.log - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - Set minimum block size in bytes (default: 0) - Fixar tamaño mínimo de bloque en bytes (por defecto: 0) + Fixar tamaño mínimo de bloque en bytes (por defecto: 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) + Recortar o arquivo debug.log ao arrancar o cliente (por defecto: 1 cando no-debug) - Specify connection timeout in milliseconds (default: 5000) - Especificar tempo límite da conexión en milisegundos (por defecto: 5000) + Especificar tempo límite da conexión en milisegundos (por defecto: 5000) - - Unable to sign checkpoint, wrong checkpointkey? - - - - - Use UPnP to map the listening port (default: 0) - Usar UPnP para mapear o porto de escoita (por defecto: 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - + 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 - - - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - + Nome de usuario para conexións JSON-RPC - Warning: This version is obsolete, upgrade required! - Precaución: Esta versión é obsoleta, precísase unha actualización! + Precaución: Esta versión é obsoleta, precísase unha actualización! - wallet.dat corrupt, salvage failed - wallet.dat corrupto, fallou o gardado + wallet.dat corrupto, fallou o gardado - Password for JSON-RPC connections - Contrasinal para conexións JSON-RPC - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + Contrasinal para conexións JSON-RPC - Allow JSON-RPC connections from specified IP address - Permitir conexións JSON-RPC dende direccións IP especificadas + 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) + 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) + Executar comando cando o mellor bloque cambie (%s no comando é sustituído polo hash do bloque) - 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) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Executar comando cando unha transacción do moedeiro cambia (%s no comando é substituído por TxID) - Upgrade wallet to latest format - Actualizar moedeiro ao formato máis recente + 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) + 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - + Rescanear transaccións ausentes na cadea de bloques - Use OpenSSL (https) for JSON-RPC connections - Empregar OpenSSL (https) para conexións JSON-RPC + Empregar OpenSSL (https) para conexións JSON-RPC - Server certificate file (default: server.cert) - Arquivo de certificado do servidor (por defecto: 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - + Clave privada do servidor (por defecto: server.perm) - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - This help message - Esta mensaxe de axuda - - - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - + 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) - - - - Connect through socks proxy - + 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 + Permitir lookup de DNS para -addnote, -seednote e -connect - Loading addresses... - Cargando direccións... - - - - Error loading blkindex.dat - + Cargando direccións... - Error loading wallet.dat: Wallet corrupted - Erro cargando wallet.dat: Moedeiro corrupto - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + Erro cargando wallet.dat: Moedeiro corrupto - Error loading wallet.dat - Erro cargando wallet.dat + Erro cargando wallet.dat - Invalid -proxy address: '%s' - Dirección -proxy inválida: '%s' + Dirección -proxy inválida: '%s' - Unknown network specified in -onlynet: '%s' - Rede descoñecida especificada en -onlynet: '%s' + Rede descoñecida especificada en -onlynet: '%s' - Unknown -socks proxy version requested: %i - Versión solicitada de proxy -socks descoñecida: %i + Versión solicitada de proxy -socks descoñecida: %i - Cannot resolve -bind address: '%s' - Non se pode resolver a dirección -bind: '%s' + Non se pode resolver a dirección -bind: '%s' - Cannot resolve -externalip address: '%s' - Non se pode resolver dirección -externalip: '%s' + Non se pode resolver dirección -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Cantidade inválida para -paytxfee=<cantidade>: '%s' - - - - Error: could not start node - - - - - Sending... - + Cantidade inválida para -paytxfee=<cantidade>: '%s' - Invalid amount - Cantidade inválida + Cantidade inválida - Insufficient funds - Fondos insuficientes + Fondos insuficientes - Loading block index... - Cargando índice de bloques... + 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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + Engadir un nodo ao que conectarse e tentar manter a conexión aberta - Loading wallet... - Cargando moedeiro... + Cargando moedeiro... - Cannot downgrade wallet - Non se pode desactualizar o moedeiro - - - - Cannot initialize keypool - + Non se pode desactualizar o moedeiro - Cannot write default address - Non se pode escribir a dirección por defecto + Non se pode escribir a dirección por defecto - Rescanning... - Rescaneando... + Rescaneando... - Done loading - Carga completa + Carga completa - To use the %s option - Empregar a opción %s + Empregar a opción %s - Error - Erro + 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. - Debes fixar rpcpassword=<contrasinal> no arquivo de configuración: + Debes fixar rpcpassword=<contrasinal> no arquivo de configuración: %s 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/bitbean_he.qm b/src/qt/locale/bitbean_he.qm new file mode 100644 index 0000000..f0874de Binary files /dev/null and b/src/qt/locale/bitbean_he.qm differ diff --git a/src/qt/locale/bitcoin_he.ts b/src/qt/locale/bitbean_he.ts similarity index 53% rename from src/qt/locale/bitcoin_he.ts rename to src/qt/locale/bitbean_he.ts index 7dd0b9e..211e71f 100644 --- a/src/qt/locale/bitcoin_he.ts +++ b/src/qt/locale/bitbean_he.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + זוהי תוכנה ניסיונית. מופצת תחת רישיון התוכנה MIT/X11, ראה את הקובץ המצורף COPYING או http://www.opensource.org/licenses/mit-license.php. @@ -37,72 +49,72 @@ This product includes software developed by the OpenSSL Project for use in the O AddressBookPage - + Address Book - + - + Double-click to edit address or label לחץ לחיצה כפולה לערוך כתובת או תוית - + Create a new address יצירת כתובת חדשה - + Copy the currently selected address to the system clipboard העתק את הכתובת המסומנת ללוח העריכה - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address העתק כתובת - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list מחק את הכתובת שנבחרה מהרשימה - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + אמת הודעה - + &Delete &מחק @@ -119,7 +131,7 @@ This product includes software developed by the OpenSSL Project for use in the O Export Address Book Data - + @@ -129,12 +141,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -158,34 +170,34 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog שיח סיסמא - + Enter passphrase הכנס סיסמה - + New passphrase סיסמה חדשה - + Repeat new passphrase חזור על הסיסמה החדשה - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -234,16 +246,21 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + האם אתה בטוח שברצונך להצפין את הארנק? - Are you sure you wish to encrypt your wallet? - האם אתה בטוח שברצונך להצפין את הארנק? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. חשוב! כל גיבוי קודם שעשית לארנק שלך יש להחליף עם קובץ הארנק המוצפן שזה עתה נוצר. מסיבות אבטחה, גיבויים קודמים של קובץ הארנק הלא-מוצפן יהפכו לחסרי שימוש ברגע שתתחיל להשתמש בארנק החדש המוצפן. @@ -260,12 +277,7 @@ This product includes software developed by the OpenSSL Project for use in the O הארנק הוצפן - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -307,333 +319,585 @@ This product includes software developed by the OpenSSL Project for use in the O - BitcoinGUI - - - Sign &message... - חתום על הודעה - + BeanControlDialog - - Synchronizing with network... - מסתנכרן עם הרשת... + + Bean Control + - - &Overview - &סקירה + + Quantity: + כמות: - - Show general overview of wallet - הצג סקירה כללית של הארנק + + Bytes: + בייטים: - - &Transactions - &פעולות + + Amount: + כמות: - - Browse transaction history - דפדף בהיסטוריית הפעולות + + Priority: + קדימות: - - &Address Book - + + Fee: + תשלום: - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + לאחר עמלה: - - Show the list of addresses for receiving payments - + + Change: + שינוי: - - &Send coins - + + (un)select all + (מחק)(בחר) הכל - - E&xit - י&ציאה + + Tree mode + מצב עץ - - Quit application - סגור תוכנה + + List mode + מצר רשימה - - Show information about BitBean - + + Amount + כמות - - About &Qt - אודות Qt + + Label + תוית - - Show information about Qt - הצג מידע על Qt + + Address + כתובת - - &Options... - &אפשרויות + + Date + תאריך - - &Encrypt Wallet... - הצפן ארנק + + Confirmations + אישורים - &Backup Wallet... - גיבוי ארנק + Confirmed + מאושר - - &Change Passphrase... - שנה סיסמא - - - - ~%n block(s) remaining - + + Priority + קדימות - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + העתק כתובת - - &Export... - + + Copy label + העתק תוית - - Send coins to a BitBean address - + + + Copy amount + העתק כמות - - Modify configuration options for BitBean - + + Copy transaction ID + העתק מזהה פעולה - - Export the data in the current tab to a file - + + Copy quantity + העתק כמות - - Encrypt or decrypt wallet - + + Copy fee + העתק מחיר - - Backup wallet to another location - גיבוי הארנק למקום אחר + + Copy after fee + - - Change the passphrase used for wallet encryption - שנה את הסיסמה להצפנת הארנק + + Copy bytes + - - &Debug window - חלון ניפוי + + Copy priority + העתק קדימות - Open debugging and diagnostic console - פתח את לוח הבקרה לאבחון וניפוי + Copy low output + - - &Verify message... - אמת הודעה... + + Copy change + - - BitBean - + + highest + הכי גבוה - - Wallet - ארנק + + high + גבוה - - &About BitBean - + + medium-high + בנוני גבוה - - &Show / Hide - הצג / הסתר + + medium + בינוני - - Unlock wallet - + + low-medium + בינוני - נמוך - &Lock Wallet - + low + נמוך - Lock wallet - + lowest + הכי נמוך - - &File - &קובץ + + DUST + - - &Settings - ה&גדרות + + yes + כן - - &Help - &עזרה + + no + לא - - Tabs toolbar - סרגל כלים טאבים + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [רשת-בדיקה] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (ללא תוית) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + עודף מ־%1 (%2) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + (עודף) + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + &סקירה - - - %n second(s) ago - + + + Show general overview of wallet + הצג סקירה כללית של הארנק - + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &פעולות + + + + Browse transaction history + דפדף בהיסטוריית הפעולות + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + י&ציאה + + + + Quit application + סגור תוכנה + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + אודות Qt + + + + Show information about Qt + הצג מידע על Qt + + + + &Options... + &אפשרויות + + + + Modify configuration options for BitBean + + + + + &Show / Hide + הצג / הסתר + + + + &Encrypt Wallet... + הצפן ארנק + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + גיבוי ארנק + + + + Backup wallet to another location + גיבוי הארנק למקום אחר + + + + &Change Passphrase... + שנה סיסמא + + + + Change the passphrase used for wallet encryption + שנה את הסיסמה להצפנת הארנק + + + &Unlock Wallet... - + + + + + Unlock wallet + פתיחת ארנק + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + חתום על הודעה + + + + &Verify message... + אמת הודעה... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + חלון ניפוי + + + + Open debugging and diagnostic console + פתח את לוח הבקרה לאבחון וניפוי + + + + &File + &קובץ + + + + &Settings + ה&גדרות + + + + &Help + &עזרה + + + + Tabs toolbar + סרגל כלים טאבים + + + + Actions toolbar + + + + + + [testnet] + [רשת-בדיקה] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + מסתנכרן עם הרשת... + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + - + + %n second(s) ago + + + + + + + %n minute(s) ago - + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - עדכני + עדכני Catching up... - מתעדכן... + מתעדכן... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - פעולה שנשלחה + פעולה שנשלחה Incoming transaction - פעולה שהתקבלה + פעולה שהתקבלה @@ -642,7 +906,7 @@ Amount: %2 Type: %3 Address: %4 - תאריך: %1 + תאריך: %1 כמות: %2 סוג: %3 כתובת: %4 @@ -651,341 +915,418 @@ Address: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - הארנק <b>מוצפן</b> וכרגע <b>פתוח</b> + הארנק <b>מוצפן</b> וכרגע <b>פתוח</b> Wallet is <b>encrypted</b> and currently <b>locked</b> - הארנק <b>מוצפן</b> וכרגע <b>נעול</b> + הארנק <b>מוצפן</b> וכרגע <b>נעול</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - %n שעה%n שעות + + %n שעה + %n שעות + %n day(s) - %n יום%n ימים + + %n יום + %n ימים + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - אזעקת רשת + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - כמות: + + Not staking because you don't have mature beans + - - Bytes: - בייטים: + + Not staking + + + + BitcoinGUI - - Amount: - כמות: + Sign &message... + חתום על הודעה - - Priority: - קדימות: + Synchronizing with network... + מסתנכרן עם הרשת... - - Fee: - תשלום: + &Overview + &סקירה - - Low Output: - + Show general overview of wallet + הצג סקירה כללית של הארנק - - no - לא + &Transactions + &פעולות - - After Fee: - לאחר עמלה: + Browse transaction history + דפדף בהיסטוריית הפעולות - - Change: - שינוי: + E&xit + י&ציאה - - (un)select all - (מחק)(בחר) הכל + Quit application + סגור תוכנה - - Tree mode - מצב עץ + About &Qt + אודות Qt - - List mode - מצר רשימה + Show information about Qt + הצג מידע על Qt - - Amount - כמות + &Options... + &אפשרויות - - Label - + &Encrypt Wallet... + הצפן ארנק - - Address - כתובת + &Backup Wallet... + גיבוי ארנק - - Date - תאריך + &Change Passphrase... + שנה סיסמא - - Confirmations - אישורים + Backup wallet to another location + גיבוי הארנק למקום אחר - - Confirmed - מאושר + Change the passphrase used for wallet encryption + שנה את הסיסמה להצפנת הארנק - - Priority - קדימות + &Debug window + חלון ניפוי - - Copy address - העתק כתובת + Open debugging and diagnostic console + פתח את לוח הבקרה לאבחון וניפוי - - Copy label - העתק תוית + &Verify message... + אמת הודעה... - - - Copy amount - העתק כמות + Wallet + ארנק - - Copy transaction ID - העתק מזהה פעולה + &Show / Hide + הצג / הסתר - - Copy quantity - העתק כמות + &File + &קובץ - - Copy fee - העתק מחיר + &Settings + ה&גדרות - - Copy after fee - + &Help + &עזרה - - Copy bytes - + Tabs toolbar + סרגל כלים טאבים - - Copy priority - העתק קדימות + [testnet] + [רשת-בדיקה] - - Copy low output - + Up to date + עדכני - - Copy change - + Catching up... + מתעדכן... - - highest - הכי גבוה + Sent transaction + פעולה שנשלחה - - high - גבוה + Incoming transaction + פעולה שהתקבלה - - medium-high - בנוני גבוה + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + תאריך: %1 +כמות: %2 +סוג: %3 +כתובת: %4 - - medium - בינוני + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + הארנק <b>מוצפן</b> וכרגע <b>פתוח</b> - - low-medium - בינוני - נמוך + Wallet is <b>encrypted</b> and currently <b>locked</b> + הארנק <b>מוצפן</b> וכרגע <b>נעול</b> + + + %n hour(s) + + %n שעה + %n שעות + + + + %n day(s) + + %n יום + %n ימים + + + + ClientModel - - low - נמוך + + Network Alert + אזעקת רשת + + + CoinControlDialog - - lowest - הכי נמוך + Quantity: + כמות: - - DUST - + Bytes: + בייטים: - - yes - כן + Amount: + כמות: - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Priority: + קדימות: - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Fee: + תשלום: - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + no + לא - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + 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 + העתק מזהה פעולה + + + Copy quantity + העתק כמות + + + Copy fee + העתק מחיר + + + Copy priority + העתק קדימות + + + highest + הכי גבוה + + + high + גבוה + + + medium-high + בנוני גבוה + + + medium + בינוני + + + low-medium + בינוני - נמוך + + + low + נמוך + + + lowest + הכי נמוך + + + yes + כן - - (no label) - (ללא תוית) + (ללא תוית) - change from %1 (%2) - עודף מ־%1 (%2) + עודף מ־%1 (%2) - (change) - (עודף) + (עודף) EditAddressDialog - + Edit Address ערוך כתובת @@ -997,7 +1338,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1007,7 +1348,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1037,7 +1378,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1053,98 +1394,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + שימוש: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options אפשרויות - + &Main ראשי - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee שלם &עמלת פעולה - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1154,7 +1495,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1164,12 +1505,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1179,7 +1520,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1239,7 +1580,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1248,31 +1589,35 @@ This label turns red, if the priority is smaller than "medium". - Choose the default subdivision unit to show in the interface and when sending coins. - בחר את ברירת המחדל ליחידת החלוקה אשר תוצג בממשק ובעת שליחת מטבעות. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - הצג כתובות ברשימת הפעולות + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + Choose the default subdivision unit to show in the interface and when sending coins. + בחר את ברירת המחדל ליחידת החלוקה אשר תוצג בממשק ובעת שליחת מטבעות. + + + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + הצג כתובות ברשימת הפעולות - + &OK אישור @@ -1284,7 +1629,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1295,13 +1640,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1312,78 +1657,158 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form טופס - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - ארנק + ארנק - + Spendable: - + - + Your current spendable balance היתרה הזמינה הנוכחית - - Immature: - לא בשל: + + Sprouting: + - - Mined balance that has not yet matured - מאזן שנכרה וטרם הבשיל + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + - - Total: - סך הכול: + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + - - Your current total balance - סך כל היתרה הנוכחית שלך + + Immature: + לא בשל: - - <b>Recent transactions</b> - <b>פעולות אחרונות</b> + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + מאזן שנכרה וטרם הבשיל + + + + Total: + סך הכול: - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + Your current total balance + סך כל היתרה הנוכחית שלך - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Recent transactions</b> + <b>פעולות אחרונות</b> - + out of sync לא מסונכרן @@ -1392,65 +1817,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + כמות: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name שם ממשק @@ -1501,7 +1926,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1531,17 +1956,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1556,12 +1981,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1571,7 +1996,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1581,7 +2006,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1595,59 +2020,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - שלח מטבעות + Send Beans + - Coin Control Features - ה + Bean Control Features + Inputs... - + automatically selected - נבחר אוטומאטית + נבחר אוטומאטית Insufficient funds! - אין מספיק כספים! + אין מספיק כספים! Quantity: - כמות: + כמות: 0 - + Bytes: - בייטים: + בייטים: Amount: - כמות: + כמות: @@ -1655,272 +2080,414 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - קדימות: + קדימות: medium - + בינוני Fee: - תשלום: + תשלום: Low Output: - + no - + לא After Fee: - לאחר עמלה: + לאחר עמלה: Change - + custom change address - + Send to multiple recipients at once - שלח למספר מקבלים בו-זמנית + שלח למספר מקבלים בו-זמנית Add &Recipient - הוסף מקבל + הוסף מקבל Remove all transaction fields - + Clear &All - נקה הכל + נקה הכל Balance: - יתרה: + יתרה: 123.456 BC - + Confirm the send action - אשר את פעולת השליחה + אשר את פעולת השליחה S&end - שלח + שלח - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - העתק כמות + העתק כמות Copy amount - העתק כמות + העתק כמות Copy fee - העתק מחיר + העתק מחיר Copy after fee - + Copy bytes - + Copy priority - העתק קדימות + העתק קדימות Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - אשר שליחת מטבעות + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - כתובת כפולה נמצאה, ניתן לשלוח לכל כתובת רק פעם אחת בכל פעולת שליחה. + כתובת כפולה נמצאה, ניתן לשלוח לכל כתובת רק פעם אחת בכל פעולת שליחה. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (ללא תוית) + (ללא תוית) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + טופס - + A&mount: - כ&מות: + כ&מות: Pay &To: - שלם &ל: + שלם &ל: - + Enter a label for this address to add it to your address book - הכנס תוית לכתובת הזאת כדי להכניס לפנקס הכתובות + הכנס תוית לכתובת הזאת כדי להכניס לפנקס הכתובות &Label: - ת&וית: + ת&וית: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - הדבר כתובת מהלוח + Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + שלח מטבעות + + + Coin Control Features + ה + + + automatically selected + נבחר אוטומאטית + + + Insufficient funds! + אין מספיק כספים! + + + Quantity: + כמות: + + + Bytes: + בייטים: + + + Amount: + כמות: + + + Priority: + קדימות: + + + Fee: + תשלום: + + + After Fee: + לאחר עמלה: + + + Send to multiple recipients at once + שלח למספר מקבלים בו-זמנית + + + Add &Recipient + הוסף מקבל + + + Clear &All + נקה הכל + + + Balance: + יתרה: + + + Confirm the send action + אשר את פעולת השליחה + + + S&end + שלח + + + Copy quantity + העתק כמות + + + Copy amount + העתק כמות + + + Copy fee + העתק מחיר + + + Copy priority + העתק קדימות + + + Confirm send coins + אשר שליחת מטבעות + + + 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. + כתובת כפולה נמצאה, ניתן לשלוח לכל כתובת רק פעם אחת בכל פעולת שליחה. + + + (no label) + (ללא תוית) + + + + SendCoinsEntry + + A&mount: + כ&מות: + + + Pay &To: + שלם &ל: + + + Enter a label for this address to add it to your address book + הכנס תוית לכתובת הזאת כדי להכניס לפנקס הכתובות + + + &Label: + ת&וית: + + + Alt+A + Alt+A + + + Paste address from clipboard + הדבר כתובת מהלוח + + + Alt+P + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message חתימות - חתום או אמת הודעה @@ -1938,13 +2505,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1975,7 +2542,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -2002,12 +2569,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2018,7 +2585,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2028,7 +2595,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2107,12 +2674,15 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + conflicted - + @@ -2137,7 +2707,10 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - , הופץ דרך צומת אחד, הופץ דרך %n צמתים + + , הופץ דרך צומת אחד + , הופץ דרך %n צמתים + @@ -2190,7 +2763,10 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - מבשיל בעוד בלוק אחדמבשיל בעוד %n בלוקים + + מבשיל בעוד בלוק אחד + מבשיל בעוד %n בלוקים + @@ -2232,8 +2808,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2279,7 +2855,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details פרטי הפעולה @@ -2324,962 +2900,1268 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - פתח למשך בלוק %n יותרפתח למשך %n בלוקים נוספים + + פתח למשך בלוק %n יותר + פתח למשך %n בלוקים נוספים + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + + + + + This block was not received by any other nodes and will probably not be accepted! + הבלוק הזה לא נקלט על ידי אף צומת אחר, וכנראה לא יתקבל! + + + + Generated but not accepted + נוצר אך לא התקבל + + + + Received with + התקבל עם + + + + Received from + התקבל מאת + + + + Sent to + נשלח ל + + + + Payment to yourself + תשלום לעצמך + + + + SPROUT + + + + 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. + הכמות שהתווספה או הוסרה מהיתרה. + + + + 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 Data + + + + + Comma separated file (*.csv) + קובץ מופרד בפסיקים (*.csv) + + + + Confirmed + מאושר + + + + Date + תאריך + + + + Type + סוג + + + + Label + תוית + + + + Address + כתובת + + + + Amount + כמות + + + + ID + מזהה + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + טווח: + + + + to + אל + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + להשתמש באפשרות %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + שגיאה + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + אירעה שגיאה בעת הגדרת פורט RPC %u להאזנה ב-IPv6, נסוג ל-IPv4: %s + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + אירעה שגיאה בעת הגדרת פורט RPC %u להאזנה ב-IPv4: %s + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + עליך לקבוע rpcpassword=yourpassword בקובץ ההגדרות: +%s +אם הקובץ אינו קיים, צור אותו עם הרשאות קריאה לבעלים בלבד. + + + + BitBean version + + + + + Usage: + שימוש: + + + + Send command to -server or BitBeand + + + + + List commands + רשימת פקודות + + + + Get help for a command + קבל עזרה עבור פקודה + + + + BitBean + + + + + Options: + אפשרויות: + + + + This help message + הודעת העזרה הזו + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + ציין תיקיית נתונים + + + + Specify wallet file (within data directory) + + + + + Set database cache size in megabytes (default: 25) + קבע את גודל המטמון של מסד הנתונים במגהבייט (ברירת מחדל: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + ציין הגבלת זמן לחיבור במילישניות (ברירת מחדל: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + אפשר בדיקת DNS עבור -addnode, -seednode ו- -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + החזק לכל היותר <n> חיבורים לעמיתים (ברירת מחדל: 125) + + + + Add a node to connect to and attempt to keep the connection open + הוסף צומת להתחברות ונסה לשמור את החיבור פתוח + + + + Connect only to the specified node(s) + התחבר רק לצמתים המצוינים + + + + Connect to a node to retrieve peer addresses, and disconnect + התחבר לצומת כדי לדלות כתובות עמיתים, ואז התנתק + + + + Specify your own public address + ציין את הכתובת הפומבית שלך + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + התחבר רק לצמתים ברשת <net> (IPv4, IPv6 או Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + גלה את כתובת ה-IP העצמית (ברירת מחדל: 1 כשמאזינים וללא -externalip) + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + קבל חיבורים מבחוץ (ברירת מחדל: 1 ללא -proxy או -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + Threshold for disconnecting misbehaving peers (default: 100) + סף להתנתקות מעמיתים הנוהגים שלא כהלכה (ברירת מחדל: 100) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + מספר שניות למנוע מעמיתים הנוהגים שלא כהלכה מלהתחבר מחדש (ברירת מחדל: 86400) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + השתמש ב-UPnP כדי למפות את הפורט להאזנה (ברירת מחדל: 1 בעת האזנה) + + + + Use UPnP to map the listening port (default: 0) + השתמש ב-UPnP כדי למפות את הפורט להאזנה (ברירת מחדל: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + קבל פקודות משורת הפקודה ו- JSON-RPC + + + + Run in the background as a daemon and accept commands + רוץ ברקע כדימון וקבל פקודות + + + + Use the test network + השתמש ברשת הבדיקה + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + כווץ את קובץ debug.log בהפעלת הקליינט (ברירת מחדל: 1 ללא -debug) + + + + Send trace/debug info to console instead of debug.log file + שלח מידע דיבאג ועקבה לקונסולה במקום לקובץ debug.log + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + שם משתמש לחיבורי JSON-RPC + + + + Password for JSON-RPC connections + סיסמה לחיבורי JSON-RPC + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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 בפקודה יוחלף בגיבוב הבלוק) - This block was not received by any other nodes and will probably not be accepted! - הבלוק הזה לא נקלט על ידי אף צומת אחר, וכנראה לא יתקבל! + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + בצע פקודה כאשר פעולת ארנק משתנה (%s ב cmd יוחלף ב TxID) - Generated but not accepted - נוצר אך לא התקבל + Require a confirmations for change (default: 0) + - - Received with - התקבל עם + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - Received from - התקבל מאת + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - Sent to - נשלח ל + Upgrade wallet to latest format + שדרג את הארנק לפורמט העדכני - - Payment to yourself - תשלום לעצמך + + Set key pool size to <n> (default: 100) + קבע את גודל המאגר ל -<n> (ברירת מחדל: 100) - - Mined - נכרה + + Rescan the block chain for missing wallet transactions + סרוק מחדש את שרשרת הבלוקים למציאת פעולות חסרות בארנק - - (n/a) - (n/a) + + Attempt to recover private keys from a corrupt wallet.dat + נסה לשחזר מפתחות פרטיים מקובץ wallet.dat מושחת. - - Transaction status. Hover over this field to show number of confirmations. - מצב הפעולה. השהה את הסמן מעל שדה זה כדי לראות את מספר האישורים. + + How many blocks to check at startup (default: 2500, 0 = all) + - - Date and time that the transaction was received. - התאריך והשעה בה הפעולה הזאת התקבלה. + + How thorough the block verification is (0-6, default: 1) + - - Type of transaction. - סוג הפעולה. + + Imports blocks from external blk000?.dat file + - - Destination address of transaction. - כתובת היעד של הפעולה. + + Block creation options: + אפשרויות יצירת בלוק: - - Amount removed from or added to balance. - הכמות שהתווספה או הוסרה מהיתרה. + + Set minimum block size in bytes (default: 0) + קבע את גודל הבלוק המינימלי בבתים (ברירת מחדל: 0) - - - TransactionView - - - All - הכל + + Set maximum block size in bytes (default: 250000) + - - Today - היום + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - This week - השבוע + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - This month - החודש + Use OpenSSL (https) for JSON-RPC connections + השתמש ב-OpenSSL (https( עבור חיבורי JSON-RPC - Last month - החודש שעבר + Server certificate file (default: server.cert) + קובץ תעודת שרת (ברירת מחדל: server.cert) - This year - השנה + Server private key (default: server.pem) + מפתח פרטי של השרת (ברירת מחדל: server.pem) - Range... - טווח... + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Received with - התקבל עם + + Invalid amount for -paytxfee=<amount>: '%s' + כמות לא תקינה עבור -paytxfee=<amount>: '%s' - - Sent to - נשלח ל + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + אזהרה: -paytxfee נקבע לערך מאד גבוה! זוהי עמלת הפעולה שתשלם אם אתה שולח פעולה. - - To yourself - לעצמך + + Invalid amount for -mininput=<amount>: '%s' + - Mined - נכרה + Wallet %s resides outside data directory %s. + - Other - אחר + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Enter address or label to search - הכנס כתובת או תוית לחפש + + Verifying database integrity... + - - Min amount - כמות מזערית + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Copy address - העתק כתובת + + 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; אם המאזן או הפעולות שגויים עליך לשחזר גיבוי. + + + + wallet.dat corrupt, salvage failed + קובץ wallet.dat מושחת, החילוץ נכשל - Copy label - העתק תוית + Unknown -socks proxy version requested: %i + התבקשה גרסת פרוקסי -socks לא ידועה: %i - Copy amount - העתק כמות + Unknown network specified in -onlynet: '%s' + רשת לא ידועה צוינה ב- -onlynet: '%s' - Copy transaction ID - העתק מזהה פעולה + Invalid -proxy address: '%s' + כתובת -proxy לא תקינה: '%s' - Edit label - ערוך תוית + Invalid -tor address: '%s' + - Show transaction details - הצג פרטי פעולה + Cannot resolve -bind address: '%s' + לא מסוגל לפתור כתובת -bind: '%s' - - Export Transaction Data - + + Failed to listen on any port. Use -listen=0 if you want this. + האזנה נכשלה בכל פורט. השתמש ב- -listen=0 אם ברצונך בכך. - Comma separated file (*.csv) - קובץ מופרד בפסיקים (*.csv) + Cannot resolve -externalip address: '%s' + לא מסוגל לפתור כתובת -externalip: '%s' - - Confirmed - מאושר + + Invalid amount for -reservebalance=<amount> + - Date - תאריך + Unable to sign checkpoint, wrong checkpointkey? + + - Type - סוג + Loading block index... + טוען את אינדקס הבלוקים... - Label - תוית + Error loading blkindex.dat + - Address - כתובת + Loading wallet... + טוען ארנק... - Amount - כמות + Error loading wallet.dat: Wallet corrupted + שגיאה בטעינת הקובץ wallet.dat: הארנק מושחת - ID - מזהה + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + אזהרה: שגיאה בקריאת wallet.dat! כל המתפחות נקראו באופן תקין, אך נתוני הפעולות או ספר הכתובות עלולים להיות חסרים או שגויים. - - Error exporting - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Could not write to file %1. - + + Wallet needed to be rewritten: restart BitBean to complete + - - Range: - טווח: + + Error loading wallet.dat + שגיאה בטעינת הקובץ wallet.dat - - to - אל + + Cannot downgrade wallet + לא יכול להוריד דרגת הארנק - - - WalletModel - - Sending... - + + Cannot initialize keypool + - - - bitcoin-core - - BitBean version - + + Cannot write default address + לא יכול לכתוב את כתובת ברירת המחדל - Usage: - שימוש: + Rescanning... + סורק מחדש... - Send command to -server or BitBeand - + Importing blockchain data file. + - List commands - רשימת פקודות + Importing bootstrap blockchain data file. + - Get help for a command - קבל עזרה עבור פקודה + Loading addresses... + טוען כתובות... - - Options: - אפשרויות: + + Error: could not start node + - - Specify configuration file (default: BitBean.conf) - + + Done loading + טעינה הושלמה - Specify pid file (default: BitBeand.pid) - + Unable to bind to %s on this computer. BitBean is probably already running. + - Specify wallet file (within data directory) - + Unable to bind to %s on this computer (bind returned error %d, %s) + לא מסוגל לקשור ל-%s במחשב זה (הקשירה החזירה שגיאה %d, %s) - - Specify data directory - ציין תיקיית נתונים + + Error: Wallet locked, unable to create transaction + - - Set database cache size in megabytes (default: 25) - קבע את גודל המטמון של מסד הנתונים במגהבייט (ברירת מחדל: 25) + + Error: Wallet unlocked for staking only, unable to create transaction. + - Set database disk log size in megabytes (default: 100) - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Error: Transaction creation failed + - Maintain at most <n> connections to peers (default: 125) - החזק לכל היותר <n> חיבורים לעמיתים (ברירת מחדל: 125) + Sending... + + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + כמות לא תקינה + + + + Insufficient funds + אין מספיק כספים + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - Connect to a node to retrieve peer addresses, and disconnect - התחבר לצומת כדי לדלות כתובות עמיתים, ואז התנתק + Warning: This version is obsolete, upgrade required! + אזהרה: הגרסה הזאת מיושנת, יש צורך בשדרוג! - Specify your own public address - ציין את הכתובת הפומבית שלך + WARNING: syncronized checkpoint violation detected, but skipped! + - - Bind to given address. Use [host]:port notation for IPv6 - + + Warning: Disk space is low! + - - Stake your coins to support network and gain reward (default: 1) - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Threshold for disconnecting misbehaving peers (default: 100) - סף להתנתקות מעמיתים הנוהגים שלא כהלכה (ברירת מחדל: 100) + Usage: + שימוש: - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - מספר שניות למנוע מעמיתים הנוהגים שלא כהלכה מלהתחבר מחדש (ברירת מחדל: 86400) + List commands + רשימת פקודות - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - אירעה שגיאה בעת הגדרת פורט RPC %u להאזנה ב-IPv4: %s + Get help for a command + קבל עזרה עבור פקודה - - Detach block and address databases. Increases shutdown time (default: 0) - + Options: + אפשרויות: - - 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. - + Specify data directory + ציין תיקיית נתונים - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + Set database cache size in megabytes (default: 25) + קבע את גודל המטמון של מסד הנתונים במגהבייט (ברירת מחדל: 25) - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + Maintain at most <n> connections to peers (default: 125) + החזק לכל היותר <n> חיבורים לעמיתים (ברירת מחדל: 125) - - Accept command line and JSON-RPC commands - קבל פקודות משורת הפקודה ו- JSON-RPC + Connect to a node to retrieve peer addresses, and disconnect + התחבר לצומת כדי לדלות כתובות עמיתים, ואז התנתק - - Error: Transaction creation failed - + Specify your own public address + ציין את הכתובת הפומבית שלך - - Error: Wallet locked, unable to create transaction - + Threshold for disconnecting misbehaving peers (default: 100) + סף להתנתקות מעמיתים הנוהגים שלא כהלכה (ברירת מחדל: 100) - - Importing blockchain data file. - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + מספר שניות למנוע מעמיתים הנוהגים שלא כהלכה מלהתחבר מחדש (ברירת מחדל: 86400) - - Importing bootstrap blockchain data file. - + An error occurred while setting up the RPC port %u for listening on IPv4: %s + אירעה שגיאה בעת הגדרת פורט RPC %u להאזנה ב-IPv4: %s + + + Accept command line and JSON-RPC commands + קבל פקודות משורת הפקודה ו- JSON-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) - קבל חיבורים מבחוץ (ברירת מחדל: 1 ללא -proxy או -connect) + קבל חיבורים מבחוץ (ברירת מחדל: 1 ללא -proxy או -connect) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - אירעה שגיאה בעת הגדרת פורט RPC %u להאזנה ב-IPv6, נסוג ל-IPv4: %s - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + אירעה שגיאה בעת הגדרת פורט RPC %u להאזנה ב-IPv6, נסוג ל-IPv4: %s - 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 BitBean will not work properly. - + אזהרה: -paytxfee נקבע לערך מאד גבוה! זוהי עמלת הפעולה שתשלם אם אתה שולח פעולה. - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - אזהרה: שגיאה בקריאת wallet.dat! כל המתפחות נקראו באופן תקין, אך נתוני הפעולות או ספר הכתובות עלולים להיות חסרים או שגויים. + אזהרה: שגיאה בקריאת 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; אם המאזן או הפעולות שגויים עליך לשחזר גיבוי. + אזהרה: קובץ wallet.dat מושחת, המידע חולץ! קובץ wallet.dat המקורח נשמר כ - wallet.{timestamp}.bak ב - %s; אם המאזן או הפעולות שגויים עליך לשחזר גיבוי. - Attempt to recover private keys from a corrupt wallet.dat - נסה לשחזר מפתחות פרטיים מקובץ wallet.dat מושחת. + נסה לשחזר מפתחות פרטיים מקובץ wallet.dat מושחת. - Block creation options: - אפשרויות יצירת בלוק: + אפשרויות יצירת בלוק: - Connect only to the specified node(s) - התחבר רק לצמתים המצוינים + התחבר רק לצמתים המצוינים - Discover own IP address (default: 1 when listening and no -externalip) - גלה את כתובת ה-IP העצמית (ברירת מחדל: 1 כשמאזינים וללא -externalip) + גלה את כתובת ה-IP העצמית (ברירת מחדל: 1 כשמאזינים וללא -externalip) - Failed to listen on any port. Use -listen=0 if you want this. - האזנה נכשלה בכל פורט. השתמש ב- -listen=0 אם ברצונך בכך. + האזנה נכשלה בכל פורט. השתמש ב- -listen=0 אם ברצונך בכך. - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - חוצץ קבלה מירבי לכל חיבור, <n>*1000 בתים (ברירת מחדל: 5000) + חוצץ קבלה מירבי לכל חיבור, <n>*1000 בתים (ברירת מחדל: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - חוצץ שליחה מירבי לכל חיבור, <n>*1000 בתים (ברירת מחדל: 1000) + חוצץ שליחה מירבי לכל חיבור, <n>*1000 בתים (ברירת מחדל: 1000) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - התחבר רק לצמתים ברשת <net> (IPv4, IPv6 או Tor) - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - + התחבר רק לצמתים ברשת <net> (IPv4, IPv6 או Tor) - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - אפשרויות SSL: (ראה את הויקי של ביטקוין עבור הוראות הגדרת SSL) - - - - Select the version of socks proxy to use (4-5, default: 5) - + אפשרויות SSL: (ראה את הויקי של ביטקוין עבור הוראות הגדרת SSL) - Send trace/debug info to console instead of debug.log file - שלח מידע דיבאג ועקבה לקונסולה במקום לקובץ debug.log + שלח מידע דיבאג ועקבה לקונסולה במקום לקובץ debug.log - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - Set minimum block size in bytes (default: 0) - קבע את גודל הבלוק המינימלי בבתים (ברירת מחדל: 0) + קבע את גודל הבלוק המינימלי בבתים (ברירת מחדל: 0) - Shrink debug.log file on client startup (default: 1 when no -debug) - כווץ את קובץ debug.log בהפעלת הקליינט (ברירת מחדל: 1 ללא -debug) + כווץ את קובץ debug.log בהפעלת הקליינט (ברירת מחדל: 1 ללא -debug) - Specify connection timeout in milliseconds (default: 5000) - ציין הגבלת זמן לחיבור במילישניות (ברירת מחדל: 5000) + ציין הגבלת זמן לחיבור במילישניות (ברירת מחדל: 5000) - - Unable to sign checkpoint, wrong checkpointkey? - - - - - 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 בעת האזנה) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - + השתמש ב-UPnP כדי למפות את הפורט להאזנה (ברירת מחדל: 1 בעת האזנה) - Username for JSON-RPC connections - שם משתמש לחיבורי JSON-RPC - - - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - + שם משתמש לחיבורי JSON-RPC - Warning: This version is obsolete, upgrade required! - אזהרה: הגרסה הזאת מיושנת, יש צורך בשדרוג! + אזהרה: הגרסה הזאת מיושנת, יש צורך בשדרוג! - wallet.dat corrupt, salvage failed - קובץ wallet.dat מושחת, החילוץ נכשל + קובץ wallet.dat מושחת, החילוץ נכשל - Password for JSON-RPC connections - סיסמה לחיבורי JSON-RPC - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + סיסמה לחיבורי JSON-RPC - Allow JSON-RPC connections from specified IP address - אפשר חיבורי JSON-RPC מכתובת האינטרנט המצוינת + אפשר חיבורי 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) - בצע פקודה זו כשהבלוק הטוב ביותר משתנה (%s בפקודה יוחלף בגיבוב הבלוק) + בצע פקודה זו כשהבלוק הטוב ביותר משתנה (%s בפקודה יוחלף בגיבוב הבלוק) - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - בצע פקודה כאשר פעולת ארנק משתנה (%s ב cmd יוחלף ב TxID) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + בצע פקודה כאשר פעולת ארנק משתנה (%s ב cmd יוחלף ב TxID) - Upgrade wallet to latest format - שדרג את הארנק לפורמט העדכני + שדרג את הארנק לפורמט העדכני - Set key pool size to <n> (default: 100) - קבע את גודל המאגר ל -<n> (ברירת מחדל: 100) + קבע את גודל המאגר ל -<n> (ברירת מחדל: 100) - Rescan the block chain for missing wallet transactions - סרוק מחדש את שרשרת הבלוקים למציאת פעולות חסרות בארנק - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - + סרוק מחדש את שרשרת הבלוקים למציאת פעולות חסרות בארנק - Use OpenSSL (https) for JSON-RPC connections - השתמש ב-OpenSSL (https( עבור חיבורי JSON-RPC + השתמש ב-OpenSSL (https( עבור חיבורי JSON-RPC - Server certificate file (default: server.cert) - קובץ תעודת שרת (ברירת מחדל: server.cert) + קובץ תעודת שרת (ברירת מחדל: server.cert) - Server private key (default: server.pem) - מפתח פרטי של השרת (ברירת מחדל: server.pem) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - + מפתח פרטי של השרת (ברירת מחדל: server.pem) - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - This help message - הודעת העזרה הזו - - - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - + הודעת העזרה הזו - Unable to bind to %s on this computer (bind returned error %d, %s) - לא מסוגל לקשור ל-%s במחשב זה (הקשירה החזירה שגיאה %d, %s) - - - - Connect through socks proxy - + לא מסוגל לקשור ל-%s במחשב זה (הקשירה החזירה שגיאה %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect - אפשר בדיקת DNS עבור -addnode, -seednode ו- -connect + אפשר בדיקת DNS עבור -addnode, -seednode ו- -connect - Loading addresses... - טוען כתובות... - - - - Error loading blkindex.dat - + טוען כתובות... - Error loading wallet.dat: Wallet corrupted - שגיאה בטעינת הקובץ wallet.dat: הארנק מושחת - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + שגיאה בטעינת הקובץ wallet.dat: הארנק מושחת - 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' + לא מסוגל לפתור כתובת -bind: '%s' - Cannot resolve -externalip address: '%s' - לא מסוגל לפתור כתובת -externalip: '%s' + לא מסוגל לפתור כתובת -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - כמות לא תקינה עבור -paytxfee=<amount>: '%s' - - - - Error: could not start node - - - - - Sending... - + כמות לא תקינה עבור -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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + הוסף צומת להתחברות ונסה לשמור את החיבור פתוח - Loading wallet... - טוען ארנק... + טוען ארנק... - Cannot downgrade wallet - לא יכול להוריד דרגת הארנק - - - - Cannot initialize keypool - + לא יכול להוריד דרגת הארנק - Cannot write default address - לא יכול לכתוב את כתובת ברירת המחדל + לא יכול לכתוב את כתובת ברירת המחדל - Rescanning... - סורק מחדש... + סורק מחדש... - Done loading - טעינה הושלמה + טעינה הושלמה - To use the %s option - להשתמש באפשרות %s + להשתמש באפשרות %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=yourpassword בקובץ ההגדרות: + עליך לקבוע rpcpassword=yourpassword בקובץ ההגדרות: %s אם הקובץ אינו קיים, צור אותו עם הרשאות קריאה לבעלים בלבד. - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_hi_IN.qm b/src/qt/locale/bitbean_hi_IN.qm similarity index 57% rename from src/qt/locale/bitcoin_hi_IN.qm rename to src/qt/locale/bitbean_hi_IN.qm index 6ff541a..2be62d3 100644 Binary files a/src/qt/locale/bitcoin_hi_IN.qm and b/src/qt/locale/bitbean_hi_IN.qm differ diff --git a/src/qt/locale/bitcoin_hi_IN.ts b/src/qt/locale/bitbean_hi_IN.ts similarity index 59% rename from src/qt/locale/bitcoin_hi_IN.ts rename to src/qt/locale/bitbean_hi_IN.ts index b4e064d..ef8b9a2 100644 --- a/src/qt/locale/bitcoin_hi_IN.ts +++ b/src/qt/locale/bitbean_hi_IN.ts @@ -1,103 +1,106 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + Double-click to edit address or label दो बार क्लिक करे पता या लेबल संपादन करने के लिए ! - + Create a new address नया पता लिखिए ! - + Copy the currently selected address to the system clipboard चुनिन्दा पते को सिस्टम क्लिपबोर्ड पर कापी करे ! - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &पता कॉपी करे - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete &मिटाए !! @@ -114,7 +117,7 @@ This product includes software developed by the OpenSSL Project for use in the O Export Address Book Data - + @@ -124,12 +127,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -153,34 +156,34 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog - + - + Enter passphrase पहचान शब्द/अक्षर डालिए ! - + New passphrase नया पहचान शब्द/अक्षर डालिए ! - + Repeat new passphrase दोबारा नया पहचान शब्द/अक्षर डालिए ! - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -229,24 +232,29 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + @@ -255,12 +263,7 @@ This product includes software developed by the OpenSSL Project for use in the O वॉलेट एनक्रिप्ट हो गया ! - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -298,338 +301,590 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet passphrase was successfully changed. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - नेटवर्क से समकालिक (मिल) रहा है ... + + Bean Control + - - &Overview - &विवरण + + Quantity: + - - Show general overview of wallet - वॉलेट का सामानया विवरण दिखाए ! + + Bytes: + - - &Transactions - & लेन-देन - + + Amount: + राशि : - - Browse transaction history - देखिए पुराने लेन-देन के विवरण ! + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - बाहर जायें + + Tree mode + - - Quit application - अप्लिकेशन से बाहर निकलना ! + + List mode + - - Show information about BitBean - + + Amount + राशि - - About &Qt - + + Label + लेबल - - Show information about Qt - + + Address + पता - - &Options... - &विकल्प + + Date + taareek - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - &बैकप वॉलेट + Confirmed + पक्का - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + पता कॉपी करे - - &Export... - + + Copy label + लेबल कॉपी करे - - Send coins to a BitBean address - + + + Copy amount + कॉपी राशि - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - पहचान शब्द/अक्षर जो वॉलेट एनक्रिपशन के लिए इस्तेमाल किया है उसे बदलिए! + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - वॉलेट + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &फाइल + + DUST + - - &Settings - &सेट्टिंग्स + + yes + - - &Help - &मदद + + no + - - Tabs toolbar - टैबस टूलबार + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [टेस्टनेट] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (कोई लेबल नही !) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + &विवरण - - - %n second(s) ago - + + + Show general overview of wallet + वॉलेट का सामानया विवरण दिखाए ! - - &Unlock Wallet... - + + &Send Beans + - - + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + & लेन-देन + + + + + Browse transaction history + देखिए पुराने लेन-देन के विवरण ! + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + बाहर जायें + + + + Quit application + अप्लिकेशन से बाहर निकलना ! + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + &विकल्प + + + + Modify configuration options for BitBean + + + + + &Show / Hide + + + + + &Encrypt Wallet... + + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &बैकप वॉलेट + + + + Backup wallet to another location + + + + + &Change Passphrase... + + + + + Change the passphrase used for wallet encryption + पहचान शब्द/अक्षर जो वॉलेट एनक्रिपशन के लिए इस्तेमाल किया है उसे बदलिए! + + + + &Unlock Wallet... + + + + + Unlock wallet + वॉलेट खोलिए + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + + + + + &Verify message... + + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + + + + + Open debugging and diagnostic console + + + + + &File + &फाइल + + + + &Settings + &सेट्टिंग्स + + + + &Help + &मदद + + + + Tabs toolbar + टैबस टूलबार + + + + Actions toolbar + + + + + + [testnet] + [टेस्टनेट] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + नेटवर्क से समकालिक (मिल) रहा है ... + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + %n minute(s) ago - + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - नवीनतम + नवीनतम Catching up... - + Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - भेजी ट्रांजक्शन + भेजी ट्रांजक्शन Incoming transaction - प्राप्त हुई ट्रांजक्शन + प्राप्त हुई ट्रांजक्शन @@ -638,7 +893,7 @@ Amount: %2 Type: %3 Address: %4 - तारीख: %1\n + तारीख: %1\n राशि: %2\n टाइप: %3\n पता:%4\n @@ -647,341 +902,271 @@ Address: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - वॉलेट एन्क्रिप्टेड है तथा अभी लॉक्ड नहीं है + वॉलेट एन्क्रिप्टेड है तथा अभी लॉक्ड नहीं है Wallet is <b>encrypted</b> and currently <b>locked</b> - वॉलेट एन्क्रिप्टेड है तथा अभी लॉक्ड है + वॉलेट एन्क्रिप्टेड है तथा अभी लॉक्ड है Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - %n घंटा%n घंटे + + %n घंटा + %n घंटे + %n day(s) - %n दिन%n दिनो - - - - Not staking - - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - - - - - ClientModel - - - Network Alert - - - - - CoinControlDialog - - - Coin Control - - - - - Quantity: - - - - - Bytes: - - - - - Amount: - राशि : - - - - Priority: - - - - - Fee: - - - - - Low Output: - - - - - no - + + %n दिन + %n दिनो + - - After Fee: - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - Change: - + + Not staking because wallet is locked + - - (un)select all - + + Not staking because wallet is offline + - - Tree mode - + + Not staking because wallet is syncing + - - List mode - + + Not staking because you don't have mature beans + - - Amount - राशि + + Not staking + + + + BitcoinGUI - - Label - + Synchronizing with network... + नेटवर्क से समकालिक (मिल) रहा है ... - - Address - पता + &Overview + &विवरण - - Date - taareek + Show general overview of wallet + वॉलेट का सामानया विवरण दिखाए ! - - Confirmations - + &Transactions + & लेन-देन + - - Confirmed - पक्का + Browse transaction history + देखिए पुराने लेन-देन के विवरण ! - - Priority - + E&xit + बाहर जायें - - Copy address - पता कॉपी करे + Quit application + अप्लिकेशन से बाहर निकलना ! - - Copy label - लेबल कॉपी करे + &Options... + &विकल्प - - - Copy amount - कॉपी राशि + &Backup Wallet... + &बैकप वॉलेट - - Copy transaction ID - + Change the passphrase used for wallet encryption + पहचान शब्द/अक्षर जो वॉलेट एनक्रिपशन के लिए इस्तेमाल किया है उसे बदलिए! - - Copy quantity - + Wallet + वॉलेट - - Copy fee - + &File + &फाइल - - Copy after fee - + &Settings + &सेट्टिंग्स - - Copy bytes - + &Help + &मदद - - Copy priority - + Tabs toolbar + टैबस टूलबार - - Copy low output - + [testnet] + [टेस्टनेट] - - Copy change - + Up to date + नवीनतम - - highest - + Sent transaction + भेजी ट्रांजक्शन - - high - + Incoming transaction + प्राप्त हुई ट्रांजक्शन - - medium-high - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + तारीख: %1\n +राशि: %2\n +टाइप: %3\n +पता:%4\n - - medium - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + वॉलेट एन्क्रिप्टेड है तथा अभी लॉक्ड नहीं है - - low-medium - + Wallet is <b>encrypted</b> and currently <b>locked</b> + वॉलेट एन्क्रिप्टेड है तथा अभी लॉक्ड है - - - low - + + %n hour(s) + + %n घंटा + %n घंटे + + + %n day(s) + + %n दिन + %n दिनो + + + + + ClientModel - - lowest - + + Network Alert + + + + CoinControlDialog - - DUST - + Amount: + राशि : - - yes - + Amount + राशि - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Address + पता - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Date + taareek - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Confirmed + पक्का - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy address + पता कॉपी करे - - - (no label) - (कोई लेबल नही !) + Copy label + लेबल कॉपी करे - - change from %1 (%2) - + Copy amount + कॉपी राशि - - (change) - + (no label) + (कोई लेबल नही !) EditAddressDialog - + Edit Address पता एडिट करना @@ -993,7 +1178,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1003,7 +1188,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1033,7 +1218,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1049,226 +1234,226 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + खपत : command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options विकल्प - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK &ओके @@ -1280,175 +1465,247 @@ This label turns red, if the priority is smaller than "medium". &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + The supplied proxy address is invalid. - + OverviewPage - + Form फार्म - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - वॉलेट + वॉलेट - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: - + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + - Mined balance that has not yet matured - + Bean Stalk Height: + - - Total: - + + Sprouting Difficulty: + - - Your current total balance - + + Bean Weight: + - - <b>Recent transactions</b> - <b>हाल का लेन-देन</b> + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + Total: + + + + <b>Recent transactions</b> + <b>हाल का लेन-देन</b> - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + राशि : Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1468,183 +1725,183 @@ This label turns red, if the priority is smaller than "medium". Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - सिक्के भेजें| + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - राशि : + राशि : @@ -1652,296 +1909,366 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - एक साथ कई प्राप्तकर्ताओं को भेजें + एक साथ कई प्राप्तकर्ताओं को भेजें Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - बाकी रकम : + बाकी रकम : 123.456 BC - + Confirm the send action - भेजने की पुष्टि करें + भेजने की पुष्टि करें S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - कॉपी राशि + कॉपी राशि Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - सिक्के भेजने की पुष्टि करें + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + + + + + (no label) + (कोई लेबल नही !) + + + + WARNING: unknown change address + + + + + SendBeansEntry + + + Form + फार्म + + + + A&mount: + अमाउंट: + + + + Pay &To: + प्राप्तकर्ता: + + + + + Enter a label for this address to add it to your address book + आपकी एड्रेस बुक में इस एड्रेस के लिए एक लेबल लिखें + + + + &Label: + लेबल: + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose address from address book + + + + + Alt+A + Alt-A + + + + Paste address from clipboard + Clipboard से एड्रेस paste करें + + + + Alt+P + Alt-P + + + + Remove this recipient + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Send Coins + सिक्के भेजें| + + + Amount: + राशि : + + + Send to multiple recipients at once + एक साथ कई प्राप्तकर्ताओं को भेजें + + + Balance: + बाकी रकम : + + + Confirm the send action + भेजने की पुष्टि करें + + + Copy amount + कॉपी राशि + + + Confirm send coins + सिक्के भेजने की पुष्टि करें - - WARNING: Invalid BitBean address - + The amount to pay must be larger than 0. + भेजा गया अमाउंट शुन्य से अधिक होना चाहिए| - (no label) - (कोई लेबल नही !) - - - - WARNING: unknown change address - + (कोई लेबल नही !) SendCoinsEntry - - Form - - - - A&mount: - अमाउंट: + अमाउंट: - Pay &To: - प्राप्तकर्ता: + प्राप्तकर्ता: - - Enter a label for this address to add it to your address book - आपकी एड्रेस बुक में इस एड्रेस के लिए एक लेबल लिखें + आपकी एड्रेस बुक में इस एड्रेस के लिए एक लेबल लिखें - &Label: - लेबल: + लेबल: - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose address from address book - - - - Alt+A - Alt-A + Alt-A - Paste address from clipboard - Clipboard से एड्रेस paste करें + Clipboard से एड्रेस paste करें - Alt+P - Alt-P - - - - Remove this recipient - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Alt-P 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1962,76 +2289,76 @@ This label turns red, if the priority is smaller than "medium". Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2039,59 +2366,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2104,17 +2431,20 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + conflicted - + %1/offline - + @@ -2129,12 +2459,15 @@ This label turns red, if the priority is smaller than "medium". Status - + , broadcast through %n node(s) - + + + + @@ -2144,36 +2477,36 @@ This label turns red, if the priority is smaller than "medium". Source - + Generated - + From - + To - + own address - + label - + @@ -2182,17 +2515,20 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + + not accepted - + @@ -2200,52 +2536,52 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + @@ -2276,7 +2612,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details लेन-देन का विवरण @@ -2321,32 +2657,35 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2380,8 +2719,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - माइंड + माइंड @@ -2505,7 +2848,7 @@ This label turns red, if the priority is smaller than "medium". Copy transaction ID - + @@ -2515,12 +2858,12 @@ This label turns red, if the priority is smaller than "medium". Show transaction details - + Export Transaction Data - + @@ -2565,12 +2908,12 @@ This label turns red, if the priority is smaller than "medium". Error exporting - + Could not write to file %1. - + @@ -2588,693 +2931,752 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core + + + To use the %s option + + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + भूल + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + + - + BitBean version - + Usage: - खपत : + खपत : Send command to -server or BitBeand - + List commands - commands की लिस्ट बनाएं + commands की लिस्ट बनाएं Get help for a command - किसी command के लिए मदद लें + किसी command के लिए मदद लें - + + BitBean + + + + Options: - विकल्प: + विकल्प: - + + This help message + + + + Specify configuration file (default: BitBean.conf) - + Specify pid file (default: BitBeand.pid) - + - - Specify wallet file (within data directory) - + + Specify data directory + डेटा डायरेक्टरी बताएं - - Specify data directory - डेटा डायरेक्टरी बताएं + + Specify wallet file (within data directory) + - + Set database cache size in megabytes (default: 25) - + Set database disk log size in megabytes (default: 100) - + - + + Specify connection timeout in milliseconds (default: 5000) + + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) - + Maintain at most <n> connections to peers (default: 125) - + - + + Add a node to connect to and attempt to keep the connection open + + + + + Connect only to the specified node(s) + + + + Connect to a node to retrieve peer addresses, and disconnect - + Specify your own public address - + - - Bind to given address. Use [host]:port notation for IPv6 - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Stake your coins to support network and gain reward (default: 1) - + + Discover own IP address (default: 1 when listening and no -externalip) + - - Threshold for disconnecting misbehaving peers (default: 100) - + + Find peers using internet relay chat (default: 0) + - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Accept connections from outside (default: 1 if no -proxy or -connect) + - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - + + Bind to given address. Use [host]:port notation for IPv6 + - - Detach block and address databases. Increases shutdown time (default: 0) - + + Find peers using DNS lookup (default: 1) + - - 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. - + + Stake your beans to support network and gain reward (default: 1) + - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Sync checkpoints policy (default: strict) + - - Accept command line and JSON-RPC commands - + + Threshold for disconnecting misbehaving peers (default: 100) + - - Error: Transaction creation failed - + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Error: Wallet locked, unable to create transaction - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Importing blockchain data file. - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - Importing bootstrap blockchain data file. - + Use UPnP to map the listening port (default: 1 when listening) + - - Run in the background as a daemon and accept commands - बैकग्राउंड में डेमॉन बन कर रन करे तथा कमांड्स स्वीकार करें + + Use UPnP to map the listening port (default: 0) + - Use the test network - टेस्ट नेटवर्क का इस्तेमाल करे + Detach block and address databases. Increases shutdown time (default: 0) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Fee per KB to add to transactions you send + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Accept command line and JSON-RPC commands + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Run in the background as a daemon and accept commands + बैकग्राउंड में डेमॉन बन कर रन करे तथा कमांड्स स्वीकार करें - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Use the test network + टेस्ट नेटवर्क का इस्तेमाल करे - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Output extra debugging information. Implies all other -debug* options + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Output extra network debugging information + - - 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. - + + Prepend debug output with timestamp + - - Attempt to recover private keys from a corrupt wallet.dat - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Block creation options: - + + Send trace/debug info to console instead of debug.log file + - - Connect only to the specified node(s) - + + Send trace/debug info to debugger + - - Discover own IP address (default: 1 when listening and no -externalip) - + + Username for JSON-RPC connections + - - Failed to listen on any port. Use -listen=0 if you want this. - + + Password for JSON-RPC connections + - - Find peers using DNS lookup (default: 1) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - - Sync checkpoints policy (default: strict) - + + Allow JSON-RPC connections from specified IP address + - - Invalid -tor address: '%s' - + + Send commands to node running on <ip> (default: 127.0.0.1) + - - Invalid amount for -reservebalance=<amount> - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Require a confirmations for change (default: 0) + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - - Output extra debugging information. Implies all other -debug* options - + + Upgrade wallet to latest format + - Output extra network debugging information - + Set key pool size to <n> (default: 100) + - Prepend debug output with timestamp - + Rescan the block chain for missing wallet transactions + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Attempt to recover private keys from a corrupt wallet.dat + - - Select the version of socks proxy to use (4-5, default: 5) - + + How many blocks to check at startup (default: 2500, 0 = all) + - - Send trace/debug info to console instead of debug.log file - + + How thorough the block verification is (0-6, default: 1) + - Send trace/debug info to debugger - + Imports blocks from external blk000?.dat file + - - Set maximum block size in bytes (default: 250000) - + + Block creation options: + - + Set minimum block size in bytes (default: 0) - + - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Specify connection timeout in milliseconds (default: 5000) - + + Set maximum block size in bytes (default: 250000) + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Use UPnP to map the listening port (default: 0) - + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - - Use UPnP to map the listening port (default: 1 when listening) - + + Use OpenSSL (https) for JSON-RPC connections + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Server certificate file (default: server.cert) + - - Username for JSON-RPC connections - + + Server private key (default: server.pem) + - - Verifying database integrity... - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Invalid amount for -paytxfee=<amount>: '%s' + - Warning: Disk space is low! - - - - - Warning: This version is obsolete, upgrade required! - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - wallet.dat corrupt, salvage failed - + + Invalid amount for -mininput=<amount>: '%s' + - - Password for JSON-RPC connections - + + Wallet %s resides outside data directory %s. + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Find peers using internet relay chat (default: 0) - + + Verifying database integrity... + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + 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. + - - Allow JSON-RPC connections from specified IP address - + + wallet.dat corrupt, salvage failed + - Send commands to node running on <ip> (default: 127.0.0.1) - + Unknown -socks proxy version requested: %i + - Execute command when the best block changes (%s in cmd is replaced by block hash) - + Unknown network specified in -onlynet: '%s' + - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + + Invalid -proxy address: '%s' + - - Require a confirmations for change (default: 0) - + + Invalid -tor address: '%s' + - Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Cannot resolve -bind address: '%s' + - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + + Failed to listen on any port. Use -listen=0 if you want this. + - - Upgrade wallet to latest format - + + Cannot resolve -externalip address: '%s' + - Set key pool size to <n> (default: 100) - + Invalid amount for -reservebalance=<amount> + - Rescan the block chain for missing wallet transactions - + Unable to sign checkpoint, wrong checkpointkey? + + - - How many blocks to check at startup (default: 2500, 0 = all) - + + Loading block index... + ब्लॉक इंडेक्स आ रहा है... - How thorough the block verification is (0-6, default: 1) - + Error loading blkindex.dat + - Imports blocks from external blk000?.dat file - + Loading wallet... + वॉलेट आ रहा है... - - Use OpenSSL (https) for JSON-RPC connections - + + Error loading wallet.dat: Wallet corrupted + - Server certificate file (default: server.cert) - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - - Server private key (default: server.pem) - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + Wallet needed to be rewritten: restart BitBean to complete + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Error loading wallet.dat + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Cannot downgrade wallet + - - This help message - + + Cannot initialize keypool + - - Wallet %s resides outside data directory %s. - + + Cannot write default address + - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + Rescanning... + रि-स्केनी-इंग... - - BitBean - + + Importing blockchain data file. + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Importing bootstrap blockchain data file. + - - Connect through socks proxy - + + Loading addresses... + पता पुस्तक आ रही है... - - Allow DNS lookups for -addnode, -seednode and -connect - + + Error: could not start node + - - Loading addresses... - पता पुस्तक आ रही है... + + Done loading + लोड हो गया| - - Error loading blkindex.dat - + + Unable to bind to %s on this computer. BitBean is probably already running. + - Error loading wallet.dat: Wallet corrupted - + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Error loading wallet.dat: Wallet requires newer version of BitBean - + + Error: Wallet locked, unable to create transaction + - Wallet needed to be rewritten: restart BitBean to complete - + Error: Wallet unlocked for staking only, unable to create transaction. + - Error loading wallet.dat - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Invalid -proxy address: '%s' - + + Error: Transaction creation failed + - - Unknown network specified in -onlynet: '%s' - + + Sending... + - - Unknown -socks proxy version requested: %i - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - Cannot resolve -bind address: '%s' - + Invalid amount + राशि ग़लत है - - Cannot resolve -externalip address: '%s' - + + Insufficient funds + - - Invalid amount for -paytxfee=<amount>: '%s' - + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Error: could not start node - + + Warning: This version is obsolete, upgrade required! + - - Sending... - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Invalid amount - राशि ग़लत है + + Warning: Disk space is low! + - Insufficient funds - + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Loading block index... - ब्लॉक इंडेक्स आ रहा है... + Usage: + खपत : - - Add a node to connect to and attempt to keep the connection open - + List commands + commands की लिस्ट बनाएं - - Unable to bind to %s on this computer. BitBean is probably already running. - + Get help for a command + किसी command के लिए मदद लें - - Fee per KB to add to transactions you send - + Options: + विकल्प: - - Invalid amount for -mininput=<amount>: '%s' - + Specify data directory + डेटा डायरेक्टरी बताएं - - Loading wallet... - वॉलेट आ रहा है... + Run in the background as a daemon and accept commands + बैकग्राउंड में डेमॉन बन कर रन करे तथा कमांड्स स्वीकार करें - - Cannot downgrade wallet - + Use the test network + टेस्ट नेटवर्क का इस्तेमाल करे - - Cannot initialize keypool - + Loading addresses... + पता पुस्तक आ रही है... - - Cannot write default address - + Invalid amount + राशि ग़लत है - - Rescanning... - रि-स्केनी-इंग... + Loading block index... + ब्लॉक इंडेक्स आ रहा है... - - Done loading - लोड हो गया| + Loading wallet... + वॉलेट आ रहा है... - - To use the %s option - + Rescanning... + रि-स्केनी-इंग... - - Error - भूल + Done loading + लोड हो गया| - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + Error + भूल - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_hr.qm b/src/qt/locale/bitbean_hr.qm new file mode 100644 index 0000000..04ce0b7 Binary files /dev/null and b/src/qt/locale/bitbean_hr.qm differ diff --git a/src/qt/locale/bitcoin_sl_SI.ts b/src/qt/locale/bitbean_hr.ts similarity index 52% rename from src/qt/locale/bitcoin_sl_SI.ts rename to src/qt/locale/bitbean_hr.ts index fcb8aff..623a948 100644 --- a/src/qt/locale/bitcoin_sl_SI.ts +++ b/src/qt/locale/bitbean_hr.ts @@ -1,140 +1,138 @@ - + + + +UTF-8 AboutDialog - + About BitBean - O BitBean + - + <b>BitBean</b> version - <b>BitBean</b> verzija + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - -To je poizkusen softver. - -Distribuiran pod MIT/X11 softversko licenco, glej priloženo datoteko COPYING ali http://www.opensource.org/licenses/mit-license.php. - -Ta proizvod vključuje softver razvit s strani projekta OpenSSL za uporabo v OpenSSL Toolkit (http://www.openssl.org/) in kriptografski softver, ki ga je napisal Eric Young (eay@cryptsoft.com), ter UPnP softver, ki ga je napisal Thomas Bernard. + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - Imenik + - + Double-click to edit address or label - Dvakrat kliknite za urejanje naslovov ali oznak + Dvostruki klik za uređivanje adrese ili oznake - + Create a new address - Ustvari nov naslov + Dodajte novu adresu - + Copy the currently selected address to the system clipboard - Kopiraj trenutno izbrani naslov v odložišče + Kopiraj trenutno odabranu adresu u međuspremnik - + &New Address - &Nov naslov + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - To so vaši BitBean naslovi za prejemanje plačil. Priporočeno je da vsakemu pošiljatelju namenite drugega in tako dobite večji pregled nad svojimi nakazili. + - + &Copy Address - &Kopiraj naslov + &Kopirati adresu - + Show &QR Code - Prikaži &QR kodo + - + Sign a message to prove you own a BitBean address - Podpišite sporočilo, kot dokazilo lastništva BitBean naslova + Sign &Message - Podpiši &sporočilo + - + Delete the currently selected address from the list - Izbriši izbran naslov iz seznama + - + Verify a message to ensure it was signed with a specified BitBean address - Potrdi sporočilo, da zagotovite, da je bilo podpisano z izbranim BitBean naslovom + &Verify Message - &Potrdi sporočilo + &Potvrdite poruku - + &Delete - &Izbriši + &Brisanje Copy &Label - Kopiraj &oznako + Kopirati &oznaku &Edit - &Uredi + &Izmjeniti Export Address Book Data - Izvozi podatke imenika + Comma separated file (*.csv) - Datoteka s podatki, ločenimi z vejico (*.csv) + Datoteka vrijednosti odvojenih zarezom (*. csv) Error exporting - Napaka pri izvozu datoteke + Could not write to file %1. - Napaka pri pisanju na datoteko %1. + @@ -147,493 +145,751 @@ Ta proizvod vključuje softver razvit s strani projekta OpenSSL za uporabo v Ope Address - Naslov + Adresa (no label) - (ni oznake) + (bez oznake) AskPassphraseDialog - + Passphrase Dialog - Poziv gesla + - + Enter passphrase - Vnesite geslo + Unesite lozinku - + New passphrase - Novo geslo + Nova lozinka - + Repeat new passphrase - Ponovite novo geslo + Ponovite novu lozinku - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - Služi kot onemogočenje pošiljanja prostega denarja, v primerih okužbe operacijskega sistema. Ne ponuja prave zaščite. + For staking only - Samo za staking. + 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>. + 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 - Šifriraj denarnico + Šifriranje novčanika This operation needs your wallet passphrase to unlock the wallet. - To dejanje zahteva geslo za odklepanje vaše denarnice. + Ova operacija treba lozinku vašeg novčanika kako bi se novčanik otključao. Unlock wallet - Odkleni denarnico + Otključaj novčanik This operation needs your wallet passphrase to decrypt the wallet. - To dejanje zahteva geslo za dešifriranje vaše denarnice. + Ova operacija treba lozinku vašeg novčanika kako bi se novčanik dešifrirao. Decrypt wallet - Dešifriraj denarnico + Dešifriranje novčanika. Change passphrase - Zamenjaj geslo + Promjena lozinke Enter the old and new passphrase to the wallet. - Vnesite staro in novo geslo denarnice. + Unesite staru i novu lozinku za novčanik. Confirm wallet encryption - Potrdi šifriranje denarnice + Potvrdi šifriranje novčanika - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - Opozorilo: Če šifrirate svojo denarnico in izgubite svoje geslo, boste <b> IZGUBILI VSE SVOJE KOVANCE</b>! + Are you sure you wish to encrypt your wallet? + Jeste li sigurni da želite šifrirati svoj novčanik? - Are you sure you wish to encrypt your wallet? - Ali ste prepričani, da želite šifrirati vašo denarnico? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - POMEMBNO: Vsaka predhodna varnostna kopija datoteke denarnice mora biti nadomeščena z novo datoteko šifrirane denarnice. Zaradi varnostnih razlogov bodo namreč prejšnje varnostne kopije datoteke nešifrirane denarnice postale neuporabne takoj ko boste pričeli uporabljati novo, šifrirano denarnico. + Warning: The Caps Lock key is on! - Opozorilo: imate prižgan Cap Lock + Upozorenje: Tipka Caps Lock je uključena! Wallet encrypted - Denarnica šifrirana - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - BitBean se bo sedaj zaprl, da dokonča proces šifriranje. Pomnite, da tudi šifriranje vaše denarnice ne more v celoti zaščititi vaših kovancev pred krajo z zlonamernimi programi in računalniškimi virusi, če ti okužijo vaš računalnik. + Novčanik šifriran - + Wallet encryption failed - Šifriranje denarnice je spodletelo + Šifriranje novčanika nije uspjelo Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Šifriranje denarnice spodletelo je zaradi notranje napake. Vaša denarnica ni šifrirana. + Šifriranje novčanika nije uspjelo zbog interne pogreške. Vaš novčanik nije šifriran. The supplied passphrases do not match. - Vnešeno geslo se ne ujema + Priložene lozinke se ne podudaraju. Wallet unlock failed - Odklep denarnice spodletel + Otključavanje novčanika nije uspjelo The passphrase entered for the wallet decryption was incorrect. - Geslo za dešifriranje denarnice, ki ste ga vnesli, ni pravilno. + Lozinka za dešifriranje novčanika nije točna. Wallet decryption failed - Dešifriranje denarnice je spodletelo + Dešifriranje novčanika nije uspjelo Wallet passphrase was successfully changed. - Geslo denarnice je bilo uspešno spremenjeno. + Lozinka novčanika je uspješno promijenjena. - BitcoinGUI + BeanControlDialog - - Sign &message... - Podpiši &sporočilo ... - - - - Synchronizing with network... - Sinhroniziranje z omrežjem ... + + Bean Control + - - &Overview - &Pregled + + Quantity: + - - Show general overview of wallet - Pokaži splošen pregled denarnice + + Bytes: + - - &Transactions - &Transakcije + + Amount: + Iznos: - - Browse transaction history - Brskaj po zgodovini transakcij + + Priority: + - - &Address Book - &Imenik + + Fee: + - - Edit the list of stored addresses and labels - Uredi seznam shranjenih naslovov in oznak + + Low Output: + - - &Receive coins - &Prejmi kovance + + After Fee: + - - Show the list of addresses for receiving payments - Prikaži seznam naslovov za prejemanje plačil. + + Change: + - - &Send coins - &Pošlji kovance + + (un)select all + - - E&xit - I&zhod + + Tree mode + - - Quit application - Izhod iz aplikacije + + List mode + - - Show information about BitBean - Pokaži informacije o BitBean + + Amount + Iznos - - About &Qt - O &Qt + + Label + Oznaka - - Show information about Qt - Prikaži informacije o Qt + + Address + Adresa - - &Options... - &Možnosti ... + + Date + Datum - - &Encrypt Wallet... - &Šifriraj denarnico ... + + Confirmations + - &Backup Wallet... - &Ustvari varnostno kopijo denarnice ... + Confirmed + Potvrđeno - - &Change Passphrase... - &Spremeni geslo ... - - - - ~%n block(s) remaining - Ostaja ~%n bloka Ostaja ~%n blokovOstaja ~%n blokovOstaja ~%n blokov + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Prenešen %1 od %2 blokov transakcijske zgodovine (%3% opravljeno). + + Copy address + Kopirati adresu - - &Export... - &Izvozi... + + Copy label + Kopirati oznaku - - Send coins to a BitBean address - Pošlji kovance na BitBean naslov + + + Copy amount + Kopiraj iznos - - Modify configuration options for BitBean - Spremeni nastavitve za BTestcoin + + Copy transaction ID + - - Export the data in the current tab to a file - Izvozi podatke v izbranem zavihku v datoteko + + Copy quantity + - - Encrypt or decrypt wallet - Šifriraj ali dešifriraj denarnico + + Copy fee + - - Backup wallet to another location - Napravi varnostno kopijo denarnice na drugo lokacijo + + Copy after fee + - - Change the passphrase used for wallet encryption - Spremeni šifrirno geslo denarnice + + Copy bytes + - - &Debug window - &Razhroščevalno okno + + Copy priority + - Open debugging and diagnostic console - Odpri razhroščevalno in diagnostično konzolo + Copy low output + - - &Verify message... - %Potrdi sporočilo ... + + Copy change + - - BitBean - BitBean + + highest + - - Wallet - Denarnica + + high + - - &About BitBean - &O BitBean + + medium-high + - - &Show / Hide - &Prikaži / Skrij + + medium + - - Unlock wallet - Odkleni denarnico + + low-medium + - &Lock Wallet - &Zakleni denarnico + low + - Lock wallet - Zakleni denarnico + lowest + - - &File - &Datoteka + + DUST + - - &Settings - &Nastavitve + + yes + - - &Help - &Pomoč + + no + - - Tabs toolbar - Orodna vrstica zavihkov + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - Orodna vrsticai + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - BitBean program + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - %n aktivne povezave na BitBean omrežje%n aktivnih povezav na BitBean omrežje%n aktivnih povezav na BitBean omrežje%n aktivnih povezav na BitBean omrežje + + + + (no label) + (bez oznake) - - Downloaded %1 blocks of transaction history. - Prenešenih %1 blokov transakcijske zgodovine. + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - Deležeje [Staking].<br>Teža vašega deleženja je %1<br>Teža celotne mreže deleženja je %2<br>Pričakovan čas do prejema nagrade %3 + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - Ne deležite ker je denarnica zakljenjena + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - Ne deležite ker denarnica ni povezana + + BitBean + - - Not staking because wallet is syncing - Ne deležite ker se denarnica sinhronizira z omrežjem + + Vault + - - Not staking because you don't have mature coins - Ne deležite ker nimate zrelih kovancev. + + &Overview + &Pregled - - - %n second(s) ago - pred %n sekundopred %n sekundamapred %n sekundamipred %n sekundami + + + Show general overview of wallet + Prikaži opći pregled novčanika - - &Unlock Wallet... - &Odkleni denarnico... + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transakcije + + + + Browse transaction history + Pretraži povijest transakcija + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + &Izlaz + + + + Quit application + Izlazak iz programa + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + Više o &Qt + + + + Show information about Qt + Prikaži informacije o Qt + + + + &Options... + &Postavke + + + + Modify configuration options for BitBean + + + + + &Show / Hide + + + + + &Encrypt Wallet... + &Šifriraj novčanik... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &Backup novčanika... + + + + Backup wallet to another location + Napravite sigurnosnu kopiju novčanika na drugoj lokaciji + + + + &Change Passphrase... + &Promijena lozinke... + + + + Change the passphrase used for wallet encryption + Promijenite lozinku za šifriranje novčanika + + + + &Unlock Wallet... + + + + + Unlock wallet + Otključaj novčanik + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + &Potpišite poruku... + + + + &Verify message... + &Potvrdite poruku... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + + + + + Open debugging and diagnostic console + + + + + &File + &Datoteka + + + + &Settings + &Konfiguracija + + + + &Help + &Pomoć + + + + Tabs toolbar + Traka kartica + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + + Synchronizing with network... + Usklađivanje s mrežom ... - + + ~%n block(s) remaining + + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + %n minute(s) ago - Pred %n minutoPred %n minutamaPred %n minutamiPred %n minutami + + + + + %n hour(s) ago - Pred %n uro.Pred %n urama.Pred %n urami.Pred %n urami. + + + + + %n day(s) ago - Pred %n dnevom.Pred %n dnevoma.Pred %n dnevi.Pred %n dnevi. + + + + + Up to date - Posodobljeno + Ažurno Catching up... - Pridobivanje ... + Ažuriranje... Last received block was generated %1. - Zadnji prejeti blok je bil ustvarjen %1. + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Ta transakcija je prekoračila limit. Še vedno jo lahko pošljete za plačilo %1 transakcije, ki je plačano vsem delom omrežja kot deležnina in pomaga zagotavljati njegovo varnost. Ali želite plačati provizijo? + Confirm transaction fee - Potrdi transakcijsko provizijo + Sent transaction - Odlivi + Poslana transakcija Incoming transaction - Prilivi + Dolazna transakcija @@ -642,367 +898,305 @@ Amount: %2 Type: %3 Address: %4 - Datum: %1 -Količina: %2 -Vrsta: %3 -Naslov: %4 + Datum:%1 +Iznos:%2 +Tip:%3 +Adresa:%4 URI handling - Rokovanje z URI + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - URI ne more biti razčlenjen! To se lahko zgodi zaradi neveljavnega BitBean naslova ali slabih parametrov URI. + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Denarnica je <b>šifrirana</b> in trenutno <b>odklenjena</b> + Novčanik je <b>šifriran</b> i trenutno <b>otključan</b> Wallet is <b>encrypted</b> and currently <b>locked</b> - Denarnica je <b>šifrirana</b> in trenutno <b>zaklenjena</b> + Novčanik je <b>šifriran</b> i trenutno <b>zaključan</b> Backup Wallet - Napravi varnostno kopijo denarnice + Wallet Data (*.dat) - Datoteka denarnice (*.dat) + Backup Failed - Ustvarjanje varnostne kopije je spodeltelo + There was an error trying to save the wallet data to the new location. - Prišlo je do napake ob poskušanju shranjevanja datoteke denarnice na novo lokacijo. + - + %n second(s) - %n sekundo%n sekundama%n sekund%n sekund + + + + + %n minute(s) - %n minuto%n minutama%n minut%n minut + + + + + %n hour(s) - %n ura%n uri%n ure%n ura + + + + + %n day(s) - %n dan%n dneva%n dnevi%n dni + + + + + - - Not staking - Ne deležite - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - Prišlo je do usodne napake. Program BitBean se ne more več varno nadaljevati in se bo zato zaprl. - - - - ClientModel - - - Network Alert - Omrežno Opozorilo - - - - CoinControlDialog - - - Coin Control - Kontrola kovancev - - - - Quantity: - Količina: + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - Bytes: - Biti: + + Not staking because wallet is locked + - - Amount: - Količina: + + Not staking because wallet is offline + - - Priority: - Prednostno mesto: + + Not staking because wallet is syncing + - - Fee: - Provizija: + + Not staking because you don't have mature beans + - - Low Output: - Nizek output: + + Not staking + + + + BitcoinGUI - - no - ne + Sign &message... + &Potpišite poruku... - - After Fee: - Po proviziji: + Synchronizing with network... + Usklađivanje s mrežom ... - - Change: - Sprememba: + &Overview + &Pregled - - (un)select all - od/obkljukaj vse + Show general overview of wallet + Prikaži opći pregled novčanika - - Tree mode - Drevo + &Transactions + &Transakcije - - List mode - Seznam + Browse transaction history + Pretraži povijest transakcija - - Amount - Količina + E&xit + &Izlaz - - Label - Oznaka + Quit application + Izlazak iz programa - - Address - Naslov + About &Qt + Više o &Qt - - Date - Datum + Show information about Qt + Prikaži informacije o Qt - - Confirmations - Potrdila + &Options... + &Postavke - - Confirmed - Potrjeno + &Encrypt Wallet... + &Šifriraj novčanik... - - Priority - Prednostno mesto + &Backup Wallet... + &Backup novčanika... - - Copy address - Kopiraj naslov + &Change Passphrase... + &Promijena lozinke... - - Copy label - Kopiraj oznako + Backup wallet to another location + Napravite sigurnosnu kopiju novčanika na drugoj lokaciji - - - Copy amount - Kopiraj količino + Change the passphrase used for wallet encryption + Promijenite lozinku za šifriranje novčanika - - Copy transaction ID - Kopiraj ID transakcije + &Verify message... + &Potvrdite poruku... - - Copy quantity - Kopiraj količino + Wallet + Novčanik - - Copy fee - Kopiraj provizijo + &File + &Datoteka - - Copy after fee - Kopiraj po proviziji + &Settings + &Konfiguracija - - Copy bytes - Kopiraj bite + &Help + &Pomoć - - Copy priority - Kopiraj prednostno mesto + Tabs toolbar + Traka kartica - - Copy low output - Kopiraj nizek output: + [testnet] + [testnet] - - Copy change - Kopiraj spremembo + Up to date + Ažurno - - highest - najvišja + Catching up... + Ažuriranje... - - high - visoka + Sent transaction + Poslana transakcija - - medium-high - srednje visoka + Incoming transaction + Dolazna transakcija - - medium - srednje + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum:%1 +Iznos:%2 +Tip:%3 +Adresa:%4 + - - low-medium - srednje nizka + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Novčanik je <b>šifriran</b> i trenutno <b>otključan</b> - - low - nizka + Wallet is <b>encrypted</b> and currently <b>locked</b> + Novčanik je <b>šifriran</b> i trenutno <b>zaključan</b> + + + ClientModel - - lowest - najnižja + + Network Alert + + + + CoinControlDialog - - DUST - PRAH + Amount: + Iznos: - - yes - da + Amount + Iznos - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - Ta oznakla se obarva rdeče, če je transakcija večja od 10000 bajtov. - - To pomeni, da je zahtevana provizija vsaj %1 na kb. - - Lahko variira +/- 1 Bajt na vnos. + Address + Adresa - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - Transakcije z višjo prioriteto imajo višjo verjetnost, da so vključene v blok. - -Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". - - To pomeni, da je zahtevana provizija vsaj %1 na kb. + Date + Datum - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - Ta oznaka se obarva rdeče, če prejemnik dobi količino manjšo od %1. - - To pomeni, da je potrebna vsaj %2 provizija. - - Zneski pod 0.546 krat minimalna transakcijska provizija so prikazani kot PRAH. + Confirmed + Potvrđeno - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - Ta oznakla se obarva rdeče, če je sprememba manjša od %1. - - To pomeni, da je zahtevana provizija vsaj %2. + Copy address + Kopirati adresu - - - (no label) - (ni oznake) + Copy label + Kopirati oznaku - - change from %1 (%2) - spremeni iz %1 (%2) + Copy amount + Kopiraj iznos - - (change) - (spremeni) + (no label) + (bez oznake) EditAddressDialog - + Edit Address - Uredi naslov + Izmjeni adresu @@ -1012,179 +1206,179 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". The label associated with this address book entry - Oznaka povezana s tem vnosom v imeniku + &Address - &Naslov + &Adresa The address associated with this address book entry. This can only be modified for sending addresses. - Naslov povezan s tem vnosom v imeniku. Spremenite ga lahko le za naslove odlivov. + New receiving address - Nov naslov za prilive + Nova adresa za primanje New sending address - Nov naslov za odlive + Nova adresa za slanje Edit receiving address - Uredi naslov za prilive + Uredi adresu za primanje Edit sending address - Uredi naslov za odlive + Uredi adresu za slanje The entered address "%1" is already in the address book. - Vnešeni naslov "&1" je že v imeniku. + Upisana adresa "%1" je već u adresaru. The entered address "%1" is not a valid BitBean address. - Vneseni naslov "%1" ni veljaven BitBean naslov. + Could not unlock wallet. - Denarnice ni bilo mogoče odkleniti. + Ne mogu otključati novčanik. New key generation failed. - Ustvarjanje novega ključa je spodletelo. + Stvaranje novog ključa nije uspjelo. GUIUtil::HelpMessageBox - + BitBean-Qt - BitBean-Qt + version - različica + Usage: - Uporaba: + Upotreba: 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 + Show splash screen on startup (default: 1) - Prikaži splash screen ob zagonu (default: 1) + OptionsDialog - + Options - Možnosti + Postavke - + &Main &Glavno - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - Izbirne transakcijske provizije za kB, ki pomagajo pri tem, da so vaše transakcije procesirane hitreje. Večina transakcij je velikih 1 kB. Priporočena je provizija 0.01. + + Pay transaction &fee + Plati &naknadu za transakciju - - Pay transaction &fee - Nakazilo plačila & provizija + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - Rezervirana količina ne deleži in je tako na voljo za potrošnjo. + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - Rezerva + Automatically start BitBean after logging in to the system. - Avtomatično zaženi BitBean ob zagonu sistema. + &Start BitBean on system login - &Zaženi BitBean ob prijavi v sistem + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - Loči podatkovne baze blokov in naslovov ob zaustavitvi. To pomeni da jih lahko prenesete na drugo lokacijo, a upočasni zaustavitev. Denarnica je vedno ločena. + &Detach databases at shutdown - &Loči podatkovne baze ob zaustavitvi + &Network - &Omrežje + &Mreža Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - Avtomatično odpri vrata na routerju za BitBean program. To deluje le če vaš router podpira UPnP in je ta omogočen. + Map port using &UPnP - Začrtaj vrata z &UPnP + Mapiraj port koristeći &UPnP Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - Poveži se na BitBean omrežje skozi SOCKS proxy (npr. ko se povezujete prek Tora) + &Connect through SOCKS proxy: - &Poveži se skozi SOCKS proxy: + @@ -1194,52 +1388,52 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". IP address of the proxy (e.g. 127.0.0.1) - IP naslov proxy strežnika (npr. 127.0.0.1) + &Port: - &Vrata: + Port of the proxy (e.g. 9050) - Vrata strežnika (npr.: 9050) + Port od proxy-a (npr. 9050) SOCKS &Version: - SOCKS &različica: + SOCKS &Verzija: SOCKS version of the proxy (e.g. 5) - SOCKS različica proxya (npr.: 5) + &Window - &Okno + &Prozor Show only a tray icon after minimizing the window. - Ob pomanjšanju okna prikaži le ikono v odlagališču. + Prikaži samo ikonu u sistemskoj traci nakon minimiziranja prozora &Minimize to the tray instead of the taskbar - &Pomanjšaj v odlagališče namesto v opravilno vrstico + &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. - Pomanjšaj aplikacijo, ko je okno zaprto. Ko je omogočena ta možnost lahko aplikacijo zaprete le tako, da izberete Izhod v meniju. + 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 - P&omanjšaj ko zapreš + M&inimiziraj kod zatvaranja @@ -1249,225 +1443,301 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". User Interface &language: - Uporabniški vmesnik &jezik: + The user interface language can be set here. This setting will take effect after restarting BitBean. - Tu lahko nastavite jezik uporabniškega vmesnika. Nastavitve bodo pričele delovati ob ponovnem zagonu BitBean aplikacije. + &Unit to show amounts in: - &Enota prikaza količin: + &Jedinica za prikazivanje iznosa: - Choose the default subdivision unit to show in the interface and when sending coins. - Izberite privzeto delitev enot, ki naj bodo prikazane v vmesniku ob pošiljanju kovancev. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - Izbira prikaza BitBean naslovov v seznamu transakcij. + + Whether to show bean control features or not. + - &Display addresses in transaction list - &Prikaz naslovov v seznamu transakcij + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - Izbira prikaza lastnosti kontrole kovancev. + Choose the default subdivision unit to show in the interface and when sending coins. + Izaberite željeni najmanji dio bitcoina koji će biti prikazan u sučelju i koji će se koristiti za plaćanje. + + + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - Prikaži lastnosti &kontrole kovancev (samo za strokovnjake!) + &Display addresses in transaction list + &Prikaži adrese u popisu transakcija - + &OK - &Potrdi + &U redu &Cancel - &Prekini + &Odustani &Apply - &Uporabi + default - privzeto + standardne vrijednosti Warning - Opozorilo + This setting will take effect after restarting BitBean. - Ta nastavitev bo pričela delovati ob ponovnem zagonu BitBean aplikacije + The supplied proxy address is invalid. - Podan naslov proxy strežnika je neveljaven. + OverviewPage - + Form - Oblika + Oblik - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - Prikazane informacije so morda zastarele. Vaša denarnica se avtomatično sinhronizira z BitBean omrežjem, ko je vzpostavljena povezava, toda ta proces še ni bil zaključen. + + Bean Vault + - - Stake: - Deleženje: + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - Nepotrjeni: + - Wallet - Denarnica + Novčanik - + Spendable: - Razpoložljivi: + - + Your current spendable balance - Vaše trenutno razpoložljivo stanje + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: - Nezreli: + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + - Mined balance that has not yet matured - Z deleženjem pridobljeni kovanci, ki še niso dozoreli. + Bean Stalk Height: + - - Total: - Skupaj: + + Sprouting Difficulty: + - - Your current total balance - Vaše trenutno skupno stanje + + Bean Weight: + - - <b>Recent transactions</b> - <b>Pogoste transakcije</> + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Znesek transakcij, ki še niso bile potrjene in se še ne upoštevajo v trenutnem stanju na računu. + + Total: + Ukupno: - - Total of coins that was staked, and do not yet count toward the current balance - Znesek kovancev, ki so bili v deleženju in se še ne upoštevajo v trenutnem stanju na računu. + <b>Recent transactions</b> + <b>Nedavne transakcije</b> - + out of sync - nesinhronizirano + QRCodeDialog - + QR Code Dialog - QR koda + Request Payment - Zahtevaj plačilo + Amount: - Znesek: + Iznos: Label: - Oznaka: + Message: - Sporočilo: + &Save As... - &Shrani kot... + Error encoding URI into QR Code. - Napaka pri šifriranju URI v QR kodo. + The entered amount is invalid, please check. - Vnesen znesek je neveljaven, prosimo preverite vnos. + Resulting URI too long, try to reduce the text for label / message. - URI predolg, skušajte zmanjšati besedilo oznake/sporočila. + Save QR Code - Shrani QR kodo + PNG Images (*.png) - PNG slike (*.png) + RPCConsole - + Client name - Ime odjemalca + Ime klijenta @@ -1481,82 +1751,82 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". N/A - Neznano + N/A Client version - Različica odjemalca + Verzija klijenta &Information - &Informacije + &Informacija Using OpenSSL version - OpenSSL različica v rabi + Koristim OpenSSL verziju Startup time - Čas zagona + Network - Omrežje + Mreža Number of connections - Število povezav + Broj konekcija On testnet - Na testnet + Block chain - veriga blokov + Lanac blokova Current number of blocks - Trenutno število blokov + Trenutni broj blokova Estimated total blocks - Ocena vseh blokov + Procjenjeni ukupni broj blokova Last block time - Čas zadnjega bloka + Posljednje vrijeme bloka &Open - &Odpri + &Otvori Command-line options - Možnosti ukazne vrstice. + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - Prikaži BitBean-Qt sporočilo za pomoč , ki prikaže vse možnosti ukazne vrstice BitBean aplikacije + &Show - &Prikaži + @@ -1566,103 +1836,103 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". Build date - Datum izgradnje + BitBean - Debug window - BitBean - okno za odpravljanje napak + BitBean Core - BitBean jedro + Debug log file - Razhroščevalna dnevniška datoteka + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - Odpri BitBean datoteko zapisov odpravljanja napak iz trenutnega direktorija podatkov. Če so datoteke zapisov velike, to lahko traja nekaj sekund. + Clear console - Počisti konzolo + Očisti konzolu Welcome to the BitBean RPC console. - Dobrodošli v BitBean RPC konzoli. + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Za navigiranje po zgodovini uporabite puščici gor in dol, in <b>Ctrl-L</b> za izpraznjenje zaslona. + Type <b>help</b> for an overview of available commands. - Vtipkaj <b>pomoč</b> za vpogled v razpožljive ukaze. + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Pošlji kovance + Send Beans + - Coin Control Features - Funkcije kontrole kovancev + Bean Control Features + Inputs... - Vnosi... + automatically selected - samodejno izbran + Insufficient funds! - Premalo sredstev! + Quantity: - Količina: + 0 - 0 + Bytes: - Biti: + Amount: - Znesek: + Iznos: @@ -1670,296 +1940,394 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". 0.00 BC - 123.456 BC {0.00 ?} + Priority: - Prednostno mesto: + medium - srednje + Fee: - Provizija: + Low Output: - Nizek output: + no - ne + After Fee: - Po proviziji: + Change - Sprememba + custom change address - izbira spremembe naslova + Send to multiple recipients at once - Pošlji več prejemnikom hkrati + Pošalji k nekoliko primatelja odjednom Add &Recipient - Dodaj &prejemnika + &Dodaj primatelja Remove all transaction fields - Odstrani vsa polja transakcij + Clear &All - Počisti &vse + Obriši &sve Balance: - Dobroimetje: + Stanje: 123.456 BC - 123.456 BC + Confirm the send action - Potrdi odlivno dejanje + Potvrdi akciju slanja S&end - P&ošlji + &Pošalji - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Vnesite BitBean naslov (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Copy quantity - Kopiraj količino + Copy amount - Kopiraj količino + Kopiraj iznos Copy fee - Kopiraj provizijo + Copy after fee - Kopiraj po proviziji + Copy bytes - Kopiraj bite + Copy priority - Kopiraj prednostno mesto + Copy low output - Kopiraj nizek output + Copy change - Kopiraj spremembo + <b>%1</b> to %2 (%3) - <b>%1</b> to %2 (%3) + - Confirm send coins - Potrdi odliv kovancev + Confirm send beans + Are you sure you want to send %1? - Ali ste prepričani, da želite poslati %1? + and - in + The recipient address is not valid, please recheck. - Prejemnikov naslov ni veljaven, prosimo če ga ponovno preverite. + Adresa primatelja je nevaljala, molimo provjerite je ponovo. The amount to pay must be larger than 0. - Količina za plačilo mora biti večja od 0. + Iznos mora biti veći od 0. The amount exceeds your balance. - Količina presega vaše dobroimetje + Iznos je veći od stanja računa. The total exceeds your balance when the %1 transaction fee is included. - Seštevek presega vaše stanje na računu ko je vključen %1 provizije na transakcijo. + 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. - Najdena kopija naslova, možnost pošiljanja na vsakega izmed naslov le enkrat ob pošiljanju. + Pronašli smo adresu koja se ponavlja. U svakom plaćanju program može svaku adresu koristiti samo jedanput. Error: Transaction creation failed. - Napaka: Ustvarjanje transakcije spodletelo + - 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 je bila zavrnjena. To se je lahko zgodilo, če so bili kovanci v vaši denarnici že zapravljeni, na primer če ste uporabili kopijo wallet.dat in so bili kovanci zapravljeni v kopiji, a tu še niso bili označeni kot zapravljeni. + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - OPOZORILO: Neveljaven BitBean naslov + (no label) - (ni oznake) + (bez oznake) WARNING: unknown change address - OPOZORILO: neznana sprememba naslova + - SendCoinsEntry + SendBeansEntry - + Form - Oblika + Oblik - + A&mount: - K&oličina: + &Iznos: Pay &To: - Prejemnik &plačila: + &Primatelj plaćanja: - + Enter a label for this address to add it to your address book - Vnesite oznako za ta naslov, ki bo shranjena v imenik + Unesite oznaku za ovu adresu kako bi ju dodali u vaš adresar &Label: - &Oznaka: + &Oznaka: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Naslov kamor želite poslati plačilo (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Choose address from address book - Izberite naslov iz imenika + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Zalijepi adresu iz međuspremnika + Alt+P + Alt+P + + + + Remove this recipient + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Send Coins + Slanje novca + + + Amount: + Iznos: + + + Send to multiple recipients at once + Pošalji k nekoliko primatelja odjednom + + + Add &Recipient + &Dodaj primatelja + + + Clear &All + Obriši &sve + + + Balance: + Stanje: + + + Confirm the send action + Potvrdi akciju slanja + + + S&end + &Pošalji + + + Copy amount + Kopiraj iznos + + + Confirm send coins + Potvrdi slanje novca + + + 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. + + + (no label) + (bez oznake) + + + + SendCoinsEntry + + A&mount: + &Iznos: + + + Pay &To: + &Primatelj plaćanja: + + + 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: + + Alt+A - Alt+A + Alt+A - Paste address from clipboard - Prilepi naslov iz odložišča + Zalijepi adresu iz međuspremnika - Alt+P - Alt+P - - - - Remove this recipient - Odstrani tega prejemnika - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Vnesite BitBean naslov (npr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message - Podpisi - Podpiši/potrdi sporočilo + &Sign Message - &Podpiši sporočilo + &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. - Sporočila lahko podpišete s svojim naslovom, da dokažete lastništvo. Bodite previdni, saj vas lahko phishing napadi skušajo pretentati v to, da jim prepišete svojo identiteto. Podpisujte le jasne in razločne izjave, s katerimi se strinjate. + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Naslov s katerim želite podpisati sporočilo (npr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Choose an address from the address book - Izberite naslov iz imenika + @@ -1970,7 +2338,7 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". Paste address from clipboard - Prilepi naslov iz odložišča + Zalijepi adresu iz međuspremnika @@ -1980,76 +2348,76 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". Enter the message you want to sign here - Vnesite sporočilo, ki ga želite podpisati + Upišite poruku koju želite potpisati ovdje Copy the current signature to the system clipboard - Kopiraj trenutno izbrani naslov v odložišče + Sign the message to prove you own this BitBean address - Podpišite sporočilo, kot dokazilo lastništva BitBean naslova + Reset all sign message fields - Ponastavite vse polja sporočila s podpisom + Clear &All - Počisti &vse + Obriši &sve &Verify Message - &Potrdi sporočilo + &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. - Vnesite naslov za podpis, sporočilo (poskribte da točno skopirate presledke med vrsticami, črkami, itd.) in podpis spodaj, da potrdite sporočilo Da se ognete napadom posrednika, bodite pozorni, da ne boste v podpisu ugledali več, kot je v podpisanemu sporočilu samem. + The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Naslov s katerim je bilo podpisano sporočilo (npr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Verify the message to ensure it was signed with the specified BitBean address - Potrdite sporočilo, da zagotovite, da je bilo podpisano z izbranim BitBean naslovom + Reset all verify message fields - Ponastavite vse polja sporočila potrditve + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Vnesite BitBean naslov (npr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Click "Sign Message" to generate signature - Kliknite "Podpiši sporočilo" za ustvaritev podpisa + Enter BitBean signature - Vnesite BitBean podpis + The entered address is invalid. - Vnešeni naslov ni veljaven. + @@ -2057,59 +2425,59 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". Please check the address and try again. - Prosimo preverite naslov in poizkusite znova. + The entered address does not refer to a key. - Vnešen naslov se ne nanaša na ključ. + Wallet unlock was cancelled. - Odklepanje denarnice je bilo prekinjeno. + Otključavanje novčanika je otkazano. 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. + Poruka je potpisana. 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. - Podpis se ni ujemal s povzetkom sporočila. + Message verification failed. - Pregledovanje sporočila spodletelo. + Message verified. - Sporočilo pregledano. + @@ -2117,42 +2485,50 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". Open until %1 - Odpri enoto %1 + Otvoren do %1 Open for %n block(s) - Odprt za %n blokOdprt za %n blokaOdprt za %n blokovOdprt za %n blokov + + + + + conflicted - sporen + %1/offline - %1/offline + %1 nije dostupan %1/unconfirmed - %1/nepotrjeno + %1/nepotvrđeno %1 confirmations - %1 potrdil + %1 potvrda Status - Stanje + Status , broadcast through %n node(s) - , predvajanje skozi %n vozlišče, predvajanje skozi %n vozlišči, predvajanje skozi %n vozlišč, predvajanje skozi %n vozlišč + + + + + @@ -2167,26 +2543,26 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". Generated - Generirano + Generiran From - Pošiljatelj + Od To - Prejemnik + Za own address - lasten naslov + vlastita adresa @@ -2200,17 +2576,21 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". Credit - Kredit + Uplaćeno matures in %n more block(s) - dozori čez %n blokdozori čez %n blokadozori čez %n blokovdozori čez %n blokov + + + + + not accepted - ni bilo sprejeto + Nije prihvaćeno @@ -2218,27 +2598,27 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". Debit - Dolg + Zaduženje Transaction fee - Provizija transakcije + Naknada za transakciju Net amount - Neto količina + Neto iznos Message - Sporočilo + Poruka Comment - Opomba + Komentar @@ -2247,13 +2627,13 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". - Generated coins must mature 110 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. - Ustvarjeni kovanci morajo zoreti 510 blokov preden so lahko potrošeni. Ko ustvarite ta blok, je predvajan po mreži in nanizan v verigo blokov. Če mu priključitev na verigo spodleti, se bo njegovo stanje spremenilo v "ni sprejet" in ne bo razpoložljiv. To se lahko občasno zgodi, če drugo vozlišče ustvari blok par sekund pred vami. + Generated beans must mature 110 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 + @@ -2263,45 +2643,45 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". Inputs - Vnosi + Unosi Amount - Količina + Iznos true - pravilno + false - nepravilno + , has not been successfully broadcast yet - , še ni bil uspešno predvajan + , još nije bio uspješno emitiran unknown - neznano + nepoznato TransactionDescDialog - + Transaction details - Podrobnosti transakcije + Detalji transakcije This pane shows a detailed description of the transaction - To podokno prikazuje podroben opis transakcije + Ova panela prikazuje detaljni opis transakcije @@ -2314,107 +2694,115 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". Type - Vrsta + Tip Address - Naslov + Adresa Amount - Količina + Iznos Open until %1 - Odpri enoto %1 + Otvoren do %1 Confirmed (%1 confirmations) - Potrjeno (%1 potrdil) + Potvrđen (%1 potvrda) Open for %n more block(s) - Odprt še %n blokOdprt še %n blokaOdprt še %n blokovOdprt še %n blokov + + + + + Offline - Nepovezan + Unconfirmed - Nepotrjeno + Confirming (%1 of %2 recommended confirmations) - Potrjuje (%1 od %2 priporočenih potrditev) + Conflicted - Sporen + Immature (%1 confirmations, will be available after %2) - Nezrel (%1 potrditev, na voljo bo po %2) + 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! + 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, toda ne sprejeto + Generirano, ali nije prihvaćeno Received with - Prejeto z + Primljeno s Received from - Prejeto od + Primljeno od Sent to - Poslano + Poslano za Payment to yourself - Izplačilo sebi + Plaćanje samom sebi + SPROUT + + + Mined - Minirano + Rudareno (n/a) - (ni na voljo) + (n/d) Transaction status. Hover over this field to show number of confirmations. - Stanje transakcije. Zapeljite z miško čez to polje za prikaz števila potrdil. + Status transakcije Date and time that the transaction was received. - Datum in čas, ko je transakcija bila prejeta. + Datum i vrijeme kad je transakcija primljena @@ -2424,12 +2812,12 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". Destination address of transaction. - Naslov prejemnika transakcije. + Odredište transakcije Amount removed from or added to balance. - Količina odlita ali prilita dobroimetju. + Iznos odbijen od ili dodan k saldu. @@ -2438,874 +2826,1064 @@ Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". All - Vse + Sve Today - Danes + 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 Data + + + + + Comma separated file (*.csv) + Datoteka podataka odvojenih zarezima (*.csv) + + + + Confirmed + Potvrđeno + + + + Date + Datum + + + + Type + Tip + + + + Label + Oznaka + + + + Address + Adresa + + + + Amount + Iznos + + + + ID + ID + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + Raspon: + + + + to + za + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Greška + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + + + + + BitBean version + + + + + Usage: + Upotreba: + + + + Send command to -server or BitBeand + + + + + List commands + Prikaži komande + + + + Get help for a command + Potraži pomoć za komandu + + + + BitBean + + + + + Options: + Postavke: + + + + This help message + Ova poruka za pomoć + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Odredi direktorij za datoteke + + + + Specify wallet file (within data directory) + + + + + Set database cache size in megabytes (default: 25) + Postavi cache za bazu podataka u MB (zadano:25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Odredi vremenski prozor za spajanje na mrežu u milisekundama (ugrađeni izbor: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + - This week - Ta teden + Allow DNS lookups for -addnode, -seednode and -connect + Dozvoli DNS upite za dodavanje nodova i povezivanje - This month - Ta mesec + Listen for connections on <port> (default: 15714 or testnet: 25714) + - Last month - Prejšnji mesec + Maintain at most <n> connections to peers (default: 125) + Održavaj najviše <n> veza sa članovima (default: 125) - This year - To leto + 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 - Range... - Območje ... + Connect only to the specified node(s) + Poveži se samo sa određenim nodom - - Received with - Prejeto z + + Connect to a node to retrieve peer addresses, and disconnect + - - Sent to - Poslano + + Specify your own public address + - - To yourself - Samemu sebi + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - Mined - Minirano + Discover own IP address (default: 1 when listening and no -externalip) + - Other - Drugo + Find peers using internet relay chat (default: 0) + - - Enter address or label to search - Vnesite naslov ali oznako za iskanje + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Min amount - Minimalna količina + + Bind to given address. Use [host]:port notation for IPv6 + - - Copy address - Kopiraj naslov + + Find peers using DNS lookup (default: 1) + - Copy label - Kopiraj oznako + Stake your beans to support network and gain reward (default: 1) + - Copy amount - Kopiraj količino + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Copy transaction ID - Kopiraj ID transakcije + + Sync checkpoints policy (default: strict) + - Edit label - Uredi oznako + Threshold for disconnecting misbehaving peers (default: 100) + Prag za odspajanje članova koji se čudno ponašaju (default: 100) - Show transaction details - Prikaži podrobnosti transakcije + 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) - - Export Transaction Data - Izvozi podatke transakcij + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - Comma separated file (*.csv) - Datoteka s podatki, ločenimi z vejico (*.csv) + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - Confirmed - Potrjeno + + Use UPnP to map the listening port (default: 1 when listening) + Pokušaj koristiti UPnP da otvoriš port za uslugu (default: 1 when listening) - Date - Datum + Use UPnP to map the listening port (default: 0) + Pokušaj koristiti UPnP da otvoriš port za uslugu (default: 0) - Type - Vrsta + Detach block and address databases. Increases shutdown time (default: 0) + - - Label - Oznaka + + Fee per KB to add to transactions you send + - Address - Naslov + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Amount - Količina + + Accept command line and JSON-RPC commands + Prihvati komande iz tekst moda i JSON-RPC - ID - ID + Run in the background as a daemon and accept commands + Izvršavaj u pozadini kao uslužnik i prihvaćaj komande - - Error exporting - Napaka pri izvažanju podatkov + + Use the test network + Koristi test mrežu - - Could not write to file %1. - Napaka pri pisanju na datoteko %1. + + Output extra debugging information. Implies all other -debug* options + - - Range: - Območje: + + Output extra network debugging information + - - to - za + + Prepend debug output with timestamp + - - - WalletModel - - Sending... - Pošiljanje... + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - - bitcoin-core - - BitBean version - BitBean različica + + Send trace/debug info to console instead of debug.log file + Šalji trace/debug informacije na konzolu umjesto u debug.log datoteku - Usage: - Uporaba: + Send trace/debug info to debugger + - Send command to -server or BitBeand - Pošlji ukaz na -server ali Testoind + Username for JSON-RPC connections + Korisničko ime za JSON-RPC veze - List commands - Prikaži ukaze + Password for JSON-RPC connections + Lozinka za JSON-RPC veze - Get help for a command - Prikaži pomoč za ukaz + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - Options: - Možnosti: + Allow JSON-RPC connections from specified IP address + Dozvoli JSON-RPC povezivanje s određene IP adrese - - Specify configuration file (default: BitBean.conf) - Določi konfiguracijsko datoteko (privzeto: BitBean.conf) + + 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) - Specify pid file (default: BitBeand.pid) - Določi pid datoteko (privzeto: BitBean.pid) + 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) - - Specify wallet file (within data directory) - Določi datoteko denarnice (znotraj imenika s podatki) + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + - - Specify data directory - Določi podatkovni imenik + + Require a confirmations for change (default: 0) + - - Set database cache size in megabytes (default: 25) - Nastavi pomnilnik podatkovne zbirke v megabajtih (privzeto: 25) + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - - Set database disk log size in megabytes (default: 100) - Nastavi velikost zapisa podatkovne baze na disku v megabajtih (privzeto: 100) + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - Sprejmi povezave na <port> (privzeta vrata: 15714 ali testnet: 25714) + + Upgrade wallet to latest format + Nadogradite novčanik u posljednji format. - Maintain at most <n> connections to peers (default: 125) - Obdrži maksimalno število <n> povezav (privzeto: 125) + Set key pool size to <n> (default: 100) + Podesi memorijski prostor za ključeve na <n> (ugrađeni izbor: 100) - - Connect to a node to retrieve peer addresses, and disconnect - Poveži se na vozlišče da pridobiš naslove soležnikov in prekini povezavo + + Rescan the block chain for missing wallet transactions + Ponovno pretraži lanac blokova za transakcije koje nedostaju - Specify your own public address - Določite vaš lasten javni naslov + Attempt to recover private keys from a corrupt wallet.dat + - - Bind to given address. Use [host]:port notation for IPv6 - Naveži na dani naslov. Uporabi [host]:port ukaz za IPv6 + + How many blocks to check at startup (default: 2500, 0 = all) + - - Stake your coins to support network and gain reward (default: 1) - Deleži svoje kovance za podporo omrežja in pridobi nagrado (default: 1) + + How thorough the block verification is (0-6, default: 1) + - - Threshold for disconnecting misbehaving peers (default: 100) - Prag za prekinitev povezav s slabimi odjemalci (privzeto: 1000) + + Imports blocks from external blk000?.dat file + - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Število sekund preden se ponovno povežejo neodzivni soležniki (privzeto: 86400) + Block creation options: + Opcije za kreiranje bloka: - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - Prišlo je do napake pri nastavljanju RPC porta %u za vhodne povezave na IPv4: %s + + Set minimum block size in bytes (default: 0) + Podesite minimalnu veličinu bloka u bajtovima (default: 0) - - Detach block and address databases. Increases shutdown time (default: 0) - Loči podatkovne baze blokov in naslovov. Podaljša čas zaustavitve (privzeto: 0) + + Set maximum block size in bytes (default: 250000) + - - 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 je bila zavrnjena. To se je lahko zgodilo, če so bili kovanci v vaši denarnici že zapravljeni, na primer če ste uporabili kopijo wallet.dat in so bili kovanci zapravljeni v kopiji, a tu še niso bili označeni kot zapravljeni. + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - 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 zahteva transakcijsko provizijo vsaj %s zaradi svoje količine, kompleksnosti ali uporabo sredstev, ki ste jih prejeli pred kratkim. + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - Sprejmi povezave na <port> (privzeta vrata: 15714 ali testnet: 25714) + + Use OpenSSL (https) for JSON-RPC connections + Koristi OpenSSL (https) za JSON-RPC povezivanje - - Accept command line and JSON-RPC commands - Sprejmi ukaze iz ukazne vrstice in JSON-RPC + + Server certificate file (default: server.cert) + Uslužnikov SSL certifikat (ugrađeni izbor: server.cert) - - Error: Transaction creation failed - Napaka: Ustvarjanje transakcije spodletelo + + Server private key (default: server.pem) + Uslužnikov privatni ključ (ugrađeni izbor: server.pem) - - Error: Wallet locked, unable to create transaction - Napaka: Zaklenjena denarnica, ni mogoče opraviti transakcije + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Importing blockchain data file. - Uvažanje blockchain podatkovne datoteke. + + Invalid amount for -paytxfee=<amount>: '%s' + Nevaljali iznos za opciju -paytxfee=<amount>: '%s' - Importing bootstrap blockchain data file. - Uvažanje podatkovne datoteke verige blokov. + 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. - - Run in the background as a daemon and accept commands - Teci v ozadju in sprejemaj ukaze + + Invalid amount for -mininput=<amount>: '%s' + - Use the test network - Uporabi testno omrežje + Wallet %s resides outside data directory %s. + - - Accept connections from outside (default: 1 if no -proxy or -connect) - Sprejmi zunanje povezave (privzeto: 1 če ni nastavljen -proxy ali -connect) + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - Prišlo je do napake pri nastavljanju RPC porta %u za vhodne povezave na IPv6: %s + + Verifying database integrity... + - + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - Napaka pri zagonu podatkovne baze okolja %s! Za popravilo, NAPRAVITE VARNOSTNO KOPIJO IMENIKA, in iz njega odstranite vse razen datoteke wallet.dat + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - Nastavi maksimalno velikost visoke-prioritete/nizke-provizije transakcij v bajtih (privzeto: 27000) + + Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - Opozorilo: -paytxfee je nastavljen zelo visoko! To je transakcijska provizija, ki jo boste plačali ob pošiljanju transakcije. + + wallet.dat corrupt, salvage failed + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - Opozorilo: Prosimo preverite svoj datum in čas svojega računalnika! Če je vaša ura nastavljena napačno BitBean ne bo deloval. + + Unknown -socks proxy version requested: %i + - - 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. + + Unknown network specified in -onlynet: '%s' + - - 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. - Opozorilo: wallet.dat je pokvarjena, podatki rešeni! Originalna wallet.dat je bila shranjena kot denarnica. {timestamp}.bak v %s; če imate napačno prikazano stanje na računu ali v transakcijah prenovite datoteko z varnostno kopijo. + + Invalid -proxy address: '%s' + Nevaljala -proxy adresa: '%s' - - Attempt to recover private keys from a corrupt wallet.dat - Poizkusi rešiti zasebni ključ iz pokvarjene wallet.dat + + Invalid -tor address: '%s' + - - Block creation options: - Možnosti ustvarjanja blokov: + + Cannot resolve -bind address: '%s' + - - Connect only to the specified node(s) - Poveži se samo na določena vozlišče(a) + + Failed to listen on any port. Use -listen=0 if you want this. + - - Discover own IP address (default: 1 when listening and no -externalip) - Odkrij svoj IP naslov (privzeto: 1 ob poslušanju, ko ni aktiviran -externalip) + + Cannot resolve -externalip address: '%s' + - - Failed to listen on any port. Use -listen=0 if you want this. - Poslušanje za vrata je spodletelo. Če želite lahko uporabite ukaz -listen=0. + + Invalid amount for -reservebalance=<amount> + - - Find peers using DNS lookup (default: 1) - Najdi soležnike z uporabno DNS vpogleda (privzeto: 1) + + Unable to sign checkpoint, wrong checkpointkey? + + - - Sync checkpoints policy (default: strict) - Sinhronizacija načina točk preverjanja (privzeto: strogo) + + Loading block index... + Učitavanje indeksa blokova... - - Invalid -tor address: '%s' - Neveljaven -tor naslov: '%s' + + Error loading blkindex.dat + - - Invalid amount for -reservebalance=<amount> - Neveljavni znesek za -reservebalance=<amount> + + Loading wallet... + Učitavanje novčanika... - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Največji sprejemni medpomnilnik glede na povezavo, <n>*1000 bytov (privzeto: 5000) + + Error loading wallet.dat: Wallet corrupted + Greška kod učitavanja wallet.dat: Novčanik pokvaren - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - Največji oddajni medpomnilnik glede na povezavo, <n>*1000 bytov (privzeto: 1000) + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Poveži se samo z vozlišči v omrežju <net> (IPv4, IPv6 in Tor) + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Output extra debugging information. Implies all other -debug* options - Output dodatnih informacij razhroščevanja. Obsega vse druge -debug* možnosti. + + Wallet needed to be rewritten: restart BitBean to complete + - Output extra network debugging information - Output dodatnih informacij razhroščevanja omrežja. + Error loading wallet.dat + Greška kod učitavanja wallet.dat - Prepend debug output with timestamp - Opremi output rahroščevanja s časovnim žigom. + Cannot downgrade wallet + Nije moguće novčanik vratiti na prijašnju verziju. - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL možnosti: (glejte Bitcoin Wiki za navodla, kako nastaviti SSL) + + Cannot initialize keypool + - - Select the version of socks proxy to use (4-5, default: 5) - Izberi verzijo socks proxya za uporabo (4-5, privzeto: 5) + + Cannot write default address + Nije moguće upisati zadanu adresu. - - 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 + + Rescanning... + Rescaniranje - Send trace/debug info to debugger - Pošlji sledilne/razhroščevalne informacije v razhroščevalnik + Importing blockchain data file. + - - Set maximum block size in bytes (default: 250000) - Nastavi največjo velikost bloka v bajtih (privzeto: 250000) + + Importing bootstrap blockchain data file. + - - Set minimum block size in bytes (default: 0) - Nastavi najmanjšo velikost bloka v bajtih (privzeto: 0) + + Loading addresses... + Učitavanje adresa... - - Shrink debug.log file on client startup (default: 1 when no -debug) - Skrči debug.log datoteko ob zagonu aplikacije (privzeto: 1 ko ni aktiviran -debug) + + Error: could not start node + - - Specify connection timeout in milliseconds (default: 5000) - Določi čas pavze povezovanja v milisekundah (privzeto: 5000) + + Done loading + Učitavanje gotovo - - Unable to sign checkpoint, wrong checkpointkey? - - Ni bilo mogoče vpisati točke preverjanja, napačen ključ za točko preverjanja? - + + Unable to bind to %s on this computer. BitBean is probably already running. + - - Use UPnP to map the listening port (default: 0) - Uporabi UPnP za mapiranje vrat poslušanja (privzeto: 0) + + 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) - - Use UPnP to map the listening port (default: 1 when listening) - Uporabi UPnP za mapiranje vrat poslušanja (privzeto: 1 med poslušanjem) + + Error: Wallet locked, unable to create transaction + - - Use proxy to reach tor hidden services (default: same as -proxy) - Uporabi proxy za povezavo s skritimi storitvami tora (privzeto: isto kot -proxy) + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Username for JSON-RPC connections - Uporabniško ime za JSON-RPC povezave + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Verifying database integrity... - Potrdite neoporečnost baze podatkov... + + Error: Transaction creation failed + - - WARNING: syncronized checkpoint violation detected, but skipped! - OPOZORILO: zaznana je bila kršitev s sinhronizirami točkami preverjanja, a je bila izpuščena. + + Sending... + - Warning: Disk space is low! - Opozorilo: Malo prostora na disku! + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Warning: This version is obsolete, upgrade required! - Opozorilo: ta različica je zastarela, potrebna je nadgradnja! + + Invalid amount + Nevaljali iznos za opciju - - wallet.dat corrupt, salvage failed - wallet.dat poškodovana, neuspešna obnova + + Insufficient funds + Nedovoljna sredstva - - Password for JSON-RPC connections - Geslo za JSON-RPC povezave + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - %s, nastaviti morate rpcgeslo v konfiguracijski datoteki: - %s -Priporočeno je, da uporabite naslednje naključno geslo: -rpcuser=BitBeanrpc -rpcpassword=%s -(tega gesla si vam ni potrebno zapomniti) -Uporabniško ime in geslo NE SMETA biti ista. -Če datoteka ne obstaja, jo ustvarite z lastniškimi dovoljenji za datoteke. -Prav tako je priporočeno, da nastavite alernotify, tkako da vas opozori na probleme; -na primer: alertnotify=echo %%s | mail -s "BitBean Alarm" admin@foo.com - + + Warning: This version is obsolete, upgrade required! + - - Find peers using internet relay chat (default: 0) - Najdi soležnike prek irca (privzeto: 0) + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - Sinhroniziraj čas z drugimi vozlišči. Onemogoči, če je čas na vašem sistemu točno nastavljen, npr. sinhroniziranje z NTP (privzeto: 1) + + Warning: Disk space is low! + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - Ob ustvarjanju transakcij, prezri vnose z manjšo vrednostjo kot (privzeto: 0.01) + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Allow JSON-RPC connections from specified IP address - Dovoli JSON-RPC povezave z določenega IP naslova + Usage: + Upotreba: - - Send commands to node running on <ip> (default: 127.0.0.1) - Pošlji ukaze vozlišču na <ip> (privzet: 127.0.0.1) + List commands + Prikaži komande - - Execute command when the best block changes (%s in cmd is replaced by block hash) - Izvrši ukaz, ko se najboljši blok spremeni (%s je v cmd programu nadomeščen z zgoščenimi bloki). + Get help for a command + Potraži pomoć za komandu - - 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) + Options: + Postavke: - - Require a confirmations for change (default: 0) - Zahtevaj potrditve za spremembo (default: 0) + Specify data directory + Odredi direktorij za datoteke - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - Zahtevaj da transakcijske skripte uporabljajo operatorje canonical PUSH (privzeto: 1) + Set database cache size in megabytes (default: 25) + Postavi cache za bazu podataka u MB (zadano:25) - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - Izvrši ukaz, ko je prejet relevanten alarm (%s je v cmd programu nadomeščen s sporočilom) + Maintain at most <n> connections to peers (default: 125) + Održavaj najviše <n> veza sa članovima (default: 125) - - Upgrade wallet to latest format - Posodobi denarnico v najnovejši zapis + Threshold for disconnecting misbehaving peers (default: 100) + Prag za odspajanje članova koji se čudno ponašaju (default: 100) - - Set key pool size to <n> (default: 100) - Nastavi velikost ključa bazena na <n> (privzeto: 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) - - Rescan the block chain for missing wallet transactions - Ponovno preglej verigo blokov za manjkajoče transakcije denarnice + Accept command line and JSON-RPC commands + Prihvati komande iz tekst moda i JSON-RPC - - How many blocks to check at startup (default: 2500, 0 = all) - Koliko blokov naj preveri ob zagonu aplikacije (privzeto: 2500, 0 = vse) + Run in the background as a daemon and accept commands + Izvršavaj u pozadini kao uslužnik i prihvaćaj komande - - How thorough the block verification is (0-6, default: 1) - Kako temeljito naj bo preverjanje blokov (0-6, privzeto: 1) + Use the test network + Koristi test mrežu - - Imports blocks from external blk000?.dat file - Uvozi bloke iz zunanje blk000?.dat datoteke + 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. - - Use OpenSSL (https) for JSON-RPC connections - Uporabi OpenSSL (https) za JSON-RPC povezave + Block creation options: + Opcije za kreiranje bloka: - - Server certificate file (default: server.cert) - Datoteka potrdila strežnika (privzeta: server.cert) + Connect only to the specified node(s) + Poveži se samo sa određenim nodom - - Server private key (default: server.pem) - Zasebni ključ strežnika (privzet: server.pem) + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL postavke: (za detalje o podešavanju SSL opcija vidi Bitcoin Wiki) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Dovoljeni kodirniki (privzeti: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Send trace/debug info to console instead of debug.log file + Šalji trace/debug informacije na konzolu umjesto u debug.log datoteku - - Error: Wallet unlocked for staking only, unable to create transaction. - + Set minimum block size in bytes (default: 0) + Podesite minimalnu veličinu bloka u bajtovima (default: 0) - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - OPOZORILO: Najdene so bile neveljavne točke preverjanja! Prikazane transakcije so morda napačne! Poiščite novo različico aplikacije ali pa obvestite razvijalce. + Specify connection timeout in milliseconds (default: 5000) + Odredi vremenski prozor za spajanje na mrežu u milisekundama (ugrađeni izbor: 5000) - - This help message - To sporočilo pomoči + Use UPnP to map the listening port (default: 0) + Pokušaj koristiti UPnP da otvoriš port za uslugu (default: 0) - - Wallet %s resides outside data directory %s. - Denarnica %s se nahaja zunaj datotečnega imenika %s. + Use UPnP to map the listening port (default: 1 when listening) + Pokušaj koristiti UPnP da otvoriš port za uslugu (default: 1 when listening) - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - Ni bilo mogoče najti podatkovnega imenika %s. Aplikacija BitBean je verjetno že zagnana. + Username for JSON-RPC connections + Korisničko ime za JSON-RPC veze - - BitBean - BitBean + Password for JSON-RPC connections + Lozinka za JSON-RPC veze - - Unable to bind to %s on this computer (bind returned error %d, %s) - Na tem računalniku je bilo nemogoče vezati na %s (bind returned error %d, %s) + Allow JSON-RPC connections from specified IP address + Dozvoli JSON-RPC povezivanje s određene IP adrese - - Connect through socks proxy - Poveži se skozi socks proxy + 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) - - Allow DNS lookups for -addnode, -seednode and -connect - Omogoči DNS povezave za -addnode, -seednode in -connect + 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) - - Loading addresses... - Nalaganje naslovov ... + Upgrade wallet to latest format + Nadogradite novčanik u posljednji format. - - Error loading blkindex.dat - Napaka pri nalaganju blkindex.dat + Set key pool size to <n> (default: 100) + Podesi memorijski prostor za ključeve na <n> (ugrađeni izbor: 100) - - Error loading wallet.dat: Wallet corrupted - Napaka pri nalaganju wallet.dat: denarnica pokvarjena + Rescan the block chain for missing wallet transactions + Ponovno pretraži lanac blokova za transakcije koje nedostaju - - Error loading wallet.dat: Wallet requires newer version of BitBean - Napaka pri nalaganju wallet.dat: denarnica zahteva novejšo verzijo BitBean + Use OpenSSL (https) for JSON-RPC connections + Koristi OpenSSL (https) za JSON-RPC povezivanje - - Wallet needed to be rewritten: restart BitBean to complete - Denarnica mora biti prepisana: ponovno odprite BitBean za dokončanje + Server certificate file (default: server.cert) + Uslužnikov SSL certifikat (ugrađeni izbor: server.cert) - - Error loading wallet.dat - Napaka pri nalaganju wallet.dat + Server private key (default: server.pem) + Uslužnikov privatni ključ (ugrađeni izbor: server.pem) - - Invalid -proxy address: '%s' - Neveljaven -proxy naslov: '%s' + This help message + Ova poruka za pomoć - - Unknown network specified in -onlynet: '%s' - Neznano omrežje določeno v -onlynet: '%s' + 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) - - Unknown -socks proxy version requested: %i - Zahtevana neznana -socks proxy različica: %i + Allow DNS lookups for -addnode, -seednode and -connect + Dozvoli DNS upite za dodavanje nodova i povezivanje - - Cannot resolve -bind address: '%s' - Ni mogoče določiti -bind naslova: '%s' + Loading addresses... + Učitavanje adresa... - - Cannot resolve -externalip address: '%s' - Ni mogoče določiti -externalip naslova: '%s' + Error loading wallet.dat: Wallet corrupted + Greška kod učitavanja wallet.dat: Novčanik pokvaren - - Invalid amount for -paytxfee=<amount>: '%s' - Neveljavni znesek za -paytxfee=<amount>: '%s' + Error loading wallet.dat + Greška kod učitavanja wallet.dat - - Error: could not start node - Napaka: ni mogoče zagnati vozlišča + Invalid -proxy address: '%s' + Nevaljala -proxy adresa: '%s' - - Sending... - Pošiljanje... + Invalid amount for -paytxfee=<amount>: '%s' + Nevaljali iznos za opciju -paytxfee=<amount>: '%s' - Invalid amount - Neveljavna količina + Nevaljali iznos za opciju - Insufficient funds - Premalo sredstev + Nedovoljna sredstva - Loading block index... - Nalaganje indeksa blokov ... + Učitavanje indeksa blokova... - 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. BitBean is probably already running. - Navezava v %s na tem računalniku ni mogoča BitBean aplikacija je verjetno že zagnana. - - - - Fee per KB to add to transactions you send - Provizija na KB ki jo morate dodati transakcijam, ki jih pošiljate - - - - Invalid amount for -mininput=<amount>: '%s' - Neveljavni znesek za -miniput=<amount>: '%s' + Unesite nod s kojim se želite spojiti and attempt to keep the connection open - Loading wallet... - Nalaganje denarnice ... + Učitavanje novčanika... - Cannot downgrade wallet - Ne morem - - - - Cannot initialize keypool - Ni mogoče zagnati keypoola + Nije moguće novčanik vratiti na prijašnju verziju. - Cannot write default address - Ni mogoče zapisati privzetega naslova + Nije moguće upisati zadanu adresu. - Rescanning... - Ponovno pregledovanje ... + Rescaniranje - Done loading - Nalaganje končano - - - - To use the %s option - Za uporabo %s opcije + Učitavanje gotovo - 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. - Nastaviti morate rpcpassword=<password> v konfiguracijski datoteki: -%s -Če datoteka ne obstaja, jo ustvarite z lastniškimi dovoljenji za datoteke. + Greška - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_hu.qm b/src/qt/locale/bitbean_hu.qm similarity index 51% rename from src/qt/locale/bitcoin_hu.qm rename to src/qt/locale/bitbean_hu.qm index ca97fe6..b438d32 100644 Binary files a/src/qt/locale/bitcoin_hu.qm and b/src/qt/locale/bitbean_hu.qm differ diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitbean_hu.ts similarity index 58% rename from src/qt/locale/bitcoin_hu.ts rename to src/qt/locale/bitbean_hu.ts index 2f5bc86..1455afa 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitbean_hu.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean A BitBean-ról - + <b>BitBean</b> version <b>BitBean</b> verzió - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - 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. - + Ez egy kísérleti program. MIT/X11 szoftverlicenc alatt kiadva, lásd a mellékelt COPYING fájlt vagy a http://www.opensource.org/licenses/mit-license.php weboldalt. @@ -36,47 +48,47 @@ Ez a termék tartalmaz az OpenSSL Project által az OpenSSL Toolkit-hez (http:// AddressBookPage - + Address Book Címjegyzék - + Double-click to edit address or label Kattints duplán a cím vagy címke szerkesztéséhez - + Create a new address Új cím létrehozása - + Copy the currently selected address to the system clipboard A kiválasztott cím másolása a vágólapra - + &New Address &Új Cím - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. Ezek a BitBean-címeid a fizetések fogadásához. Érdemes minden küldőnek egy külön címet létrehozni, hogy könnyebben követhesd személyenként a tranzakciókat. - + &Copy Address &Cím Másolása - + Show &QR Code &QR Kód Mutatása - + Sign a message to prove you own a BitBean address Írj alá egy üzenetet, hogy bizonyíthasd egy BitBean-cím birtoklását @@ -86,12 +98,12 @@ Ez a termék tartalmaz az OpenSSL Project által az OpenSSL Toolkit-hez (http:// &Üzenet Aláírása - + Delete the currently selected address from the list A kiválasztott cím törlése a listáról - + Verify a message to ensure it was signed with a specified BitBean address Hitelesíts egy üzenetet ahhoz, hogy bebizonyosodjon BitBean-cím alapján a feladó kiléte @@ -101,7 +113,7 @@ Ez a termék tartalmaz az OpenSSL Project által az OpenSSL Toolkit-hez (http:// Üzenet &Hitelesítése - + &Delete &Törlés @@ -157,27 +169,27 @@ Ez a termék tartalmaz az OpenSSL Project által az OpenSSL Toolkit-hez (http:// AskPassphraseDialog - + Passphrase Dialog Kulcsszó Párbeszédablak - + Enter passphrase Add meg a jelszót - + New passphrase Új jelszó - + Repeat new passphrase Új jelszó ismét - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. Triviálisan a sendmoney parancs letiltására szolgál, amennyiben az OS felhasználója kompromittálódik. Nem ad valós biztonságot. @@ -232,17 +244,26 @@ Ez a termék tartalmaz az OpenSSL Project által az OpenSSL Toolkit-hez (http:// 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 COINS</b>! - Figyelmeztetés: Ha kódolod a tárcád és elveszíted annak jelszavát, el fogod <b>VESZÍTENI AZ ÖSSZES ÉRMÉDET</b>! + Figyelmeztetés: Ha kódolod a tárcád és elveszíted annak jelszavát, el fogod <b>VESZÍTENI AZ ÖSSZES ÉRMÉDET</b>! - + Are you sure you wish to encrypt your wallet? 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 beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 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. @@ -250,7 +271,7 @@ Ez a termék tartalmaz az OpenSSL Project által az OpenSSL Toolkit-hez (http:// Warning: The Caps Lock key is on! - + @@ -259,12 +280,7 @@ Ez a termék tartalmaz az OpenSSL Project által az OpenSSL Toolkit-hez (http:// Tárca kódolva - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -306,333 +322,579 @@ Ez a termék tartalmaz az OpenSSL Project által az OpenSSL Toolkit-hez (http:// - BitcoinGUI - - - Sign &message... - Üzenet aláírása... - + BeanControlDialog - - Synchronizing with network... - Szinkronizálás a hálózattal... + + Bean Control + - - &Overview - &Áttekintés + + Quantity: + - - Show general overview of wallet - Tárca általános áttekintése + + Bytes: + - - &Transactions - &Tranzakciók + + Amount: + Összeg: - - Browse transaction history - Tranzakciótörténet megtekintése + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - &Kilépés + + Tree mode + - - Quit application - Kilépés + + List mode + - - Show information about BitBean - + + Amount + Összeg - - About &Qt - A &Qt-ról + + Label + Címke - - Show information about Qt - Információk a Qt ról + + Address + Cím - - &Options... - &Opciók... + + Date + Dátum - - &Encrypt Wallet... - Tárca &kódolása... + + Confirmations + - &Backup Wallet... - &Bisztonsági másolat készítése a Tárcáról + Confirmed + Megerősítve - - &Change Passphrase... - Jelszó &megváltoztatása... - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Cím másolása - - &Export... - + + Copy label + Címke másolása - - Send coins to a BitBean address - + + + Copy amount + Összeg másolása - - Modify configuration options for BitBean - + + Copy transaction ID + Tranzakcióazonosító másolása - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - Biztonsági másolat készítése a Tárcáról egy másik helyre + + Copy after fee + - - Change the passphrase used for wallet encryption - Tárcakódoló jelszó megváltoztatása + + Copy bytes + - - &Debug window - &Debug ablak + + Copy priority + - Open debugging and diagnostic console - Hibakereső és diagnosztikai konzol megnyitása + Copy low output + - - &Verify message... - Üzenet &valódiságának ellenőrzése + + Copy change + - - BitBean - + + highest + - - Wallet - Tárca + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - &Mutat / Elrejt + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Fájl + + DUST + - - &Settings - &Beállítások + + yes + - - &Help - &Súgó + + no + - - Tabs toolbar - Fül eszköztár + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [teszthálózat] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + (nincs címke) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + - - Not staking because wallet is locked - + + (change) + + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - - - - - %n second(s) ago - + + Vault + - - &Unlock Wallet... - + + &Overview + &Áttekintés + + + + Show general overview of wallet + Tárca általános áttekintése + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Tranzakciók + + + + Browse transaction history + Tranzakciótörténet megtekintése + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + &Kilépés + + + + Quit application + Kilépés + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + A &Qt-ról + + + + Show information about Qt + Információk a Qt ról + + + + &Options... + &Opciók... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + &Mutat / Elrejt + + + + &Encrypt Wallet... + Tárca &kódolása... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &Bisztonsági másolat készítése a Tárcáról + + + + Backup wallet to another location + Biztonsági másolat készítése a Tárcáról egy másik helyre + + + + &Change Passphrase... + Jelszó &megváltoztatása... + + + + Change the passphrase used for wallet encryption + Tárcakódoló jelszó megváltoztatása + + + + &Unlock Wallet... + + + + + Unlock wallet + Tárca feloldása + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Üzenet aláírása... + + + + &Verify message... + Üzenet &valódiságának ellenőrzése + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + &Debug ablak + + + + Open debugging and diagnostic console + Hibakereső és diagnosztikai konzol megnyitása + + + + &File + &Fájl + + + + &Settings + &Beállítások + + + + &Help + &Súgó + + + + Tabs toolbar + Fül eszköztár + + + + Actions toolbar + + + + + + [testnet] + [teszthálózat] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + Synchronizing with network... + Szinkronizálás a hálózattal... + + + + ~%n block(s) remaining + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + - + %n minute(s) ago - + + + %n hour(s) ago - + + + %n day(s) ago - + + + Up to date - Naprakész + Naprakész Catching up... - Frissítés... + Frissítés... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Tranzakció elküldve. + Tranzakció elküldve. Incoming transaction - Beérkező tranzakció + Beérkező tranzakció @@ -641,7 +903,7 @@ Amount: %2 Type: %3 Address: %4 - Dátum: %1 + Dátum: %1 Összeg: %2 Típus: %3 Cím: %4 @@ -651,341 +913,301 @@ Cím: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Tárca <b>kódolva</b> és jelenleg <b>nyitva</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>. + Tárca <b>kódolva</b> és jelenleg <b>zárva</b>. Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + %n minute(s) - + + + %n hour(s) - + + + %n day(s) - + + + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Hálózati figyelmeztetés + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - + + Not staking because you don't have mature beans + - - Bytes: - + + Not staking + + + + BitcoinGUI - - Amount: - Összeg: + Sign &message... + Üzenet aláírása... - - Priority: - + Synchronizing with network... + Szinkronizálás a hálózattal... - - Fee: - + &Overview + &Áttekintés - - Low Output: - + Show general overview of wallet + Tárca általános áttekintése - - no - + &Transactions + &Tranzakciók - - After Fee: - + Browse transaction history + Tranzakciótörténet megtekintése - - Change: - + E&xit + &Kilépés - - (un)select all - + Quit application + Kilépés - - Tree mode - + About &Qt + A &Qt-ról - - List mode - + Show information about Qt + Információk a Qt ról - - Amount - Összeg + &Options... + &Opciók... - - Label - + &Encrypt Wallet... + Tárca &kódolása... - - Address - Cím + &Backup Wallet... + &Bisztonsági másolat készítése a Tárcáról - - Date - Dátum + &Change Passphrase... + Jelszó &megváltoztatása... - - Confirmations - + Backup wallet to another location + Biztonsági másolat készítése a Tárcáról egy másik helyre - - Confirmed - Megerősítve + Change the passphrase used for wallet encryption + Tárcakódoló jelszó megváltoztatása - - Priority - + &Debug window + &Debug ablak - - Copy address - Cím másolása + Open debugging and diagnostic console + Hibakereső és diagnosztikai konzol megnyitása - - Copy label - Címke másolása + &Verify message... + Üzenet &valódiságának ellenőrzése - - - Copy amount - Összeg másolása + Wallet + Tárca - - Copy transaction ID - Tranzakcióazonosító másolása + &Show / Hide + &Mutat / Elrejt - - Copy quantity - + &File + &Fájl - - Copy fee - + &Settings + &Beállítások - - Copy after fee - + &Help + &Súgó - - Copy bytes - + Tabs toolbar + Fül eszköztár - - Copy priority - + [testnet] + [teszthálózat] - - Copy low output - + Up to date + Naprakész - - Copy change - + Catching up... + Frissítés... - - highest - + Sent transaction + Tranzakció elküldve. - - high - + Incoming transaction + Beérkező tranzakció - - medium-high - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Dátum: %1 +Összeg: %2 +Típus: %3 +Cím: %4 + - - medium - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Tárca <b>kódolva</b> és jelenleg <b>nyitva</b>. - - low-medium - + Wallet is <b>encrypted</b> and currently <b>locked</b> + Tárca <b>kódolva</b> és jelenleg <b>zárva</b>. + + + ClientModel - - low - + + Network Alert + Hálózati figyelmeztetés + + + CoinControlDialog - - lowest - + Amount: + Összeg: - - DUST - + Amount + Összeg - - yes - + Address + Cím - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Date + Dátum - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Confirmed + Megerősítve - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Copy address + Cím másolása - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy label + Címke másolása - - - (no label) - (nincs címke) + Copy amount + Összeg másolása - - change from %1 (%2) - + Copy transaction ID + Tranzakcióazonosító másolása - - (change) - + (no label) + (nincs címke) EditAddressDialog - + Edit Address Cím szerkesztése @@ -997,7 +1219,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1007,7 +1229,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1037,7 +1259,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1053,98 +1275,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Használat: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + 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. Fee 5.00 recommended. - - - - + Pay transaction &fee Tranzakciós &díj fizetése - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1154,7 +1376,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1164,12 +1386,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1179,7 +1401,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1239,7 +1461,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1248,31 +1470,35 @@ This label turns red, if the priority is smaller than "medium". - 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. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - &Címek megjelenítése a tranzakciólistában + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + 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 BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + &Címek megjelenítése a tranzakciólistában - + &OK &OK @@ -1284,7 +1510,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1295,13 +1521,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1312,78 +1538,158 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Űrlap - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - Tárca + Tárca - + Spendable: - + - + Your current spendable balance Jelenlegi egyenleg - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: Éretlen: + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + Mined balance that has not yet matured - Bányászott egyenleg amely még nem érett be. + Bányászott egyenleg amely még nem érett be. - + Total: Összesen: - Your current total balance - Aktuális egyenleged + Aktuális egyenleged - <b>Recent transactions</b> - <b>Legutóbbi tranzakciók</b> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + <b>Legutóbbi tranzakciók</b> - - Total of coins that was staked, and do not yet count toward the current balance - - - - + out of sync Nincs szinkronban. @@ -1392,65 +1698,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Összeg: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Kliens néve @@ -1501,7 +1807,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1531,17 +1837,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1556,12 +1862,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1571,7 +1877,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1581,7 +1887,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1595,59 +1901,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Érmék küldése + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - Összeg: + Összeg: @@ -1655,279 +1961,378 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Küldés több címzettnek egyszerre + Küldés több címzettnek egyszerre Add &Recipient - &Címzett hozzáadása + &Címzett hozzáadása Remove all transaction fields - + Clear &All - Mindent &töröl + Mindent &töröl Balance: - Egyenleg: + Egyenleg: 123.456 BC - + Confirm the send action - Küldés megerősítése + Küldés megerősítése S&end - &Küldés + &Küldés - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - Összeg másolása + Összeg másolása Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - Küldés megerősítése + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - A címzett címe érvénytelen, kérlek, ellenőrizd. + 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. + A fizetendő összegnek nagyobbnak kell lennie 0-nál. The amount exceeds your balance. - Nincs ennyi bitcoin 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. + 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. + Többször szerepel ugyanaz a cím. Egy küldési műveletben egy címre csak egyszer lehet küldeni. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (nincs címke) + (nincs címke) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Űrlap - + A&mount: - Összeg: + Összeg: Pay &To: - Címzett: + Címzett: - + 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? + Milyen címkével kerüljön be ez a cím a címtáradba? &Label: - Címke: + Címke: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Cím beillesztése a vágólapról + Cím beillesztése a vágólapról Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + - SignVerifyMessageDialog + SendCoinsDialog - - Signatures - Sign / Verify a Message - + Send Coins + Érmék küldése - - + Amount: + Összeg: + + + Send to multiple recipients at once + Küldés több címzettnek egyszerre + + + Add &Recipient + &Címzett hozzáadása + + + Clear &All + Mindent &töröl + + + Balance: + Egyenleg: + + + Confirm the send action + Küldés megerősítése + + + S&end + &Küldés + + + Copy amount + Összeg másolása + + + Confirm send coins + Küldés megerősítése + + + 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 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. + + + (no label) + (nincs címke) + + + + SendCoinsEntry + + A&mount: + Összeg: + + + Pay &To: + Címzett: + + + 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: + + + Alt+A + Alt+A + + + Paste address from clipboard + Cím beillesztése a vágólapról + + + Alt+P + Alt+P + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message Üzenet aláírása... @@ -1939,13 +2344,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1976,12 +2381,12 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + Reset all sign message fields - + @@ -2003,33 +2408,33 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + @@ -2049,17 +2454,17 @@ This label turns red, if the priority is smaller than "medium". The entered address does not refer to a key. - + Wallet unlock was cancelled. - + Private key for the entered address is not available. - + @@ -2085,7 +2490,7 @@ This label turns red, if the priority is smaller than "medium". The signature did not match the message digest. - + @@ -2108,17 +2513,19 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + conflicted - + %1/offline - + @@ -2138,7 +2545,9 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - + + + @@ -2148,7 +2557,7 @@ This label turns red, if the priority is smaller than "medium". Source - + @@ -2191,7 +2600,9 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - + + + @@ -2233,8 +2644,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2280,7 +2691,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Tranzakció részletei @@ -2325,32 +2736,34 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2384,8 +2797,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - Kibányászva + Kibányászva @@ -2433,871 +2850,1127 @@ This label turns red, if the priority is smaller than "medium". - This week - Ezen a héten + 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 Data + + + + + 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ó + + + + Error exporting + Hiba exportálás + + + + Could not write to file %1. + Nem lehetett írni a fájlt a következő helyen: %1. + + + + Range: + Tartomány: + + + + to + meddig + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + Használd a %s opciót + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Hiba + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Be kell állítani rpcpassword=<password> a konfigurációs fájlban +%s +Ha a fájl nem létezik, hozd létre 'csak a felhasználó által olvasható' fájl engedéllyel + + + + BitBean version + + + + + Usage: + Használat: + + + + Send command to -server or BitBeand + + + + + List commands + Parancsok kilistázása + + + + + Get help for a command + Segítség egy parancsról + + + + + BitBean + + + + + Options: + Opciók + + + + + This help message + Ez a súgó-üzenet + + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Adatkönyvtár + + + + + Specify wallet file (within data directory) + + + + + Set database cache size in megabytes (default: 25) + Az adatbázis gyorsítótár mérete megabájtban (alapértelmezés: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Csatlakozás időkerete milliszekundumban (alapértelmezett: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + DNS-kikeresés engedélyezése az addnode-nál és a connect-nél + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Maximálisan <n> számú kapcsolat fenntartása a peerekkel (alapértelmezés: 125) + + + + 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 + + + + Connect only to the specified node(s) + Csatlakozás csak a megadott csomóponthoz + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + + Discover own IP address (default: 1 when listening and no -externalip) + + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + 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) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + + 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) + + + + 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) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - This month - Ebben a hónapban + + Accept command line and JSON-RPC commands + Parancssoros és JSON-RPC parancsok elfogadása + - Last month - Múlt hónapban + Run in the background as a daemon and accept commands + Háttérben futtatás daemonként és parancsok elfogadása + - This year - Ebben az évben + Use the test network + Teszthálózat használata + - Range... - Tartomány ... - - - - Received with - Erre a címre + Output extra debugging information. Implies all other -debug* options + - - Sent to - Erre a címre + + Output extra network debugging information + - - To yourself - Magadnak + + Prepend debug output with timestamp + - Mined - Kibányászva + Shrink debug.log file on client startup (default: 1 when no -debug) + - Other - Más + 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 - - Enter address or label to search - Írd be a keresendő címet vagy címkét + + Send trace/debug info to debugger + - - Min amount - Minimális összeg + + Username for JSON-RPC connections + Felhasználói név JSON-RPC csatlakozásokhoz + - - Copy address - Cím másolása + + Password for JSON-RPC connections + Jelszó JSON-RPC csatlakozásokhoz + - Copy label - Címke másolása + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - - Copy amount - Összeg másolása + + Allow JSON-RPC connections from specified IP address + JSON-RPC csatlakozások engedélyezése meghatározott IP-címről + - Copy transaction ID - Tranzakcióazonosító másolása + 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) + - Edit label - Címke szerkesztése + 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) - - Show transaction details - Tranzakciós részletek megjelenítése + + 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) - - Export Transaction Data - + + Require a confirmations for change (default: 0) + - Comma separated file (*.csv) - Vesszővel elválasztott fájl (*.csv) + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - - Confirmed - Megerősítve + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - - Date - Dátum + + Upgrade wallet to latest format + A Tárca frissítése a legfrissebb formátumra - Type - Típus + Set key pool size to <n> (default: 100) + Kulcskarika mérete <n> (alapértelmezett: 100) + - Label - Címke + Rescan the block chain for missing wallet transactions + Blokklánc újraszkennelése hiányzó tárca-tranzakciók után + - Address - Cím + Attempt to recover private keys from a corrupt wallet.dat + - Amount - Összeg + How many blocks to check at startup (default: 2500, 0 = all) + - ID - Azonosító + How thorough the block verification is (0-6, default: 1) + - - Error exporting - + + Imports blocks from external blk000?.dat file + - - Could not write to file %1. - + + Block creation options: + - - Range: - Tartomány: + + Set minimum block size in bytes (default: 0) + - - to - meddig + + Set maximum block size in bytes (default: 250000) + - - - WalletModel - - Sending... - + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - - bitcoin-core - - BitBean version - + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - Usage: - Használat: + Use OpenSSL (https) for JSON-RPC connections + OpenSSL (https) használata JSON-RPC csatalkozásokhoz + - Send command to -server or BitBeand - + Server certificate file (default: server.cert) + Szervertanúsítvány-fájl (alapértelmezett: server.cert) + - List commands - Parancsok kilistázása + Server private key (default: server.pem) + Szerver titkos kulcsa (alapértelmezett: server.pem) - Get help for a command - Segítség egy parancsról - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Options: - Opciók - + + Invalid amount for -paytxfee=<amount>: '%s' + Étvénytelen -paytxfee=<összeg> összeg: '%s' - - Specify configuration file (default: BitBean.conf) - + + 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. - - Specify pid file (default: BitBeand.pid) - + + Invalid amount for -mininput=<amount>: '%s' + - - Specify wallet file (within data directory) - + + Wallet %s resides outside data directory %s. + - - Specify data directory - Adatkönyvtár - + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Set database cache size in megabytes (default: 25) - Az adatbázis gyorsítótár mérete megabájtban (alapértelmezés: 25) + + Verifying database integrity... + - Set database disk log size in megabytes (default: 100) - + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + 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. + - - Maintain at most <n> connections to peers (default: 125) - Maximálisan <n> számú kapcsolat fenntartása a peerekkel (alapértelmezés: 125) + + wallet.dat corrupt, salvage failed + - - 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 + + Unknown -socks proxy version requested: %i + Ismeretlen -socks proxy kérése: %i - Specify your own public address - Adja meg az Ön saját nyilvános címét + Unknown network specified in -onlynet: '%s' + Ismeretlen hálózat lett megadva -onlynet: '%s' - - Bind to given address. Use [host]:port notation for IPv6 - + + Invalid -proxy address: '%s' + Érvénytelen -proxy cím: '%s' - - Stake your coins to support network and gain reward (default: 1) - + + Invalid -tor address: '%s' + - - Threshold for disconnecting misbehaving peers (default: 100) - Helytelenül viselkedő peerek leválasztási határértéke (alapértelmezés: 100) + + Cannot resolve -bind address: '%s' + Csatlakozási cím (-bind address) feloldása nem sikerült: '%s' - 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) + 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é. - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - + + Cannot resolve -externalip address: '%s' + Külső cím (-externalip address) feloldása nem sikerült: '%s' - - Detach block and address databases. Increases shutdown time (default: 0) - + + Invalid amount for -reservebalance=<amount> + - - 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. - + + Unable to sign checkpoint, wrong checkpointkey? + + - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Loading block index... + Blokkindex betöltése... - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Error loading blkindex.dat + - - Accept command line and JSON-RPC commands - Parancssoros és JSON-RPC parancsok elfogadása - + + Loading wallet... + Tárca betöltése... - - Error: Transaction creation failed - + + Error loading wallet.dat: Wallet corrupted + Hiba a wallet.dat betöltése közben: meghibásodott tárca - - Error: Wallet locked, unable to create transaction - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - - Importing blockchain data file. - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - Importing bootstrap blockchain data file. - + Wallet needed to be rewritten: restart BitBean to complete + - - Run in the background as a daemon and accept commands - Háttérben futtatás daemonként és parancsok elfogadása - + + Error loading wallet.dat + Hiba az wallet.dat betöltése közben - Use the test network - Teszthálózat használata - + Cannot downgrade wallet + Nem sikerült a Tárca visszaállítása a korábbi verzióra - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Cannot initialize keypool + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Cannot write default address + Nem sikerült az alapértelmezett címet írni. - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Rescanning... + Újraszkennelés... - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Importing blockchain data file. + - - 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. + + Importing bootstrap blockchain data file. + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Loading addresses... + Címek betöltése... - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Error: could not start node + - - 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. - + + Done loading + Betöltés befejezve. - - Attempt to recover private keys from a corrupt wallet.dat - + + Unable to bind to %s on this computer. BitBean is probably already running. + - - Block creation options: - + + 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) - - Connect only to the specified node(s) - Csatlakozás csak a megadott csomóponthoz + + Error: Wallet locked, unable to create transaction + - - Discover own IP address (default: 1 when listening and no -externalip) - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - 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é. + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Find peers using DNS lookup (default: 1) - + + Error: Transaction creation failed + - - Sync checkpoints policy (default: strict) - + + Sending... + - - Invalid -tor address: '%s' - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - Invalid amount for -reservebalance=<amount> - + Invalid amount + Étvénytelen összeg - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Insufficient funds + Nincs elég bitcoinod. - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Warning: This version is obsolete, upgrade required! + - - Output extra debugging information. Implies all other -debug* options - + + WARNING: syncronized checkpoint violation detected, but skipped! + - Output extra network debugging information - + Warning: Disk space is low! + - Prepend debug output with timestamp - + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - 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) + Usage: + Használat: - - Select the version of socks proxy to use (4-5, default: 5) - + List commands + Parancsok kilistázása + - - 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 + Get help for a command + Segítség egy parancsról + - - Send trace/debug info to debugger - + Options: + Opciók + - - Set maximum block size in bytes (default: 250000) - + Specify data directory + Adatkönyvtár + - - Set minimum block size in bytes (default: 0) - + Set database cache size in megabytes (default: 25) + Az adatbázis gyorsítótár mérete megabájtban (alapértelmezés: 25) - - Shrink debug.log file on client startup (default: 1 when no -debug) - + Maintain at most <n> connections to peers (default: 125) + Maximálisan <n> számú kapcsolat fenntartása a peerekkel (alapértelmezés: 125) - - Specify connection timeout in milliseconds (default: 5000) - Csatlakozás időkerete milliszekundumban (alapértelmezett: 5000) + 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 - - Unable to sign checkpoint, wrong checkpointkey? - - + Specify your own public address + Adja meg az Ön saját nyilvános címét - - 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) + Threshold for disconnecting misbehaving peers (default: 100) + Helytelenül viselkedő peerek leválasztási határértéke (alapértelmezés: 100) - - 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) + 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) - - Use proxy to reach tor hidden services (default: same as -proxy) - + Accept command line and JSON-RPC commands + Parancssoros és JSON-RPC parancsok elfogadása + - - Username for JSON-RPC connections - Felhasználói név JSON-RPC csatlakozásokhoz + Run in the background as a daemon and accept commands + Háttérben futtatás daemonként és parancsok elfogadása - - Verifying database integrity... - + Use the test network + Teszthálózat használata + - - WARNING: syncronized checkpoint violation detected, but skipped! - + 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: Disk space is low! - + Connect only to the specified node(s) + Csatlakozás csak a megadott csomóponthoz - - Warning: This version is obsolete, upgrade required! - + 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é. - - wallet.dat corrupt, salvage failed - + 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) - - Password for JSON-RPC connections - Jelszó JSON-RPC csatlakozásokhoz - + 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 - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + Specify connection timeout in milliseconds (default: 5000) + Csatlakozás időkerete milliszekundumban (alapértelmezett: 5000) - - Find peers using internet relay chat (default: 0) - + 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) - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + 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) - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + Username for JSON-RPC connections + Felhasználói név JSON-RPC csatlakozásokhoz + + + + 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 + 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) + 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) + Parancs, amit akkor hajt végre, amikor a legjobb blokk megváltozik (%s a cmd-ban lecserélődik a blokk hash-re) - 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) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Parancs, amit akkor hajt végre, amikor egy tárca-tranzakció megváltozik (%s a parancsban lecserélődik a blokk TxID-re) - Upgrade wallet to latest format - A Tárca frissítése a legfrissebb formátumra + 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) + 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 + Blokklánc újraszkennelése hiányzó tárca-tranzakciók után - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - - - - Use OpenSSL (https) for JSON-RPC connections - OpenSSL (https) használata JSON-RPC csatalkozásokhoz + OpenSSL (https) használata JSON-RPC csatalkozásokhoz - Server certificate file (default: server.cert) - Szervertanúsítvány-fájl (alapértelmezett: 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) + Szerver titkos kulcsa (alapértelmezett: server.pem) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - This help message - Ez a súgó-üzenet + Ez a súgó-üzenet - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - - - - 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) - - - - Connect through socks proxy - + 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 + DNS-kikeresés engedélyezése az addnode-nál és a connect-nél - Loading addresses... - Címek betöltése... - - - - Error loading blkindex.dat - + 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 BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + Hiba a wallet.dat betöltése közben: meghibásodott tárca - Error loading wallet.dat - Hiba az wallet.dat betöltése közben + Hiba az wallet.dat betöltése közben - Invalid -proxy address: '%s' - Érvénytelen -proxy cím: '%s' + Érvénytelen -proxy cím: '%s' - Unknown network specified in -onlynet: '%s' - Ismeretlen hálózat lett megadva -onlynet: '%s' + Ismeretlen hálózat lett megadva -onlynet: '%s' - Unknown -socks proxy version requested: %i - Ismeretlen -socks proxy kérése: %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' + 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' + Külső cím (-externalip address) feloldása nem sikerült: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Étvénytelen -paytxfee=<összeg> összeg: '%s' - - - - Error: could not start node - - - - - Sending... - + Étvénytelen -paytxfee=<összeg> összeg: '%s' - Invalid amount - Étvénytelen összeg + Étvénytelen összeg - Insufficient funds - Nincs elég bitcoinod. + Nincs elég bitcoinod. - Loading block index... - Blokkindex betöltése... + 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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + Elérendő csomópont megadása and attempt to keep the connection open - Loading wallet... - Tárca betöltése... + Tárca betöltése... - Cannot downgrade wallet - Nem sikerült a Tárca visszaállítása a korábbi verzióra - - - - Cannot initialize keypool - + 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. + Nem sikerült az alapértelmezett címet írni. - Rescanning... - Újraszkennelés... + Újraszkennelés... - Done loading - Betöltés befejezve. + Betöltés befejezve. - To use the %s option - Használd a %s opciót + Használd a %s opciót - Error - Hiba + 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. - Be kell állítani rpcpassword=<password> a konfigurációs fájlban + Be kell állítani rpcpassword=<password> a konfigurációs fájlban %s 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/bitbean_id_ID.qm b/src/qt/locale/bitbean_id_ID.qm new file mode 100644 index 0000000..54170cd Binary files /dev/null and b/src/qt/locale/bitbean_id_ID.qm differ diff --git a/src/qt/locale/bitcoin_id_ID.ts b/src/qt/locale/bitbean_id_ID.ts similarity index 54% rename from src/qt/locale/bitcoin_id_ID.ts rename to src/qt/locale/bitbean_id_ID.ts index 4951446..154c77c 100644 --- a/src/qt/locale/bitcoin_id_ID.ts +++ b/src/qt/locale/bitbean_id_ID.ts @@ -1,80 +1,89 @@ - + + + +UTF-8 AboutDialog - + About BitBean Tentang BitBean - + <b>BitBean</b> version <b>BitBean</b> versi - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + Copyright © 2009-2014 The Bitcoin developers Copyright © 2012-2014 The NovaCoin developers Copyright © 2014 The BitBean developers - Copyright © 2009-2014 para pengembang Bitcoin + Copyright © 2009-2014 para pengembang Bitcoin Copyright © 2012-2014 para pengembang NovaCoin Copyright © 2014 para pengembang BitBean - - - -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. - - AddressBookPage - + Address Book Buku Alamat - + Double-click to edit address or label Klik dua-kali untuk mengubah alamat atau label - + Create a new address Buat alamat baru - + Copy the currently selected address to the system clipboard Salin alamat yang dipilih ke clipboard - + &New Address &Alamat Baru - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. Ini adalah alamat BitBean Anda untuk menerima pembayaran. Anda dapat memberikan alamat yang berbeda untuk setiap pengirim, sehingga Anda dapat melacak siapa yang membayar Anda. - + &Copy Address &Salin Alamat - + Show &QR Code Unjukkan &Kode QR - + Sign a message to prove you own a BitBean address Masukan pesan untuk membuktikan bahwa anda telah mempunyai adress BitBean @@ -84,22 +93,22 @@ This product includes software developed by the OpenSSL Project for use in the O Sign & Pesan - + Delete the currently selected address from the list Menghapus alamat yang saat ini dipilih dari daftar yang tersedia - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete &Hapus @@ -116,7 +125,7 @@ This product includes software developed by the OpenSSL Project for use in the O Export Address Book Data - + @@ -126,7 +135,7 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + @@ -155,29 +164,29 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + @@ -231,18 +240,23 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + Apakah Anda yakin untuk mengenkripsi dompet Anda? - Are you sure you wish to encrypt your wallet? - Apakah Anda yakin untuk mengenkripsi dompet Anda? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + @@ -257,12 +271,11 @@ This product includes software developed by the OpenSSL Project for use in the O Dompet terenkripsi - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - BitBean akan ditutup untuk menyelesaikan proses enkripsi. Ingat bahwa dompet Anda tidak bisa di lindungi dengan enkripsi sepenuhny dari pencurian melalui infeksi malware di komputer Anda. + BitBean akan ditutup untuk menyelesaikan proses enkripsi. Ingat bahwa dompet Anda tidak bisa di lindungi dengan enkripsi sepenuhny dari pencurian melalui infeksi malware di komputer Anda. - + @@ -304,333 +317,579 @@ This product includes software developed by the OpenSSL Project for use in the O - BitcoinGUI + BeanControlDialog - - Sign &message... - Pesan &penanda... - - - - Synchronizing with network... - Sinkronisasi dengan jaringan... + + Bean Control + - - &Overview - &Kilasan + + Quantity: + Jumlah: - - Show general overview of wallet - Tampilkan kilasan umum dari dompet + + Bytes: + Bytes: - - &Transactions - &Transaksi + + Amount: + Jumlah: - - Browse transaction history - Jelajah sejarah transaksi + + Priority: + Prioritas: - - &Address Book - &Buku Alamat + + Fee: + Biaya: - - Edit the list of stored addresses and labels - Mengedit daftar alamat-alamat dan label + + Low Output: + Output Rendah: - - &Receive coins - &Menerima koin + + After Fee: + - - Show the list of addresses for receiving payments - Tampilkan daftar alamat untuk menerima pembayaran + + Change: + Perubahan: - - &Send coins - &Kirim koin + + (un)select all + - - E&xit - K&eluar + + Tree mode + - - Quit application - Keluar dari aplikasi + + List mode + mode Daftar - - Show information about BitBean - Tunjukkan informasi tentang BitBean + + Amount + Jumlah - - About &Qt - Mengenai &Qt + + Label + Label - - Show information about Qt - Tampilkan informasi mengenai Qt + + Address + Alamat - - &Options... - &Pilihan... + + Date + Tanggal - - &Encrypt Wallet... - %Enkripsi Dompet... + + Confirmations + - &Backup Wallet... - &Cadangkan Dompet... + Confirmed + Terkonfirmasi - - &Change Passphrase... - &Ubah Kata Kunci... - - - - ~%n block(s) remaining - ~%n blok yang tersisah + + Priority + Prioritas - - Downloaded %1 of %2 blocks of transaction history (%3% done). - %1 dari %2 telah diunduh, blok dari sejarah transaksi (%3% selesai). + + Copy address + Salin alamat - - &Export... - &Ekspor... + + Copy label + Salin label - - Send coins to a BitBean address - Kirim koin ke alamat BitBean + + + Copy amount + Salin jumlah - - Modify configuration options for BitBean - Memodifikasi opsi aturan untuk BitBean + + Copy transaction ID + - - Export the data in the current tab to a file - Mengekspor data dari tab saat ini ke dalam file + + Copy quantity + Salikan jumlah - - Encrypt or decrypt wallet - Mengenkripsi atau mendekripsi dompet + + Copy fee + Salinkan Biaya - - Backup wallet to another location - Cadangkan dompet ke lokasi lain + + Copy after fee + Salinkan setelah biaya - - Change the passphrase used for wallet encryption - Ubah kata kunci yang digunakan untuk enkripsi dompet + + Copy bytes + Salinkan bytes - - &Debug window - &Jendela Debug + + Copy priority + Salinkan prioritas - Open debugging and diagnostic console - Buka konsol debug dan diagnosa + Copy low output + Salinkan output rendah - - &Verify message... - &Verifikasi pesan... + + Copy change + Salinkan perubahan - - BitBean - BitBean (CoinHitam) + + highest + tertinggi - - Wallet - Dompet + + high + tinggi - - &About BitBean - &Tentang BitBean + + medium-high + menengah-tinggi - - &Show / Hide - &Tunjukkan / Sembunyikan + + medium + menengah - - Unlock wallet - Buka Dompet + + low-medium + rendah-menengah - &Lock Wallet - &Kunci Dompet + low + rendah - Lock wallet - Kunci dompet + lowest + terendah - - &File - &Berkas + + DUST + DUST - - &Settings - &Pengaturan + + yes + ya - - &Help - &Bantuan + + no + tidak - - Tabs toolbar - Baris tab + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - Baris tab + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - Klien BitBean + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (tidak ada label) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + perubahan dari %1 (%2) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + (perubahan) + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + &Kilasan - - - %n second(s) ago - + + + Show general overview of wallet + Tampilkan kilasan umum dari dompet + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Tampilkan daftar alamat untuk menerima pembayaran + + + + &Transactions + &Transaksi + + + + Browse transaction history + Jelajah sejarah transaksi + + + + &Address Book + &Buku Alamat + + + + Edit the list of stored addresses and labels + Mengedit daftar alamat-alamat dan label + + + + E&xit + K&eluar + + + + Quit application + Keluar dari aplikasi + + + + &About BitBean + &Tentang BitBean + + + + Show information about BitBean + Tunjukkan informasi tentang BitBean + + + + About &Qt + Mengenai &Qt + + + + Show information about Qt + Tampilkan informasi mengenai Qt + + + + &Options... + &Pilihan... + + + + Modify configuration options for BitBean + Memodifikasi opsi aturan untuk BitBean + + + + &Show / Hide + &Tunjukkan / Sembunyikan + + + + &Encrypt Wallet... + %Enkripsi Dompet... + + + + Encrypt or decrypt wallet + Mengenkripsi atau mendekripsi dompet + + + + &Backup Wallet... + &Cadangkan Dompet... + + + + Backup wallet to another location + Cadangkan dompet ke lokasi lain + + + + &Change Passphrase... + &Ubah Kata Kunci... + + + + Change the passphrase used for wallet encryption + Ubah kata kunci yang digunakan untuk enkripsi dompet - + &Unlock Wallet... - &Buka Dompet + &Buka Dompet + + + + Unlock wallet + + + + + &Lock Wallet + &Kunci Dompet + + + + Lock wallet + Kunci dompet + + + + Sign &message... + Pesan &penanda... + + + + &Verify message... + &Verifikasi pesan... + + + + &Export... + &Ekspor... + + + + Export the data in the current tab to a file + Mengekspor data dari tab saat ini ke dalam file + + + + &Debug window + &Jendela Debug + + + + Open debugging and diagnostic console + Buka konsol debug dan diagnosa + + + + &File + &Berkas + + + + &Settings + &Pengaturan + + + + &Help + &Bantuan + + + + Tabs toolbar + Baris tab + + + + Actions toolbar + Baris tab + + + + + [testnet] + [testnet] + + + + + BitBean client + Klien BitBean + + + + %n active connection(s) to BitBean network + + + + + + + Synchronizing with network... + Sinkronisasi dengan jaringan... + + + + ~%n block(s) remaining + + ~%n blok yang tersisah + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + %1 dari %2 telah diunduh, blok dari sejarah transaksi (%3% selesai). + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + - + %n minute(s) ago - %n menit yang lalu + + %n menit yang lalu + %n hour(s) ago - %n jam yang lalu + + %n jam yang lalu + %n day(s) ago - %n hari yang lalu + + %n hari yang lalu + Up to date - Terbaru + Terbaru Catching up... - Menyusul... + Menyusul... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Transaksi terkirim + Transaksi terkirim Incoming transaction - Transaksi diterima + Transaksi diterima @@ -639,7 +898,7 @@ Amount: %2 Type: %3 Address: %4 - Tanggal: %1 + Tanggal: %1 Jumlah: %2 Jenis: %3 Alamat: %4 @@ -649,500 +908,704 @@ Alamat: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Dompet saat ini <b>terenkripsi</b> dan <b>terbuka</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> + Dompet saat ini <b>terenkripsi</b> dan <b>terkunci</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - Back-up Gagal + Back-up Gagal There was an error trying to save the wallet data to the new location. - + - + %n second(s) - %n detik + + %n detik + %n minute(s) - %n menit + + %n menit + %n hour(s) - %n jam + + %n jam + %n day(s) - %n hari + + %n hari + - - Not staking - Lagi tidak staking + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Notifikasi Jaringan + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - Jumlah: + + Not staking because you don't have mature beans + - - Bytes: - Bytes: + + Not staking + Lagi tidak staking + + + BitcoinGUI - - Amount: - Jumlah: + Sign &message... + Pesan &penanda... - - Priority: - Prioritas: + Synchronizing with network... + Sinkronisasi dengan jaringan... - - Fee: - Biaya: + &Overview + &Kilasan - - Low Output: - + Show general overview of wallet + Tampilkan kilasan umum dari dompet - - no - tidak + &Transactions + &Transaksi - - After Fee: - Setelah biaya: + Browse transaction history + Jelajah sejarah transaksi - - Change: - Perubahan: + &Address Book + &Buku Alamat - - (un)select all - + Edit the list of stored addresses and labels + Mengedit daftar alamat-alamat dan label - - Tree mode - + &Receive coins + &Menerima koin - - List mode - mode Daftar + Show the list of addresses for receiving payments + Tampilkan daftar alamat untuk menerima pembayaran - - Amount - Jumlah + &Send coins + &Kirim koin - - Label - Label + E&xit + K&eluar - - Address - Alamat + Quit application + Keluar dari aplikasi - - Date - Tanggal + Show information about BitBean + Tunjukkan informasi tentang BitBean - - Confirmations - + About &Qt + Mengenai &Qt - - Confirmed - Terkonfirmasi + Show information about Qt + Tampilkan informasi mengenai Qt - - Priority - Prioritas + &Options... + &Pilihan... - - Copy address - Salin alamat + &Encrypt Wallet... + %Enkripsi Dompet... - - Copy label - Salin label + &Backup Wallet... + &Cadangkan Dompet... - - - Copy amount - Salin jumlah + &Change Passphrase... + &Ubah Kata Kunci... - - - Copy transaction ID - + + ~%n block(s) remaining + + ~%n blok yang tersisah + - - Copy quantity - Salikan jumlah + Downloaded %1 of %2 blocks of transaction history (%3% done). + %1 dari %2 telah diunduh, blok dari sejarah transaksi (%3% selesai). - - Copy fee - Salinkan Biaya + &Export... + &Ekspor... - - Copy after fee - Salinkan setelah biaya + Send coins to a BitBean address + Kirim koin ke alamat BitBean - - Copy bytes - Salinkan bytes + Modify configuration options for BitBean + Memodifikasi opsi aturan untuk BitBean - - Copy priority - Salinkan prioritas + Export the data in the current tab to a file + Mengekspor data dari tab saat ini ke dalam file - - Copy low output - Salinkan output rendah + Encrypt or decrypt wallet + Mengenkripsi atau mendekripsi dompet - - Copy change - Salinkan perubahan + Backup wallet to another location + Cadangkan dompet ke lokasi lain - - highest - tertinggi + Change the passphrase used for wallet encryption + Ubah kata kunci yang digunakan untuk enkripsi dompet - - high - tinggi + &Debug window + &Jendela Debug - - medium-high - menengah-tinggi + Open debugging and diagnostic console + Buka konsol debug dan diagnosa - - medium - menengah + &Verify message... + &Verifikasi pesan... - - low-medium - rendah-menengah + BitBean + BitBean (CoinHitam) - - low - rendah + Wallet + Dompet - - lowest - terendah + &About BitBean + &Tentang BitBean - - DUST - DUST + &Show / Hide + &Tunjukkan / Sembunyikan - - yes - ya + Unlock wallet + Buka Dompet - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + &Lock Wallet + &Kunci Dompet - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Lock wallet + Kunci dompet - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + &File + &Berkas - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + &Settings + &Pengaturan - - - (no label) - (tidak ada label) + &Help + &Bantuan - - change from %1 (%2) - perubahan dari %1 (%2) + Tabs toolbar + Baris tab - - (change) - (perubahan) + Actions toolbar + Baris tab - - - EditAddressDialog - - Edit Address - Ubah Alamat + [testnet] + [testnet] - - &Label - &Label + BitBean client + Klien BitBean - - The label associated with this address book entry - + &Unlock Wallet... + &Buka Dompet + + + %n minute(s) ago + + %n menit yang lalu + + + + %n hour(s) ago + + %n jam yang lalu + + + + %n day(s) ago + + %n hari yang lalu + - - &Address - &Alamat + Up to date + Terbaru - - The address associated with this address book entry. This can only be modified for sending addresses. - + Catching up... + Menyusul... - - New receiving address - Alamat menerima baru + Sent transaction + Transaksi terkirim - - New sending address - Alamat mengirim baru + Incoming transaction + Transaksi diterima - - Edit receiving address - Ubah alamat menerima + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Tanggal: %1 +Jumlah: %2 +Jenis: %3 +Alamat: %4 + - - Edit sending address - Ubah alamat mengirim + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Dompet saat ini <b>terenkripsi</b> dan <b>terbuka</b> - - The entered address "%1" is already in the address book. - Alamat yang dimasukkan "%1" sudah ada di dalam buku alamat. + Wallet is <b>encrypted</b> and currently <b>locked</b> + Dompet saat ini <b>terenkripsi</b> dan <b>terkunci</b> - - The entered address "%1" is not a valid BitBean address. - + Backup Failed + Back-up Gagal + + + %n second(s) + + %n detik + + + + %n minute(s) + + %n menit + + + + %n hour(s) + + %n jam + + + + %n day(s) + + %n hari + - - Could not unlock wallet. - Tidak dapat membuka dompet. + Not staking + Lagi tidak staking + + + ClientModel - - New key generation failed. - Pembuatan kunci baru gagal. + + Network Alert + Notifikasi Jaringan - GUIUtil::HelpMessageBox + CoinControlDialog - - - BitBean-Qt - BitBean-Qt + Quantity: + Jumlah: - - version - versi + Bytes: + Bytes: - - Usage: - Penggunaan: + Amount: + Jumlah: - - command-line options - + Priority: + Prioritas: - - UI options - + Fee: + Biaya: - - Set language, for example "de_DE" (default: system locale) - + no + tidak - - Start minimized - + After Fee: + Setelah biaya: - - Show splash screen on startup (default: 1) - + Change: + Perubahan: - - - OptionsDialog - - Options - Pilihan + List mode + mode Daftar - - &Main - &Utama + Amount + Jumlah - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + Label + Label - - Pay transaction &fee - Bayar &biaya transaksi + Address + Alamat - - Reserved amount does not participate in staking and is therefore spendable at any time. - + Date + Tanggal - - Reserve - + Confirmed + Terkonfirmasi - + Priority + Prioritas + + + Copy address + Salin alamat + + + Copy label + Salin label + + + Copy amount + Salin jumlah + + + Copy quantity + Salikan jumlah + + + Copy fee + Salinkan Biaya + + + Copy after fee + Salinkan setelah biaya + + + Copy bytes + Salinkan bytes + + + Copy priority + Salinkan prioritas + + + Copy low output + Salinkan output rendah + + + Copy change + Salinkan perubahan + + + highest + tertinggi + + + high + tinggi + + + medium-high + menengah-tinggi + + + medium + menengah + + + low-medium + rendah-menengah + + + low + rendah + + + lowest + terendah + + + DUST + DUST + + + yes + ya + + + (no label) + (tidak ada label) + + + change from %1 (%2) + perubahan dari %1 (%2) + + + (change) + (perubahan) + + + + EditAddressDialog + + + Edit Address + Ubah Alamat + + + + &Label + &Label + + + + The label associated with this address book entry + + + + + &Address + &Alamat + + + + The address associated with this address book entry. This can only be modified for sending addresses. + + + + + 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 BitBean address. + + + + + Could not unlock wallet. + Tidak dapat membuka dompet. + + + + New key generation failed. + Pembuatan kunci baru gagal. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + version + versi + + + + Usage: + Penggunaan: + + + + command-line options + + + + + UI options + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Show splash screen on startup (default: 1) + + + + + OptionsDialog + + + Options + Pilihan + + + + &Main + &Utama + + + + Pay transaction &fee + Bayar &biaya transaksi + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + + + + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1152,7 +1615,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1162,12 +1625,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1177,7 +1640,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1217,7 +1680,7 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -1237,7 +1700,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1246,31 +1709,31 @@ This label turns red, if the priority is smaller than "medium". - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - &Tampilkan alamat dalam daftar transaksi + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + &Tampilkan alamat dalam daftar transaksi - + &OK &YA @@ -1282,7 +1745,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1299,7 +1762,7 @@ This label turns red, if the priority is smaller than "medium". This setting will take effect after restarting BitBean. - + @@ -1310,102 +1773,182 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Formulir - - + + Bean Vault + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + - Stake: - Stake: + Stake: - + Unconfirmed: - + - Wallet - Dompet + Dompet - + Spendable: - + - + Your current spendable balance - + - - Immature: - + + Sprouting: + - - Mined balance that has not yet matured - + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + - - Total: - Total: + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + - - Your current total balance - Total saldo anda saat ini + + Immature: + - - <b>Recent transactions</b> - <b>Transaksi sebelumnya</b> + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + BitBean Network + - - - out of sync - tidak tersinkron + + Bean Stalk Height: + - - - QRCodeDialog - - QR Code Dialog - + + Sprouting Difficulty: + - - Request Payment - Permintaan Pembayaran + + Bean Weight: + - - Amount: - Jumlah: + + Connections: + - + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + 0 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + + Total: + Total: + + + Your current total balance + Total saldo anda saat ini + + + <b>Recent transactions</b> + <b>Transaksi sebelumnya</b> + + + + + out of sync + tidak tersinkron + + + + QRCodeDialog + + + QR Code Dialog + + + + + Request Payment + Permintaan Pembayaran + + + + Amount: + Jumlah: + + + Label: Label: @@ -1422,17 +1965,17 @@ This label turns red, if the priority is smaller than "medium". Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + @@ -1448,7 +1991,7 @@ This label turns red, if the priority is smaller than "medium". RPCConsole - + Client name Nama Klien @@ -1499,7 +2042,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1529,12 +2072,12 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + @@ -1554,7 +2097,7 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + @@ -1564,12 +2107,12 @@ This label turns red, if the priority is smaller than "medium". Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1579,7 +2122,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1593,59 +2136,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Kirim Koin + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - Jumlah dana dibutuhkan tidak mencukupi! + Jumlah dana dibutuhkan tidak mencukupi! Quantity: - Jumlah: + Jumlah: 0 - 0 + 0 Bytes: - Bytes: + Bytes: Amount: - Jumlah: + Jumlah: @@ -1653,296 +2196,430 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - 123.456 BC {0.00 ?} + 123.456 BC {0.00 ?} Priority: - Prioritas: + Prioritas: medium - menengah + menengah Fee: - Biaya: + Biaya: Low Output: - Output Rendah: + Output Rendah: no - tidak + tidak After Fee: - Setelah Biaya: + Change - Perubahan + Perubahan custom change address - + Send to multiple recipients at once - Kirim ke beberapa penerima sekaligus + Kirim ke beberapa penerima sekaligus Add &Recipient - + Remove all transaction fields - + Clear &All - Hapus %Semua + Hapus %Semua Balance: - Saldo: + Saldo: 123.456 BC - + 123.456 BC {0.00 ?} {123.456 ?} Confirm the send action - Konfirmasi aksi pengiriman + Konfirmasi aksi pengiriman S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Salikan jumlah Copy amount - Salin jumlah + Salin jumlah Copy fee - + Salinkan Biaya Copy after fee - + Salinkan setelah biaya Copy bytes - + Salinkan bytes Copy priority - + Salinkan prioritas Copy low output - + Salinkan output rendah Copy change - + Salinkan perubahan <b>%1</b> to %2 (%3) - + - Confirm send coins - Konfirmasi pengiriman koin + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - + The amount to pay must be larger than 0. - Jumlah yang dibayar harus lebih besar dari 0. + Jumlah yang dibayar harus lebih besar dari 0. The amount exceeds your balance. - Jumlah melebihi saldo Anda. + Jumlah melebihi saldo Anda. The total exceeds your balance when the %1 transaction fee is included. - Kelebihan total saldo Anda ketika biaya transaksi %1 ditambahkan. + Kelebihan total 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. + Ditemukan alamat ganda, hanya dapat mengirim ke tiap alamat sekali per operasi pengiriman. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (tidak ada label) + (tidak ada label) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Formulir - + A&mount: - J&umlah: + J&umlah: Pay &To: - Kirim &Ke: + Kirim &Ke: - + Enter a label for this address to add it to your address book - Masukkan label bagi alamat ini untuk menambahkannya ke buku alamat Anda + Masukkan label bagi alamat ini untuk menambahkannya ke buku alamat Anda &Label: - &Label: + &Label: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+J + Alt+J Paste address from clipboard - Tempel alamat dari salinan + Tempel alamat dari salinan Alt+P - Alt+B + Alt+B Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + Kirim Koin + + + Insufficient funds! + Jumlah dana dibutuhkan tidak mencukupi! + + + Quantity: + Jumlah: + + + 0 + 0 + + + Bytes: + Bytes: + + + Amount: + Jumlah: + + + 0.00 BC + 123.456 BC {0.00 ?} + + + Priority: + Prioritas: + + + medium + menengah + + + Fee: + Biaya: + + + Low Output: + Output Rendah: + + + no + tidak + + + After Fee: + Setelah Biaya: + + + Change + Perubahan + + + Send to multiple recipients at once + Kirim ke beberapa penerima sekaligus + + + Clear &All + Hapus %Semua + + + Balance: + Saldo: + + + Confirm the send action + Konfirmasi aksi pengiriman + + + Copy amount + Salin jumlah + + + Confirm send coins + Konfirmasi pengiriman koin + + + The amount to pay must be larger than 0. + Jumlah yang dibayar harus lebih besar dari 0. + + + The amount exceeds your balance. + Jumlah melebihi saldo Anda. + + + The total exceeds your balance when the %1 transaction fee is included. + Kelebihan total 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. + + + (no label) + (tidak ada label) + + + + SendCoinsEntry + + A&mount: + J&umlah: + + + Pay &To: + Kirim &Ke: + + + 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: + + + Alt+A + Alt+J + + + Paste address from clipboard + Tempel alamat dari salinan + + + Alt+P + Alt+B 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1963,22 +2640,22 @@ This label turns red, if the priority is smaller than "medium". Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + Reset all sign message fields - + @@ -1990,43 +2667,43 @@ This label turns red, if the priority is smaller than "medium". &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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + @@ -2046,53 +2723,53 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2105,17 +2782,19 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + conflicted - + %1/offline - + @@ -2135,7 +2814,9 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - + + + @@ -2145,12 +2826,12 @@ This label turns red, if the priority is smaller than "medium". Source - + Generated - + @@ -2169,12 +2850,12 @@ This label turns red, if the priority is smaller than "medium". own address - + label - + @@ -2183,17 +2864,19 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + not accepted - + @@ -2201,17 +2884,17 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + @@ -2221,22 +2904,22 @@ This label turns red, if the priority is smaller than "medium". Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + @@ -2246,7 +2929,7 @@ This label turns red, if the priority is smaller than "medium". Inputs - + @@ -2256,12 +2939,12 @@ This label turns red, if the priority is smaller than "medium". true - + false - + @@ -2277,7 +2960,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Rincian transaksi @@ -2322,32 +3005,34 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2381,8 +3066,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - Tertambang + Tertambang @@ -2414,870 +3103,1093 @@ This label turns red, if the priority is smaller than "medium". Amount removed from or added to balance. Jumlah terbuang dari atau ditambahkan ke saldo. - - - TransactionView + + + 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 + + + + Copy address + Salin alamat + + + + Copy label + Salin label + + + + Copy amount + Salin jumlah + + + + Copy transaction ID + + + + + Edit label + Ubah label + + + + Show transaction details + Tampilkan rincian transaksi + + + + Export Transaction Data + + + + + Comma separated file (*.csv) + Berkas CSV (*.csv) + + + + Confirmed + Terkonfirmasi + + + + Date + Tanggal + + + + Type + Jenis + + + + Label + Label + + + + Address + Alamat + + + + Amount + Jumlah + + + + ID + ID + + + + Error exporting + + + + + Could not write to file %1. + Penulisan data ke file gagal %1 + + + + Range: + Jarak: + + + + to + ke + + + + WalletModel + + + Sending... + Mengirim... + + + + bitbean-core + + + To use the %s option + Gunakan pilihan %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Gagal + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Anda harus mengatur rpcpassword=<kata sandi> dalam berkas konfigurasi: +%s +Jika berkas tidak ada, buatlah dengan permisi berkas hanya-dapat-dibaca-oleh-pemilik. + + + + BitBean version + + + + + Usage: + Penggunaan: + + + + Send command to -server or BitBeand + + + + + List commands + Daftar perintah + + + + Get help for a command + Dapatkan bantuan untuk perintah + + + + BitBean + + + + + Options: + Pilihan: + + + + This help message + Pesan bantuan ini + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Tentukan direktori data + + + + Specify wallet file (within data directory) + + + + + Set database cache size in megabytes (default: 25) + Atur ukuran tembolok dalam megabyte (standar: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Izinkan peninjauan DNS untuk -addnote, -seednode dan -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + - - - All - Semua + + Maintain at most <n> connections to peers (default: 125) + Mengatur hubungan paling banyak <n> ke peer (standar: 125) - - Today - Hari ini + + Add a node to connect to and attempt to keep the connection open + Tambahkan node untuk dihubungkan dan upaya untuk menjaga hubungan tetap terbuka - This week - Minggu ini + Connect only to the specified node(s) + - This month - Bulan ini + Connect to a node to retrieve peer addresses, and disconnect + Hubungkan ke node untuk menerima alamat peer, dan putuskan - Last month - Bulan kemarin + Specify your own public address + Tentukan alamat publik Anda sendiri - This year - Tahun ini + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - Range... - Jarak... + Discover own IP address (default: 1 when listening and no -externalip) + - - Received with - DIterima dengan + + Find peers using internet relay chat (default: 0) + - - Sent to - Terkirim ke + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - To yourself - Ke Anda sendiri + + Bind to given address. Use [host]:port notation for IPv6 + - Mined - Ditambang + Find peers using DNS lookup (default: 1) + - Other - Lainnya + Stake your beans to support network and gain reward (default: 1) + - - Enter address or label to search - Masukkan alamat atau label untuk mencari + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Min amount - Jumlah min + + Sync checkpoints policy (default: strict) + - - Copy address - Salin alamat + + Threshold for disconnecting misbehaving peers (default: 100) + Batas untuk memutuskan peer buruk (standar: 100) - Copy label - Salin label + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Jumlah kedua untuk menjaga peer buruk dari hubung-ulang (standar: 86400) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - Copy amount - Salin jumlah + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - Copy transaction ID - + Use UPnP to map the listening port (default: 1 when listening) + - Edit label - Ubah label + Use UPnP to map the listening port (default: 0) + - Show transaction details - Tampilkan rincian transaksi + Detach block and address databases. Increases shutdown time (default: 0) + - - Export Transaction Data - + + Fee per KB to add to transactions you send + - Comma separated file (*.csv) - Berkas CSV (*.csv) + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Confirmed - Terkonfirmasi + + Accept command line and JSON-RPC commands + Menerima perintah baris perintah dan JSON-RPC - Date - Tanggal + Run in the background as a daemon and accept commands + Berjalan dibelakang sebagai daemin dan menerima perintah - Type - Jenis + Use the test network + Gunakan jaringan uji - Label - Label + Output extra debugging information. Implies all other -debug* options + - Address - Alamat + Output extra network debugging information + - Amount - Jumlah + Prepend debug output with timestamp + - ID - ID + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Error exporting - + + Send trace/debug info to console instead of debug.log file + Kirim info lacak/debug ke konsol sebaliknya dari berkas debug.log - - Could not write to file %1. - + + Send trace/debug info to debugger + - - Range: - Jarak: + + Username for JSON-RPC connections + Nama pengguna untuk hubungan JSON-RPC - - to - ke + + Password for JSON-RPC connections + Kata sandi untuk hubungan JSON-RPC - - - WalletModel - - Sending... - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - - - bitcoin-core - - BitBean version - + + Allow JSON-RPC connections from specified IP address + Izinkan hubungan JSON-RPC dari alamat IP yang ditentukan - Usage: - Penggunaan: + Send commands to node running on <ip> (default: 127.0.0.1) + Kirim perintah ke node berjalan pada <ip> (standar: 127.0.0.1) - Send command to -server or BitBeand - + 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) - - List commands - Daftar perintah + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Require a confirmations for change (default: 0) + - Get help for a command - Dapatkan bantuan untuk perintah + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - Options: - Pilihan: + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - - Specify configuration file (default: BitBean.conf) - + + Upgrade wallet to latest format + Perbarui dompet ke format terbaru - Specify pid file (default: BitBeand.pid) - + Set key pool size to <n> (default: 100) + Kirim ukuran kolam kunci ke <n> (standar: 100) - - Specify wallet file (within data directory) - + + Rescan the block chain for missing wallet transactions + Pindai ulang rantai-blok untuk transaksi dompet yang hilang - - Specify data directory - Tentukan direktori data + + Attempt to recover private keys from a corrupt wallet.dat + - - Set database cache size in megabytes (default: 25) - Atur ukuran tembolok dalam megabyte (standar: 25) + + How many blocks to check at startup (default: 2500, 0 = all) + - Set database disk log size in megabytes (default: 100) - + How thorough the block verification is (0-6, default: 1) + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Imports blocks from external blk000?.dat file + - Maintain at most <n> connections to peers (default: 125) - Mengatur hubungan paling banyak <n> ke peer (standar: 125) + Block creation options: + - - Connect to a node to retrieve peer addresses, and disconnect - Hubungkan ke node untuk menerima alamat peer, dan putuskan + + Set minimum block size in bytes (default: 0) + - Specify your own public address - Tentukan alamat publik Anda sendiri + Set maximum block size in bytes (default: 250000) + - - Bind to given address. Use [host]:port notation for IPv6 - + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Stake your coins to support network and gain reward (default: 1) - + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - - Threshold for disconnecting misbehaving peers (default: 100) - Batas untuk memutuskan peer buruk (standar: 100) + + Use OpenSSL (https) for JSON-RPC connections + Gunakan OpenSSL (https) untuk hubungan JSON-RPC - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Jumlah kedua untuk menjaga peer buruk dari hubung-ulang (standar: 86400) + Server certificate file (default: server.cert) + Berkas sertifikat server (standar: server.cert) - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - + + Server private key (default: server.pem) + Kunci pribadi server (standar: server.pem) - - Detach block and address databases. Increases shutdown time (default: 0) - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - 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. - + + Invalid amount for -paytxfee=<amount>: '%s' + Jumlah salah untuk -paytxfee=<amount>: '%s' - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Invalid amount for -mininput=<amount>: '%s' + - - Accept command line and JSON-RPC commands - Menerima perintah baris perintah dan JSON-RPC + + Wallet %s resides outside data directory %s. + - - Error: Transaction creation failed - + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Error: Wallet locked, unable to create transaction - + + Verifying database integrity... + - - Importing blockchain data file. - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Importing bootstrap blockchain data file. - + + 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. + - - Run in the background as a daemon and accept commands - Berjalan dibelakang sebagai daemin dan menerima perintah + + wallet.dat corrupt, salvage failed + - Use the test network - Gunakan jaringan uji + Unknown -socks proxy version requested: %i + Diminta versi proxy -socks tidak diketahui: %i - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Unknown network specified in -onlynet: '%s' + Jaringan tidak diketahui yang ditentukan dalam -onlynet: '%s' - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Invalid -proxy address: '%s' + Alamat -proxy salah: '%s' + + + + Invalid -tor address: '%s' + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Cannot resolve -bind address: '%s' + Tidak dapat menyelesaikan alamat -bind: '%s' - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Failed to listen on any port. Use -listen=0 if you want this. + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Cannot resolve -externalip address: '%s' + Tidak dapat menyelesaikan alamat -externalip: '%s' - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Invalid amount for -reservebalance=<amount> + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Unable to sign checkpoint, wrong checkpointkey? + + - - 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. - + + Loading block index... + Memuat indeks blok... - - Attempt to recover private keys from a corrupt wallet.dat - + + Error loading blkindex.dat + - - Block creation options: - + + Loading wallet... + Memuat dompet... - - Connect only to the specified node(s) - + + Error loading wallet.dat: Wallet corrupted + Gagal memuat wallet.dat: Dompet rusak - - Discover own IP address (default: 1 when listening and no -externalip) - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - - Failed to listen on any port. Use -listen=0 if you want this. - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Find peers using DNS lookup (default: 1) - + + Wallet needed to be rewritten: restart BitBean to complete + - - Sync checkpoints policy (default: strict) - + + Error loading wallet.dat + Gagal memuat wallet.dat - - Invalid -tor address: '%s' - + + Cannot downgrade wallet + Tidak dapat menurunkan versi dompet - - Invalid amount for -reservebalance=<amount> - + + Cannot initialize keypool + initialisasi keypool gagal - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Cannot write default address + Tidak dapat menyimpan alamat standar - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Rescanning... + Memindai ulang... - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Importing blockchain data file. + - - Output extra debugging information. Implies all other -debug* options - + + Importing bootstrap blockchain data file. + - Output extra network debugging information - + Loading addresses... + Memuat alamat... - Prepend debug output with timestamp - + Error: could not start node + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Done loading + Memuat selesai - - Select the version of socks proxy to use (4-5, default: 5) - + + Unable to bind to %s on this computer. BitBean is probably already running. + - - Send trace/debug info to console instead of debug.log file - Kirim info lacak/debug ke konsol sebaliknya dari berkas debug.log + + 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) - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - + Error: Wallet locked, unable to create transaction + - - Set minimum block size in bytes (default: 0) - + + Error: Wallet unlocked for staking only, unable to create transaction. + Eror: Dompet hanya di-buka hanya untuk staking, transaksi gagal dilaksanakan - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Specify connection timeout in milliseconds (default: 5000) - + + Error: Transaction creation failed + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Sending... + Mengirim... - - Use UPnP to map the listening port (default: 0) - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Use UPnP to map the listening port (default: 1 when listening) - + + Invalid amount + Jumlah salah - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Insufficient funds + Saldo tidak mencukupi - - Username for JSON-RPC connections - Nama pengguna untuk hubungan JSON-RPC + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Verifying database integrity... - + + Warning: This version is obsolete, upgrade required! + - + WARNING: syncronized checkpoint violation detected, but skipped! - + Warning: Disk space is low! - + - - Warning: This version is obsolete, upgrade required! - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - wallet.dat corrupt, salvage failed - + Usage: + Penggunaan: - - Password for JSON-RPC connections - Kata sandi untuk hubungan JSON-RPC + List commands + Daftar perintah - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + Get help for a command + Dapatkan bantuan untuk perintah - - Find peers using internet relay chat (default: 0) - + Options: + Pilihan: - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + Specify data directory + Tentukan direktori data - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + Set database cache size in megabytes (default: 25) + Atur ukuran tembolok dalam megabyte (standar: 25) - - Allow JSON-RPC connections from specified IP address - Izinkan hubungan JSON-RPC dari alamat IP yang ditentukan + Maintain at most <n> connections to peers (default: 125) + Mengatur hubungan paling banyak <n> ke peer (standar: 125) - - Send commands to node running on <ip> (default: 127.0.0.1) - Kirim perintah ke node berjalan pada <ip> (standar: 127.0.0.1) + Connect to a node to retrieve peer addresses, and disconnect + Hubungkan ke node untuk menerima alamat peer, dan putuskan - - 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) + Specify your own public address + Tentukan alamat publik Anda sendiri - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Threshold for disconnecting misbehaving peers (default: 100) + Batas untuk memutuskan peer buruk (standar: 100) - - Require a confirmations for change (default: 0) - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Jumlah kedua untuk menjaga peer buruk dari hubung-ulang (standar: 86400) - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Accept command line and JSON-RPC commands + Menerima perintah baris perintah dan JSON-RPC - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Run in the background as a daemon and accept commands + Berjalan dibelakang sebagai daemin dan menerima perintah - - Upgrade wallet to latest format - Perbarui dompet ke format terbaru + Use the test network + Gunakan jaringan uji - - Set key pool size to <n> (default: 100) - Kirim ukuran kolam kunci ke <n> (standar: 100) + Send trace/debug info to console instead of debug.log file + Kirim info lacak/debug ke konsol sebaliknya dari berkas debug.log - - Rescan the block chain for missing wallet transactions - Pindai ulang rantai-blok untuk transaksi dompet yang hilang + Username for JSON-RPC connections + Nama pengguna untuk hubungan JSON-RPC - - How many blocks to check at startup (default: 2500, 0 = all) - + Password for JSON-RPC connections + Kata sandi untuk hubungan JSON-RPC - - How thorough the block verification is (0-6, default: 1) - + Allow JSON-RPC connections from specified IP address + Izinkan hubungan JSON-RPC dari alamat IP yang ditentukan - - Imports blocks from external blk000?.dat file - + Send commands to node running on <ip> (default: 127.0.0.1) + Kirim perintah ke node berjalan pada <ip> (standar: 127.0.0.1) - - Use OpenSSL (https) for JSON-RPC connections - Gunakan OpenSSL (https) untuk hubungan JSON-RPC + 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) - - Server certificate file (default: server.cert) - Berkas sertifikat server (standar: server.cert) + Upgrade wallet to latest format + Perbarui dompet ke format terbaru - - Server private key (default: server.pem) - Kunci pribadi server (standar: server.pem) + Set key pool size to <n> (default: 100) + Kirim ukuran kolam kunci ke <n> (standar: 100) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + Rescan the block chain for missing wallet transactions + Pindai ulang rantai-blok untuk transaksi dompet yang hilang - - Error: Wallet unlocked for staking only, unable to create transaction. - Eror: Dompet hanya di-buka hanya untuk staking, transaksi gagal dilaksanakan + Use OpenSSL (https) for JSON-RPC connections + Gunakan OpenSSL (https) untuk hubungan JSON-RPC - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + Server certificate file (default: server.cert) + Berkas sertifikat server (standar: server.cert) - - This help message - Pesan bantuan ini + Server private key (default: server.pem) + Kunci pribadi server (standar: server.pem) - - Wallet %s resides outside data directory %s. - + Error: Wallet unlocked for staking only, unable to create transaction. + Eror: Dompet hanya di-buka hanya untuk staking, transaksi gagal dilaksanakan - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + This help message + Pesan bantuan ini - BitBean - BitBean + BitBean - 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) + Tidak dapat mengikat ke %s dengan komputer ini (ikatan gagal %d, %s) - - Connect through socks proxy - - - - Allow DNS lookups for -addnode, -seednode and -connect - Izinkan peninjauan DNS untuk -addnote, -seednode dan -connect + Izinkan peninjauan DNS untuk -addnote, -seednode dan -connect - Loading addresses... - Memuat alamat... + Memuat alamat... - - Error loading blkindex.dat - - - - Error loading wallet.dat: Wallet corrupted - Gagal memuat wallet.dat: Dompet rusak - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + Gagal memuat wallet.dat: Dompet rusak - Error loading wallet.dat - Gagal memuat wallet.dat + Gagal memuat wallet.dat - Invalid -proxy address: '%s' - Alamat -proxy salah: '%s' + Alamat -proxy salah: '%s' - Unknown network specified in -onlynet: '%s' - Jaringan tidak diketahui yang ditentukan dalam -onlynet: '%s' + Jaringan tidak diketahui yang ditentukan dalam -onlynet: '%s' - Unknown -socks proxy version requested: %i - Diminta versi proxy -socks tidak diketahui: %i + Diminta versi proxy -socks tidak diketahui: %i - Cannot resolve -bind address: '%s' - Tidak dapat menyelesaikan alamat -bind: '%s' + Tidak dapat menyelesaikan alamat -bind: '%s' - Cannot resolve -externalip address: '%s' - Tidak dapat menyelesaikan alamat -externalip: '%s' + Tidak dapat menyelesaikan alamat -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Jumlah salah untuk -paytxfee=<amount>: '%s' + Jumlah salah untuk -paytxfee=<amount>: '%s' - - Error: could not start node - - - - Sending... - Mengirim... + Mengirim... - Invalid amount - Jumlah salah + Jumlah salah - Insufficient funds - Saldo tidak mencukupi + Saldo tidak mencukupi - Loading block index... - Memuat indeks blok... + 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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + Tambahkan node untuk dihubungkan dan upaya untuk menjaga hubungan tetap terbuka - Loading wallet... - Memuat dompet... + Memuat dompet... - Cannot downgrade wallet - Tidak dapat menurunkan versi dompet + Tidak dapat menurunkan versi dompet - Cannot initialize keypool - initialisasi keypool gagal + initialisasi keypool gagal - Cannot write default address - Tidak dapat menyimpan alamat standar + Tidak dapat menyimpan alamat standar - Rescanning... - Memindai ulang... + Memindai ulang... - Done loading - Memuat selesai + Memuat selesai - To use the %s option - Gunakan pilihan %s + Gunakan pilihan %s - Error - Gagal + 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. - Anda harus mengatur rpcpassword=<kata sandi> dalam berkas konfigurasi: + Anda harus mengatur rpcpassword=<kata sandi> dalam berkas konfigurasi: %s 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.qm b/src/qt/locale/bitbean_it.qm similarity index 52% rename from src/qt/locale/bitcoin_it.qm rename to src/qt/locale/bitbean_it.qm index cf07101..8ec00e8 100644 Binary files a/src/qt/locale/bitcoin_it.qm and b/src/qt/locale/bitbean_it.qm differ diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitbean_it.ts similarity index 53% rename from src/qt/locale/bitcoin_it.ts rename to src/qt/locale/bitbean_it.ts index 1f5080f..40ccdc2 100644 --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitbean_it.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - 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. - + Questo è un software sperimentale. Distribuito sotto la licenza software MIT/X11, vedi il file COPYING incluso oppure su http://www.opensource.org/licenses/mit-license.php. @@ -37,72 +49,72 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso AddressBookPage - + Address Book - + - + Double-click to edit address or label Fai doppio click per modificare o cancellare l'etichetta - + Create a new address Crea un nuovo indirizzo - + Copy the currently selected address to the system clipboard Copia l'indirizzo attualmente selezionato nella clipboard - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &Copia l'indirizzo - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list Cancella l'indirizzo attualmente selezionato dalla lista - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + &Verifica Messaggio - + &Delete &Cancella @@ -119,7 +131,7 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Export Address Book Data - + @@ -129,12 +141,12 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Error exporting - + Could not write to file %1. - + @@ -158,34 +170,34 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -234,16 +246,21 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + Si è sicuri di voler cifrare il portamonete? - Are you sure you wish to encrypt your wallet? - Si è sicuri di voler cifrare il portamonete? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 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. @@ -260,12 +277,7 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso Portamonete cifrato - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -307,333 +319,585 @@ Questo prodotto include software sviluppato dal progetto OpenSSL per l'uso - BitcoinGUI - - - Sign &message... - Firma il &messaggio... - + BeanControlDialog - - Synchronizing with network... - Sto sincronizzando con la rete... + + Bean Control + - - &Overview - &Sintesi + + Quantity: + Quantità: - - Show general overview of wallet - Mostra lo stato generale del portamonete + + Bytes: + Byte: - - &Transactions - &Transazioni + + Amount: + Importo: - - Browse transaction history - Cerca nelle transazioni + + Priority: + Priorità: - - &Address Book - + + Fee: + Commissione: - - Edit the list of stored addresses and labels - + + Low Output: + Low Output: - - &Receive coins - + + After Fee: + Dopo Commissione: - - Show the list of addresses for receiving payments - + + Change: + Resto: - - &Send coins - + + (un)select all + (de)seleziona tutto - - E&xit - &Esci + + Tree mode + Modalità Albero - - Quit application - Chiudi applicazione + + List mode + Modalità Lista - - Show information about BitBean - + + Amount + Importo - - About &Qt - Informazioni su &Qt + + Label + Etichetta - - Show information about Qt - Mostra informazioni su Qt + + Address + Indirizzo - - &Options... - &Opzioni... + + Date + Data - - &Encrypt Wallet... - &Cifra il portamonete... + + Confirmations + Conferme: - &Backup Wallet... - &Backup Portamonete... + Confirmed + Confermato - - &Change Passphrase... - &Cambia la passphrase... - - - - ~%n block(s) remaining - + + Priority + Priorità - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Copia l'indirizzo - - &Export... - + + Copy label + Copia l'etichetta - - Send coins to a BitBean address - + + + Copy amount + Copia l'importo - - Modify configuration options for BitBean - + + Copy transaction ID + Copia l'ID transazione - - Export the data in the current tab to a file - + + Copy quantity + Copia quantità - - Encrypt or decrypt wallet - + + Copy fee + Copia commissione - - Backup wallet to another location - Backup portamonete in un'altra locazione + + Copy after fee + Copia dopo commissione - - Change the passphrase used for wallet encryption - Cambia la passphrase per la cifratura del portamonete + + Copy bytes + Copia byte - - &Debug window - Finestra &Debug + + Copy priority + Copia priorità - Open debugging and diagnostic console - Apri la console di degugging e diagnostica + Copy low output + Copia low output - - &Verify message... - &Verifica messaggio... + + Copy change + Copia resto - - BitBean - + + highest + massima - - Wallet - Portamonete + + high + alta - - &About BitBean - + + medium-high + medio-alta - - &Show / Hide - &Mostra/Nascondi + + medium + media - - Unlock wallet - + + low-medium + medio-bassa - &Lock Wallet - + low + bassa - Lock wallet - + lowest + infima - - &File - &File + + DUST + - - &Settings - &Impostazioni + + yes + si - - &Help - &Aiuto + + no + no - - Tabs toolbar - Barra degli strumenti "Tabs" + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + (nessuna etichetta) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + resto da %1 (%2) - - Not staking because wallet is locked - + + (change) + (resto) + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - + + Vault + - - - %n second(s) ago - + + + &Overview + &Sintesi - - &Unlock Wallet... - + + Show general overview of wallet + Mostra lo stato generale del portamonete + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transazioni + + + + Browse transaction history + Cerca nelle transazioni + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + &Esci + + + + Quit application + Chiudi applicazione + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + Informazioni su &Qt + + + + Show information about Qt + Mostra informazioni su Qt + + + + &Options... + &Opzioni... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + &Mostra/Nascondi + + + + &Encrypt Wallet... + &Cifra il portamonete... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &Backup Portamonete... + + + + Backup wallet to another location + Backup portamonete in un'altra locazione + + + + &Change Passphrase... + &Cambia la passphrase... + + + + Change the passphrase used for wallet encryption + Cambia la passphrase per la cifratura del portamonete + + + + &Unlock Wallet... + + + + + Unlock wallet + Sblocca il portamonete + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Firma il &messaggio... + + + + &Verify message... + &Verifica messaggio... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + Finestra &Debug + + + + Open debugging and diagnostic console + Apri la console di degugging e diagnostica + + + + &File + &File + + + + &Settings + &Impostazioni + + + + &Help + &Aiuto + + + + Tabs toolbar + Barra degli strumenti "Tabs" + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + Sto sincronizzando con la rete... + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + - + %n minute(s) ago - + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - Aggiornato + Aggiornato Catching up... - In aggiornamento... + In aggiornamento... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Transazione inviata + Transazione inviata Incoming transaction - Transazione ricevuta + Transazione ricevuta @@ -642,7 +906,7 @@ Amount: %2 Type: %3 Address: %4 - Data: %1 + Data: %1 Quantità: %2 Tipo: %3 Indirizzo: %4 @@ -653,341 +917,440 @@ Indirizzo: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + 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> e 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> e attualmente <b>bloccato</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - %n ora%n ore + + %n ora + %n ore + %n day(s) - %n giorno%n giorni + + %n giorno + %n giorni + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Avviso di rete + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - Quantità: + + Not staking because you don't have mature beans + - - Bytes: - Byte: + + Not staking + + + + BitcoinGUI - - Amount: - Importo: + Sign &message... + Firma il &messaggio... - - Priority: - Priorità: + Synchronizing with network... + Sto sincronizzando con la rete... - - Fee: - Commissione: + &Overview + &Sintesi - - Low Output: - Low Output: + Show general overview of wallet + Mostra lo stato generale del portamonete - - no - no + &Transactions + &Transazioni - - After Fee: - Dopo Commissione: + Browse transaction history + Cerca nelle transazioni - - Change: - Resto: + E&xit + &Esci - - (un)select all - (de)seleziona tutto + Quit application + Chiudi applicazione - - Tree mode - Modalità Albero + About &Qt + Informazioni su &Qt - - List mode - Modalità Lista + Show information about Qt + Mostra informazioni su Qt - - Amount - Importo + &Options... + &Opzioni... - - Label - + &Encrypt Wallet... + &Cifra il portamonete... - - Address - Indirizzo + &Backup Wallet... + &Backup Portamonete... + + + &Change Passphrase... + &Cambia la passphrase... + + + Backup wallet to another location + Backup portamonete in un'altra locazione + + + Change the passphrase used for wallet encryption + Cambia la passphrase per la cifratura del portamonete + + + &Debug window + Finestra &Debug + + + Open debugging and diagnostic console + Apri la console di degugging e diagnostica + + + &Verify message... + &Verifica messaggio... + + + Wallet + Portamonete + + + &Show / Hide + &Mostra/Nascondi + + + &File + &File + + + &Settings + &Impostazioni + + + &Help + &Aiuto + + + Tabs toolbar + Barra degli strumenti "Tabs" + + + [testnet] + [testnet] + + + Up to date + Aggiornato + + + Catching up... + In aggiornamento... + + + Sent transaction + Transazione inviata + + + Incoming transaction + Transazione ricevuta + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1 +Quantità: %2 +Tipo: %3 +Indirizzo: %4 + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Il portamonete è <b>cifrato</b> e attualmente <b>sbloccato</b> + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Il portamonete è <b>cifrato</b> e attualmente <b>bloccato</b> + + + %n hour(s) + + %n ora + %n ore + + + + %n day(s) + + %n giorno + %n giorni + + + + + ClientModel + + + Network Alert + Avviso di rete + + + + CoinControlDialog + + Quantity: + Quantità: + + + Bytes: + Byte: + + + Amount: + Importo: + + + Priority: + Priorità: + + + Fee: + Commissione: + + + Low Output: + Low Output: + + + no + no + + + 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 + Data - Confirmations - Conferme: + Conferme: - Confirmed - Confermato + Confermato - Priority - Priorità + Priorità - Copy address - Copia l'indirizzo + Copia l'indirizzo - Copy label - Copia l'etichetta + Copia l'etichetta - - Copy amount - Copia l'importo + Copia l'importo - Copy transaction ID - Copia l'ID transazione + Copia l'ID transazione - Copy quantity - Copia quantità + Copia quantità - Copy fee - Copia commissione + Copia commissione - Copy after fee - Copia dopo commissione + Copia dopo commissione - Copy bytes - Copia byte + Copia byte - Copy priority - Copia priorità + Copia priorità - Copy low output - Copia low output + Copia low output - Copy change - Copia resto + Copia resto - highest - massima + massima - high - alta + alta - medium-high - medio-alta + medio-alta - medium - media + media - low-medium - medio-bassa + medio-bassa - low - bassa + bassa - lowest - infima - - - - DUST - + infima - yes - si + si - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 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. - - This means a fee of at least %2 is required. - - - - - (no label) - (nessuna etichetta) + (nessuna etichetta) - change from %1 (%2) - resto da %1 (%2) + resto da %1 (%2) - (change) - (resto) + (resto) EditAddressDialog - + Edit Address Modifica l'indirizzo @@ -999,7 +1362,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1009,7 +1372,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1039,7 +1402,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1055,98 +1418,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Utilizzo: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Opzioni - + &Main &Principale - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee Paga la &commissione - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1156,7 +1519,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1166,12 +1529,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1181,7 +1544,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1241,7 +1604,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1250,13 +1613,27 @@ This label turns red, if the priority is smaller than "medium". + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + 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 per l'interfaccia e per l'invio di monete - + Whether to show BitBean addresses in the transaction list or not. - + @@ -1264,17 +1641,11 @@ This label turns red, if the priority is smaller than "medium". &Mostra gli indirizzi nella lista delle transazioni - Whether to show coin control features or not. - Mostrare/non mostrare le funzionalita' di controllo della moneta. - - - - Display coin &control features (experts only!) - + Mostrare/non mostrare le funzionalita' di controllo della moneta. - + &OK &OK @@ -1286,7 +1657,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1297,13 +1668,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1314,145 +1685,225 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Modulo - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - Portamonete + Portamonete - + Spendable: - + - + Your current spendable balance Saldo spendibile attuale - - Immature: - Immaturo: + + Sprouting: + - - Mined balance that has not yet matured - Importo scavato che non è ancora maturato + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + - - Total: - Totale: + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + - - Your current total balance - Saldo totale attuale + + Immature: + Immaturo: - - <b>Recent transactions</b> - <b>Transazioni recenti</b> + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + BitBean Network + - - - out of sync - fuori sincrono + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + Importo scavato che 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 QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Importo: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Nome del client @@ -1503,7 +1954,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1533,17 +1984,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1558,12 +2009,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1573,7 +2024,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1583,7 +2034,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1597,59 +2048,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Spedisci Bitcoin + Send Beans + - Coin Control Features - Funzionalità di Coin Control + Bean Control Features + Inputs... - Input... + Input... automatically selected - selezionato automaticamente + selezionato automaticamente Insufficient funds! - Fondi insufficienti! + Fondi insufficienti! Quantity: - Quantità: + Quantità: 0 - + Bytes: - Byte: + Byte: Amount: - Importo: + Importo: @@ -1657,272 +2108,438 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - Priorità: + Priorità: medium - + media Fee: - Commissione: + Commissione: Low Output: - Low Output: + Low Output: no - + no After Fee: - Dopo Commissione: + Dopo Commissione: Change - + custom change address - + Send to multiple recipients at once - Spedisci a diversi beneficiari in una volta sola + Spedisci a diversi beneficiari in una volta sola Add &Recipient - &Aggiungi beneficiario + &Aggiungi beneficiario Remove all transaction fields - + Clear &All - Cancella &tutto + Cancella &tutto Balance: - Saldo: + Saldo: 123.456 BC - + Confirm the send action - Conferma la spedizione + Conferma la spedizione S&end - &Spedisci + &Spedisci - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - Copia quantità + Copia quantità Copy amount - Copia l'importo + Copia l'importo Copy fee - Copia commissione + Copia commissione Copy after fee - Copia dopo commissione + Copia dopo commissione Copy bytes - Copia byte + Copia byte Copy priority - Copia priorità + Copia priorità Copy low output - Copia low output + Copia low output Copy change - Copia resto + Copia resto <b>%1</b> to %2 (%3) - + - Confirm send coins - Conferma la spedizione di bitcoin + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - L'indirizzo del beneficiario non è valido, per cortesia controlla. + L'indirizzo del beneficiario non è valido, per cortesia controlla. The amount to pay must be larger than 0. - L'importo da pagare dev'essere maggiore di 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 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 saldo attuale includendo la commissione %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. + Trovato un indirizzo doppio, si può spedire solo una volta a ciascun indirizzo in una singola operazione. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (nessuna etichetta) + (nessuna etichetta) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Modulo - + A&mount: - &Importo: + &Importo: Pay &To: - Paga &a: + Paga &a: - + Enter a label for this address to add it to your address book - Inserisci un'etichetta per questo indirizzo, per aggiungerlo nella rubrica + Inserisci un'etichetta per questo indirizzo, per aggiungerlo nella rubrica &Label: - &Etichetta + &Etichetta The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Incollare l'indirizzo dagli appunti + Incollare l'indirizzo dagli appunti Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + Spedisci Bitcoin + + + 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: + + + Send to multiple recipients at once + Spedisci a diversi beneficiari in una volta sola + + + Add &Recipient + &Aggiungi beneficiario + + + Clear &All + Cancella &tutto + + + Balance: + Saldo: + + + Confirm the send action + Conferma la spedizione + + + S&end + &Spedisci + + + 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 + + + Confirm send coins + Conferma la spedizione di bitcoin + + + The recipient address is not valid, please recheck. + L'indirizzo del beneficiario non è valido, per cortesia controlla. + + + 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 + + + The total exceeds your balance when the %1 transaction fee is included. + Il totale è superiore al saldo attuale includendo la commissione %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. + + + (no label) + (nessuna etichetta) + + + + SendCoinsEntry + + A&mount: + &Importo: + + + Pay &To: + Paga &a: + + + 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 + + + Alt+A + Alt+A + + + Paste address from clipboard + Incollare l'indirizzo dagli appunti + + + Alt+P + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message Firme - Firma / Verifica un messaggio @@ -1940,13 +2557,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1977,7 +2594,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -2004,12 +2621,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2020,7 +2637,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2030,7 +2647,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2109,7 +2726,10 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + @@ -2139,7 +2759,10 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - , trasmesso attraverso %n nodo, trasmesso attraverso %n nodi + + , trasmesso attraverso %n nodo + , trasmesso attraverso %n nodi + @@ -2192,7 +2815,10 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - matura in %n ulteriore bloccomatura in altri %n blocchi + + matura in %n ulteriore blocco + matura in altri %n blocchi + @@ -2234,8 +2860,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2281,7 +2907,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Dettagli sulla transazione @@ -2326,7 +2952,10 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - Aperto per %n altro bloccoAperto per altri %n blocchi + + Aperto per %n altro blocco + Aperto per altri %n blocchi + @@ -2359,941 +2988,1260 @@ This label turns red, if the priority is smaller than "medium". Questo blocco non è stato ricevuto da altri nodi e probabilmente non sarà accettato! - - Generated but not accepted - Generati, ma non accettati + + Generated but not accepted + Generati, ma non accettati + + + + Received with + Ricevuto tramite + + + + Received from + Ricevuto da + + + + Sent to + Spedito a + + + + Payment to yourself + Pagamento a te stesso + + + + SPROUT + + + + 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. + + + + 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. + + + + 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 + + + + To yourself + A te + + + + 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 Data + + + + + Comma separated file (*.csv) + Testo CSV (*.csv) + + + + Confirmed + Confermato + + + + Date + Data + + + + Type + Tipo + + + + Label + Etichetta + + + + Address + Indirizzo + + + + Amount + Importo + + + + ID + ID + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + Intervallo: + + + + to + a + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + Per usare la opzione %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Errore + + + + 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 + + + + 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 + + + + 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 + + + + BitBean version + + + + + Usage: + Utilizzo: + + + + Send command to -server or BitBeand + + + + + List commands + Lista comandi + + + + + Get help for a command + Aiuto su un comando + + + + + BitBean + + + + + Options: + Opzioni: + + + + + This help message + Questo messaggio di aiuto + + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Specifica la cartella dati + + + + + Specify wallet file (within data directory) + Specifica il file portafoglio (nella cartella dati) + + + + Set database cache size in megabytes (default: 25) + Imposta la dimensione cache del database in megabyte (predefinita: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Specifica il timeout di connessione in millisecondi (predefinito: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Consenti ricerche DNS per aggiungere nodi e collegare + + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Mantieni al massimo <n> connessioni ai peer (predefinite: 125) + + + + 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 + + + + Connect only to the specified node(s) + Connetti solo al nodo specificato + + + + Connect to a node to retrieve peer addresses, and disconnect + Connessione ad un nodo per ricevere l'indirizzo del peer, e disconnessione + + + + Specify your own public address + Specifica il tuo indirizzo pubblico + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Connetti solo a nodi nella rete <net> (IPv4, IPv6 o Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Scopri proprio indirizzo IP (predefinito: 1 se in ascolto e no -externalip) + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Accetta connessioni dall'esterno (predefinito: 1 se no -proxy o -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Usa UPnP per mappare la porta in ascolto (predefinito: 1 when listening) + + + + Use UPnP to map the listening port (default: 0) + Usa UPnP per mappare la porta in ascolto (predefinito: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + Accetta da linea di comando e da comandi JSON-RPC + + + + + Run in the background as a daemon and accept commands + Esegui in background come demone e accetta i comandi + + + + + Use the test network + Utilizza la rete di prova + + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + 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) + + + + 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 + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + Nome utente per connessioni JSON-RPC + + + + + Password for JSON-RPC connections + Password per connessioni JSON-RPC + + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + + + + + 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) + + + + Rescan the block chain for missing wallet transactions + Ripeti analisi della catena dei blocchi per cercare le transazioni mancanti dal portamonete + + + + + Attempt to recover private keys from a corrupt wallet.dat + Tenta di recuperare le chiavi private da un wallet.dat corrotto - - Received with - Ricevuto tramite + + How many blocks to check at startup (default: 2500, 0 = all) + - - Received from - Ricevuto da + + How thorough the block verification is (0-6, default: 1) + - - Sent to - Spedito a + + Imports blocks from external blk000?.dat file + - - Payment to yourself - Pagamento a te stesso + + Block creation options: + Opzioni creazione blocco: - - Mined - Ottenuto dal mining + + Set minimum block size in bytes (default: 0) + Imposta dimensione minima del blocco in bytes (predefinita: 0) - - (n/a) - (N / a) + + Set maximum block size in bytes (default: 250000) + - - 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. + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Date and time that the transaction was received. - Data e ora in cui la transazione è stata ricevuta. + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - - Type of transaction. - Tipo di transazione. + + Use OpenSSL (https) for JSON-RPC connections + Utilizzare OpenSSL (https) per le connessioni JSON-RPC + - - Destination address of transaction. - Indirizzo di destinazione della transazione. + + Server certificate file (default: server.cert) + File certificato del server (predefinito: server.cert) - - Amount removed from or added to balance. - Importo rimosso o aggiunto al saldo. + + Server private key (default: server.pem) + Chiave privata del server (predefinito: server.pem) - - - TransactionView - - - All - Tutti + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Today - Oggi + + Invalid amount for -paytxfee=<amount>: '%s' + Importo non valido per -paytxfee=<amount>: '%s' - This week - Questa settimana + 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. - - This month - Questo mese + + Invalid amount for -mininput=<amount>: '%s' + - Last month - Il mese scorso + Wallet %s resides outside data directory %s. + - This year - Quest'anno + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Range... - Intervallo... + + Verifying database integrity... + - - Received with - Ricevuto tramite + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Sent to - Spedito a + + 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. - - To yourself - A te + + wallet.dat corrupt, salvage failed + wallet.dat corrotto, salvataggio fallito - Mined - Ottenuto dal mining + Unknown -socks proxy version requested: %i + Versione -socks proxy sconosciuta richiesta: %i - Other - Altro + Unknown network specified in -onlynet: '%s' + Rete sconosciuta specificata in -onlynet: '%s' - - Enter address or label to search - Inserisci un indirizzo o un'etichetta da cercare + + Invalid -proxy address: '%s' + Indirizzo -proxy non valido: '%s' - - Min amount - Importo minimo + + Invalid -tor address: '%s' + - - Copy address - Copia l'indirizzo + + Cannot resolve -bind address: '%s' + Impossibile risolvere -bind address: '%s' - Copy label - Copia l'etichetta + 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. - Copy amount - Copia l'importo + Cannot resolve -externalip address: '%s' + Impossibile risolvere indirizzo -externalip: '%s' - Copy transaction ID - Copia l'ID transazione + Invalid amount for -reservebalance=<amount> + - Edit label - Modifica l'etichetta + Unable to sign checkpoint, wrong checkpointkey? + + - Show transaction details - Mostra i dettagli della transazione + Loading block index... + Caricamento dell'indice del blocco... - - Export Transaction Data - + + Error loading blkindex.dat + - Comma separated file (*.csv) - Testo CSV (*.csv) + Loading wallet... + Caricamento portamonete... - - Confirmed - Confermato + + Error loading wallet.dat: Wallet corrupted + Errore caricamento wallet.dat: Wallet corrotto - Date - Data + 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. - - Type - Tipo + + Error loading wallet.dat: Wallet requires newer version of BitBean + - Label - Etichetta + Wallet needed to be rewritten: restart BitBean to complete + - Address - Indirizzo + Error loading wallet.dat + Errore caricamento wallet.dat - Amount - Importo + Cannot downgrade wallet + Non è possibile retrocedere il wallet - ID - ID + Cannot initialize keypool + - - Error exporting - + + Cannot write default address + Non è possibile scrivere l'indirizzo predefinito - - Could not write to file %1. - + + Rescanning... + Ripetere la scansione... - - Range: - Intervallo: + + Importing blockchain data file. + - - to - a + + Importing bootstrap blockchain data file. + - - - WalletModel - - Sending... - + + Loading addresses... + Caricamento indirizzi... - - - bitcoin-core - - BitBean version - + + Error: could not start node + - Usage: - Utilizzo: + Done loading + Caricamento completato - Send command to -server or BitBeand - + Unable to bind to %s on this computer. BitBean is probably already running. + + + + + 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) - List commands - Lista comandi - + Error: Wallet locked, unable to create transaction + - Get help for a command - Aiuto su un comando - + Error: Wallet unlocked for staking only, unable to create transaction. + - - Options: - Opzioni: - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Specify configuration file (default: BitBean.conf) - + + Error: Transaction creation failed + - Specify pid file (default: BitBeand.pid) - + Sending... + - - Specify wallet file (within data directory) - Specifica il file portafoglio (nella cartella dati) + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Specify data directory - Specifica la cartella dati - + + Invalid amount + Importo non valido - - Set database cache size in megabytes (default: 25) - Imposta la dimensione cache del database in megabyte (predefinita: 25) + + Insufficient funds + Fondi insufficienti - Set database disk log size in megabytes (default: 100) - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Warning: This version is obsolete, upgrade required! + Attenzione: questa versione è obsoleta, aggiornamento necessario! - Maintain at most <n> connections to peers (default: 125) - Mantieni al massimo <n> connessioni ai peer (predefinite: 125) + WARNING: syncronized checkpoint violation detected, but skipped! + - - Connect to a node to retrieve peer addresses, and disconnect - Connessione ad un nodo per ricevere l'indirizzo del peer, e disconnessione + + Warning: Disk space is low! + - Specify your own public address - Specifica il tuo indirizzo pubblico + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Bind to given address. Use [host]:port notation for IPv6 - + Usage: + Utilizzo: - - Stake your coins to support network and gain reward (default: 1) - + List commands + Lista comandi + - - Threshold for disconnecting misbehaving peers (default: 100) - Soglia di disconnessione dei peer di cattiva qualità (predefinita: 100) + Get help for a command + Aiuto su un comando + - - 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) + Options: + Opzioni: + - - 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 + Specify wallet file (within data directory) + Specifica il file portafoglio (nella cartella dati) - - Detach block and address databases. Increases shutdown time (default: 0) - + Specify data directory + Specifica la cartella dati + - - 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. - + Set database cache size in megabytes (default: 25) + Imposta la dimensione cache del database in megabyte (predefinita: 25) - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + Maintain at most <n> connections to peers (default: 125) + Mantieni al massimo <n> connessioni ai peer (predefinite: 125) - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + Connect to a node to retrieve peer addresses, and disconnect + Connessione ad un nodo per ricevere l'indirizzo del peer, e disconnessione - - Accept command line and JSON-RPC commands - Accetta da linea di comando e da comandi JSON-RPC - + Specify your own public address + Specifica il tuo indirizzo pubblico - - Error: Transaction creation failed - + Threshold for disconnecting misbehaving peers (default: 100) + Soglia di disconnessione dei peer di cattiva qualità (predefinita: 100) - - Error: Wallet locked, unable to create transaction - + 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) - - Importing blockchain data file. - + 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 - - Importing bootstrap blockchain data file. - + Accept command line and JSON-RPC commands + Accetta da linea di comando e da comandi JSON-RPC + - Run in the background as a daemon and accept commands - Esegui in background come demone e accetta i comandi + Esegui in background come demone e 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) + Accetta connessioni dall'esterno (predefinito: 1 se no -proxy o -connect) - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + Errore riscontrato durante l'impostazione della porta RPC %u per l'ascolto su IPv6, tornando su IPv4: %s - 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 BitBean will not work properly. - + Attenzione: -paytxfee è molto alta. Questa è la commissione che si paga quando si invia una transazione. - 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 chiave 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 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. - Attempt to recover private keys from a corrupt wallet.dat - Tenta di recuperare le chiavi private da un wallet.dat corrotto + Tenta di recuperare le chiavi private da un wallet.dat corrotto - Block creation options: - Opzioni creazione blocco: + Opzioni creazione blocco: - Connect only to the specified node(s) - Connetti solo al nodo specificato + Connetti solo al nodo specificato - Discover own IP address (default: 1 when listening and no -externalip) - Scopri proprio indirizzo IP (predefinito: 1 se in ascolto e no -externalip) + Scopri proprio indirizzo IP (predefinito: 1 se in ascolto e no -externalip) - 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. + Impossibile mettersi in ascolto su una porta. Usa -listen=0 se vuoi usare questa opzione. - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Buffer di ricezione massimo per connessione, <n>*1000 byte (predefinito: 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) + Buffer di invio massimo per connessione, <n>*1000 byte (predefinito: 1000) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Connetti solo a nodi nella rete <net> (IPv4, IPv6 o Tor) - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - + 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) - - - - Select the version of socks proxy to use (4-5, default: 5) - + Opzioni SSL: (vedi il wiki di Bitcoin per le istruzioni di configurazione SSL) - 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 + Invia le informazioni di trace/debug alla console invece che al file debug.log - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - Set minimum block size in bytes (default: 0) - Imposta dimensione minima del blocco in bytes (predefinita: 0) + Imposta dimensione minima del blocco in bytes (predefinita: 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) + Riduci il file debug.log all'avvio del client (predefinito: 1 se non impostato -debug) - Specify connection timeout in milliseconds (default: 5000) - Specifica il timeout di connessione in millisecondi (predefinito: 5000) + Specifica il timeout di connessione in millisecondi (predefinito: 5000) - - Unable to sign checkpoint, wrong checkpointkey? - - - - - Use UPnP to map the listening port (default: 0) - Usa UPnP per mappare la porta in 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 in ascolto (predefinito: 1 when listening) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - + Usa UPnP per mappare la porta in ascolto (predefinito: 1 when listening) - Username for JSON-RPC connections - Nome utente per connessioni JSON-RPC + Nome utente per connessioni JSON-RPC - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - - - - Warning: This version is obsolete, upgrade required! - Attenzione: questa versione è obsoleta, aggiornamento necessario! + Attenzione: questa versione è obsoleta, aggiornamento necessario! - wallet.dat corrupt, salvage failed - wallet.dat corrotto, salvataggio fallito + wallet.dat corrotto, salvataggio fallito - Password for JSON-RPC connections - Password per connessioni JSON-RPC + Password per connessioni JSON-RPC - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - - - - Allow JSON-RPC connections from specified IP address - Consenti connessioni JSON-RPC dall'indirizzo IP specificato + 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) + 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 miglior block cambia(%s nel cmd è sostituito dall'hash del blocco) - 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) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Esegui comando quando una transazione del portafoglio cambia (%s in cmd è sostituito da TxID) - Upgrade wallet to latest format - Aggiorna il wallet all'ultimo formato + 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 di riserva 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 - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - - - - 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) + File certificato del server (predefinito: server.cert) - Server private key (default: server.pem) - Chiave privata del server (predefinito: server.pem) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - + Chiave privata del server (predefinito: server.pem) - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - This help message - Questo messaggio di aiuto + Questo messaggio di aiuto - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - - - - 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) - - - - Connect through socks proxy - + Impossibile collegarsi 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 aggiungere nodi e collegare - Loading addresses... - Caricamento indirizzi... - - - - Error loading blkindex.dat - + Caricamento indirizzi... - Error loading wallet.dat: Wallet corrupted - Errore caricamento wallet.dat: Wallet corrotto - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + Errore caricamento wallet.dat: Wallet corrotto - Error loading wallet.dat - Errore caricamento wallet.dat + Errore caricamento wallet.dat - Invalid -proxy address: '%s' - Indirizzo -proxy non valido: '%s' + Indirizzo -proxy non valido: '%s' - Unknown network specified in -onlynet: '%s' - Rete sconosciuta specificata in -onlynet: '%s' + Rete sconosciuta specificata in -onlynet: '%s' - Unknown -socks proxy version requested: %i - Versione -socks proxy sconosciuta richiesta: %i + Versione -socks proxy sconosciuta richiesta: %i - Cannot resolve -bind address: '%s' - Impossibile risolvere -bind address: '%s' + Impossibile risolvere -bind address: '%s' - Cannot resolve -externalip address: '%s' - Impossibile risolvere indirizzo -externalip: '%s' + Impossibile risolvere indirizzo -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Importo non valido per -paytxfee=<amount>: '%s' - - - - Error: could not start node - - - - - Sending... - + Importo non valido per -paytxfee=<amount>: '%s' - Invalid amount - Importo non valido + Importo non valido - Insufficient funds - Fondi insufficienti + Fondi insufficienti - Loading block index... - Caricamento dell'indice del blocco... + Caricamento dell'indice del blocco... - 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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + Elérendő csomópont megadása and attempt to keep the connection open - Loading wallet... - Caricamento portamonete... + Caricamento portamonete... - Cannot downgrade wallet - Non è possibile retrocedere il wallet - - - - Cannot initialize keypool - + Non è possibile retrocedere il wallet - Cannot write default address - Non è possibile scrivere l'indirizzo predefinito + Non è possibile scrivere l'indirizzo predefinito - Rescanning... - Ripetere la scansione... + Ripetere la scansione... - Done loading - Caricamento completato + Caricamento completato - To use the %s option - Per usare la opzione %s + Per usare la opzione %s - Error - Errore + 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 con i permessi di amministratore - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_ja.qm b/src/qt/locale/bitbean_ja.qm new file mode 100644 index 0000000..e00e698 Binary files /dev/null and b/src/qt/locale/bitbean_ja.qm differ diff --git a/src/qt/locale/bitbean_ja.ts b/src/qt/locale/bitbean_ja.ts new file mode 100644 index 0000000..050c2cf --- /dev/null +++ b/src/qt/locale/bitbean_ja.ts @@ -0,0 +1,4870 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + ブラックコインについて + + + + <b>BitBean</b> version + <b>ブラックコイン</b>バージョン + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + コピーライト © 2009-2014 The Bitcoin developers +コピーライト © 2012-2014 The NovaCoin developers +コピーライト © 2014 The BitBean developers + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +これは実験的なソフトウェアです。 + +MIT/X11 ソフトウェア ライセンスの下で配布されています。詳しくは添付の COPYING ファイルやhttp://www.opensource.org/licenses/mit-license.php を参照してください。 + +この製品は OpenSSL Toolkit (http://www.openssl.org/) に用いられる Eric Young (eay@cryptsoft.com) が開発した暗号化ソフトウェアと Thomas Bernard が開発した UPnP ソフトウェアを含んでいます。 + + + + AddressBookPage + + + Address Book + アドレス帳 + + + + Double-click to edit address or label + アドレスまたはラベルを編集するにはダブルクリック + + + + Create a new address + 新規アドレスの作成 + + + + Copy the currently selected address to the system clipboard + 現在選択されているアドレスをシステムのクリップボードにコピーする + + + + &New Address + 新しいアドレス + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + これは支払いを受けるためのブラックコインのアドレス。支払い管理をするのため、各送信者へ、それぞれのアドレスを伝えたほうがいいです。 + + + + &Copy Address + アドレスをコピー (&C) + + + + Show &QR Code + QRコードを表す + + + + Sign a message to prove you own a BitBean address + 所有権の証明するためのメサッジを署名する。 + + + + Sign &Message + メサッジを署名する。 + + + + Delete the currently selected address from the list + 選択されたアドレスを一覧から削除する + + + + Verify a message to ensure it was signed with a specified BitBean address + 受け取ったメッセージの署名を確保のため、メッセージを確認する。 + + + + &Verify Message + メッセージを確認する。 + + + + &Delete + 削除 + + + + Copy &Label + ラベルをコピー (&L) + + + + &Edit + 編集 (&E) + + + + Export Address Book Data + アドレス帳のデータを書き出す + + + + Comma separated file (*.csv) + CSVファイル (*.csv) + + + + Error exporting + エラーを書き出す + + + + Could not write to file %1. + ファイルを書き込めなかった。%1 + + + + AddressTableModel + + + Label + ラベル + + + + Address + アドレス + + + + (no label) + (ラベル無し) + + + + AskPassphraseDialog + + + Passphrase Dialog + パスフレーズ ダイアログ + + + + Enter passphrase + パスフレーズを入力 + + + + New passphrase + 新しいパスフレーズ + + + + Repeat new passphrase + 新しいパスフレーズをもう一度 + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + ユーザアカウントはハッキングされたばい、瑣末のsendmoney無効にする。機密保護には効果はない。 + + + + For staking only + 賭けるのみ + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + ウォレットの新しいパスフレーズを入力してください。<br/><b>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 COINS</b>! + ご注意:暗号化したウォレットのパスワードを忘れたばい、b>すべてのコインを失う</b>! + + + + Are you sure you wish to encrypt your wallet? + ウォレットを暗号化、よろしいですか? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + 重要: 過去のウォレット ファイルのバックアップは、暗号化された新しいウォレット ファイルに取り替える必要があります。セキュリティ上の理由により、暗号化された新しいウォレットを使い始めると、暗号化されていないウォレット ファイルのバックアップはすぐに使えなくなります。 + + + + + Warning: The Caps Lock key is on! + 警告: Caps Lock キーがオンになっています! + + + + + Wallet encrypted + ウォレットは暗号化されました + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + ただいま、暗号化手順を完成するため、ブラックコインQTは閉じます。尚、ウォレットを暗号化をされたにしても、PCのウイルスから盗難防止の報償できないことを、ご理解をお願い足します。 + + + + + + + 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. + ウォレットのパスフレーズの変更が成功しました。 + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + 数量: + + + + Bytes: + バイト + + + + Amount: + 総額: + + + + Priority: + 優先: + + + + Fee: + 料金: + + + + Low Output: + アウトプット低い: + + + + After Fee: + 料金の後 + + + + Change: + お釣り: + + + + (un)select all + すべてを選択か選択を解除 + + + + Tree mode + 木モード + + + + List mode + リストモード + + + + Amount + 総額 + + + + Label + + + + + Address + + + + + Date + 日付 + + + + Confirmations + 検証済みの数 + + + + Confirmed + + + + + Priority + 優先 + + + + Copy address + + + + + Copy label + + + + + + Copy amount + 総額のコピー + + + + Copy transaction ID + + + + + Copy quantity + 数量をコピー + + + + Copy fee + 料金をコピー + + + + Copy after fee + 料金の後をコピー + + + + Copy bytes + バイトをコピー + + + + Copy priority + 優先をコピー + + + + Copy low output + アウトプット低いをコピー + + + + Copy change + お釣りをコピー + + + + highest + 最高 + + + + high + 高い + + + + medium-high + 中高 + + + + medium + + + + + low-medium + 中低 + + + + low + 低い + + + + lowest + 最低 + + + + DUST + ほこり + + + + yes + はい + + + + no + いいえ + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + このラベルが赤くなったら、処理の大きさは10000バイトより大きいです。 + +少なくとも%1 KBあたりの料金は必要となります。 + +入力データによって、料金の+/-1 バイトが可能です。 + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + 高い優先ありの処理の方はブロックに書き込み可能性が高い。 + +このラベルは優先の設定は中より低いです。 + +少なくとも%1 KBあたりの料金は必要となります。 + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + 任意の受信者は%1より少ない額をもらったばい、このラベルは赤くなる。 + +少なくとも%2の料金は必要となります。 + +最小なリレー料金 x 0.546より下の額は、ほこりになります。 + + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + このラベルが赤くなたら、お釣りは%1より少ない。 + +少なくとも%2の料金は必要となります。 + + + + + (no label) + (ラベル無し) + + + + change from %1 (%2) + %1 (%2)からお釣り + + + + (change) + (お釣り) + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + 致命的エラー。安全に続きができないため、バラックコインQTは閉じます。 + + + + BitBean + ブラックコイン + + + + Vault + + + + + &Overview + 概要(&O) + + + + Show general overview of wallet + ウォレットの概要を見る + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + 支払いを受けるためのアドレスリストを表示 + + + + &Transactions + 処理(&T) + + + + Browse transaction history + 処理履歴を閲覧 + + + + &Address Book + アドレス帳 + + + + Edit the list of stored addresses and labels + 保存されたアドレスとラベルの編集 + + + + E&xit + 終了(&E) + + + + Quit application + アプリケーションを終了 + + + + &About BitBean + ブラックコインについて + + + + Show information about BitBean + ブラックコインの情報を表示 + + + + About &Qt + Qt について(&Q) + + + + Show information about Qt + Qt の情報を表示 + + + + &Options... + オプション... (&O) + + + + Modify configuration options for BitBean + ブラックコインの設定を変化する + + + + &Show / Hide + 見る/隠す (&S) + + + + &Encrypt Wallet... + ウォレットの暗号化... (&E) + + + + Encrypt or decrypt wallet + ウォレットを暗号化か暗号化を解除する + + + + &Backup Wallet... + ウォレットのバックアップ... (&B) + + + + Backup wallet to another location + ウォレットを他の場所にバックアップ + + + + &Change Passphrase... + パスフレーズの変更... (&C) + + + + Change the passphrase used for wallet encryption + ウォレット暗号化用パスフレーズの変更 + + + + &Unlock Wallet... + &ウォレットをアンロック... + + + + Unlock wallet + ウォレットをアンロックする + + + + &Lock Wallet + (&L)ウォレットをロックする + + + + Lock wallet + ウォレットをロックする + + + + Sign &message... + メッセージの署名... (&m) + + + + &Verify message... + メッセージの検証... (&V) + + + + &Export... + (&E)書き出す... + + + + Export the data in the current tab to a file + 現在のタブのデータをファイルへ書き出す + + + + &Debug window + デバッグ ウインドウ (&D) + + + + Open debugging and diagnostic console + デバッグと診断コンソールを開く + + + + &File + ファイル(&F) + + + + &Settings + 設定(&S) + + + + &Help + ヘルプ(&H) + + + + Tabs toolbar + タブツールバー + + + + Actions toolbar + 活動ツールバー + + + + + [testnet] + [testnet] + + + + + BitBean client + ブラックコインクライアントソフトウェア + + + + %n active connection(s) to BitBean network + + ブラックコインネットワークへの%n アクティブな接続 + + + + + Synchronizing with network... + ネットワークに同期中…… + + + + ~%n block(s) remaining + + ~%n ブロックが残っている + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + 処理の履歴の%1 / %2 ブロックをダウンロードしました。(%3% 完成) + + + + Downloaded %1 blocks of transaction history. + 処理履歴の%1ブロックをダウンロードしました。 + + + + %n second(s) ago + + %n 秒前 + + + + + %n minute(s) ago + + %n 分前 + + + + + %n hour(s) ago + + %n 時間前 + + + + + %n day(s) ago + + %n 日間前 + + + + + Up to date + バージョンは最新です + + + + Catching up... + 追跡中... + + + + Last received block was generated %1. + 最新ブロックは%1に生成されました。 + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + この処理は大きさの制限を超えている。%1料金を払ったばい、通信可能性です。料金は手続きをするノードへ支払って、ネットワークのサッポートになります。料金を払いますか。 + + + + Confirm transaction fee + 処理手数料を確認する + + + + Sent transaction + 送金処理 + + + + Incoming transaction + 着金処理 + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + 日付: %1 +総額: %2 +種類: %3 +アドレス: %4 + + + + + URI handling + URIの取り扱い + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URIのパーズができませんでした!。原因は無効なブラックコインアドレスか不正なURIパラメータ。 + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + ウォレットは<b>暗号化されて、アンロックされています</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + ウォレットは<b>暗号化されて、ロックされています</b> + + + + Backup Wallet + ウォレットのバックアップ + + + + Wallet Data (*.dat) + ウォレットのデータ (*.dat) + + + + Backup Failed + バックアップは失敗しました + + + + There was an error trying to save the wallet data to the new location. + ウォレットのデータが新しい場所へ保存するにはエラーになりました。 + + + + %n second(s) + + %n 秒 + + + + + %n minute(s) + + %n 分 + + + + + %n hour(s) + + %n 時間 + + + + + %n day(s) + + %n 日間 + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + 賭けている。<br>重さは%1<br>ネットワークの重さは%2<br>報酬をもらう時間の推測は%3 + + + + Not staking because wallet is locked + ウォレットをロックされたため、賭けていません + + + + Not staking because wallet is offline + ウォレットはオフラインで、賭けていません + + + + Not staking because wallet is syncing + ウォレットは同期最中ため、賭けていません。 + + + + Not staking because you don't have mature beans + + + + + Not staking + 賭けていません + + + + BitcoinGUI + + Sign &message... + メッセージの署名... (&m) + + + Synchronizing with network... + ネットワークに同期中…… + + + &Overview + 概要(&O) + + + Show general overview of wallet + ウォレットの概要を見る + + + &Transactions + 処理(&T) + + + Browse transaction history + 処理履歴を閲覧 + + + &Address Book + アドレス帳 + + + Edit the list of stored addresses and labels + 保存されたアドレスとラベルの編集 + + + &Receive coins + コインを受け取る + + + Show the list of addresses for receiving payments + 支払いを受けるためのアドレスリストを表示 + + + &Send coins + コインを送る + + + E&xit + 終了(&E) + + + Quit application + アプリケーションを終了 + + + Show information about BitBean + ブラックコインの情報を表示 + + + About &Qt + Qt について(&Q) + + + Show information about Qt + Qt の情報を表示 + + + &Options... + オプション... (&O) + + + &Encrypt Wallet... + ウォレットの暗号化... (&E) + + + &Backup Wallet... + ウォレットのバックアップ... (&B) + + + &Change Passphrase... + パスフレーズの変更... (&C) + + + ~%n block(s) remaining + + ~%n ブロックが残っている + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + 処理の履歴の%1 / %2 ブロックをダウンロードしました。(%3% 完成) + + + &Export... + (&E)書き出す... + + + Send coins to a BitBean address + ブラックコインアドレスへコインを送る + + + Modify configuration options for BitBean + ブラックコインの設定を変化する + + + Export the data in the current tab to a file + 現在のタブのデータをファイルへ書き出す + + + Encrypt or decrypt wallet + ウォレットを暗号化か暗号化を解除する + + + Backup wallet to another location + ウォレットを他の場所にバックアップ + + + Change the passphrase used for wallet encryption + ウォレット暗号化用パスフレーズの変更 + + + &Debug window + デバッグ ウインドウ (&D) + + + Open debugging and diagnostic console + デバッグと診断コンソールを開く + + + &Verify message... + メッセージの検証... (&V) + + + BitBean + ブラックコイン + + + Wallet + ウォレット + + + &About BitBean + ブラックコインについて + + + &Show / Hide + 見る/隠す (&S) + + + Unlock wallet + ウォレットをアンロックする + + + &Lock Wallet + (&L)ウォレットをロックする + + + Lock wallet + ウォレットをロックする + + + &File + ファイル(&F) + + + &Settings + 設定(&S) + + + &Help + ヘルプ(&H) + + + Tabs toolbar + タブツールバー + + + Actions toolbar + 活動ツールバー + + + [testnet] + [testnet] + + + BitBean client + ブラックコインクライアントソフトウェア + + + %n active connection(s) to BitBean network + + ブラックコインネットワークへの%n アクティブな接続 + + + + Downloaded %1 blocks of transaction history. + 処理履歴の%1ブロックをダウンロードしました。 + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + 賭けている。<br>重さは%1<br>ネットワークの重さは%2<br>報酬をもらう時間の推測は%3 + + + Not staking because wallet is locked + ウォレットをロックされたため、賭けていません + + + Not staking because wallet is offline + ウォレットはオフラインで、賭けていません + + + Not staking because wallet is syncing + ウォレットは同期最中ため、賭けていません。 + + + Not staking because you don't have mature coins + コインはまだ成長できていないため、賭けていません。 + + + %n second(s) ago + + %n 秒前 + + + + &Unlock Wallet... + &ウォレットをアンロック... + + + %n minute(s) ago + + %n 分前 + + + + %n hour(s) ago + + %n 時間前 + + + + %n day(s) ago + + %n 日間前 + + + + Up to date + バージョンは最新です + + + Catching up... + 追跡中... + + + Last received block was generated %1. + 最新ブロックは%1に生成されました。 + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + この処理は大きさの制限を超えている。%1料金を払ったばい、通信可能性です。料金は手続きをするノードへ支払って、ネットワークのサッポートになります。料金を払いますか。 + + + Confirm transaction fee + 処理手数料を確認する + + + Sent transaction + 送金処理 + + + Incoming transaction + 着金処理 + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + 日付: %1 +総額: %2 +種類: %3 +アドレス: %4 + + + URI handling + URIの取り扱い + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URIのパーズができませんでした!。原因は無効なブラックコインアドレスか不正なURIパラメータ。 + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + ウォレットは<b>暗号化されて、アンロックされています</b> + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + ウォレットは<b>暗号化されて、ロックされています</b> + + + Backup Wallet + ウォレットのバックアップ + + + Wallet Data (*.dat) + ウォレットのデータ (*.dat) + + + Backup Failed + バックアップは失敗しました + + + There was an error trying to save the wallet data to the new location. + ウォレットのデータが新しい場所へ保存するにはエラーになりました。 + + + %n second(s) + + %n 秒 + + + + %n minute(s) + + %n 分 + + + + %n hour(s) + + %n 時間 + + + + %n day(s) + + %n 日間 + + + + Not staking + 賭けていません + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + 致命的エラー。安全に続きができないため、バラックコインQTは閉じます。 + + + + ClientModel + + + Network Alert + ネットワーク警告 + + + + CoinControlDialog + + Coin Control + コインのコントロール + + + Quantity: + 数量: + + + Bytes: + バイト + + + Amount: + 総額: + + + Priority: + 優先: + + + Fee: + 料金: + + + Low Output: + アウトプット低い: + + + no + いいえ + + + After Fee: + 料金の後 + + + Change: + お釣り: + + + (un)select all + すべてを選択か選択を解除 + + + Tree mode + 木モード + + + List mode + リストモード + + + Amount + 総額 + + + Label + レベル + + + Address + アドレス + + + Date + 日付 + + + Confirmations + 検証済みの数 + + + Confirmed + 検証済 + + + Priority + 優先 + + + Copy address + アドレスをコピー + + + Copy label + ラベルをコピー + + + Copy amount + 総額のコピー + + + Copy transaction ID + 処理のIDをコピー + + + Copy quantity + 数量をコピー + + + Copy fee + 料金をコピー + + + Copy after fee + 料金の後をコピー + + + Copy bytes + バイトをコピー + + + Copy priority + 優先をコピー + + + Copy low output + アウトプット低いをコピー + + + Copy change + お釣りをコピー + + + highest + 最高 + + + high + 高い + + + medium-high + 中高 + + + medium + + + + low-medium + 中低 + + + low + 低い + + + lowest + 最低 + + + DUST + ほこり + + + yes + はい + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + このラベルが赤くなったら、処理の大きさは10000バイトより大きいです。 + +少なくとも%1 KBあたりの料金は必要となります。 + +入力データによって、料金の+/-1 バイトが可能です。 + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + 高い優先ありの処理の方はブロックに書き込み可能性が高い。 + +このラベルは優先の設定は中より低いです。 + +少なくとも%1 KBあたりの料金は必要となります。 + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + 任意の受信者は%1より少ない額をもらったばい、このラベルは赤くなる。 + +少なくとも%2の料金は必要となります。 + +最小なリレー料金 x 0.546より下の額は、ほこりになります。 + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + このラベルが赤くなたら、お釣りは%1より少ない。 + +少なくとも%2の料金は必要となります。 + + + (no label) + (ラベル無し) + + + change from %1 (%2) + %1 (%2)からお釣り + + + (change) + (お釣り) + + + + EditAddressDialog + + + Edit Address + アドレスの編集 + + + + &Label + ラベル(&L) + + + + The label associated with this address book entry + このアドレス帳の入力のラベル + + + + &Address + アドレス帳 (&A) + + + + The address associated with this address book entry. This can only be modified for sending addresses. + このアドレス帳の入力のアドレス。通信アドレスした変更ができない。 + + + + New receiving address + 新しい受信アドレス + + + + New sending address + 新しい送信アドレス + + + + Edit receiving address + 受信アドレスを編集 + + + + Edit sending address + 送信アドレスを編集 + + + + The entered address "%1" is already in the address book. + 入力されたアドレス "%1" は既にアドレス帳にあります。 + + + + The entered address "%1" is not a valid BitBean address. + 入力されたアドレス "%1" 、有効なブラックコインアドレスではない。 + + + + Could not unlock wallet. + ウォレットをアンロックできませんでした。 + + + + New key generation failed. + 新しいキーの生成に失敗しました。 + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + ブラックコインQT + + + + version + バージョン + + + + Usage: + 使用法 + + + + command-line options + コマンドラインのオプション + + + + UI options + UIのオプション + + + + Set language, for example "de_DE" (default: system locale) + 言語の設定、例: "de_DE" (デフォルト:システムのロケール) + + + + Start minimized + 最小化でスタート + + + + Show splash screen on startup (default: 1) + スタートでスプラッシュスクリーンを表示(デフォルト:1) + + + + OptionsDialog + + + Options + 設定 + + + + &Main + メイン (&M) + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. + 手続きを早めるためのオプショナル料金。だいたいの処理は1KB。料金の0.01が勧めです。 + + + + Pay transaction &fee + 支払う取引手数料 (&f) + + + Reserved amount does not participate in staking and is therefore spendable at any time. + 貯金は賭ける参加しないため、いつでも支出できる。 + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + 貯金 + + + + Automatically start BitBean after logging in to the system. + システムのログイン次第、自動的にブラックコインをスタート。 + + + + &Start BitBean on system login + システムログイン次第、ブラックコインをスタート + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + シャットダウンするとき、ブロックとアドレスのデータベースを切り離す。すると、別のディレクトリへ移動できますが、シャットダウンは少し遅れます。ウォレットはいつも切り離します。 + + + + &Detach databases at shutdown + シャットダウンするとき、データベースを切り離す + + + + &Network + ネットワーク (&N) + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + 自動的にルーターでブラックコインクライエントソフトウェアのポートを開く。ルーターはUPnPのサポートあり、UPnPを有効にするならできる。 + + + + Map port using &UPnP + UPnP を使ってポートを割り当てる (&U) + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + ブラックコインのネットワークへSOCKSプロキシで接続する(例:TORで接続するばい) + + + + &Connect through SOCKS proxy: + SOCKSプロキシで接続する + + + + Proxy &IP: + プロキシの IP (&I) : + + + + IP address of the proxy (e.g. 127.0.0.1) + プロキシのIPアドレス (例:127.0.0.1) + + + + &Port: + ポート (&P) : + + + + Port of the proxy (e.g. 9050) + プロキシのポート番号 (例 9050) + + + + SOCKS &Version: + SOCKS バージョン (&V) : + + + + SOCKS version of the proxy (e.g. 5) + SOCKS プロキシのバージョン (例 5) + + + + &Window + ウインドウ (&W) + + + + Show only a tray icon after minimizing the window. + ウインドウを最小化したあとトレイ アイコンだけを表示する。 + + + + &Minimize to the tray instead of the taskbar + タスクバーの代わりにトレイに最小化 (&M) + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. + ウインドウが閉じられる時アプリケーションを終了せずに最小化します。このオプションが有効な時にアプリケーションを終了するにはメニューから終了を選択します。 + + + + M&inimize on close + 閉じる時に最小化 (&i) + + + + &Display + 表示 (&D) + + + + User Interface &language: + ユーザインターフェースの言語 (&l) : + + + + The user interface language can be set here. This setting will take effect after restarting BitBean. + ユーザのインターフェースの言語の設定です。リスタートの後、有効します。 + + + + &Unit to show amounts in: + 額を表示する単位 (&U) : + + + + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + Choose the default subdivision unit to show in the interface and when sending coins. + インターフェース上の表示とコインの送信で使用する単位を選択します。 + + + + Whether to show BitBean 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 + &OK + + + + &Cancel + キャンセル (&C) + + + + &Apply + 適用する + + + + default + 初期値 + + + + + Warning + 警告 + + + + + This setting will take effect after restarting BitBean. + この設定はブラックコインをリスタートした後に有効する。 + + + + The supplied proxy address is invalid. + プロキシアドレスが無効です。 + + + + OverviewPage + + + Form + フォーム + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + 表示されている情報は時間遅れている。接続したら、ウォレットは自動的にブラックコインネットワークと同期しますが過程は完了してません。 + + + Stake: + 賭け金: + + + + Unconfirmed: + 未検証: + + + Wallet + ウォレット + + + + Spendable: + 支出可能: + + + + Your current spendable balance + あなたの利用可能残高 + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + 未完成: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + 0 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + 完成していない採掘された残高 + + + + Total: + 合計: + + + Your current total balance + あなたの現在の残高 + + + <b>Recent transactions</b> + <b>最近の処理</b> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + 未確認の合計で、まだ現在の残高に含まれていない。 + + + Total of coins that was staked, and do not yet count toward the current balance + 賭けているコインの合計で、まだ現在の残高に含まれていない。 + + + + + out of sync + 同期していない + + + + QRCodeDialog + + + QR Code Dialog + QRコードのダイアログ + + + + Request Payment + 支払いを要請する + + + + Amount: + 総額: + + + + Label: + レベル + + + + Message: + メッセージ: + + + + &Save As... + &S名前を付けて保存... + + + + Error encoding URI into QR Code. + URIからQRコードにエンコードするエラー。 + + + + The entered amount is invalid, please check. + 入力された額は無効です。確認してください。 + + + + Resulting URI too long, try to reduce the text for label / message. + URIは長過ぎて、ラベル文字の長さを短くしてください。 + + + + Save QR Code + QRコードを保存 + + + + PNG Images (*.png) + PNG イメージ (*.png) + + + + RPCConsole + + + Client name + クライアント名 + + + + + + + + + + + + + N/A + N/A + + + + Client version + クライアントのバージョン + + + + &Information + 情報 (&I) + + + + Using OpenSSL version + 使用中の OpenSSL のバージョン + + + + Startup time + 起動した日時 + + + + Network + ネットワーク + + + + Number of connections + 接続数 + + + + On testnet + testnetで + + + + Block chain + ブロック チェーン + + + + Current number of blocks + 現在のブロック数 + + + + Estimated total blocks + 推定総ブロック数 + + + + Last block time + 最終ブロックの日時 + + + + &Open + 開く (&O) + + + + Command-line options + コマンドラインのオプション + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + ブラックコインQTのコマンドラインのヘルプ情報を表示する。 + + + + &Show + (&S)表示 + + + + &Console + コンソール (&C) + + + + Build date + ビルドの日付 + + + + BitBean - Debug window + ブラックコイン:デバッグウインドウ + + + + BitBean Core + ブラックコインコア + + + + Debug log file + デバッグ用ログファイル + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + 現行のディレクトリからデバッグログファイルを開く。大きなファイルのばい、少し時間かかる。 + + + + Clear console + コンソールをクリア + + + + Welcome to the BitBean 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> と入力します。 + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + 入力... + + + + automatically selected + 自動的に選択 + + + + Insufficient funds! + 資金不足! + + + + Quantity: + 数量: + + + + + 0 + 0 + + + + Bytes: + バイト + + + + Amount: + 総額: + + + + + + + 0.00 BC + 123.456 BC {0.00 ?} + + + + Priority: + 優先: + + + + medium + + + + + Fee: + 料金: + + + + Low Output: + アウトプット低い: + + + + no + いいえ + + + + After Fee: + 料金の後 + + + + Change + お釣り: + + + + custom change address + カスタムのお釣りのアドレス + + + + Send to multiple recipients at once + 一度に複数の人に送る + + + + Add &Recipient + 受取人を追加 (&R) + + + + Remove all transaction fields + 全分の処理欄を削除する + + + + Clear &All + すべてクリア (&A) + + + + Balance: + 残高: + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + 送る操作を確認する + + + + S&end + 送る (&e) + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Copy quantity + 数量をコピー + + + + Copy amount + 総額のコピー + + + + Copy fee + 料金をコピー + + + + Copy after fee + 料金の後をコピー + + + + Copy bytes + バイトをコピー + + + + Copy priority + 優先をコピー + + + + Copy low output + アウトプット低いをコピー + + + + Copy change + お釣りをコピー + + + + <b>%1</b> to %2 (%3) + <b>%1</b> から %2 (%3)に + + + + Confirm send beans + + + + + Are you sure you want to send %1? + %1送付、よろしいですか? + + + + and + + + + + 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回の送信で同じアドレスに送ることは出来ません。 + + + + Error: Transaction creation failed. + エラー:処理を失敗しました。 + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + 警告:無効なブラックコインアドレス + + + + (no label) + (ラベル無し) + + + + WARNING: unknown change address + 警告:不明なお釣りのアドレス + + + + SendBeansEntry + + + Form + フォーム + + + + A&mount: + 金額(&A): + + + + Pay &To: + 送り先(&T): + + + + + Enter a label for this address to add it to your address book + アドレス帳に追加するには、このアドレスのラベルを入力します + + + + &Label: + ラベル(&L): + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + 支払いへ送るアドレス (例:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + アドレス帳からアドレスを選択する + + + + Alt+A + Alt+A + + + + Paste address from clipboard + クリップボードからアドレスを貼付ける + + + + Alt+P + Alt+P + + + + Remove this recipient + この受信者を外す + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Send Coins + コインを送る + + + Coin Control Features + コインのコントロールの設定 + + + Inputs... + 入力... + + + automatically selected + 自動的に選択 + + + Insufficient funds! + 資金不足! + + + Quantity: + 数量: + + + 0 + 0 + + + Bytes: + バイト + + + Amount: + 総額: + + + 0.00 BC + 123.456 BC {0.00 ?} + + + Priority: + 優先: + + + medium + + + + Fee: + 料金: + + + Low Output: + アウトプット低い: + + + no + いいえ + + + After Fee: + 料金の後 + + + Change + お釣り: + + + custom change address + カスタムのお釣りのアドレス + + + Send to multiple recipients at once + 一度に複数の人に送る + + + Add &Recipient + 受取人を追加 (&R) + + + Remove all transaction fields + 全分の処理欄を削除する + + + Clear &All + すべてクリア (&A) + + + Balance: + 残高: + + + 123.456 BC + 123.456 BC + + + Confirm the send action + 送る操作を確認する + + + S&end + 送る (&e) + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + ブラックコインアドレスの入力 (例;2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Copy quantity + 数量をコピー + + + Copy amount + 総額のコピー + + + Copy fee + 料金をコピー + + + Copy after fee + 料金の後をコピー + + + Copy bytes + バイトをコピー + + + Copy priority + 優先をコピー + + + Copy low output + アウトプット低いをコピー + + + Copy change + お釣りをコピー + + + <b>%1</b> to %2 (%3) + <b>%1</b> から %2 (%3)に + + + Confirm send coins + コインを送る確認 + + + Are you sure you want to send %1? + %1送付、よろしいですか? + + + and + + + + 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回の送信で同じアドレスに送ることは出来ません。 + + + Error: Transaction creation failed. + エラー:処理を失敗しました。 + + + 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のコピーで費やしたが、現行のwallet.datとはアップデートされていない。 + + + WARNING: Invalid BitBean address + 警告:無効なブラックコインアドレス + + + (no label) + (ラベル無し) + + + WARNING: unknown change address + 警告:不明なお釣りのアドレス + + + + SendCoinsEntry + + Form + フォーム + + + A&mount: + 金額(&A): + + + Pay &To: + 送り先(&T): + + + Enter a label for this address to add it to your address book + アドレス帳に追加するには、このアドレスのラベルを入力します + + + &Label: + ラベル(&L): + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + 支払いへ送るアドレス (例:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + アドレス帳からアドレスを選択する + + + Alt+A + Alt+A + + + Paste address from clipboard + クリップボードからアドレスを貼付ける + + + Alt+P + Alt+P + + + Remove this recipient + この受信者を外す + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + ブラックコインアドレスの入力 (例;2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + メッセージの署名するアドレス(例:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + アドレス帳からアドレスを選ぶ + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + クリップボードからアドレスを貼付ける + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + ここにあなたが署名するメッセージを入力します + + + + Copy the current signature to the system clipboard + 現在の署名をシステムのクリップボードにコピーする + + + + Sign the message to prove you own this BitBean address + 所有権の証明するためこのメサッジを署名する + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + メッセージの署名するアドレス(例:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + 受け取ったメッセージの署名を確保のため、メッセージを確認する。 + + + + Reset all verify message fields + 入力項目の内容をすべて消去します + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + ブラックコインのアドレスを入力(例:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + 署名を作成するには"メッセージの署名"をクリック + + + + Enter BitBean 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. + メッセージは検証されました。 + + + + TransactionDesc + + + Open until %1 + ユニット %1 を開く + + + + Open for %n block(s) + + %n ブロックに開いている + + + + + 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 + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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. + コインを費やす前に発現されたコインは510ブロック間成熟しなければなりません。このブロックを発現させたときに、ブロックチェインに足すためにネットワークへ放送しました。ブロックチェインに追加失敗したばい、レベルは「受け入られていない」に変わって、費やせられない状況になります。自分のノードと他のノードと同時に新しいブロックを発現させたときに、時折に起こること。 + + + + Debug information + デバッグ情報 + + + + Transaction + 処理 + + + + Inputs + 入力 + + + + Amount + 総額 + + + + true + 正しい + + + + false + 正しくない + + + + , has not been successfully broadcast yet + まだブロードキャストが成功していません + + + + unknown + 未確認 + + + + TransactionDescDialog + + + Transaction details + 処理の詳細 + + + + This pane shows a detailed description of the transaction + ここでは処理の詳細を表示しています + + + + TransactionTableModel + + + Date + 日付 + + + + Type + タイプ + + + + Address + Helbidea + + + + Amount + 総額 + + + + Open until %1 + ユニット %1 を開く + + + + Confirmed (%1 confirmations) + 検証されました (%1 検証済み) + + + + Open for %n more block(s) + + %n 以上のブロックを開く + + + + + Offline + オフライン + + + + Unconfirmed + 未検証 + + + + Confirming (%1 of %2 recommended confirmations) + 検証最中 (%1 / %2 の進めている検証済み) + + + + Conflicted + 相違 + + + + Immature (%1 confirmations, will be available after %2) + 未熟 (%1 検証,%2の後可用ができる) + + + + This block was not received by any other nodes and will probably not be accepted! + このブロックは他のどのノードによっても受け取られないで、多分受け入れられないでしょう! + + + + Generated but not accepted + 生成されましたが承認されませんでした + + + + Received with + 受信元 + + + + Received from + 送り主 + + + + Sent to + 送り先 + + + + Payment to yourself + 自分自身への支払い + + + + SPROUT + + + + 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. + 残高に追加または削除された総額。 + + + + 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 Data + 処理のデータを書き出す + + + + Comma separated file (*.csv) + テキスト CSV (*.csv) + + + + Confirmed + 検証済み + + + + Date + 日付 + + + + Type + タイプ + + + + Label + ラベル + + + + Address + Helbidea + + + + Amount + 総額 + + + + ID + ID + + + + Error exporting + エラーを書き出す + + + + Could not write to file %1. + ファイルを書き込めなかった。%1 + + + + Range: + 期間: + + + + to + から + + + + WalletModel + + + Sending... + 通信中... + + + + bitbean-core + + + To use the %s option + %s オプションを使うには + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, 設定ファイル:%sでrpcpasswordのパスワードを入力しなければならい + +このランダムパスワードのおすすめです: +rpcuser=BitBeanrpc +rpcpassword=%s +(このパサワードを覚えなくても大丈夫です) +ユーザ名とパスワードは同じであってはなりません。 +ファイルは存在しないばいは、所有者が読み取り可能な専用のファイルを作成してください。 +問題のことを知らせるために、alertnotifyの設定を有効にしたほうがいいです。 +例:alertnotify=echo %%s | mail -s "ブラックコイン警告" admin@foo.com + + + + + Error + エラー + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + IPv6 でリスンする RPC ポート %u の設定中にエラーが発生したので IPv4 に切り替えます: %s + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + IPv4 でリスンする RPC ポート %u の設定中にエラーが発生しました: %s + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + rpcpassword=<password> を設定ファイルでセットしてください: +%s +ファイルが無い場合は、オーナーだけが読み取れる権限でファイルを作成してください。 + + + + BitBean version + ブラックコインバージョン + + + + Usage: + + + + + Send command to -server or BitBeand + -server か BitBeandへコマンドを送る。 + + + + List commands + コマンド一覧 + + + + Get help for a command + コマンドのヘルプ + + + + BitBean + ブラックコイン + + + + Options: + オプション: + + + + This help message + このヘルプ メッセージ + + + + Specify configuration file (default: BitBean.conf) + 設定ファイルを特定する (デファルト: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + pid ファイルを特定する (デフォルト: BitBeand.pid) + + + + Specify data directory + データ ディレクトリの指定 + + + + Specify wallet file (within data directory) + ウォレットのファイルを指定 (データ・ディレクトリの中に) + + + + Set database cache size in megabytes (default: 25) + データベースのキャッシュサイズをメガバイトで設定 (初期値: 25) + + + + Set database disk log size in megabytes (default: 100) + メガバイトでのデータベースのログザイズの大きさの設定(デファルト:100) + + + + Specify connection timeout in milliseconds (default: 5000) + 接続のタイムアウトをミリセコンドで指定 (初期値: 5000) + + + + Connect through socks proxy + SOCKSプロキシで接続する + + + + Select the version of socks proxy to use (4-5, default: 5) + SOCKSプロクシーのバージョンを選択する (4-5、 デファルト: 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + プロクシーでTORヒドゥンサービス(TOR Hidden Services)を接続する(デファルト:-proxyと同じ) + + + + Allow DNS lookups for -addnode, -seednode and -connect + -addnode, -seednode と -connect で DNS ルックアップを許可する + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + <port> で 接続をリスン (デフォルト: 15714かtestnet は 25714) + + + + Maintain at most <n> connections to peers (default: 125) + ピアの最大接続数 (初期値: 125) + + + + Add a node to connect to and attempt to keep the connection open + 接続するノードを追加し接続を持続するように試します + + + + Connect only to the specified node(s) + 指定したノードだけに接続 + + + + Connect to a node to retrieve peer addresses, and disconnect + ピア アドレスを取得するためにノードに接続し、そして切断します + + + + Specify your own public address + あなた自身のパブリックなアドレスを指定 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + <net> (IPv4, IPv6, Tor) ネットワーク内のノードだけに接続する + + + + Discover own IP address (default: 1 when listening and no -externalip) + 自分の IP アドレスを発見 (初期値: リスン中と -externalip を使用していない場合は1) + + + + Find peers using internet relay chat (default: 0) + インターネットリレーチャット(IRC)でピアアを探す。(デファルト:1 {0}?) + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + 外部からの接続を許可 (初期値: -proxy または -connect を使用していない場合は1) + + + + Bind to given address. Use [host]:port notation for IPv6 + アドレスに結ぶ。IPv6のばい、[host]:port 表記法を使ってください。 + + + + Find peers using DNS lookup (default: 1) + DNSルックアップでピーアを探す(デファルト:1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + 他のノードと時刻の同期する。確な時刻のコンピューターのばい、無効する。例:NTP同期設定有効ある(デファルト:1) + + + + Sync checkpoints policy (default: strict) + 同期チェックポイント方針(デファルト:厳しい) + + + + Threshold for disconnecting misbehaving peers (default: 100) + 不正なピアを切断するためのしきい値 (初期値: 100) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + 不正なピアを再接続するまでの秒数 (初期値: 86400) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + リスン ポートの割当に UPnP を使用 (初期値: リスン中は1) + + + + Use UPnP to map the listening port (default: 0) + リスン ポートの割当に UPnP を使用 (初期値: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + ブロックとアドレスのデータベースを切り離す。この設定はシャットダウンの時間を伸ばさせます。(デファルト:0) + + + + Fee per KB to add to transactions you send + 送る処理を足して、KBあたりの料金 + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + 処理を作ると、この額より少ない数字を無視する (デファルト:0.01) + + + + Accept command line and JSON-RPC commands + コマンドラインと JSON-RPC コマンドを許可 + + + + Run in the background as a daemon and accept commands + デーモンとしてバックグランドで実行しコマンドを許可 + + + + Use the test network + テストのためのネットワークを使用 + + + + Output extra debugging information. Implies all other -debug* options + 余分なデバッグ情報を出力する。この設定はすべてのdebug* の設定を有効にする。 + + + + Output extra network debugging information + 余分なネットワークのデバッグ情報を出力する + + + + Prepend debug output with timestamp + デバッグのアウトプットはタイムスタンプで先頭に追加する + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + クライアント起動時に debug.log ファイルを縮小 (初期値: -debug オプションを指定しない場合は1) + + + + Send trace/debug info to console instead of debug.log file + トレース/デバッグ情報を debug.log ファイルの代わりにコンソールへ送る + + + + Send trace/debug info to debugger + デバッガへ追跡とデバッグ情報を送る。 + + + + Username for JSON-RPC connections + JSON-RPC 接続のユーザー名 + + + + Password for JSON-RPC connections + JSON-RPC 接続のパスワード + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + <port> で JSON-RPC 接続をリスン (デフォルト: 15715かtestnet は 25715) + + + + 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 はブロック ハッシュに置換される) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + ウォレットの処理を変更する際にコマンドを実行 (cmd の %s は TxID に置換される) + + + + Require a confirmations for change (default: 0) + 変更するために、確認を必要とする (デファルト:0) + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + 処理のスクリプトコマンドで標準的なPUSHオペレータを施行する(デファルト:1) + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + 関連した警告をもらったら、コマンドを実行する (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 + 失ったウォレットの処理のブロック チェーンを再スキャン + + + + Attempt to recover private keys from a corrupt wallet.dat + 壊れた wallet.dat から秘密鍵を復旧することを試す + + + + How many blocks to check at startup (default: 2500, 0 = all) + スタートのときに、いくつのブロックを調べます (デファルト:2500、 0 = すべて ) + + + + How thorough the block verification is (0-6, default: 1) + ブロック検証の徹底の程度 (0-6 、デファルト:1) + + + + Imports blocks from external blk000?.dat file + 外部 blk000?.dat ファイルからブロックを読み込む。 + + + + Block creation options: + ブロック作成オプション: + + + + Set minimum block size in bytes (default: 0) + 最小ブロックサイズをバイトで設定 (初期値: 0) + + + + Set maximum block size in bytes (default: 250000) + 最大ブロックサイズをバイトで設定 (初期値: 250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + バイトで、最優先、低料金の処理の最大サイズの設定(デファルト:27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + 許容可能な暗号 (デフォルト: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Invalid amount for -paytxfee=<amount>: '%s' + -paytxfee=<amount> の額 '%s' が無効です + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + 警告: -paytxfee が非常に高く設定されています! これは処理を送信する場合に支払う取引手数料です。 + + + + Invalid amount for -mininput=<amount>: '%s' + -mininput=<amount>: '%s'の額は無効です + + + + Wallet %s resides outside data directory %s. + %sウォレットはディレクトリ%sの外にあります。 + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + %sディレクトリにをロックオンできない。ブラックコインQTは、もう発行してるでしょう。 + + + + Verifying database integrity... + データベースの保全性を確認最中... + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + データベース%sを初期化するにエラーになりました。直すためにディレクトリをバックアップして、そして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 に保存されました; もしもあなたの残高や処理が正しくないばい、バックアップから復元してください。 + + + + wallet.dat corrupt, salvage failed + wallet.dat が壊れ、復旧に失敗しました + + + + Unknown -socks proxy version requested: %i + -socks で指定された %i は未知のバージョンです + + + + Unknown network specified in -onlynet: '%s' + -onlynet で指定された '%s' は未知のネットワークです + + + + Invalid -proxy address: '%s' + 無効な -proxy アドレス: '%s' + + + + Invalid -tor address: '%s' + 無効なTORアドレス: '%s' + + + + Cannot resolve -bind address: '%s' + -bind のアドレス '%s' を解決できません + + + + Failed to listen on any port. Use -listen=0 if you want this. + ポートのリスンに失敗しました。必要であれば -listen=0 を使用してください。 + + + + Cannot resolve -externalip address: '%s' + -externalip のアドレス '%s' を解決できません + + + + Invalid amount for -reservebalance=<amount> + -reservebalance=<amount>の額は無効です + + + + Unable to sign checkpoint, wrong checkpointkey? + + チェックポイントを署名できません。checkpointkeyは違いますか。 + + + + + Loading block index... + ブロック インデックスを読み込んでいます... + + + + Error loading blkindex.dat + blkindex.dat 読み込みエラー + + + + Loading wallet... + ウォレットを読み込んでいます... + + + + Error loading wallet.dat: Wallet corrupted + wallet.dat 読み込みエラー: ウォレットが壊れました + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + 警告: wallet.dat の読み込みエラー! すべてのキーは正しく読み取れますが、処理のデータやアドレス帳のエントリが失われたか、正しくない可能性があります。 + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + wallet.dat 読み込みエラー:  ブラックコインQTの最新バージョンが必要です + + + + Wallet needed to be rewritten: restart BitBean to complete + ウォレットのデータをリライトしなければならい:ブラックコインQTをリスタートしてください + + + + Error loading wallet.dat + wallet.dat 読み込みエラー + + + + Cannot downgrade wallet + ウォレットのダウングレードはできません + + + + Cannot initialize keypool + キースペースをイニシャライズをする + + + + Cannot write default address + 初期値のアドレスを書き込むことができません + + + + Rescanning... + 再スキャン中... + + + + Importing blockchain data file. + ブロックチェインのファイルを読み込んでいる。 + + + + Importing bootstrap blockchain data file. + ブートストラップなブロックチェインのファイルを読み込んでいる。 + + + + Loading addresses... + アドレスを読み込んでいます... + + + + Error: could not start node + エラー:ノードの開始ができなった + + + + Done loading + 読み込み完了 + + + + Unable to bind to %s on this computer. BitBean is probably already running. + このコンピューターで%sに結ぶことができなかった。ブラックコインQTは、もう発行してるでしょう。 + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + このコンピュータの %s にバインドすることができません (バインドが返したエラーは %d, %s) + + + + Error: Wallet locked, unable to create transaction + エラー:ウォレットはロックされたために、処理を作られなかった。 + + + + Error: Wallet unlocked for staking only, unable to create transaction. + エラー:アンロックされたウォレットは賭けるためだけで、処理を作られない。 + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + エラー:額,複雑,最近もらった資金、どれかの理由で処理は少なくとも %sの料金が必要です。 + + + + Error: Transaction creation failed + エラー:処理を失敗しました。 + + + + Sending... + 通信中... + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + 無効な総額 + + + + Insufficient funds + 残高不足 + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. +  警告:コンピュータの日付と時間を調べてください。時間ずらしかったばい、ブラックコイン QTは正しく行動しない。 + + + + Warning: This version is obsolete, upgrade required! + 警告: このバージョンは古いのでアップグレードが必要です! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + 警告:シンクロナイズドチェックポイント違反を検出したが、チェックポイントを飛ばした。 + + + + Warning: Disk space is low! + 警告:ディスクの空き領域は少ない! + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + 警告:無効なチェックポイントを見つかりました!表示された処理は正しくない可能性がある!アップグレードするか、デベロッパーに報告する必要があります。 + + + + bitcoin-core + + BitBean version + ブラックコインバージョン + + + Usage: + 使用法: + + + Send command to -server or BitBeand + -server か BitBeandへコマンドを送る。 + + + List commands + コマンド一覧 + + + Get help for a command + コマンドのヘルプ + + + Options: + オプション: + + + Specify configuration file (default: BitBean.conf) + 設定ファイルを特定する (デファルト: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + pid ファイルを特定する (デフォルト: BitBeand.pid) + + + Specify wallet file (within data directory) + ウォレットのファイルを指定 (データ・ディレクトリの中に) + + + Specify data directory + データ ディレクトリの指定 + + + Set database cache size in megabytes (default: 25) + データベースのキャッシュサイズをメガバイトで設定 (初期値: 25) + + + Set database disk log size in megabytes (default: 100) + メガバイトでのデータベースのログザイズの大きさの設定(デファルト:100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + <port> で 接続をリスン (デフォルト: 15714かtestnet は 25714) + + + 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 + あなた自身のパブリックなアドレスを指定 + + + Bind to given address. Use [host]:port notation for IPv6 + アドレスに結ぶ。IPv6のばい、[host]:port 表記法を使ってください。 + + + Stake your coins to support network and gain reward (default: 1) + 褒奨金をもらうためと、ブラックコインネットワークをサッポートするために、コインを賭ける(デファルト:1) + + + 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 + + + Detach block and address databases. Increases shutdown time (default: 0) + ブロックとアドレスのデータベースを切り離す。この設定はシャットダウンの時間を伸ばさせます。(デファルト:0) + + + 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のコピーで費やしたが、現行の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の料金が必要です。 + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + <port> で JSON-RPC 接続をリスン (デフォルト: 15715かtestnet は 25715) + + + Accept command line and JSON-RPC commands + コマンドラインと JSON-RPC コマンドを許可 + + + Error: Transaction creation failed + エラー:処理を失敗しました。 + + + Error: Wallet locked, unable to create transaction + エラー:ウォレットはロックされたために、処理を作られなかった。 + + + Importing blockchain data file. + ブロックチェインのファイルを読み込んでいる。 + + + Importing bootstrap blockchain data file. + ブートストラップなブロックチェインのファイルを読み込んでいる。 + + + 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) + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + IPv6 でリスンする RPC ポート %u の設定中にエラーが発生したので IPv4 に切り替えます: %s + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + データベース%sを初期化するにエラーになりました。直すためにディレクトリをバックアップして、そしてwallet.dat意外のファイルを取り除いてください。 + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + バイトで、最優先、低料金の処理の最大サイズの設定(デファルト:27000) + + + 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 BitBean will not work properly. +  警告:コンピュータの日付と時間を調べてください。時間ずらしかったばい、ブラックコイン QTは正しく行動しない。 + + + 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 に保存されました; もしもあなたの残高や処理が正しくないばい、バックアップから復元してください。 + + + Attempt to recover private keys from a corrupt wallet.dat + 壊れた wallet.dat から秘密鍵を復旧することを試す + + + Block creation options: + ブロック作成オプション: + + + Connect only to the specified node(s) + 指定したノードだけに接続 + + + Discover own IP address (default: 1 when listening and no -externalip) + 自分の IP アドレスを発見 (初期値: リスン中と -externalip を使用していない場合は1) + + + Failed to listen on any port. Use -listen=0 if you want this. + ポートのリスンに失敗しました。必要であれば -listen=0 を使用してください。 + + + Find peers using DNS lookup (default: 1) + DNSルックアップでピーアを探す(デファルト:1) + + + Sync checkpoints policy (default: strict) + 同期チェックポイント方針(デファルト:厳しい) + + + Invalid -tor address: '%s' + 無効なTORアドレス: '%s' + + + Invalid amount for -reservebalance=<amount> + -reservebalance=<amount>の額は無効です + + + 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) + <net> (IPv4, IPv6, Tor) ネットワーク内のノードだけに接続する + + + Output extra debugging information. Implies all other -debug* options + 余分なデバッグ情報を出力する。この設定はすべてのdebug* の設定を有効にする。 + + + Output extra network debugging information + 余分なネットワークのデバッグ情報を出力する + + + Prepend debug output with timestamp + デバッグのアウトプットはタイムスタンプで先頭に追加する + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL オプション: (SSLのセットアップ手順は Bitcoin Wiki をご覧下さい) + + + Select the version of socks proxy to use (4-5, default: 5) + SOCKSプロクシーのバージョンを選択する (4-5、 デファルト: 5) + + + Send trace/debug info to console instead of debug.log file + トレース/デバッグ情報を debug.log ファイルの代わりにコンソールへ送る + + + Send trace/debug info to debugger + デバッガへ追跡とデバッグ情報を送る。 + + + Set maximum block size in bytes (default: 250000) + 最大ブロックサイズをバイトで設定 (初期値: 250000) + + + Set minimum block size in bytes (default: 0) + 最小ブロックサイズをバイトで設定 (初期値: 0) + + + Shrink debug.log file on client startup (default: 1 when no -debug) + クライアント起動時に debug.log ファイルを縮小 (初期値: -debug オプションを指定しない場合は1) + + + Specify connection timeout in milliseconds (default: 5000) + 接続のタイムアウトをミリセコンドで指定 (初期値: 5000) + + + Unable to sign checkpoint, wrong checkpointkey? + + チェックポイントを署名できません。checkpointkeyは違いますか。 + + + + Use UPnP to map the listening port (default: 0) + リスン ポートの割当に UPnP を使用 (初期値: 0) + + + Use UPnP to map the listening port (default: 1 when listening) + リスン ポートの割当に UPnP を使用 (初期値: リスン中は1) + + + Use proxy to reach tor hidden services (default: same as -proxy) + プロクシーでTORヒドゥンサービス(TOR Hidden Services)を接続する(デファルト:-proxyと同じ) + + + Username for JSON-RPC connections + JSON-RPC 接続のユーザー名 + + + Verifying database integrity... + データベースの保全性を確認最中... + + + WARNING: syncronized checkpoint violation detected, but skipped! + 警告:シンクロナイズドチェックポイント違反を検出したが、チェックポイントを飛ばした。 + + + Warning: Disk space is low! + 警告:ディスクの空き領域は少ない! + + + Warning: This version is obsolete, upgrade required! + 警告: このバージョンは古いのでアップグレードが必要です! + + + wallet.dat corrupt, salvage failed + wallet.dat が壊れ、復旧に失敗しました + + + Password for JSON-RPC connections + JSON-RPC 接続のパスワード + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, 設定ファイル:%sでrpcpasswordのパスワードを入力しなければならい + +このランダムパスワードのおすすめです: +rpcuser=BitBeanrpc +rpcpassword=%s +(このパサワードを覚えなくても大丈夫です) +ユーザ名とパスワードは同じであってはなりません。 +ファイルは存在しないばいは、所有者が読み取り可能な専用のファイルを作成してください。 +問題のことを知らせるために、alertnotifyの設定を有効にしたほうがいいです。 +例:alertnotify=echo %%s | mail -s "ブラックコイン警告" admin@foo.com + + + + Find peers using internet relay chat (default: 0) + インターネットリレーチャット(IRC)でピアアを探す。(デファルト:1 {0}?) + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + 他のノードと時刻の同期する。確な時刻のコンピューターのばい、無効する。例:NTP同期設定有効ある(デファルト:1) + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + 処理を作ると、この額より少ない数字を無視する (デファルト:0.01) + + + 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 はブロック ハッシュに置換される) + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + ウォレットの処理を変更する際にコマンドを実行 (cmd の %s は TxID に置換される) + + + Require a confirmations for change (default: 0) + 変更するために、確認を必要とする (デファルト:0) + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + 処理のスクリプトコマンドで標準的なPUSHオペレータを施行する(デファルト:1) + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + 関連した警告をもらったら、コマンドを実行する (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 + 失ったウォレットの処理のブロック チェーンを再スキャン + + + How many blocks to check at startup (default: 2500, 0 = all) + スタートのときに、いくつのブロックを調べます (デファルト:2500、 0 = すべて ) + + + How thorough the block verification is (0-6, default: 1) + ブロック検証の徹底の程度 (0-6 、デファルト:1) + + + Imports blocks from external blk000?.dat file + 外部 blk000?.dat ファイルからブロックを読み込む。 + + + 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) + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + 許容可能な暗号 (デフォルト: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + Error: Wallet unlocked for staking only, unable to create transaction. + エラー:アンロックされたウォレットは賭けるためだけで、処理を作られない。 + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + 警告:無効なチェックポイントを見つかりました!表示された処理は正しくない可能性がある!アップグレードするか、デベロッパーに報告する必要があります。 + + + This help message + このヘルプ メッセージ + + + Wallet %s resides outside data directory %s. + %sウォレットはディレクトリ%sの外にあります。 + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + %sディレクトリにをロックオンできない。ブラックコインQTは、もう発行してるでしょう。 + + + BitBean + ブラックコイン + + + Unable to bind to %s on this computer (bind returned error %d, %s) + このコンピュータの %s にバインドすることができません (バインドが返したエラーは %d, %s) + + + Connect through socks proxy + SOCKSプロキシで接続する + + + Allow DNS lookups for -addnode, -seednode and -connect + -addnode, -seednode と -connect で DNS ルックアップを許可する + + + Loading addresses... + アドレスを読み込んでいます... + + + Error loading blkindex.dat + blkindex.dat 読み込みエラー + + + Error loading wallet.dat: Wallet corrupted + wallet.dat 読み込みエラー: ウォレットが壊れました + + + Error loading wallet.dat: Wallet requires newer version of BitBean + wallet.dat 読み込みエラー:  ブラックコインQTの最新バージョンが必要です + + + Wallet needed to be rewritten: restart BitBean to complete + ウォレットのデータをリライトしなければならい:ブラックコインQTをリスタートしてください + + + 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' が無効です + + + Error: could not start node + エラー:ノードの開始ができなった + + + Sending... + 通信中... + + + 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. BitBean is probably already running. + このコンピューターで%sに結ぶことができなかった。ブラックコインQTは、もう発行してるでしょう。 + + + Fee per KB to add to transactions you send + 送る処理を足して、KBあたりの料金 + + + Invalid amount for -mininput=<amount>: '%s' + -mininput=<amount>: '%s'の額は無効です + + + Loading wallet... + ウォレットを読み込んでいます... + + + Cannot downgrade wallet + ウォレットのダウングレードはできません + + + Cannot initialize keypool + キースペースをイニシャライズをする + + + 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. + rpcpassword=<password> を設定ファイルでセットしてください: +%s +ファイルが無い場合は、オーナーだけが読み取れる権限でファイルを作成してください。 + + + diff --git a/src/qt/locale/bitbean_ka.qm b/src/qt/locale/bitbean_ka.qm new file mode 100644 index 0000000..991d3b3 Binary files /dev/null and b/src/qt/locale/bitbean_ka.qm differ diff --git a/src/qt/locale/bitcoin_ka.ts b/src/qt/locale/bitbean_ka.ts similarity index 51% rename from src/qt/locale/bitcoin_ka.ts rename to src/qt/locale/bitbean_ka.ts index 0fd0321..fc0f3a1 100644 --- a/src/qt/locale/bitcoin_ka.ts +++ b/src/qt/locale/bitbean_ka.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + პროგრამა ექსპერიმენტულია. ვრცელდება MIT/X11 ლიცენზიით, იხილე თანდართული ფაილი COPYING ან http://www.opensource.org/licenses/mit-license.php. @@ -37,72 +49,72 @@ This product includes software developed by the OpenSSL Project for use in the O AddressBookPage - + Address Book - + - + Double-click to edit address or label დააკლიკეთ ორჯერ მისამართის ან ნიშნულის შესაცვლელად - + Create a new address ახალი მისამართის შექმნა - + Copy the currently selected address to the system clipboard მონიშნული მისამართის კოპირება სისტემურ კლიპბორდში - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &მისამართის კოპირება - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list მონიშნული მისამართის წაშლა სიიდან - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + მესიჯის &ვერიფიკაცია - + &Delete &წაშლა @@ -119,7 +131,7 @@ This product includes software developed by the OpenSSL Project for use in the O Export Address Book Data - + @@ -129,12 +141,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -158,34 +170,34 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog ფრაზა-პაროლის დიალოგი - + Enter passphrase შეიყვანეთ ფრაზა-პაროლი - + New passphrase ახალი ფრაზა-პაროლი - + Repeat new passphrase გაიმეორეთ ახალი ფრაზა-პაროლი - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -234,16 +246,21 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + დარწმუნებული ხართ, რომ გინდათ საფულის დაშიფრვა? - Are you sure you wish to encrypt your wallet? - დარწმუნებული ხართ, რომ გინდათ საფულის დაშიფრვა? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. მნიშვნელოვანია: თქვენი საფულის ყველა ადრინდელი არქივი შეიცვლება ახლადგენერირებული დაშიფრული საფულის ფაილით. უსაფრთხოების მოსაზრებებით დაუშიფრავი საფულის ძველი არქივები ძალას დაკარგავს, როგორც კი დაიწყებთ ახალი, დაშიფრული საფულის გამოყენებას. @@ -260,12 +277,7 @@ This product includes software developed by the OpenSSL Project for use in the O საფულე დაშიფრულია - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -307,333 +319,585 @@ This product includes software developed by the OpenSSL Project for use in the O - BitcoinGUI + BeanControlDialog - - Sign &message... - ხელ&მოწერა - - - - Synchronizing with network... - ქსელთან სინქრონიზება... + + Bean Control + - - &Overview - მიმ&ოხილვა + + Quantity: + რაოდენობა: - - Show general overview of wallet - საფულის ზოგადი მიმოხილვა + + Bytes: + ბაიტები: - - &Transactions - &ტრანსაქციები + + Amount: + თანხა: - - Browse transaction history - ტრანსაქციების ისტორიის დათვალიერება + + Priority: + პრიორიტეტი: - - &Address Book - + + Fee: + საკომისიო: - - Edit the list of stored addresses and labels - + + Low Output: + ქვედა ზღვარი: - - &Receive coins - + + After Fee: + დამატებითი საკომისიო: - - Show the list of addresses for receiving payments - + + Change: + ხურდა: - - &Send coins - + + (un)select all + ყველას მონიშვნა/(მოხსნა) - - E&xit - &გასვლა + + Tree mode + განტოტვილი - - Quit application - გასვლა + + List mode + სია - - Show information about BitBean - + + Amount + - - About &Qt - &Qt-ს შესახებ + + Label + ნიშნული - - Show information about Qt - ინფორმაცია Qt-ს შესახებ + + Address + მისამართი - - &Options... - &ოპციები + + Date + თარიღი - - &Encrypt Wallet... - საფულის &დაშიფრვა + + Confirmations + დადასტურება - &Backup Wallet... - საფულის &არქივირება + Confirmed + დადასტურებულია - - &Change Passphrase... - ფრაზა-პაროლის შე&ცვლა - - - - ~%n block(s) remaining - + + Priority + პრიორიტეტი - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + მისამართის კოპირება - - &Export... - + + Copy label + ნიშნულის კოპირება - - Send coins to a BitBean address - + + + Copy amount + თანხის კოპირება - - Modify configuration options for BitBean - + + Copy transaction ID + ტრანსაქციის ID-ს კოპირება - - Export the data in the current tab to a file - + + Copy quantity + რაოდენობის კოპირება - - Encrypt or decrypt wallet - + + Copy fee + საკომისიოს კოპირება - - Backup wallet to another location - საფულის არქივირება სხვა ადგილზე + + Copy after fee + დამატებითი საკომისიოს კოპირება - - Change the passphrase used for wallet encryption - საფულის დაშიფრვის ფრაზა-პაროლის შეცვლა + + Copy bytes + ბაიტების კოპირება - - &Debug window - და&ხვეწის ფანჯარა + + Copy priority + პრიორიტეტის კოპირება - Open debugging and diagnostic console - დახვეწისა და გიაგნოსტიკის კონსოლის გაშვება + Copy low output + ქვედა ზღვრის კოპირება - - &Verify message... - &ვერიფიკაცია + + Copy change + ხურდის კოპირება - - BitBean - + + highest + უმაღლესი - - Wallet - საფულე + + high + მაღალი - - &About BitBean - + + medium-high + საშუალოზე მაღალი - - &Show / Hide - &ჩვენება/დაფარვა + + medium + საშუალო - - Unlock wallet - + + low-medium + საშუალოზე დაბალი - &Lock Wallet - + low + დაბალი - Lock wallet - + lowest + უდაბლესი - - &File - &ფაილი + + DUST + - - &Settings - &პარამეტრები + + yes + კი - - &Help - &დახმარება + + no + არა - - Tabs toolbar - ბარათების პანელი + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (არ არის ნიშნული) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + ხურდა %1-დან (%2) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + (ხურდა) + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + მიმ&ოხილვა - - - %n second(s) ago - + + + Show general overview of wallet + საფულის ზოგადი მიმოხილვა - - &Unlock Wallet... - + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &ტრანსაქციები + + + + Browse transaction history + ტრანსაქციების ისტორიის დათვალიერება + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + &გასვლა + + + + Quit application + გასვლა + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + &Qt-ს შესახებ + + + + Show information about Qt + ინფორმაცია Qt-ს შესახებ + + + + &Options... + &ოპციები + + + + Modify configuration options for BitBean + + + + + &Show / Hide + &ჩვენება/დაფარვა + + + + &Encrypt Wallet... + საფულის &დაშიფრვა + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + საფულის &არქივირება + + + + Backup wallet to another location + საფულის არქივირება სხვა ადგილზე + + + + &Change Passphrase... + ფრაზა-პაროლის შე&ცვლა + + + + Change the passphrase used for wallet encryption + საფულის დაშიფრვის ფრაზა-პაროლის შეცვლა + + + + &Unlock Wallet... + + + + + Unlock wallet + საფულის განბლოკვა + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + ხელ&მოწერა + + + + &Verify message... + &ვერიფიკაცია + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + და&ხვეწის ფანჯარა + + + + Open debugging and diagnostic console + დახვეწისა და გიაგნოსტიკის კონსოლის გაშვება + + + + &File + &ფაილი + + + + &Settings + &პარამეტრები + + + + &Help + &დახმარება + + + + Tabs toolbar + ბარათების პანელი + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + ქსელთან სინქრონიზება... + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + - + + %n second(s) ago + + + + + + + %n minute(s) ago - + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - განახლებულია + განახლებულია Catching up... - ჩართვა... + ჩართვა... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - გაგზავნილი ტრანსაქციები + გაგზავნილი ტრანსაქციები Incoming transaction - მიღებული ტრანსაქციები + მიღებული ტრანსაქციები @@ -642,7 +906,7 @@ Amount: %2 Type: %3 Address: %4 - თარიღი: %1 + თარიღი: %1 თანხა: %2 ტიპი: %3 მისამართი: %4 @@ -652,341 +916,425 @@ Address: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - საფულე <b>დაშიფრულია</b> და ამჟამად <b>განბლოკილია</b> + საფულე <b>დაშიფრულია</b> და ამჟამად <b>განბლოკილია</b> Wallet is <b>encrypted</b> and currently <b>locked</b> - საფულე <b>დაშიფრულია</b> და ამჟამად <b>დაბლოკილია</b> + საფულე <b>დაშიფრულია</b> და ამჟამად <b>დაბლოკილია</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - + + + + %n day(s) - + + + + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - ქსელური განგაში + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - რაოდენობა: + + Not staking because you don't have mature beans + - - Bytes: - ბაიტები: + + Not staking + + + + BitcoinGUI - - Amount: - თანხა: + Sign &message... + ხელ&მოწერა - - Priority: - პრიორიტეტი: + Synchronizing with network... + ქსელთან სინქრონიზება... - - Fee: - საკომისიო: + &Overview + მიმ&ოხილვა - - Low Output: - ქვედა ზღვარი: + Show general overview of wallet + საფულის ზოგადი მიმოხილვა - - no - არა + &Transactions + &ტრანსაქციები - - After Fee: - დამატებითი საკომისიო: + Browse transaction history + ტრანსაქციების ისტორიის დათვალიერება - - Change: - ხურდა: + E&xit + &გასვლა - - (un)select all - ყველას მონიშვნა/(მოხსნა) + Quit application + გასვლა - - Tree mode - განტოტვილი + About &Qt + &Qt-ს შესახებ - - List mode - სია + Show information about Qt + ინფორმაცია Qt-ს შესახებ - - Amount - რაოდენობა + &Options... + &ოპციები - - Label - + &Encrypt Wallet... + საფულის &დაშიფრვა - - Address - მისამართი + &Backup Wallet... + საფულის &არქივირება - - Date - თარიღი + &Change Passphrase... + ფრაზა-პაროლის შე&ცვლა + + + Backup wallet to another location + საფულის არქივირება სხვა ადგილზე + + + Change the passphrase used for wallet encryption + საფულის დაშიფრვის ფრაზა-პაროლის შეცვლა + + + &Debug window + და&ხვეწის ფანჯარა + + + Open debugging and diagnostic console + დახვეწისა და გიაგნოსტიკის კონსოლის გაშვება + + + &Verify message... + &ვერიფიკაცია + + + Wallet + საფულე + + + &Show / Hide + &ჩვენება/დაფარვა + + + &File + &ფაილი + + + &Settings + &პარამეტრები + + + &Help + &დახმარება + + + Tabs toolbar + ბარათების პანელი + + + [testnet] + [testnet] + + + Up to date + განახლებულია + + + Catching up... + ჩართვა... + + + Sent transaction + გაგზავნილი ტრანსაქციები + + + Incoming transaction + მიღებული ტრანსაქციები + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + თარიღი: %1 +თანხა: %2 +ტიპი: %3 +მისამართი: %4 + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + საფულე <b>დაშიფრულია</b> და ამჟამად <b>განბლოკილია</b> + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + საფულე <b>დაშიფრულია</b> და ამჟამად <b>დაბლოკილია</b> + + + + ClientModel + + + Network Alert + ქსელური განგაში + + + + CoinControlDialog + + Quantity: + რაოდენობა: + + + Bytes: + ბაიტები: + + + Amount: + თანხა: + + + Priority: + პრიორიტეტი: + + + Fee: + საკომისიო: + + + Low Output: + ქვედა ზღვარი: + + + no + არა + + + 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-ს კოპირება + ტრანსაქციის ID-ს კოპირება - Copy quantity - რაოდენობის კოპირება + რაოდენობის კოპირება - Copy fee - საკომისიოს კოპირება + საკომისიოს კოპირება - Copy after fee - დამატებითი საკომისიოს კოპირება + დამატებითი საკომისიოს კოპირება - Copy bytes - ბაიტების კოპირება + ბაიტების კოპირება - Copy priority - პრიორიტეტის კოპირება + პრიორიტეტის კოპირება - Copy low output - ქვედა ზღვრის კოპირება + ქვედა ზღვრის კოპირება - Copy change - ხურდის კოპირება + ხურდის კოპირება - highest - უმაღლესი + უმაღლესი - high - მაღალი + მაღალი - medium-high - საშუალოზე მაღალი + საშუალოზე მაღალი - medium - საშუალო + საშუალო - low-medium - საშუალოზე დაბალი + საშუალოზე დაბალი - low - დაბალი + დაბალი - lowest - უდაბლესი - - - - DUST - + უდაბლესი - yes - კი - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + კი - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 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. - - This means a fee of at least %2 is required. - - - - - (no label) - (არ არის ნიშნული) + (არ არის ნიშნული) - change from %1 (%2) - ხურდა %1-დან (%2) + ხურდა %1-დან (%2) - (change) - (ხურდა) + (ხურდა) EditAddressDialog - + Edit Address მისამართის შეცვლა @@ -998,7 +1346,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1008,7 +1356,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1038,7 +1386,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1054,98 +1402,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + გამოყენება: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options ოპციები - + &Main &მთავარი - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee ტრანსაქციის სა&ფასურის გადახდა - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1155,7 +1503,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1165,12 +1513,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1180,7 +1528,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1240,7 +1588,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1249,13 +1597,27 @@ This label turns red, if the priority is smaller than "medium". + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + Choose the default subdivision unit to show in the interface and when sending coins. - აირჩიეთ გასაგზავნი თანხის ნაგულისხმევი ერთეული. + აირჩიეთ გასაგზავნი თანხის ნაგულისხმევი ერთეული. - + Whether to show BitBean addresses in the transaction list or not. - + @@ -1263,17 +1625,11 @@ This label turns red, if the priority is smaller than "medium". მისამართების &ჩვენება სიაში - Whether to show coin control features or not. - ვაჩვენოთ თუ არა მონეტების მართვის პარამეტრები. - - - - Display coin &control features (experts only!) - + ვაჩვენოთ თუ არა მონეტების მართვის პარამეტრები. - + &OK &OK @@ -1285,7 +1641,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1296,13 +1652,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1313,145 +1669,225 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form ფორმა - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: დაუდასტურებელია: - Wallet - საფულე + საფულე - + Spendable: - + - + Your current spendable balance თქვენი ხელმისაწვდომი ნაშთი - - Immature: - მოუმზადებელია: + + Sprouting: + - - Mined balance that has not yet matured - მოპოვებული თანხა, რომელიც ჯერ არ არის მზადყოფნაში + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + - - Total: - სულ: + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + - - Your current total balance - თქვენი სრული მიმდინარე ბალანსი + + Immature: + მოუმზადებელია: - - <b>Recent transactions</b> - <b>ბოლო ტრანსაქციები</b> + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + BitBean Network + - - - out of sync - არ არის სინქრონიზებული + + Bean Stalk Height: + - - - QRCodeDialog - - QR Code Dialog - + + Sprouting Difficulty: + - - Request Payment - + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + მოპოვებული თანხა, რომელიც ჯერ არ არის მზადყოფნაში + + + + Total: + სულ: + + + Your current total balance + თქვენი სრული მიმდინარე ბალანსი + + + <b>Recent transactions</b> + <b>ბოლო ტრანსაქციები</b> + + + + + out of sync + არ არის სინქრონიზებული + + + + QRCodeDialog + + + QR Code Dialog + + + + + Request Payment + Amount: - + თანხა: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name კლიენტი @@ -1502,7 +1938,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1532,17 +1968,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1557,12 +1993,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1572,7 +2008,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1582,7 +2018,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1596,59 +2032,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - მონეტების გაგზავნა + Send Beans + - Coin Control Features - მონეტების კონტროლის პარამეტრები + Bean Control Features + Inputs... - ხარჯები... + ხარჯები... automatically selected - არჩეულია ავტომატურად + არჩეულია ავტომატურად Insufficient funds! - არ არის საკმარისი თანხა! + არ არის საკმარისი თანხა! Quantity: - რაოდენობა: + რაოდენობა: 0 - + Bytes: - ბაიტები: + ბაიტები: Amount: - თანხა: + თანხა: @@ -1656,272 +2092,438 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - პრიორიტეტი: + პრიორიტეტი: medium - + საშუალო Fee: - საკომისიო: + საკომისიო: Low Output: - ქვედა ზღვარი: + ქვედა ზღვარი: no - + არა After Fee: - დამატებითი საკომისიო: + დამატებითი საკომისიო: Change - + custom change address - + Send to multiple recipients at once - გაგზავნა რამდენიმე რეციპიენტთან ერთდროულად + გაგზავნა რამდენიმე რეციპიენტთან ერთდროულად Add &Recipient - &რეციპიენტის დამატება + &რეციპიენტის დამატება Remove all transaction fields - + Clear &All - გ&ასუფთავება + გ&ასუფთავება Balance: - ბალანსი: + ბალანსი: 123.456 BC - + Confirm the send action - გაგზავნის დადასტურება + გაგზავნის დადასტურება S&end - გაგ&ზავნა + გაგ&ზავნა - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - რაოდენობის კოპირება + რაოდენობის კოპირება Copy amount - თანხის კოპირება + თანხის კოპირება Copy fee - საკომისიოს კოპირება + საკომისიოს კოპირება Copy after fee - დამატებითი საკომისიოს კოპირება + დამატებითი საკომისიოს კოპირება Copy bytes - ბაიტების კოპირება + ბაიტების კოპირება Copy priority - პრიორიტეტის კოპირება + პრიორიტეტის კოპირება Copy low output - ქვედა ზღვრის კოპირება + ქვედა ზღვრის კოპირება Copy change - ხურდის კოპირება + ხურდის კოპირება <b>%1</b> to %2 (%3) - + - Confirm send coins - მონეტების გაგზავნის დადასტურება + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - მისამართები დუბლირებულია, დაშვებულია ერთ ჯერზე თითო მისამართზე ერთხელ გაგზავნა. + მისამართები დუბლირებულია, დაშვებულია ერთ ჯერზე თითო მისამართზე ერთხელ გაგზავნა. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (არ არის ნიშნული) + (არ არის ნიშნული) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + ფორმა - + A&mount: - &რაოდენობა + &რაოდენობა Pay &To: - ადრესა&ტი: + ადრესა&ტი: - + Enter a label for this address to add it to your address book - შეიყვანეთ ამ მისამართის ნიშნული მისამართების წიგნში დასამატებლად + შეიყვანეთ ამ მისამართის ნიშნული მისამართების წიგნში დასამატებლად &Label: - ნიშნუ&ლი: + ნიშნუ&ლი: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - მისამართის ჩასმა კლიპბორდიდან + მისამართის ჩასმა კლიპბორდიდან Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + მონეტების გაგზავნა + + + Coin Control Features + მონეტების კონტროლის პარამეტრები + + + Inputs... + ხარჯები... + + + automatically selected + არჩეულია ავტომატურად + + + Insufficient funds! + არ არის საკმარისი თანხა! + + + Quantity: + რაოდენობა: + + + Bytes: + ბაიტები: + + + Amount: + თანხა: + + + Priority: + პრიორიტეტი: + + + Fee: + საკომისიო: + + + Low Output: + ქვედა ზღვარი: + + + After Fee: + დამატებითი საკომისიო: + + + Send to multiple recipients at once + გაგზავნა რამდენიმე რეციპიენტთან ერთდროულად + + + Add &Recipient + &რეციპიენტის დამატება + + + Clear &All + გ&ასუფთავება + + + Balance: + ბალანსი: + + + Confirm the send action + გაგზავნის დადასტურება + + + S&end + გაგ&ზავნა + + + Copy quantity + რაოდენობის კოპირება + + + Copy amount + თანხის კოპირება + + + Copy fee + საკომისიოს კოპირება + + + Copy after fee + დამატებითი საკომისიოს კოპირება + + + Copy bytes + ბაიტების კოპირება + + + Copy priority + პრიორიტეტის კოპირება + + + Copy low output + ქვედა ზღვრის კოპირება + + + Copy change + ხურდის კოპირება + + + Confirm send coins + მონეტების გაგზავნის დადასტურება + + + 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. + მისამართები დუბლირებულია, დაშვებულია ერთ ჯერზე თითო მისამართზე ერთხელ გაგზავნა. + + + (no label) + (არ არის ნიშნული) + + + + SendCoinsEntry + + A&mount: + &რაოდენობა + + + Pay &To: + ადრესა&ტი: + + + Enter a label for this address to add it to your address book + შეიყვანეთ ამ მისამართის ნიშნული მისამართების წიგნში დასამატებლად + + + &Label: + ნიშნუ&ლი: + + + Alt+A + Alt+A + + + Paste address from clipboard + მისამართის ჩასმა კლიპბორდიდან + + + Alt+P + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message ხელმოწერები - მესიჯის ხელმოწერა/ვერიფიკაცია @@ -1939,13 +2541,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1976,7 +2578,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -2003,12 +2605,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2019,7 +2621,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2029,7 +2631,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2108,12 +2710,15 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + conflicted - + @@ -2138,7 +2743,10 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - + + + + @@ -2191,7 +2799,10 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - + + + + @@ -2233,8 +2844,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2280,7 +2891,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details ტრანსაქციის დეტალები @@ -2325,27 +2936,30 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + @@ -2359,928 +2973,1235 @@ This label turns red, if the priority is smaller than "medium". - Generated but not accepted - გენერირებულია, მაგრამ უარყოფილია + Generated but not accepted + გენერირებულია, მაგრამ უარყოფილია + + + + Received with + მიღებულია + + + + Received from + გამომგზავნი + + + + Sent to + გაგზავნილია ადრესატთან + + + + Payment to yourself + გადახდილია საკუთარი თავისათვის + + + + SPROUT + + + + 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. + ბალანსიდან მოხსნილი ან დამატებული თანხა. + + + + 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 Data + + + + + Comma separated file (*.csv) + CSV-ფაილი (*.csv) + + + + Confirmed + დადასტურებულია + + + + Date + თარიღი + + + + Type + ტიპი + + + + Label + ნიშნული + + + + Address + მისამართი + + + + Amount + თანხა + + + + ID + ID + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + შუალედი: + + + + to + - + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + %s ოპციის გამოსაყენებლად + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + შეცდომა + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + შეცდომა %u RPC-პორტის მიყურადების ჩართვისას IPv6 მისამართზე, ვბრუნდებით IPv4-ზე : %s + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + შეცდომა %u RPC-პორტის მიყურადების ჩართვისას IPv4 მისამართზე: %s + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + უნდა დააყენოთ rpcpassword=<password> საკონფიგურაციო ფაილში: +%s +თუ ეს ფაილი არ არსებობს, შექმენით იგი უფლებებით owner-readable-only. + + + + BitBean version + + + + + Usage: + გამოყენება: + + + + Send command to -server or BitBeand + + + + + List commands + ბრძანებები + + + + Get help for a command + ბრძანების აღწერილობა + + + + BitBean + + + + + Options: + ოპციები: + + + + This help message + ეს ტექსტი + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + მიუთითეთ მონაცემთა კატალოგი + + + + Specify wallet file (within data directory) + მიუთითეთ საფულის ფაილი (კატალოგში) + + + + Set database cache size in megabytes (default: 25) + მონაცემთა ბაზის ქეშის ზომა მეგაბაიტებში (ნაგულისხმევია 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + მიუთითეთ შეერთების ტაიმაუტი მილიწამებში (ნაგულისხმევი: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + DNS-ძებნის დაშვება -addnode, -seednode და -connect-სათვის + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + არაუმეტეს <n> შეერთებისა პირებზე (ნაგულისხმევი: 125) + + + + Add a node to connect to and attempt to keep the connection open + მისაერთებელი კვანძის დამატება და მიერთების შეძლებისდაგვარად შენარჩუნება + + + + Connect only to the specified node(s) + შეერთება მხოლოდ მითითებულ კვანძ(ებ)თან + + + + Connect to a node to retrieve peer addresses, and disconnect + მიერთება კვანძთან, პირების მისამართების მიღება და გათიშვა + + + + Specify your own public address + მიუთითეთ თქვენი საჯარო მისამართი + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + შეერთება მხოლოდ <net> ქსელის კვანძებთან (IPv4, IPv6 ან Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + საკუთარი IP-მისამართის განსაზღვრა (ნაგულისხმევი: 1 თუ ჩართულია მიყურადება და არ გამოიყენება -externalip) + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + გარედან შეერთებების დაშვება (ნაგულისხმევი: 1 თუ არ გამოიყენება -proxy ან -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + Threshold for disconnecting misbehaving peers (default: 100) + არასწორად მოქმედი პირების გათიშვის ზღვარი (ნაგულისხმევი:100) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + არასწორად მოქმედი პირების ბლოკირების დრო წამებში (ნაგულისხმევი: 86400) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + გამოიყენეთ UPnP მისაყურადებელი პორტის გადასამისამართებლად (ნაგულისხმევი: 1 როცა ჩართულია მიყურადება) + + + + Use UPnP to map the listening port (default: 0) + გამოიყენეთ UPnP მისაყურადებელი პორტის გადასამისამართებლად (ნაგულისხმევი: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + საკომანდო სტრიქონისა და JSON-RPC-კომამდების ნებართვა + + + + Run in the background as a daemon and accept commands + რეზიდენტულად გაშვება და კომანდების მიღება + + + + Use the test network + სატესტო ქსელის გამოყენება + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + debug.log ფაილის შეკუმშვა გაშვებისას (ნაგულისხმევია: 1 როცა არ აყენია -debug) + + + + Send trace/debug info to console instead of debug.log file + ტრასირების/დახვეწის ინფოს გაგზავნა კონსოლზე debug.log ფაილის ნაცვლად + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + მომხმარებლის სახელი JSON-RPC-შეერთებისათვის + + + + Password for JSON-RPC connections + პაროლი JSON-RPC-შეერთებისათვის + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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 კომანდაში ჩანაცვლდება ბლოკის ჰეშით) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + კომანდის შესრულება საფულის ტრანსაქციის ცვლილებისას (%s კომანდაში ჩანაცვლდება TxID-ით) + + + + Require a confirmations for change (default: 0) + - - Received with - მიღებულია + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - Received from - გამომგზავნი + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - Sent to - გაგზავნილია ადრესატთან + Upgrade wallet to latest format + საფულის ფორმატის განახლება - - Payment to yourself - გადახდილია საკუთარი თავისათვის + + Set key pool size to <n> (default: 100) + გასაღების პულის ზომა იქნება <n> (ნაგულისხმევი: 100) - - Mined - მოპოვებულია + + Rescan the block chain for missing wallet transactions + ბლოკების ჯაჭვის გადამოწმება საფულეში გამორჩენილ ტრანსაქციებზე - - (n/a) - (მიუწვდ.) + + Attempt to recover private keys from a corrupt wallet.dat + პირადი გასაღებების აღდგენის მცდელობა wallet.dat-იდან - - Transaction status. Hover over this field to show number of confirmations. - ტრანსაქციის სტატუსი. ველზე კურსორის შეყვანისას გამოჩნდება დასტურების რაოდენობა. + + How many blocks to check at startup (default: 2500, 0 = all) + - - Date and time that the transaction was received. - ტრანსაქციის მიღების თარიღი და დრო. + + How thorough the block verification is (0-6, default: 1) + - - Type of transaction. - ტრანსაქციის ტიპი. + + Imports blocks from external blk000?.dat file + - - Destination address of transaction. - ტრანსაქიის დანიშნულების მისამართი. + + Block creation options: + ბლოკის შექმნის ოპციები: - - Amount removed from or added to balance. - ბალანსიდან მოხსნილი ან დამატებული თანხა. + + Set minimum block size in bytes (default: 0) + დააყენეთ ბლოკის მინიმალური ზომა ბაიტებში (ნაგულისხმევი: 0) - - - TransactionView - - - All - ყველა + + Set maximum block size in bytes (default: 250000) + - - Today - დღეს + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - This week - ამ კვირის + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - This month - ამ თვის + Use OpenSSL (https) for JSON-RPC connections + OpenSSL-ის (https) გამოყენება JSON-RPC-შეერთებებისათვის - Last month - ბოლო თვის + Server certificate file (default: server.cert) + სერვერის სერტიფიკატის ფაილი (ნაგულისხმევი: server.cert) - This year - ამ წლის + Server private key (default: server.pem) + სერვერის პირადი გასაღები (ნაგულისხმევი: server.pem) - Range... - შუალედი... + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Received with - შემოსულია + + Invalid amount for -paytxfee=<amount>: '%s' + დაუშვებელი მნიშვნელობა -paytxfee=<amount>: '%s' - - Sent to - გაგზავნილია + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + ყურადღება: ძალიან მაღალია -paytxfee - საკომისო, რომელსაც თქვენ გადაიხდით ამ ტრანსაქციის გაგზავნის საფასურად. - - To yourself - საკუთარი თავისათვის + + Invalid amount for -mininput=<amount>: '%s' + - Mined - მოპოვებულია + Wallet %s resides outside data directory %s. + - Other - სხვა + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Enter address or label to search - შეიყვანეთ საძებნი მისამართი ან ნიშნული + + Verifying database integrity... + - - Min amount - მინ. თანხა + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Copy address - მისამართის კოპირება + + 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-ში; თუ შეამჩნიეთ უზუსტობა ნაშთში ან ტრანსაქციებში, აღადგინეთ არქივიდან. + + + + wallet.dat corrupt, salvage failed + wallet.dat დაზიანებულია, აღდგენა ვერ მოხერხდა - Copy label - ნიშნულის კოპირება + Unknown -socks proxy version requested: %i + მოთხოვნილია -socks პროქსის უცნობი ვერსია: %i - Copy amount - თანხის კოპირება + Unknown network specified in -onlynet: '%s' + -onlynet-ში მითითებულია უცნობი ქსელი: '%s' - Copy transaction ID - ტრანსაქციის ID-ს კოპირება + Invalid -proxy address: '%s' + არასწორია მისამართი -proxy: '%s' - Edit label - ნიშნულის რედაქტირება + Invalid -tor address: '%s' + - Show transaction details - ტრანსაქციის დეტალების ჩვენება + Cannot resolve -bind address: '%s' + ვერ ხერხდება -bind მისამართის გარკვევა: '%s' - - Export Transaction Data - + + Failed to listen on any port. Use -listen=0 if you want this. + ვერ ხერხდება პორტების მიყურადება. თუ გსურთ, გამოიყენეთ -listen=0. - Comma separated file (*.csv) - CSV-ფაილი (*.csv) + Cannot resolve -externalip address: '%s' + ვერ ხერხდება -externalip მისამართის გარკვევა: '%s' - - Confirmed - დადასტურებულია + + Invalid amount for -reservebalance=<amount> + - Date - თარიღი + Unable to sign checkpoint, wrong checkpointkey? + + - Type - ტიპი + Loading block index... + ბლოკების ინდექსის ჩატვირთვა... - Label - ნიშნული + Error loading blkindex.dat + - Address - მისამართი + Loading wallet... + საფულის ჩატვირთვა... - Amount - თანხა + Error loading wallet.dat: Wallet corrupted + არ იტვირთება wallet.dat: საფულე დაზიანებულია - ID - ID + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + ყურადღება: არ იკითხება wallet.dat! ყველა გასაღები წაკითხულია, მაგრამ გამორჩენილი ან არასწორია ტრანსაქციის თარიღი ან ჩანაწერები მისამართების წიგნში. - - Error exporting - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Could not write to file %1. - + + Wallet needed to be rewritten: restart BitBean to complete + - - Range: - შუალედი: + + Error loading wallet.dat + არ იტვირთება wallet.dat - - to - - + + Cannot downgrade wallet + საფულის ძველ ვერსიაზე გადაყვანა შეუძლებელია - - - WalletModel - - Sending... - + + Cannot initialize keypool + - - - bitcoin-core - - BitBean version - + + Cannot write default address + ვერ ხერხდება ნაგულისხმევი მისამართის ჩაწერა - Usage: - გამოყენება: + Rescanning... + სკანირება... - Send command to -server or BitBeand - + Importing blockchain data file. + - List commands - ბრძანებები + Importing bootstrap blockchain data file. + - Get help for a command - ბრძანების აღწერილობა + Loading addresses... + მისამართების ჩატვირთვა... - - Options: - ოპციები: + + Error: could not start node + - - Specify configuration file (default: BitBean.conf) - + + Done loading + ჩატვირთვა დასრულებულია - Specify pid file (default: BitBeand.pid) - + Unable to bind to %s on this computer. BitBean is probably already running. + - Specify wallet file (within data directory) - მიუთითეთ საფულის ფაილი (კატალოგში) + Unable to bind to %s on this computer (bind returned error %d, %s) + ვერ ხერხდება მიბმა %s-თან ამ კომპიუტერზე (მიღებულია შეცდომა %d, %s) - - Specify data directory - მიუთითეთ მონაცემთა კატალოგი + + Error: Wallet locked, unable to create transaction + - - Set database cache size in megabytes (default: 25) - მონაცემთა ბაზის ქეშის ზომა მეგაბაიტებში (ნაგულისხმევია 25) + + Error: Wallet unlocked for staking only, unable to create transaction. + - Set database disk log size in megabytes (default: 100) - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Error: Transaction creation failed + + + + + Sending... + + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + დაუშვებელი თანხა + + + + Insufficient funds + არ არის საკმარისი თანხა + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + + + + + Warning: This version is obsolete, upgrade required! + ყურადღება: ვერსია მოძველებულია, საჭიროა განახლება! - Maintain at most <n> connections to peers (default: 125) - არაუმეტეს <n> შეერთებისა პირებზე (ნაგულისხმევი: 125) + WARNING: syncronized checkpoint violation detected, but skipped! + - - Connect to a node to retrieve peer addresses, and disconnect - მიერთება კვანძთან, პირების მისამართების მიღება და გათიშვა + + Warning: Disk space is low! + - Specify your own public address - მიუთითეთ თქვენი საჯარო მისამართი + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Bind to given address. Use [host]:port notation for IPv6 - + Usage: + გამოყენება: - - Stake your coins to support network and gain reward (default: 1) - + List commands + ბრძანებები - - Threshold for disconnecting misbehaving peers (default: 100) - არასწორად მოქმედი პირების გათიშვის ზღვარი (ნაგულისხმევი:100) + Get help for a command + ბრძანების აღწერილობა - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - არასწორად მოქმედი პირების ბლოკირების დრო წამებში (ნაგულისხმევი: 86400) + Options: + ოპციები: - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - შეცდომა %u RPC-პორტის მიყურადების ჩართვისას IPv4 მისამართზე: %s + Specify wallet file (within data directory) + მიუთითეთ საფულის ფაილი (კატალოგში) - - Detach block and address databases. Increases shutdown time (default: 0) - + Specify data directory + მიუთითეთ მონაცემთა კატალოგი - - 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. - + Set database cache size in megabytes (default: 25) + მონაცემთა ბაზის ქეშის ზომა მეგაბაიტებში (ნაგულისხმევია 25) - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + Maintain at most <n> connections to peers (default: 125) + არაუმეტეს <n> შეერთებისა პირებზე (ნაგულისხმევი: 125) - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + Connect to a node to retrieve peer addresses, and disconnect + მიერთება კვანძთან, პირების მისამართების მიღება და გათიშვა - - Accept command line and JSON-RPC commands - საკომანდო სტრიქონისა და JSON-RPC-კომამდების ნებართვა + Specify your own public address + მიუთითეთ თქვენი საჯარო მისამართი - - Error: Transaction creation failed - + Threshold for disconnecting misbehaving peers (default: 100) + არასწორად მოქმედი პირების გათიშვის ზღვარი (ნაგულისხმევი:100) - - Error: Wallet locked, unable to create transaction - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + არასწორად მოქმედი პირების ბლოკირების დრო წამებში (ნაგულისხმევი: 86400) - - Importing blockchain data file. - + An error occurred while setting up the RPC port %u for listening on IPv4: %s + შეცდომა %u RPC-პორტის მიყურადების ჩართვისას IPv4 მისამართზე: %s - - Importing bootstrap blockchain data file. - + Accept command line and JSON-RPC commands + საკომანდო სტრიქონისა და JSON-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) - გარედან შეერთებების დაშვება (ნაგულისხმევი: 1 თუ არ გამოიყენება -proxy ან -connect) + გარედან შეერთებების დაშვება (ნაგულისხმევი: 1 თუ არ გამოიყენება -proxy ან -connect) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - შეცდომა %u RPC-პორტის მიყურადების ჩართვისას IPv6 მისამართზე, ვბრუნდებით IPv4-ზე : %s - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + შეცდომა %u RPC-პორტის მიყურადების ჩართვისას IPv6 მისამართზე, ვბრუნდებით IPv4-ზე : %s - 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 BitBean will not work properly. - + ყურადღება: ძალიან მაღალია -paytxfee - საკომისო, რომელსაც თქვენ გადაიხდით ამ ტრანსაქციის გაგზავნის საფასურად. - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - ყურადღება: არ იკითხება wallet.dat! ყველა გასაღები წაკითხულია, მაგრამ გამორჩენილი ან არასწორია ტრანსაქციის თარიღი ან ჩანაწერები მისამართების წიგნში. + ყურადღება: არ იკითხება 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-ში; თუ შეამჩნიეთ უზუსტობა ნაშთში ან ტრანსაქციებში, აღადგინეთ არქივიდან. + ყურადღება: wallet.dat დაზიანებულია! ორიგინალური wallet.dat შენახულია როგორც wallet.{timestamp}.bak %s-ში; თუ შეამჩნიეთ უზუსტობა ნაშთში ან ტრანსაქციებში, აღადგინეთ არქივიდან. - Attempt to recover private keys from a corrupt wallet.dat - პირადი გასაღებების აღდგენის მცდელობა wallet.dat-იდან + პირადი გასაღებების აღდგენის მცდელობა wallet.dat-იდან - Block creation options: - ბლოკის შექმნის ოპციები: + ბლოკის შექმნის ოპციები: - Connect only to the specified node(s) - შეერთება მხოლოდ მითითებულ კვანძ(ებ)თან + შეერთება მხოლოდ მითითებულ კვანძ(ებ)თან - Discover own IP address (default: 1 when listening and no -externalip) - საკუთარი IP-მისამართის განსაზღვრა (ნაგულისხმევი: 1 თუ ჩართულია მიყურადება და არ გამოიყენება -externalip) + საკუთარი IP-მისამართის განსაზღვრა (ნაგულისხმევი: 1 თუ ჩართულია მიყურადება და არ გამოიყენება -externalip) - Failed to listen on any port. Use -listen=0 if you want this. - ვერ ხერხდება პორტების მიყურადება. თუ გსურთ, გამოიყენეთ -listen=0. + ვერ ხერხდება პორტების მიყურადება. თუ გსურთ, გამოიყენეთ -listen=0. - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - მიღების ბუფერის მაქსიმალური ზომა შეერთებაზე, <n>*1000 ბაიტი (ნაგულისხმევი: 5000) + მიღების ბუფერის მაქსიმალური ზომა შეერთებაზე, <n>*1000 ბაიტი (ნაგულისხმევი: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - გაგზავნის ბუფერის მაქსიმალური ზომა შეერთებაზე, <n>*1000 ბაიტი (ნაგულისხმევი: 5000) + გაგზავნის ბუფერის მაქსიმალური ზომა შეერთებაზე, <n>*1000 ბაიტი (ნაგულისხმევი: 5000) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - შეერთება მხოლოდ <net> ქსელის კვანძებთან (IPv4, IPv6 ან Tor) - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - + შეერთება მხოლოდ <net> ქსელის კვანძებთან (IPv4, IPv6 ან Tor) - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL ოპციები: (იხილე Bitcoin Wiki-ში SSL-ს მოწყობის ინსტრუქციები) - - - - Select the version of socks proxy to use (4-5, default: 5) - + SSL ოპციები: (იხილე Bitcoin Wiki-ში SSL-ს მოწყობის ინსტრუქციები) - Send trace/debug info to console instead of debug.log file - ტრასირების/დახვეწის ინფოს გაგზავნა კონსოლზე debug.log ფაილის ნაცვლად + ტრასირების/დახვეწის ინფოს გაგზავნა კონსოლზე debug.log ფაილის ნაცვლად - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - Set minimum block size in bytes (default: 0) - დააყენეთ ბლოკის მინიმალური ზომა ბაიტებში (ნაგულისხმევი: 0) + დააყენეთ ბლოკის მინიმალური ზომა ბაიტებში (ნაგულისხმევი: 0) - Shrink debug.log file on client startup (default: 1 when no -debug) - debug.log ფაილის შეკუმშვა გაშვებისას (ნაგულისხმევია: 1 როცა არ აყენია -debug) + debug.log ფაილის შეკუმშვა გაშვებისას (ნაგულისხმევია: 1 როცა არ აყენია -debug) - Specify connection timeout in milliseconds (default: 5000) - მიუთითეთ შეერთების ტაიმაუტი მილიწამებში (ნაგულისხმევი: 5000) + მიუთითეთ შეერთების ტაიმაუტი მილიწამებში (ნაგულისხმევი: 5000) - - Unable to sign checkpoint, wrong checkpointkey? - - - - - 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 როცა ჩართულია მიყურადება) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - + გამოიყენეთ UPnP მისაყურადებელი პორტის გადასამისამართებლად (ნაგულისხმევი: 1 როცა ჩართულია მიყურადება) - Username for JSON-RPC connections - მომხმარებლის სახელი JSON-RPC-შეერთებისათვის - - - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - + მომხმარებლის სახელი JSON-RPC-შეერთებისათვის - Warning: This version is obsolete, upgrade required! - ყურადღება: ვერსია მოძველებულია, საჭიროა განახლება! + ყურადღება: ვერსია მოძველებულია, საჭიროა განახლება! - wallet.dat corrupt, salvage failed - wallet.dat დაზიანებულია, აღდგენა ვერ მოხერხდა + wallet.dat დაზიანებულია, აღდგენა ვერ მოხერხდა - Password for JSON-RPC connections - პაროლი JSON-RPC-შეერთებისათვის - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + პაროლი JSON-RPC-შეერთებისათვის - Allow JSON-RPC connections from specified IP address - JSON-RPC-შეერთების ნებართვა მითითებული IP მისამართიდან + JSON-RPC-შეერთების ნებართვა მითითებული IP მისამართიდან - 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) - კომანდის შესრულება უკეთესი ბლოკის გამოჩენისას (%s კომანდაში ჩანაცვლდება ბლოკის ჰეშით) + კომანდის შესრულება უკეთესი ბლოკის გამოჩენისას (%s კომანდაში ჩანაცვლდება ბლოკის ჰეშით) - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - კომანდის შესრულება საფულის ტრანსაქციის ცვლილებისას (%s კომანდაში ჩანაცვლდება TxID-ით) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + კომანდის შესრულება საფულის ტრანსაქციის ცვლილებისას (%s კომანდაში ჩანაცვლდება TxID-ით) - Upgrade wallet to latest format - საფულის ფორმატის განახლება + საფულის ფორმატის განახლება - Set key pool size to <n> (default: 100) - გასაღების პულის ზომა იქნება <n> (ნაგულისხმევი: 100) + გასაღების პულის ზომა იქნება <n> (ნაგულისხმევი: 100) - Rescan the block chain for missing wallet transactions - ბლოკების ჯაჭვის გადამოწმება საფულეში გამორჩენილ ტრანსაქციებზე - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - + ბლოკების ჯაჭვის გადამოწმება საფულეში გამორჩენილ ტრანსაქციებზე - Use OpenSSL (https) for JSON-RPC connections - OpenSSL-ის (https) გამოყენება JSON-RPC-შეერთებებისათვის + OpenSSL-ის (https) გამოყენება JSON-RPC-შეერთებებისათვის - Server certificate file (default: server.cert) - სერვერის სერტიფიკატის ფაილი (ნაგულისხმევი: server.cert) + სერვერის სერტიფიკატის ფაილი (ნაგულისხმევი: server.cert) - Server private key (default: server.pem) - სერვერის პირადი გასაღები (ნაგულისხმევი: server.pem) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - + სერვერის პირადი გასაღები (ნაგულისხმევი: server.pem) - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - This help message - ეს ტექსტი - - - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - + ეს ტექსტი - Unable to bind to %s on this computer (bind returned error %d, %s) - ვერ ხერხდება მიბმა %s-თან ამ კომპიუტერზე (მიღებულია შეცდომა %d, %s) - - - - Connect through socks proxy - + ვერ ხერხდება მიბმა %s-თან ამ კომპიუტერზე (მიღებულია შეცდომა %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect - DNS-ძებნის დაშვება -addnode, -seednode და -connect-სათვის + DNS-ძებნის დაშვება -addnode, -seednode და -connect-სათვის - Loading addresses... - მისამართების ჩატვირთვა... - - - - Error loading blkindex.dat - + მისამართების ჩატვირთვა... - Error loading wallet.dat: Wallet corrupted - არ იტვირთება wallet.dat: საფულე დაზიანებულია - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + არ იტვირთება wallet.dat: საფულე დაზიანებულია - 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' + ვერ ხერხდება -bind მისამართის გარკვევა: '%s' - Cannot resolve -externalip address: '%s' - ვერ ხერხდება -externalip მისამართის გარკვევა: '%s' + ვერ ხერხდება -externalip მისამართის გარკვევა: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - დაუშვებელი მნიშვნელობა -paytxfee=<amount>: '%s' - - - - Error: could not start node - - - - - Sending... - + დაუშვებელი მნიშვნელობა -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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + მისაერთებელი კვანძის დამატება და მიერთების შეძლებისდაგვარად შენარჩუნება - Loading wallet... - საფულის ჩატვირთვა... + საფულის ჩატვირთვა... - Cannot downgrade wallet - საფულის ძველ ვერსიაზე გადაყვანა შეუძლებელია - - - - Cannot initialize keypool - + საფულის ძველ ვერსიაზე გადაყვანა შეუძლებელია - Cannot write default address - ვერ ხერხდება ნაგულისხმევი მისამართის ჩაწერა + ვერ ხერხდება ნაგულისხმევი მისამართის ჩაწერა - Rescanning... - სკანირება... + სკანირება... - Done loading - ჩატვირთვა დასრულებულია + ჩატვირთვა დასრულებულია - To use the %s option - %s ოპციის გამოსაყენებლად + %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=<password> საკონფიგურაციო ფაილში: + უნდა დააყენოთ rpcpassword=<password> საკონფიგურაციო ფაილში: %s თუ ეს ფაილი არ არსებობს, შექმენით იგი უფლებებით owner-readable-only. - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_kk_KZ.qm b/src/qt/locale/bitbean_kk_KZ.qm similarity index 65% rename from src/qt/locale/bitcoin_kk_KZ.qm rename to src/qt/locale/bitbean_kk_KZ.qm index 45cdd9d..08857ad 100644 Binary files a/src/qt/locale/bitcoin_kk_KZ.qm and b/src/qt/locale/bitbean_kk_KZ.qm differ diff --git a/src/qt/locale/bitcoin_kk_KZ.ts b/src/qt/locale/bitbean_kk_KZ.ts similarity index 61% rename from src/qt/locale/bitcoin_kk_KZ.ts rename to src/qt/locale/bitbean_kk_KZ.ts index 00720c7..7aec8a4 100644 --- a/src/qt/locale/bitcoin_kk_KZ.ts +++ b/src/qt/locale/bitbean_kk_KZ.ts @@ -1,120 +1,123 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + Double-click to edit address or label Адресті немесе белгіні өзгерту үшін екі рет шертіңіз - + Create a new address Жаңа адрес енгізу - + Copy the currently selected address to the system clipboard Таңдаған адресті тізімнен жою - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete Жою Copy &Label - + &Edit - + Export Address Book Data - + @@ -124,12 +127,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -153,34 +156,34 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog - + - + Enter passphrase Құпия сөзді енгізу - + New passphrase Жаңа құпия сөзі - + Repeat new passphrase Жаңа құпия сөзді қайта енгізу - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -220,1231 +223,1336 @@ This product includes software developed by the OpenSSL Project for use in the O 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 COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + Wallet encrypted - - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins 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. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - + + Bean Control + - - &Overview - + + Quantity: + - - Show general overview of wallet - + + Bytes: + - - &Transactions - + + Amount: + - - Browse transaction history - + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - + + Tree mode + - - Quit application - + + List mode + - - Show information about BitBean - + + Amount + - - About &Qt - + + Label + таңба - - Show information about Qt - + + Address + Адрес - - &Options... - + + Date + - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - + Confirmed + - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - + + DUST + - - &Settings - + + yes + - - &Help - + + no + - - Tabs toolbar - + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (таңбасыз) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + - - - %n second(s) ago - + + + Show general overview of wallet + - - &Unlock Wallet... - + + &Send Beans + - - - %n minute(s) ago - - - - - %n hour(s) ago - - - - - %n day(s) ago - + + + Send Beans to a BitBean address + - - Up to date - + + &Receive Beans + - - Catching up... - + + Show the list of addresses for receiving payments + - - Last received block was generated %1. - + + &Transactions + - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + + Browse transaction history + - Confirm transaction fee - + &Address Book + - - Sent transaction - + + Edit the list of stored addresses and labels + - - Incoming transaction - + + E&xit + - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - + Quit application + - - - URI handling - + + &About BitBean + - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + + Show information about BitBean + - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + + About &Qt + - - Wallet is <b>encrypted</b> and currently <b>locked</b> - + + Show information about Qt + - - Backup Wallet - + + &Options... + - - Wallet Data (*.dat) - + + Modify configuration options for BitBean + - - Backup Failed - + + &Show / Hide + - - There was an error trying to save the wallet data to the new location. - - - - - %n second(s) - - - - - %n minute(s) - + + &Encrypt Wallet... + - - - %n hour(s) - + + + Encrypt or decrypt wallet + - - - %n day(s) - + + + &Backup Wallet... + - - Not staking - + + Backup wallet to another location + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + &Change Passphrase... + - - - ClientModel - - Network Alert - + + Change the passphrase used for wallet encryption + - - - CoinControlDialog - - Coin Control - + + &Unlock Wallet... + - - Quantity: - + + Unlock wallet + Әмиянізді қоршаудан шығару - - Bytes: - + + &Lock Wallet + - - Amount: - + + Lock wallet + - - Priority: - + + Sign &message... + - - Fee: - + + &Verify message... + - - Low Output: - + + &Export... + - - no - + + Export the data in the current tab to a file + - - After Fee: - + + &Debug window + - - Change: - + + Open debugging and diagnostic console + - - (un)select all - + + &File + - - Tree mode - + + &Settings + - - List mode - + + &Help + - - Amount - + + Tabs toolbar + - - Label - + + Actions toolbar + - - Address - Адрес + + + [testnet] + - - Date - + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + - - Confirmations - + + Synchronizing with network... + + + + + ~%n block(s) remaining + + + + - - Confirmed - + + Downloaded %1 of %2 blocks of transaction history (%3% done). + - - Priority - + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + %n minute(s) ago + + + + + + + + %n hour(s) ago + + + + + + + + %n day(s) ago + + + + - - Copy address - + + Up to date + - - Copy label - + + Catching up... + - - - Copy amount - + + Last received block was generated %1. + - - Copy transaction ID - + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + - - Copy quantity - + + Confirm transaction fee + - - Copy fee - + + Sent transaction + - Copy after fee - + Incoming transaction + - Copy bytes - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + - - Copy priority - + + + URI handling + - - Copy low output - + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + - - Copy change - + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + - - highest - + + Wallet is <b>encrypted</b> and currently <b>locked</b> + - - high - + + Backup Wallet + - - medium-high - + + Wallet Data (*.dat) + - - medium - + + Backup Failed + + + There was an error trying to save the wallet data to the new location. + + + + + %n second(s) + + + + + + - low-medium - + %n minute(s) + + + + - - - low - + + + %n hour(s) + + + + - - - lowest - + + + %n day(s) + + + + - - DUST - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - yes - + + Not staking because wallet is locked + - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + + Not staking because wallet is offline + - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + + Not staking because wallet is syncing + - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + + Not staking because you don't have mature beans + - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + + Not staking + + + + ClientModel - - - (no label) - (таңбасыз) + + Network Alert + + + + CoinControlDialog - - change from %1 (%2) - + Address + Адрес - - (change) - + (no label) + (таңбасыз) EditAddressDialog - + Edit Address - + &Label - + The label associated with this address book entry - + &Address - + The address associated with this address book entry. This can only be modified for sending addresses. - + New receiving address - + New sending address - + Edit receiving address - + Edit sending address - + The entered address "%1" is already in the address book. - + The entered address "%1" is not a valid BitBean address. - + Could not unlock wallet. - + New key generation failed. - + GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options - + - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - + &Cancel - + &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + + + + + Unconfirmed: + + + + + Spendable: + + + + + Your current spendable balance + + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - The supplied proxy address is invalid. - + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - - OverviewPage - - Form - + + BitBean Network + - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Stalk Height: + - - Stake: - + + Sprouting Difficulty: + - - Unconfirmed: - + + Bean Weight: + - - Wallet - + + Connections: + - - Spendable: - + + Total Beans: + - - Your current spendable balance - + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + - - Immature: - + + + + + + 0 + - - Mined balance that has not yet matured - + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + - - Total: - + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + - - Your current total balance - + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + - - <b>Recent transactions</b> - + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + Total: + - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1458,188 +1566,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - + @@ -1647,386 +1755,393 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - + Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - + 123.456 BC - + Confirm the send action - + S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - + Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (таңбасыз) + (таңбасыз) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + - + A&mount: - + Pay &To: - + - + Enter a label for this address to add it to your address book - + &Label: - + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + (no label) + (таңбасыз) 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2034,59 +2149,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2094,81 +2209,87 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - + Open for %n block(s) - + + + + conflicted - + %1/offline - + %1/unconfirmed - + %1 confirmations - + Status - + , broadcast through %n node(s) - + + + + Date - + Source - + Generated - + From - + To - + own address - + label - + @@ -2177,17 +2298,20 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + + not accepted - + @@ -2195,90 +2319,90 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + unknown - + TransactionDescDialog - + Transaction details - + This pane shows a detailed description of the transaction - + @@ -2286,12 +2410,12 @@ This label turns red, if the priority is smaller than "medium". Date - + Type - + @@ -2301,112 +2425,115 @@ This label turns red, if the priority is smaller than "medium". Amount - + Open until %1 - + Confirmed (%1 confirmations) - + Open for %n more block(s) - + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + This block was not received by any other nodes and will probably not be accepted! - + Generated but not accepted - + Received with - + Received from - + Sent to - + Payment to yourself - + - Mined - + SPROUT + (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. - + @@ -2415,107 +2542,107 @@ This label turns red, if the priority is smaller than "medium". 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 Data - + @@ -2525,17 +2652,17 @@ This label turns red, if the priority is smaller than "medium". Confirmed - + Date - + Type - + @@ -2550,32 +2677,32 @@ This label turns red, if the priority is smaller than "medium". Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to - + @@ -2583,693 +2710,693 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core - - BitBean version - + + To use the %s option + - Usage: - + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - + + Error + - List commands - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - + + BitBean version + - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - + Usage: + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send command to -server or BitBeand + - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - + List commands + - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - - - - - Threshold for disconnecting misbehaving peers (default: 100) - + Get help for a command + - 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 - - - - - Detach block and address databases. Increases shutdown time (default: 0) - - - - - 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 - - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - - - - - Accept command line and JSON-RPC commands - + BitBean + - - Error: Transaction creation failed - + + Options: + - - Error: Wallet locked, unable to create transaction - + + This help message + - - Importing blockchain data file. - + + Specify configuration file (default: BitBean.conf) + - Importing bootstrap blockchain data file. - + Specify pid file (default: BitBeand.pid) + - - Run in the background as a daemon and accept commands - + + Specify data directory + - Use the test network - + Specify wallet file (within data directory) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Set database cache size in megabytes (default: 25) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Set database disk log size in megabytes (default: 100) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Specify connection timeout in milliseconds (default: 5000) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Connect through socks proxy + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Select the version of socks proxy to use (4-5, default: 5) + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Use proxy to reach tor hidden services (default: same as -proxy) + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Allow DNS lookups for -addnode, -seednode and -connect + - - 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. - + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Maintain at most <n> connections to peers (default: 125) + - - Block creation options: - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node(s) - - - - - Discover own IP address (default: 1 when listening and no -externalip) - - - - - Failed to listen on any port. Use -listen=0 if you want this. - - - - - Find peers using DNS lookup (default: 1) - + - - Sync checkpoints policy (default: strict) - + + Connect to a node to retrieve peer addresses, and disconnect + - - Invalid -tor address: '%s' - + + Specify your own public address + - - Invalid amount for -reservebalance=<amount> - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Discover own IP address (default: 1 when listening and no -externalip) + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Find peers using internet relay chat (default: 0) + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Output extra debugging information. Implies all other -debug* options - + + Bind to given address. Use [host]:port notation for IPv6 + - Output extra network debugging information - + Find peers using DNS lookup (default: 1) + - Prepend debug output with timestamp - + Stake your beans to support network and gain reward (default: 1) + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Select the version of socks proxy to use (4-5, default: 5) - + + Sync checkpoints policy (default: strict) + - - Send trace/debug info to console instead of debug.log file - + + Threshold for disconnecting misbehaving peers (default: 100) + - Send trace/debug info to debugger - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Set maximum block size in bytes (default: 250000) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Set minimum block size in bytes (default: 0) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Use UPnP to map the listening port (default: 1 when listening) + - - Specify connection timeout in milliseconds (default: 5000) - + + Use UPnP to map the listening port (default: 0) + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Use UPnP to map the listening port (default: 0) - + + Fee per KB to add to transactions you send + - - Use UPnP to map the listening port (default: 1 when listening) - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Accept command line and JSON-RPC commands + - - Username for JSON-RPC connections - + + Run in the background as a daemon and accept commands + - - Verifying database integrity... - + + Use the test network + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Output extra debugging information. Implies all other -debug* options + - Warning: Disk space is low! - + Output extra network debugging information + - - Warning: This version is obsolete, upgrade required! - + + Prepend debug output with timestamp + - - wallet.dat corrupt, salvage failed - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Password for JSON-RPC connections - + + Send trace/debug info to console instead of debug.log file + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Send trace/debug info to debugger + - - Find peers using internet relay chat (default: 0) - + + Username for JSON-RPC connections + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Password for JSON-RPC connections + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - + 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) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Require a confirmations for change (default: 0) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Upgrade wallet to latest format - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + - + + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) - + How thorough the block verification is (0-6, default: 1) - + Imports blocks from external blk000?.dat file - + - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Invalid amount for -paytxfee=<amount>: '%s' + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - This help message - + + Invalid amount for -mininput=<amount>: '%s' + - + Wallet %s resides outside data directory %s. - + Cannot obtain a lock on data directory %s. BitBean is probably already running. - + - - BitBean - + + Verifying database integrity... + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect through socks proxy - + + 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. + - - Allow DNS lookups for -addnode, -seednode and -connect - + + wallet.dat corrupt, salvage failed + - - Loading addresses... - + + Unknown -socks proxy version requested: %i + - + + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Cannot resolve -externalip address: '%s' + + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - + Wallet needed to be rewritten: restart BitBean to complete - + Error loading wallet.dat - + - - Invalid -proxy address: '%s' - + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - + + Cannot write default address + - - Cannot resolve -bind address: '%s' - + + Rescanning... + - - Cannot resolve -externalip address: '%s' - + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - + + Importing bootstrap blockchain data file. + - - Error: could not start node - + + Loading addresses... + - - Sending... - + + Error: could not start node + - - Invalid amount - + + Done loading + - Insufficient funds - + Unable to bind to %s on this computer. BitBean is probably already running. + - - Loading block index... - + + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Add a node to connect to and attempt to keep the connection open - + + Error: Wallet locked, unable to create transaction + - - Unable to bind to %s on this computer. BitBean is probably already running. - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Fee per KB to add to transactions you send - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: Transaction creation failed + - - Loading wallet... - + + Sending... + - - Cannot downgrade wallet - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Cannot initialize keypool - + + Invalid amount + - Cannot write default address - + Insufficient funds + - Rescanning... - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Done loading - + + Warning: This version is obsolete, upgrade required! + - - To use the %s option - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Error - + + Warning: Disk space is low! + - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_ko_KR.qm b/src/qt/locale/bitbean_ko_KR.qm new file mode 100644 index 0000000..51a870f Binary files /dev/null and b/src/qt/locale/bitbean_ko_KR.qm differ diff --git a/src/qt/locale/bitcoin_ko_KR.ts b/src/qt/locale/bitbean_ko_KR.ts similarity index 56% rename from src/qt/locale/bitcoin_ko_KR.ts rename to src/qt/locale/bitbean_ko_KR.ts index bd956c1..3639e87 100644 --- a/src/qt/locale/bitcoin_ko_KR.ts +++ b/src/qt/locale/bitbean_ko_KR.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + 이 프로그램은 시험용입니다. MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http://www.opensource.org/licenses/mit-license.php를 참조하십시오. @@ -37,72 +49,72 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http AddressBookPage - + Address Book - + - + Double-click to edit address or label 주소 또는 표를 편집하기 위해 더블클릭 하시오 - + Create a new address 새 주소 만들기 - + Copy the currently selected address to the system clipboard 현재 선택한 주소를 시스템 클립보드로 복사하기 - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address 계좌 복사(&C) - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list 현재 목록에 선택한 주소 삭제 - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + 메시지 검증(&V) - + &Delete &삭제 @@ -119,7 +131,7 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http Export Address Book Data - + @@ -129,12 +141,12 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http Error exporting - + Could not write to file %1. - + @@ -158,34 +170,34 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http AskPassphraseDialog - + Passphrase Dialog 암호문 대화상자 - + Enter passphrase 암호 입력하기 - + New passphrase 새로운 암호 - + Repeat new passphrase 새 암호 반복 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -234,18 +246,23 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + 지갑 암호화를 허용하시겠습니까? - Are you sure you wish to encrypt your wallet? - 지갑 암호화를 허용하시겠습니까? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + @@ -260,12 +277,7 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http 지갑 암호화 완료 - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -307,333 +319,579 @@ MIT/X11 프로그램 라이선스에 따라 배포합니다. COPYING 또는 http - BitcoinGUI + BeanControlDialog - - Sign &message... - 메시지 서명&... - - - - Synchronizing with network... - 네트워크와 동기화중... + + Bean Control + - - &Overview - &개요 + + Quantity: + 수량: - - Show general overview of wallet - 지갑의 일반적 개요를 보여 줍니다. + + Bytes: + Bytes: - - &Transactions - &거래 + + Amount: + - - Browse transaction history - 거래내역을 검색합니다. + + Priority: + 우선도: - - &Address Book - + + Fee: + 수수료: - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + 수수료 이후: - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - 나가기(&X) + + Tree mode + 트리 모드 - - Quit application - 적용 중단 + + List mode + 리스트 모드 - - Show information about BitBean - + + Amount + - - About &Qt - Qt 정보(&Q) + + Label + - - Show information about Qt - Qt 정보를 표시합니다 + + Address + 주소 - - &Options... - &옵션 + + Date + 날짜 - - &Encrypt Wallet... - 지갑 암호화&... + + Confirmations + 확인 - &Backup Wallet... - 지갑 백업&... + Confirmed + 확인됨 - - &Change Passphrase... - 암호문 변경&... - - - - ~%n block(s) remaining - + + Priority + 우선도 - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + 주소 복사하기 - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + 거래액 복사 - - Modify configuration options for BitBean - + + Copy transaction ID + 송금 ID 복사 - - Export the data in the current tab to a file - + + Copy quantity + 수량 복사 - - Encrypt or decrypt wallet - + + Copy fee + 수수료 복사 - - Backup wallet to another location - 지갑을 다른장소에 백업 + + Copy after fee + 수수료 이후 복사 - - Change the passphrase used for wallet encryption - 지갑 암호화에 사용되는 암호를 변경합니다 + + Copy bytes + - - &Debug window - 디버그 창& + + Copy priority + 우선도 복사 - Open debugging and diagnostic console - 디버깅 및 진단 콘솔을 엽니다 + Copy low output + - - &Verify message... - 메시지 확인&... + + Copy change + - - BitBean - + + highest + 최상 - - Wallet - 지갑 + + high + - - &About BitBean - + + medium-high + 중상 - - &Show / Hide - 보이기/숨기기(&S) + + medium + - - Unlock wallet - + + low-medium + 중하 - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &파일 + + DUST + - - &Settings - &설정 + + yes + - - &Help - &도움말 + + no + 아니요 - - Tabs toolbar - 툴바 색인표 + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [테스트넷] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + ~로부터 변경 %1 (%2) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + &개요 - - - %n second(s) ago - + + + Show general overview of wallet + 지갑의 일반적 개요를 보여 줍니다. - - &Unlock Wallet... - + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &거래 + + + + Browse transaction history + 거래내역을 검색합니다. + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + 나가기(&X) + + + + Quit application + 적용 중단 + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + Qt 정보(&Q) + + + + Show information about Qt + Qt 정보를 표시합니다 + + + + &Options... + &옵션 + + + + Modify configuration options for BitBean + + + + + &Show / Hide + 보이기/숨기기(&S) + + + + &Encrypt Wallet... + 지갑 암호화&... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + 지갑 백업&... + + + + Backup wallet to another location + 지갑을 다른장소에 백업 + + + + &Change Passphrase... + 암호문 변경&... + + + + Change the passphrase used for wallet encryption + 지갑 암호화에 사용되는 암호를 변경합니다 + + + + &Unlock Wallet... + + + + + Unlock wallet + 지갑 열기 + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + 메시지 서명&... + + + + &Verify message... + 메시지 확인&... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + 디버그 창& + + + + Open debugging and diagnostic console + 디버깅 및 진단 콘솔을 엽니다 + + + + &File + &파일 + + + + &Settings + &설정 + + + + &Help + &도움말 + + + + Tabs toolbar + 툴바 색인표 + + + + Actions toolbar + + + + + + [testnet] + [테스트넷] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + Synchronizing with network... + 네트워크와 동기화중... + + + + ~%n block(s) remaining + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + - + + %n second(s) ago + + + + + + %n minute(s) ago - + + + %n hour(s) ago - + + + %n day(s) ago - + + + Up to date - 현재까지 + 현재까지 Catching up... - 따라잡기... + 따라잡기... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - 거래 보내기 + 거래 보내기 Incoming transaction - 거래 들어오는 중 + 거래 들어오는 중 @@ -642,7 +900,7 @@ Amount: %2 Type: %3 Address: %4 - 날짜: %1 + 날짜: %1 거래액: %2 형식: %3 주소: %4 @@ -652,341 +910,405 @@ Address: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - 지갑이 암호화 되었고 현재 차단해제 되었습니다 + 지갑이 암호화 되었고 현재 차단해제 되었습니다 Wallet is <b>encrypted</b> and currently <b>locked</b> - 지갑이 암호화 되었고 현재 잠겨져 있습니다 + 지갑이 암호화 되었고 현재 잠겨져 있습니다 Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + %n minute(s) - + + + %n hour(s) - 시간 + + 시간 + %n day(s) - + + + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - 네트워크 경고 + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - 수량: + + Not staking because you don't have mature beans + - - Bytes: - Bytes: + + Not staking + + + + BitcoinGUI - - Amount: - 거래량 + Sign &message... + 메시지 서명&... - - Priority: - 우선도: + Synchronizing with network... + 네트워크와 동기화중... - - Fee: - 수수료: + &Overview + &개요 - - Low Output: - + Show general overview of wallet + 지갑의 일반적 개요를 보여 줍니다. - - no - 아니요 + &Transactions + &거래 - - After Fee: - 수수료 이후: + Browse transaction history + 거래내역을 검색합니다. - - Change: - + E&xit + 나가기(&X) - - (un)select all - + Quit application + 적용 중단 - - Tree mode - 트리 모드 + About &Qt + Qt 정보(&Q) - - List mode - 리스트 모드 + Show information about Qt + Qt 정보를 표시합니다 - - Amount - 거래량 + &Options... + &옵션 - - Label - + &Encrypt Wallet... + 지갑 암호화&... - - Address - 주소 + &Backup Wallet... + 지갑 백업&... - - Date - 날짜 + &Change Passphrase... + 암호문 변경&... + + + Backup wallet to another location + 지갑을 다른장소에 백업 + + + Change the passphrase used for wallet encryption + 지갑 암호화에 사용되는 암호를 변경합니다 + + + &Debug window + 디버그 창& + + + Open debugging and diagnostic console + 디버깅 및 진단 콘솔을 엽니다 + + + &Verify message... + 메시지 확인&... + + + Wallet + 지갑 + + + &Show / Hide + 보이기/숨기기(&S) + + + &File + &파일 + + + &Settings + &설정 + + + &Help + &도움말 + + + Tabs toolbar + 툴바 색인표 + + + [testnet] + [테스트넷] + + + Up to date + 현재까지 + + + Catching up... + 따라잡기... + + + Sent transaction + 거래 보내기 + + + Incoming transaction + 거래 들어오는 중 + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + 날짜: %1 +거래액: %2 +형식: %3 +주소: %4 + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + 지갑이 암호화 되었고 현재 차단해제 되었습니다 + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + 지갑이 암호화 되었고 현재 잠겨져 있습니다 + + + %n hour(s) + + 시간 + + + + %n day(s) + + + + + + + ClientModel + + + Network Alert + 네트워크 경고 + + + + CoinControlDialog + + Quantity: + 수량: + + + Bytes: + Bytes: + + + Amount: + 거래량 + + + Priority: + 우선도: + + + Fee: + 수수료: + + + no + 아니요 + + + After Fee: + 수수료 이후: + + + Tree mode + 트리 모드 + + + List mode + 리스트 모드 + + + Amount + 거래량 + + + Address + 주소 + + + Date + 날짜 - Confirmations - 확인 + 확인 - Confirmed - 확인됨 + 확인됨 - Priority - 우선도 + 우선도 - Copy address - 주소 복사하기 + 주소 복사하기 - Copy label - 라벨 복사하기 + 라벨 복사하기 - - Copy amount - 거래액 복사 + 거래액 복사 - Copy transaction ID - 송금 ID 복사 + 송금 ID 복사 - Copy quantity - 수량 복사 + 수량 복사 - Copy fee - 수수료 복사 + 수수료 복사 - Copy after fee - 수수료 이후 복사 + 수수료 이후 복사 - Copy bytes - bytes를 복사 + bytes를 복사 - Copy priority - 우선도 복사 - - - - Copy low output - - - - - Copy change - + 우선도 복사 - highest - 최상 + 최상 - high - + - medium-high - 중상 + 중상 - medium - + - low-medium - 중하 + 중하 - low - - - - - lowest - - - - - DUST - + - yes - - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 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. - - This means a fee of at least %2 is required. - + - - (no label) - (표 없슴) + (표 없슴) - change from %1 (%2) - ~로부터 변경 %1 (%2) - - - - (change) - + ~로부터 변경 %1 (%2) EditAddressDialog - + Edit Address 주소 편집 @@ -998,7 +1320,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1008,7 +1330,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1038,7 +1360,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1054,98 +1376,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + 사용법: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options 선택들 - + &Main 메인(&M) - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee 송금 수수료(&F) - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1155,7 +1477,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1165,12 +1487,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1180,7 +1502,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1240,7 +1562,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1249,31 +1571,35 @@ This label turns red, if the priority is smaller than "medium". - Choose the default subdivision unit to show in the interface and when sending coins. - 인터페이스에 표시하고 코인을 보낼때 사용할 기본 최소화 단위를 선택하십시오. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - 송금 목록에 주소 표시(&D) + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + Choose the default subdivision unit to show in the interface and when sending coins. + 인터페이스에 표시하고 코인을 보낼때 사용할 기본 최소화 단위를 선택하십시오. + + + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + 송금 목록에 주소 표시(&D) - + &OK 확인(&O) @@ -1285,7 +1611,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1296,13 +1622,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1313,145 +1639,225 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form 유형 - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - 지갑 + 지갑 - + Spendable: - + - + Your current spendable balance 당신의 현재 사용 가능한 잔액 - - Immature: - 아직 사용 불가능: + + Sprouting: + - - Mined balance that has not yet matured - 아직 사용 가능하지 않은 채굴된 잔액 + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + - - Total: - 총액: + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + - - Your current total balance - 당신의 현재 총액 + + Immature: + 아직 사용 불가능: - - <b>Recent transactions</b> - <b>최근 거래내역</b> + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + BitBean Network + - - - out of sync - 오래됨 + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + 아직 사용 가능하지 않은 채굴된 잔액 + + + + Total: + 총액: + + + Your current total balance + 당신의 현재 총액 + + + <b>Recent transactions</b> + <b>최근 거래내역</b> + + + + + out of sync + 오래됨 QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name 클라이언트 이름 @@ -1502,7 +1908,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1532,17 +1938,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1557,12 +1963,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1572,7 +1978,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1582,7 +1988,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1596,59 +2002,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - 코인들 보내기 + Send Beans + - Coin Control Features - 코인 컨트롤 기능들 + Bean Control Features + Inputs... - + automatically selected - 자동 선택 + 자동 선택 Insufficient funds! - 자금이 부족합니다! + 자금이 부족합니다! Quantity: - 수량: + 수량: 0 - + Bytes: - Bytes: + Bytes: Amount: - 거래량: + @@ -1656,272 +2062,422 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - 우선도: + 우선도: medium - + Fee: - 수수료: + 수수료: Low Output: - + no - + 아니요 After Fee: - 수수료 이후: + 수수료 이후: Change - + custom change address - + Send to multiple recipients at once - 다수의 수령인들에게 한번에 보내기 + 다수의 수령인들에게 한번에 보내기 Add &Recipient - 수령인 추가하기 + 수령인 추가하기 Remove all transaction fields - + Clear &All - 모두 지우기(&A) + 모두 지우기(&A) Balance: - 잔액: + 잔액: 123.456 BC - + Confirm the send action - 전송 기능 확인 + 전송 기능 확인 S&end - 보내기(&E) + 보내기(&E) - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - 수량 복사 + 수량 복사 Copy amount - 거래액 복사 + 거래액 복사 Copy fee - 수수료 복사 + 수수료 복사 Copy after fee - 수수료 이후 복사 + 수수료 이후 복사 Copy bytes - bytes 복사 + Copy priority - 우선도 복사 + 우선도 복사 Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - 코인 전송을 확인 + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - 두개 이상의 주소입니다. 한번에 하나의 주소에만 작업할 수 있습니다. + 두개 이상의 주소입니다. 한번에 하나의 주소에만 작업할 수 있습니다. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (표 없슴) + WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + 유형 - + A&mount: - 금액: + 금액: Pay &To: - 지급&수신: + 지급&수신: - + Enter a label for this address to add it to your address book - 당신의 주소록에 이 주소를 추가하기 위하여 표를 입역하세요 + 당신의 주소록에 이 주소를 추가하기 위하여 표를 입역하세요 &Label: - 표: + 표: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - 클립보드로 부터 주소를 붙이세요 + 클립보드로 부터 주소를 붙이세요 Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + 코인들 보내기 + + + Coin Control Features + 코인 컨트롤 기능들 + + + automatically selected + 자동 선택 + + + Insufficient funds! + 자금이 부족합니다! + + + Quantity: + 수량: + + + Bytes: + Bytes: + + + Amount: + 거래량: + + + Priority: + 우선도: + + + Fee: + 수수료: + + + After Fee: + 수수료 이후: + + + Send to multiple recipients at once + 다수의 수령인들에게 한번에 보내기 + + + Add &Recipient + 수령인 추가하기 + + + Clear &All + 모두 지우기(&A) + + + Balance: + 잔액: + + + Confirm the send action + 전송 기능 확인 + + + S&end + 보내기(&E) + + + Copy quantity + 수량 복사 + + + Copy amount + 거래액 복사 + + + Copy fee + 수수료 복사 + + + Copy after fee + 수수료 이후 복사 + + + Copy bytes + bytes 복사 + + + Copy priority + 우선도 복사 + + + Confirm send coins + 코인 전송을 확인 + + + 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. + 두개 이상의 주소입니다. 한번에 하나의 주소에만 작업할 수 있습니다. + + + (no label) + (표 없슴) + + + + SendCoinsEntry + + A&mount: + 금액: + + + Pay &To: + 지급&수신: + + + Enter a label for this address to add it to your address book + 당신의 주소록에 이 주소를 추가하기 위하여 표를 입역하세요 + + + &Label: + 표: + + + Alt+A + Alt+A + + + Paste address from clipboard + 클립보드로 부터 주소를 붙이세요 + + + Alt+P + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message 서명 - 싸인 / 메시지 확인 @@ -1939,13 +2495,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1976,7 +2532,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -1998,17 +2554,17 @@ This label turns red, if the priority is smaller than "medium". 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2019,7 +2575,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2029,7 +2585,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2108,7 +2664,9 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + @@ -2138,7 +2696,9 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - + + + @@ -2191,7 +2751,9 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - + + + @@ -2233,8 +2795,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2280,7 +2842,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details 거래 세부 내역 @@ -2325,7 +2887,9 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + @@ -2340,7 +2904,7 @@ This label turns red, if the priority is smaller than "medium". Confirming (%1 of %2 recommended confirmations) - + @@ -2350,7 +2914,7 @@ This label turns red, if the priority is smaller than "medium". Immature (%1 confirmations, will be available after %2) - + @@ -2384,8 +2948,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - 채굴됨 + 채굴됨 @@ -2427,860 +2995,1115 @@ This label turns red, if the priority is smaller than "medium". 전체 - - Today - 오늘 + + 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 Data + + + + + Comma separated file (*.csv) + 각각의 파일에 쉼표하기(*.csv) + + + + Confirmed + 확인됨 + + + + Date + 날짜 + + + + Type + 종류 + + + + Label + + + + + Address + 주소 + + + + Amount + 거래량 + + + + ID + 아이디 + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + 범위: + + + + to + 상대방 + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + %s 옵션을 사용하려면 + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + 오류 + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + IPv4 감청을 위한 RPC 포트 %u번을 설정중 오류가 발생했습니다: %s + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + 설정 파일에 rpcpassword=<암호>를 설정해야 합니다: +%s +파일이 없으면 소유자 읽기 전용 파일 권한으로 만들어야 합니다. + + + + BitBean version + + + + + Usage: + 사용법: + + + + Send command to -server or BitBeand + + + + + List commands + 커맨드 목록 + + + + Get help for a command + 커맨드 도움말 + + + + BitBean + + + + + Options: + 옵션: + + + + This help message + 도움말 메시지입니다 + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + 데이터 폴더 지정 + + + + Specify wallet file (within data directory) + 데이터 폴더 안에 지갑 파일을 선택하세요. + + + + Set database cache size in megabytes (default: 25) + 데이터베이스 캐시 크기를 메가바이트로 지정(기본값:25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + 밀리초 단위로 연결 제한시간을 설정하십시오(기본값: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + -addnode, -seednode, -connect 옵션에 대해 DNS 탐색 허용 + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + 가장 잘 연결되는 사용자를 유지합니다(기본값: 125) + + + + Add a node to connect to and attempt to keep the connection open + + + + + Connect only to the specified node(s) + 지정된 노드에만 연결하기 + + + + Connect to a node to retrieve peer addresses, and disconnect + 피어 주소를 받기 위해 노드에 연결하고, 받은 후에 연결을 끊습니다 + + + + Specify your own public address + 공인 주소를 지정하십시오 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + + Discover own IP address (default: 1 when listening and no -externalip) + + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + 외부 접속을 승인합니다 + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + - This week - 이번주 + Stake your beans to support network and gain reward (default: 1) + - This month - 이번 달 + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Last month - 지난 달 + + Sync checkpoints policy (default: strict) + - This year - 올 해 + Threshold for disconnecting misbehaving peers (default: 100) + 이상행동 네트워크 참여자의 연결을 차단시키기 위한 한계치 (기본값: 100) - Range... - 범위... + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + 이상행동을 하는 네트워크 참여자들을 다시 연결시키는데 걸리는 시간 (기본값: 86400초) - - Received with - 보낸 주소 + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Sent to - 받는 주소 + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - To yourself - 자기거래 + + Use UPnP to map the listening port (default: 1 when listening) + - Mined - 채굴 + Use UPnP to map the listening port (default: 0) + - Other - 기타 + Detach block and address databases. Increases shutdown time (default: 0) + - - Enter address or label to search - 검색하기 위한 주소 또는 표 입력 + + Fee per KB to add to transactions you send + - - Min amount - 최소 거래량 + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Copy address - 주소 복사하기 + + Accept command line and JSON-RPC commands + 명령줄과 JSON-RPC 명령 수락 - Copy label - 표 복사하기 + Run in the background as a daemon and accept commands + 데몬으로 백그라운드에서 실행하고 명령을 허용 - Copy amount - 거래액 복사 + Use the test network + 테스트 네트워크 사용 - Copy transaction ID - 송금 ID 복사 + Output extra debugging information. Implies all other -debug* options + - Edit label - 표 수정하기 + Output extra network debugging information + - Show transaction details - 거래 내역 확인 + Prepend debug output with timestamp + - - Export Transaction Data - + + Shrink debug.log file on client startup (default: 1 when no -debug) + 클라이언트 시작시 debug.log 파일 비우기(기본값: 디버그 안할때 1) - Comma separated file (*.csv) - 각각의 파일에 쉼표하기(*.csv) + Send trace/debug info to console instead of debug.log file + 추적오류 정보를 degug.log 자료로 보내는 대신 콘솔로 보내기 - - Confirmed - 확인됨 + + Send trace/debug info to debugger + - Date - 날짜 + Username for JSON-RPC connections + JSON-RPC 연결에 사용할 사용자 이름 - Type - 종류 + Password for JSON-RPC connections + JSON-RPC 연결에 사용할 암호 - Label - + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - - Address - 주소 + + Allow JSON-RPC connections from specified IP address + 지정한 IP 주소의 JSON-RPC 연결 허용 - Amount - 거래량 + Send commands to node running on <ip> (default: 127.0.0.1) + 실행 중인 노드로 명령 전송 <ip> (기본값: 127.0.0.1) - ID - 아이디 + Execute command when the best block changes (%s in cmd is replaced by block hash) + 최고의 블럭이 변하면 명령을 실행(cmd 에 있는 %s 는 블럭 해시에 의해 대체되어 짐) - - Error exporting - + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + - - Could not write to file %1. - + + Require a confirmations for change (default: 0) + - - Range: - 범위: + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - - to - 상대방 + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - - - WalletModel - - Sending... - + + Upgrade wallet to latest format + 지갑을 최근 형식으로 개선하시오 - - - bitcoin-core - - BitBean version - + + Set key pool size to <n> (default: 100) + 키 풀 크기 설정 <n>(기본값: 100) - Usage: - 사용법: + Rescan the block chain for missing wallet transactions + 누락된 지갑 송금에 대한 블록 체인 다시 검색 - Send command to -server or BitBeand - + Attempt to recover private keys from a corrupt wallet.dat + 손상된 wallet.dat에서 개인키 복원을 시도합니다 - List commands - 커맨드 목록 + How many blocks to check at startup (default: 2500, 0 = all) + - Get help for a command - 커맨드 도움말 + How thorough the block verification is (0-6, default: 1) + - - Options: - 옵션: + + Imports blocks from external blk000?.dat file + - - Specify configuration file (default: BitBean.conf) - + + Block creation options: + 블록 생성 옵션: - Specify pid file (default: BitBeand.pid) - + Set minimum block size in bytes (default: 0) + 바이트 단위의 최소 블록 크기 설정(기본값: 0) - - Specify wallet file (within data directory) - 데이터 폴더 안에 지갑 파일을 선택하세요. + + Set maximum block size in bytes (default: 250000) + - - Specify data directory - 데이터 폴더 지정 + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Set database cache size in megabytes (default: 25) - 데이터베이스 캐시 크기를 메가바이트로 지정(기본값:25) + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - Set database disk log size in megabytes (default: 100) - + Use OpenSSL (https) for JSON-RPC connections + JSON-RPC 연결에 OpenSSL(https) 사용 - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Server certificate file (default: server.cert) + 서버 인증 파일 (기본값: server.cert) - Maintain at most <n> connections to peers (default: 125) - 가장 잘 연결되는 사용자를 유지합니다(기본값: 125) + Server private key (default: server.pem) + 서버 개인 키(기본값: server.pem) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - Connect to a node to retrieve peer addresses, and disconnect - 피어 주소를 받기 위해 노드에 연결하고, 받은 후에 연결을 끊습니다 + Invalid amount for -paytxfee=<amount>: '%s' + -paytxfee=<amount>에 대한 양이 잘못되었습니다: '%s' - Specify your own public address - 공인 주소를 지정하십시오 + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + 경고: -paytxfee값이 너무 큽니다! 이 값은 송금할때 지불할 송금 수수료입니다. - - Bind to given address. Use [host]:port notation for IPv6 - + + Invalid amount for -mininput=<amount>: '%s' + - - Stake your coins to support network and gain reward (default: 1) - + + Wallet %s resides outside data directory %s. + - - Threshold for disconnecting misbehaving peers (default: 100) - 이상행동 네트워크 참여자의 연결을 차단시키기 위한 한계치 (기본값: 100) + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + + + + + Verifying database integrity... + - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - 이상행동을 하는 네트워크 참여자들을 다시 연결시키는데 걸리는 시간 (기본값: 86400초) + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - IPv4 감청을 위한 RPC 포트 %u번을 설정중 오류가 발생했습니다: %s + + 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. + - - Detach block and address databases. Increases shutdown time (default: 0) - + + wallet.dat corrupt, salvage failed + wallet.dat 파일이 손상되었고 복구가 실패하였습니다. - - 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. - + + Unknown -socks proxy version requested: %i + 요청한 -socks 프록히 버전을 알 수 없습니다: %i - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Unknown network specified in -onlynet: '%s' + -onlynet에 지정한 네트워크를 알 수 없습니다: '%s' - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Invalid -proxy address: '%s' + 잘못된 -proxy 주소입니다: '%s' - - Accept command line and JSON-RPC commands - 명령줄과 JSON-RPC 명령 수락 + + Invalid -tor address: '%s' + - - Error: Transaction creation failed - + + Cannot resolve -bind address: '%s' + -bind 주소를 확인할 수 없습니다: '%s' - - Error: Wallet locked, unable to create transaction - + + Failed to listen on any port. Use -listen=0 if you want this. + - - Importing blockchain data file. - + + Cannot resolve -externalip address: '%s' + -externalip 주소를 확인할 수 없습니다: '%s' - Importing bootstrap blockchain data file. - + Invalid amount for -reservebalance=<amount> + - - Run in the background as a daemon and accept commands - 데몬으로 백그라운드에서 실행하고 명령을 허용 + + Unable to sign checkpoint, wrong checkpointkey? + + - Use the test network - 테스트 네트워크 사용 + Loading block index... + 블럭 인덱스를 불러오는 중... - - Accept connections from outside (default: 1 if no -proxy or -connect) - 외부 접속을 승인합니다 + + Error loading blkindex.dat + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Loading wallet... + 지갑을 불러오는 중... - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Error loading wallet.dat: Wallet corrupted + wallet.dat 불러오기 에러: 지갑 오류 - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - 경고: -paytxfee값이 너무 큽니다! 이 값은 송금할때 지불할 송금 수수료입니다. + + Error loading wallet.dat: Wallet requires newer version of BitBean + + + + + Wallet needed to be rewritten: restart BitBean to complete + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Error loading wallet.dat + wallet.dat 불러오기 에러 - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Cannot downgrade wallet + 지갑을 다운그레이드 할 수 없습니다 - - 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. - + + Cannot initialize keypool + - - Attempt to recover private keys from a corrupt wallet.dat - 손상된 wallet.dat에서 개인키 복원을 시도합니다 + + Cannot write default address + 기본 계좌에 기록할 수 없습니다 - - Block creation options: - 블록 생성 옵션: + + Rescanning... + 재검색 중... - - Connect only to the specified node(s) - 지정된 노드에만 연결하기 + + Importing blockchain data file. + - - Discover own IP address (default: 1 when listening and no -externalip) - + + Importing bootstrap blockchain data file. + - - Failed to listen on any port. Use -listen=0 if you want this. - + + Loading addresses... + 주소를 불러오는 중... - - Find peers using DNS lookup (default: 1) - + + Error: could not start node + - - Sync checkpoints policy (default: strict) - + + Done loading + 로딩 완료 - - Invalid -tor address: '%s' - + + Unable to bind to %s on this computer. BitBean is probably already running. + - - Invalid amount for -reservebalance=<amount> - + + Unable to bind to %s on this computer (bind returned error %d, %s) + 이 컴퓨터의 %s에 바인딩할 수 없습니다 (바인딩 과정에 %d 오류 발생, %s) - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Error: Wallet locked, unable to create transaction + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Error: Wallet unlocked for staking only, unable to create transaction. + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Output extra debugging information. Implies all other -debug* options - + + Error: Transaction creation failed + - Output extra network debugging information - + Sending... + - Prepend debug output with timestamp - + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL 옵션: (SSL 설정 절차를 보혀면 비트코인 위키를 참조하십시오) + + Invalid amount + 효력없는 금액 - - Select the version of socks proxy to use (4-5, default: 5) - + + Insufficient funds + 자금 부족 - - Send trace/debug info to console instead of debug.log file - 추적오류 정보를 degug.log 자료로 보내는 대신 콘솔로 보내기 + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Send trace/debug info to debugger - + + Warning: This version is obsolete, upgrade required! + 경고: 이 버전이 오래되어 업그레이드가 필요합니다! - - Set maximum block size in bytes (default: 250000) - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Set minimum block size in bytes (default: 0) - 바이트 단위의 최소 블록 크기 설정(기본값: 0) + + Warning: Disk space is low! + - - Shrink debug.log file on client startup (default: 1 when no -debug) - 클라이언트 시작시 debug.log 파일 비우기(기본값: 디버그 안할때 1) + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Specify connection timeout in milliseconds (default: 5000) - 밀리초 단위로 연결 제한시간을 설정하십시오(기본값: 5000) + Usage: + 사용법: - - Unable to sign checkpoint, wrong checkpointkey? - - + List commands + 커맨드 목록 - - Use UPnP to map the listening port (default: 0) - + Get help for a command + 커맨드 도움말 - - Use UPnP to map the listening port (default: 1 when listening) - + Options: + 옵션: - - Use proxy to reach tor hidden services (default: same as -proxy) - + Specify wallet file (within data directory) + 데이터 폴더 안에 지갑 파일을 선택하세요. - - Username for JSON-RPC connections - JSON-RPC 연결에 사용할 사용자 이름 + Specify data directory + 데이터 폴더 지정 - - Verifying database integrity... - + Set database cache size in megabytes (default: 25) + 데이터베이스 캐시 크기를 메가바이트로 지정(기본값:25) - - WARNING: syncronized checkpoint violation detected, but skipped! - + Maintain at most <n> connections to peers (default: 125) + 가장 잘 연결되는 사용자를 유지합니다(기본값: 125) - - Warning: Disk space is low! - + Connect to a node to retrieve peer addresses, and disconnect + 피어 주소를 받기 위해 노드에 연결하고, 받은 후에 연결을 끊습니다 - - Warning: This version is obsolete, upgrade required! - 경고: 이 버전이 오래되어 업그레이드가 필요합니다! + Specify your own public address + 공인 주소를 지정하십시오 - - wallet.dat corrupt, salvage failed - wallet.dat 파일이 손상되었고 복구가 실패하였습니다. + Threshold for disconnecting misbehaving peers (default: 100) + 이상행동 네트워크 참여자의 연결을 차단시키기 위한 한계치 (기본값: 100) - - Password for JSON-RPC connections - JSON-RPC 연결에 사용할 암호 + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + 이상행동을 하는 네트워크 참여자들을 다시 연결시키는데 걸리는 시간 (기본값: 86400초) - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + An error occurred while setting up the RPC port %u for listening on IPv4: %s + IPv4 감청을 위한 RPC 포트 %u번을 설정중 오류가 발생했습니다: %s - - Find peers using internet relay chat (default: 0) - + Accept command line and JSON-RPC commands + 명령줄과 JSON-RPC 명령 수락 - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + Run in the background as a daemon and accept commands + 데몬으로 백그라운드에서 실행하고 명령을 허용 - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + Use the test network + 테스트 네트워크 사용 - - Allow JSON-RPC connections from specified IP address - 지정한 IP 주소의 JSON-RPC 연결 허용 + Accept connections from outside (default: 1 if no -proxy or -connect) + 외부 접속을 승인합니다 - - Send commands to node running on <ip> (default: 127.0.0.1) - 실행 중인 노드로 명령 전송 <ip> (기본값: 127.0.0.1) + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + 경고: -paytxfee값이 너무 큽니다! 이 값은 송금할때 지불할 송금 수수료입니다. - - Execute command when the best block changes (%s in cmd is replaced by block hash) - 최고의 블럭이 변하면 명령을 실행(cmd 에 있는 %s 는 블럭 해시에 의해 대체되어 짐) + Attempt to recover private keys from a corrupt wallet.dat + 손상된 wallet.dat에서 개인키 복원을 시도합니다 - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Block creation options: + 블록 생성 옵션: - - Require a confirmations for change (default: 0) - + Connect only to the specified node(s) + 지정된 노드에만 연결하기 - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL 옵션: (SSL 설정 절차를 보혀면 비트코인 위키를 참조하십시오) - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Send trace/debug info to console instead of debug.log file + 추적오류 정보를 degug.log 자료로 보내는 대신 콘솔로 보내기 - - Upgrade wallet to latest format - 지갑을 최근 형식으로 개선하시오 + Set minimum block size in bytes (default: 0) + 바이트 단위의 최소 블록 크기 설정(기본값: 0) - - Set key pool size to <n> (default: 100) - 키 풀 크기 설정 <n>(기본값: 100) + Shrink debug.log file on client startup (default: 1 when no -debug) + 클라이언트 시작시 debug.log 파일 비우기(기본값: 디버그 안할때 1) - - Rescan the block chain for missing wallet transactions - 누락된 지갑 송금에 대한 블록 체인 다시 검색 + Specify connection timeout in milliseconds (default: 5000) + 밀리초 단위로 연결 제한시간을 설정하십시오(기본값: 5000) - - How many blocks to check at startup (default: 2500, 0 = all) - + Username for JSON-RPC connections + JSON-RPC 연결에 사용할 사용자 이름 - - How thorough the block verification is (0-6, default: 1) - + Warning: This version is obsolete, upgrade required! + 경고: 이 버전이 오래되어 업그레이드가 필요합니다! - - Imports blocks from external blk000?.dat file - + wallet.dat corrupt, salvage failed + wallet.dat 파일이 손상되었고 복구가 실패하였습니다. - - Use OpenSSL (https) for JSON-RPC connections - JSON-RPC 연결에 OpenSSL(https) 사용 + Password for JSON-RPC connections + JSON-RPC 연결에 사용할 암호 - - Server certificate file (default: server.cert) - 서버 인증 파일 (기본값: server.cert) + Allow JSON-RPC connections from specified IP address + 지정한 IP 주소의 JSON-RPC 연결 허용 - - Server private key (default: server.pem) - 서버 개인 키(기본값: server.pem) + Send commands to node running on <ip> (default: 127.0.0.1) + 실행 중인 노드로 명령 전송 <ip> (기본값: 127.0.0.1) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + Execute command when the best block changes (%s in cmd is replaced by block hash) + 최고의 블럭이 변하면 명령을 실행(cmd 에 있는 %s 는 블럭 해시에 의해 대체되어 짐) - - Error: Wallet unlocked for staking only, unable to create transaction. - + Upgrade wallet to latest format + 지갑을 최근 형식으로 개선하시오 - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + Set key pool size to <n> (default: 100) + 키 풀 크기 설정 <n>(기본값: 100) - - This help message - 도움말 메시지입니다 + Rescan the block chain for missing wallet transactions + 누락된 지갑 송금에 대한 블록 체인 다시 검색 - - Wallet %s resides outside data directory %s. - + Use OpenSSL (https) for JSON-RPC connections + JSON-RPC 연결에 OpenSSL(https) 사용 - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + Server certificate file (default: server.cert) + 서버 인증 파일 (기본값: server.cert) - - BitBean - + Server private key (default: server.pem) + 서버 개인 키(기본값: server.pem) - - Unable to bind to %s on this computer (bind returned error %d, %s) - 이 컴퓨터의 %s에 바인딩할 수 없습니다 (바인딩 과정에 %d 오류 발생, %s) + This help message + 도움말 메시지입니다 - - Connect through socks proxy - + 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 탐색 허용 + -addnode, -seednode, -connect 옵션에 대해 DNS 탐색 허용 - Loading addresses... - 주소를 불러오는 중... - - - - Error loading blkindex.dat - + 주소를 불러오는 중... - Error loading wallet.dat: Wallet corrupted - wallet.dat 불러오기 에러: 지갑 오류 - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - + wallet.dat 불러오기 에러: 지갑 오류 - - Wallet needed to be rewritten: restart BitBean to complete - - - - 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' + -bind 주소를 확인할 수 없습니다: '%s' - Cannot resolve -externalip address: '%s' - -externalip 주소를 확인할 수 없습니다: '%s' + -externalip 주소를 확인할 수 없습니다: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - -paytxfee=<amount>에 대한 양이 잘못되었습니다: '%s' - - - - Error: could not start node - - - - - Sending... - + -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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + 블럭 인덱스를 불러오는 중... - Loading wallet... - 지갑을 불러오는 중... + 지갑을 불러오는 중... - Cannot downgrade wallet - 지갑을 다운그레이드 할 수 없습니다 - - - - Cannot initialize keypool - + 지갑을 다운그레이드 할 수 없습니다 - Cannot write default address - 기본 계좌에 기록할 수 없습니다 + 기본 계좌에 기록할 수 없습니다 - Rescanning... - 재검색 중... + 재검색 중... - Done loading - 로딩 완료 + 로딩 완료 - To use the %s option - %s 옵션을 사용하려면 + %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=<암호>를 설정해야 합니다: + 설정 파일에 rpcpassword=<암호>를 설정해야 합니다: %s 파일이 없으면 소유자 읽기 전용 파일 권한으로 만들어야 합니다. - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_ky.qm b/src/qt/locale/bitbean_ky.qm new file mode 100644 index 0000000..8ca77b3 Binary files /dev/null and b/src/qt/locale/bitbean_ky.qm differ diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitbean_ky.ts similarity index 62% rename from src/qt/locale/bitcoin_en.ts rename to src/qt/locale/bitbean_ky.ts index a5bbccd..5ae2e99 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitbean_ky.ts @@ -1,142 +1,138 @@ - + +UTF-8 AboutDialog - + About BitBean - About BitBean + - + <b>BitBean</b> version - <b>BitBean</b> version + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> - - -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. - -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. + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - Address Book + - + Double-click to edit address or label - Double-click to edit address or label + - + Create a new address - Create a new address + Жаң даректи жасоо - + Copy the currently selected address to the system clipboard - Copy the currently selected address to the system clipboard + - + &New Address - &New Address + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + - + &Copy Address - &Copy Address + - + Show &QR Code - Show &QR Code + - + Sign a message to prove you own a BitBean address - Sign a message to prove you own a BitBean address + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - Verify a message to ensure it was signed with a specified BitBean address + &Verify Message - &Verify Message + - + &Delete - &Delete + Ө&чүрүү Copy &Label - Copy &Label + &Edit - &Edit + Export Address Book Data - Export Address Book Data + Comma separated file (*.csv) - Comma separated file (*.csv) + Error exporting - Error exporting + Could not write to file %1. - Could not write to file %1. + @@ -144,43 +140,43 @@ This product includes software developed by the OpenSSL Project for use in the O Label - Label + Address - Address + Дарек (no label) - (no label) + (аты жок) AskPassphraseDialog - + Passphrase Dialog - Passphrase Dialog + - + Enter passphrase - Enter passphrase + - + New passphrase - New passphrase + - + Repeat new passphrase - Repeat new passphrase + - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. @@ -192,895 +188,933 @@ This product includes software developed by the OpenSSL Project for use in the 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>. - 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 - Encrypt wallet + This operation needs your wallet passphrase to unlock the wallet. - This operation needs your wallet passphrase to unlock the wallet. + Unlock wallet - Unlock wallet + This operation needs your wallet passphrase to decrypt the wallet. - This operation needs your wallet passphrase to decrypt the wallet. + Decrypt wallet - Decrypt wallet + Change passphrase - Change passphrase + Enter the old and new passphrase to the wallet. - Enter the old and new passphrase to the wallet. + Confirm wallet encryption - Confirm wallet encryption + - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - Are you sure you wish to encrypt your wallet? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - Warning: The Caps Lock key is on! + Wallet encrypted - Wallet encrypted - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + - + Wallet encryption failed - Wallet encryption failed + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Wallet encryption failed due to an internal error. Your wallet was not encrypted. + The supplied passphrases do not match. - The supplied passphrases do not match. + Wallet unlock failed - Wallet unlock failed + The passphrase entered for the wallet decryption was incorrect. - The passphrase entered for the wallet decryption was incorrect. + Wallet decryption failed - Wallet decryption failed + Wallet passphrase was successfully changed. - Wallet passphrase was successfully changed. + - BitcoinGUI - - - Sign &message... - Sign &message... - - - - Synchronizing with network... - Synchronizing with network... - - - - &Overview - &Overview - + BeanControlDialog - - Show general overview of wallet - Show general overview of wallet + + Bean Control + - - &Transactions - &Transactions + + Quantity: + - - Browse transaction history - Browse transaction history + + Bytes: + - - &Address Book - &Address Book + + Amount: + - - Edit the list of stored addresses and labels - Edit the list of stored addresses and labels + + Priority: + - - &Receive coins - &Receive coins + + Fee: + - - Show the list of addresses for receiving payments - Show the list of addresses for receiving payments + + Low Output: + - - &Send coins - &Send coins + + After Fee: + - E&xit - E&xit + Change: + - - Quit application - Quit application + + (un)select all + - - Show information about BitBean - Show information about BitBean + + Tree mode + - - About &Qt - About &Qt + + List mode + - - Show information about Qt - Show information about Qt + + Amount + - - &Options... - &Options... + + Label + - - &Encrypt Wallet... - &Encrypt Wallet... + + Address + Дарек - - &Backup Wallet... - &Backup Wallet... + + Date + Дата - - &Change Passphrase... - &Change Passphrase... - - - - ~%n block(s) remaining - - ~%n block remaining - ~%n blocks remaining - + + Confirmations + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Downloaded %1 of %2 blocks of transaction history (%3% done). + + Confirmed + - - &Export... - &Export... + + Priority + - - Send coins to a BitBean address - Send coins to a BitBean address + + Copy address + - - Modify configuration options for BitBean - Modify configuration options for BitBean + + Copy label + - - Export the data in the current tab to a file - Export the data in the current tab to a file + + + Copy amount + - - Encrypt or decrypt wallet - Encrypt or decrypt wallet + + Copy transaction ID + - - Backup wallet to another location - Backup wallet to another location + + Copy quantity + - Change the passphrase used for wallet encryption - Change the passphrase used for wallet encryption - - - - &Debug window - &Debug window + Copy fee + - Open debugging and diagnostic console - Open debugging and diagnostic console + Copy after fee + - - &Verify message... - &Verify message... + + Copy bytes + - - BitBean - BitBean + + Copy priority + - - Wallet - Wallet + + Copy low output + - - &About BitBean - &About BitBean + + Copy change + - - &Show / Hide - &Show / Hide + + highest + - - Unlock wallet - Unlock wallet + + high + - &Lock Wallet + medium-high - Lock wallet + medium - - &File - &File - - - - &Settings - &Settings + + low-medium + - - &Help - &Help + + low + - - Tabs toolbar - Tabs toolbar + + lowest + - - Actions toolbar - Actions toolbar + + DUST + - - - [testnet] - [testnet] + + yes + - - BitBean client - BitBean client + no + - - - %n active connection(s) to BitBean network - - %n active connection to BitBean network - %n active connections to BitBean network - + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Downloaded %1 blocks of transaction history. - Downloaded %1 blocks of transaction history. + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - Not staking because wallet is locked - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Not staking because wallet is offline - + + + (no label) + (аты жок) - - Not staking because wallet is syncing - + + change from %1 (%2) + - - Not staking because you don't have mature coins - + + (change) + - - - %n second(s) ago - - %n second ago - %n seconds ago - + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - &Unlock Wallet... - + + BitBean + - - - %n minute(s) ago - - %n minute ago - %n minutes ago - + + + Vault + - - - %n hour(s) ago - - %n hour ago - %n hours ago - + + + &Overview + - - - %n day(s) ago - - %n day ago - %n days ago - + + + Show general overview of wallet + - - Up to date - Up to date + + &Send Beans + - - Catching up... - Catching up... + + Send Beans to a BitBean address + - - Last received block was generated %1. - Last received block was generated %1. + + &Receive Beans + - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + + Show the list of addresses for receiving payments + - Confirm transaction fee - Confirm transaction fee + &Transactions + &Транзакциялар - - Sent transaction - Sent transaction + + Browse transaction history + + + + + &Address Book + - Incoming transaction - Incoming transaction + Edit the list of stored addresses and labels + + + + + E&xit + - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - + Quit application + - - - URI handling - URI handling + + &About BitBean + - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + + Show information about BitBean + - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + About &Qt + - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> + + Show information about Qt + - - Backup Wallet - Backup Wallet + + &Options... + - - Wallet Data (*.dat) - Wallet Data (*.dat) + + Modify configuration options for BitBean + - - Backup Failed - Backup Failed + + &Show / Hide + - - There was an error trying to save the wallet data to the new location. - There was an error trying to save the wallet data to the new location. + + &Encrypt Wallet... + - - - %n second(s) - - %n second - %n seconds - + + + Encrypt or decrypt wallet + - - - %n minute(s) - - %n minute - %n minutes - + + + &Backup Wallet... + - - - %n hour(s) - - %n hour - %n hours - + + + Backup wallet to another location + - - - %n day(s) - - %n day - %n days - + + + &Change Passphrase... + - - Not staking + + Change the passphrase used for wallet encryption - - A fatal error occurred. BitBean can no longer continue safely and will quit. - A fatal error occurred. BitBean can no longer continue safely and will quit. + + &Unlock Wallet... + - - - ClientModel - - Network Alert - Network Alert + + Unlock wallet + - - - CoinControlDialog - - Coin Control + + &Lock Wallet - - Quantity: + + Lock wallet - - Bytes: + + Sign &message... - - Amount: - Amount: + + &Verify message... + Билдирүүнү &текшерүү... - - Priority: + + &Export... - - Fee: + + Export the data in the current tab to a file - - Low Output: + + &Debug window - - no + + Open debugging and diagnostic console - - After Fee: + + &File + &Файл + + + + &Settings - - Change: + + &Help + &Жардам + + + + Tabs toolbar - - (un)select all + + Actions toolbar - Tree mode + + [testnet] - - List mode + + + BitBean client + + + %n active connection(s) to BitBean network + + + + + - - Amount - Amount + + Synchronizing with network... + + + + + ~%n block(s) remaining + + + + - - Label - Label + + Downloaded %1 of %2 blocks of transaction history (%3% done). + - - Address - Address + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + %n minute(s) ago + + + + + + + + %n hour(s) ago + + + + + + + + %n day(s) ago + + + + - - Date - Date + + Up to date + Жаңыланган - - Confirmations + + Catching up... - - Confirmed - Confirmed + + Last received block was generated %1. + + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + - Priority + Confirm transaction fee - - Copy address - Copy address + + Sent transaction + - Copy label - Copy label + Incoming transaction + - - Copy amount - Copy amount + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + - - Copy transaction ID - Copy transaction ID + + + URI handling + - - Copy quantity + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - - Copy fee + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - - Copy after fee + + Wallet is <b>encrypted</b> and currently <b>locked</b> - - Copy bytes + + Backup Wallet - - Copy priority + + Wallet Data (*.dat) - - Copy low output + + Backup Failed - - Copy change + + There was an error trying to save the wallet data to the new location. + + + %n second(s) + + + + + + + + %n minute(s) + + + + + + + + %n hour(s) + + + + + + + + %n day(s) + + + + + - - highest - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - high - + + Not staking because wallet is locked + - - medium-high - + + Not staking because wallet is offline + - - medium - + + Not staking because wallet is syncing + - - low-medium - + + Not staking because you don't have mature beans + - - low - + + Not staking + + + + BitcoinGUI - - lowest - + &Transactions + &Транзакциялар - - DUST - + &Verify message... + Билдирүүнү &текшерүү... - - yes - + Wallet + Капчык - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + &File + &Файл - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + &Help + &Жардам - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Up to date + Жаңыланган + + + ClientModel - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. + + Network Alert + + + CoinControlDialog - - - (no label) - (no label) + Address + Дарек - - change from %1 (%2) - + Date + Дата - - (change) - + (no label) + (аты жок) EditAddressDialog - + Edit Address - Edit Address + &Label - &Label + The label associated with this address book entry - The label associated with this address book entry + &Address - &Address + &Дарек The address associated with this address book entry. This can only be modified for sending addresses. - The address associated with this address book entry. This can only be modified for sending addresses. + New receiving address - New receiving address + New sending address - New sending address + Edit receiving address - Edit receiving address + Edit sending address - Edit sending address + The entered address "%1" is already in the address book. - The entered address "%1" is already in the address book. + The entered address "%1" is not a valid BitBean address. - The entered address "%1" is not a valid BitBean address. + Could not unlock wallet. - Could not unlock wallet. + New key generation failed. - New key generation failed. + @@ -1089,403 +1123,471 @@ This label turns red, if the priority is smaller than "medium". BitBean-Qt - BitBean-Qt + version - version + Usage: - Usage: + command-line options - command-line options + UI options - UI options + Set language, for example "de_DE" (default: system locale) - Set language, for example "de_DE" (default: system locale) + Start minimized - Start minimized + Show splash screen on startup (default: 1) - Show splash screen on startup (default: 1) + OptionsDialog - + Options - Options + - + &Main - &Main + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. + + Pay transaction &fee + - - Pay transaction &fee - Pay transaction &fee + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - Automatically start BitBean after logging in to the system. + &Start BitBean on system login - &Start BitBean on system login + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + &Detach databases at shutdown - &Detach databases at shutdown + &Network - &Network + &Тармак Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + Map port using &UPnP - Map port using &UPnP + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + &Connect through SOCKS proxy: - &Connect through SOCKS proxy: + Proxy &IP: - Proxy &IP: + IP address of the proxy (e.g. 127.0.0.1) - IP address of the proxy (e.g. 127.0.0.1) + &Port: - &Port: + &Порт: Port of the proxy (e.g. 9050) - Port of the proxy (e.g. 9050) + SOCKS &Version: - SOCKS &Version: + SOCKS version of the proxy (e.g. 5) - SOCKS version of the proxy (e.g. 5) + &Window - &Window + &Терезе Show only a tray icon after minimizing the window. - Show only a tray icon after minimizing the window. + &Minimize to the tray instead of the taskbar - &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. - 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 - M&inimize on close + &Display - &Display + User Interface &language: - User Interface &language: + The user interface language can be set here. This setting will take effect after restarting BitBean. - The user interface language can be set here. This setting will take effect after restarting BitBean. + &Unit to show amounts in: - &Unit to show amounts in: + - Choose the default subdivision unit to show in the interface and when sending coins. - Choose the default subdivision unit to show in the interface and when sending coins. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - Whether to show BitBean addresses in the transaction list or not. + + Whether to show bean control features or not. + - &Display addresses in transaction list - &Display addresses in transaction list + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - &OK + &Жарайт &Cancel - &Cancel + &Жокко чыгаруу &Apply - &Apply + default - default + жарыяланбаган Warning - Warning + This setting will take effect after restarting BitBean. - This setting will take effect after restarting BitBean. + The supplied proxy address is invalid. - The supplied proxy address is invalid. + OverviewPage - + Form - Form + - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + + Bean Vault + - - Stake: - Stake: + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - Unconfirmed: + - Wallet - Wallet + Капчык - + Spendable: - + Your current spendable balance - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: - Immature: + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + - Mined balance that has not yet matured - Mined balance that has not yet matured + Bean Stalk Height: + - - Total: + + Sprouting Difficulty: - - Your current total balance + + Bean Weight: - - <b>Recent transactions</b> - <b>Recent transactions</b> + + Connections: + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - Total of coins that was staked, and do not yet count toward the current balance + + Total: + - + out of sync - out of sync + синхрондоштурулган эмес QRCodeDialog - + QR Code Dialog - QR Code Dialog + Request Payment - Request Payment + Amount: - Amount: + Label: - Label: + Message: - Message: + &Save As... - &Save As... + Error encoding URI into QR Code. - Error encoding URI into QR Code. + The entered amount is invalid, please check. - The entered amount is invalid, please check. + Resulting URI too long, try to reduce the text for label / message. - Resulting URI too long, try to reduce the text for label / message. + Save QR Code - Save QR Code + PNG Images (*.png) - PNG Images (*.png) + RPCConsole - + Client name - Client name + @@ -1499,151 +1601,151 @@ This label turns red, if the priority is smaller than "medium". N/A - N/A + Client version - Client version + &Information - &Information + Using OpenSSL version - Using OpenSSL version + Startup time - Startup time + Network - Network + Number of connections - Number of connections + On testnet - On testnet + Block chain - Block chain + Current number of blocks - Current number of blocks + Estimated total blocks - Estimated total blocks + Last block time - Last block time + &Open - &Open + &Ачуу Command-line options - Command-line options + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + &Show - &Show + &Console - &Console + &Консоль Build date - Build date + BitBean - Debug window - BitBean - Debug window + BitBean Core - BitBean Core + Debug log file - Debug log file + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + Clear console - Clear console + Консолду тазалоо Welcome to the BitBean RPC console. - Welcome to the BitBean RPC console. + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - 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. - Type <b>help</b> for an overview of available commands. + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Send Coins + Send Beans + - Coin Control Features + Bean Control Features @@ -1680,7 +1782,7 @@ This label turns red, if the priority is smaller than "medium". Amount: - Amount: + @@ -1688,7 +1790,7 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - 123.456 BC {0.00 ?} + @@ -1733,7 +1835,7 @@ This label turns red, if the priority is smaller than "medium". Send to multiple recipients at once - Send to multiple recipients at once + @@ -1743,331 +1845,353 @@ This label turns red, if the priority is smaller than "medium". Remove all transaction fields - Remove all transaction fields + Clear &All - Clear &All + &Бардыгын тазалоо Balance: - Balance: + 123.456 BC - 123.456 BC + Confirm the send action - Confirm the send action + S&end - + &Жөнөтүү - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Copy quantity - + Copy amount - Copy amount + Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - <b>%1</b> to %2 (%3) + - Confirm send coins - Confirm send coins + Confirm send beans + Are you sure you want to send %1? - Are you sure you want to send %1? + and - and + The recipient address is not valid, please recheck. - The recipient address is not valid, please recheck. + The amount to pay must be larger than 0. - The amount to pay must be larger than 0. + The amount exceeds your balance. - The amount exceeds your balance. + The total exceeds your balance when the %1 transaction fee is included. - 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. - Duplicate address found, can only send to each address once per send operation. + Error: Transaction creation failed. - Error: Transaction creation failed. + - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. - Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here. + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (no label) + (аты жок) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - Form + - + A&mount: - A&mount: + Pay &To: - Pay &To: + - + Enter a label for this address to add it to your address book - Enter a label for this address to add it to your address book + &Label: - &Label: + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - Choose address from address book + Alt+A - Alt+A + Paste address from clipboard - Paste address from clipboard + Даректи алмашуу буферинен коюу Alt+P - Alt+P + Remove this recipient - Remove this recipient + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Clear &All + &Бардыгын тазалоо + + + S&end + &Жөнөтүү + + + (no label) + (аты жок) + + + + SendCoinsEntry + + Paste address from clipboard + Даректи алмашуу буферинен коюу SignVerifyMessageDialog - + Signatures - Sign / Verify a Message - Signatures - Sign / Verify a Message + &Sign 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. - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Choose an address from the address book - Choose an address from the address book + Alt+A - Alt+A + Paste address from clipboard - Paste address from clipboard + Даректи алмашуу буферинен коюу Alt+P - Alt+P + Enter the message you want to sign here - Enter the message you want to sign here + Copy the current signature to the system clipboard - Copy the current signature to the system clipboard + Sign the message to prove you own this BitBean address - Sign the message to prove you own this BitBean address + Reset all sign message fields - Reset all sign message fields + Clear &All - Clear &All + &Бардыгын тазалоо &Verify Message - &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. - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Verify the message to ensure it was signed with the specified BitBean address - Verify the message to ensure it was signed with the specified BitBean address + Reset all verify message fields - Reset all verify message fields + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Click "Sign Message" to generate signature - Click "Sign Message" to generate signature + Enter BitBean signature - Enter BitBean signature + The entered address is invalid. - The entered address is invalid. + @@ -2075,59 +2199,59 @@ This label turns red, if the priority is smaller than "medium". Please check the address and try again. - Please check the address and try again. + The entered address does not refer to a key. - The entered address does not refer to a key. + Wallet unlock was cancelled. - Wallet unlock was cancelled. + Private key for the entered address is not available. - Private key for the entered address is not available. + Message signing failed. - Message signing failed. + Message signed. - Message signed. + The signature could not be decoded. - The signature could not be decoded. + Please check the signature and try again. - Please check the signature and try again. + The signature did not match the message digest. - The signature did not match the message digest. + Message verification failed. - Message verification failed. + Message verified. - Message verified. + @@ -2135,87 +2259,87 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - Open until %1 + Open for %n block(s) - - Open for %n block - Open for %n blocks + + + conflicted - + %1/offline - %1/offline + %1/тармакта эмес %1/unconfirmed - %1/unconfirmed + %1 confirmations - %1 confirmations + Status - Status + , broadcast through %n node(s) - - , broadcast through %n node - , broadcast through %n nodes + + + Date - Date + Дата Source - Source + Generated - Generated + From - From + To - To + own address - own address + label - label + @@ -2224,20 +2348,20 @@ This label turns red, if the priority is smaller than "medium". Credit - Credit + matures in %n more block(s) - - matures in %n more block - matures in %n more blocks + + + not accepted - not accepted + @@ -2245,90 +2369,90 @@ This label turns red, if the priority is smaller than "medium". Debit - Debit + Transaction fee - Transaction fee + Net amount - Net amount + Message - Message + Билдирүү Comment - Comment + Transaction ID - Transaction ID + - Generated coins must mature 110 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. - Generated coins must mature 110 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. + Generated beans must mature 110 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 information + Transaction - Transaction + Inputs - Inputs + Amount - Amount + true - true + false - false + , has not been successfully broadcast yet - , has not been successfully broadcast yet + unknown - unknown + TransactionDescDialog - + Transaction details - Transaction details + This pane shows a detailed description of the transaction - This pane shows a detailed description of the transaction + @@ -2336,130 +2460,130 @@ This label turns red, if the priority is smaller than "medium". Date - Date + Дата Type - Type + Address - Address + Дарек Amount - Amount + Open until %1 - Open until %1 + Confirmed (%1 confirmations) - Confirmed (%1 confirmations) + Open for %n more block(s) - - Open for %n more block - Open for %n more blocks + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + This block was not received by any other nodes and will probably not be accepted! - This block was not received by any other nodes and will probably not be accepted! + Generated but not accepted - Generated but not accepted + Received with - Received with + Received from - Received from + Sent to - Sent to + Payment to yourself - Payment to yourself + - Mined - Mined + SPROUT + (n/a) - (n/a) + Transaction status. Hover over this field to show number of confirmations. - Transaction status. Hover over this field to show number of confirmations. + Date and time that the transaction was received. - Date and time that the transaction was received. + Type of transaction. - Type of transaction. + Destination address of transaction. - Destination address of transaction. + Amount removed from or added to balance. - Amount removed from or added to balance. + @@ -2468,167 +2592,167 @@ This label turns red, if the priority is smaller than "medium". All - All + Today - Today + This week - This week + This month - This month + Last month - Last month + This year - This year + Range... - Range... + Received with - Received with + Sent to - Sent to + To yourself - To yourself + Mined - Mined + Other - Other + Enter address or label to search - Enter address or label to search + Min amount - Min amount + Copy address - Copy address + Copy label - Copy label + Copy amount - Copy amount + Copy transaction ID - Copy transaction ID + Edit label - Edit label + Show transaction details - Show transaction details + Export Transaction Data - Export Transaction Data + Comma separated file (*.csv) - Comma separated file (*.csv) + Confirmed - Confirmed + Date - Date + Дата Type - Type + Label - Label + Address - Address + Дарек Amount - Amount + ID - ID + Error exporting - Error exporting + Could not write to file %1. - Could not write to file %1. + Range: - Range: + to - to + @@ -2636,695 +2760,700 @@ This label turns red, if the priority is smaller than "medium". Sending... - Sending... + - bitcoin-core + bitbean-core - - BitBean version - BitBean version + + To use the %s option + - Usage: - Usage: + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - Send command to -server or BitBeand + + Error + Ката - List commands - List commands + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - Get help for a command + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - Options: + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - Specify configuration file (default: BitBean.conf) + + BitBean version + - Specify pid file (default: BitBeand.pid) - Specify pid file (default: BitBeand.pid) + Usage: + - - Specify wallet file (within data directory) - Specify wallet file (within data directory) + + Send command to -server or BitBeand + - - Specify data directory - Specify data directory + + List commands + - - Set database cache size in megabytes (default: 25) - Set database cache size in megabytes (default: 25) + + Get help for a command + - Set database disk log size in megabytes (default: 100) - Set database disk log size in megabytes (default: 100) + BitBean + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - Listen for connections on <port> (default: 15714 or testnet: 25714) + + Options: + + + + + This help message + - 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 configuration file (default: BitBean.conf) + - Specify your own public address - Specify your own public address + Specify pid file (default: BitBeand.pid) + - - Bind to given address. Use [host]:port notation for IPv6 - Bind to given address. Use [host]:port notation for IPv6 + + Specify data directory + - - Stake your coins to support network and gain reward (default: 1) - + + Specify wallet file (within data directory) + - - Threshold for disconnecting misbehaving peers (default: 100) - Threshold for disconnecting misbehaving peers (default: 100) + + Set database cache size in megabytes (default: 25) + - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Set database disk log size in megabytes (default: 100) + - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - + + Specify connection timeout in milliseconds (default: 5000) + - - Detach block and address databases. Increases shutdown time (default: 0) - Detach block and address databases. Increases shutdown time (default: 0) + + Connect through socks proxy + - - 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. - + + Select the version of socks proxy to use (4-5, default: 5) + - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Use proxy to reach tor hidden services (default: same as -proxy) + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Allow DNS lookups for -addnode, -seednode and -connect + - - Accept command line and JSON-RPC commands - Accept command line and JSON-RPC commands + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - Error: Transaction creation failed - + + Maintain at most <n> connections to peers (default: 125) + - - Error: Wallet locked, unable to create transaction - + + Add a node to connect to and attempt to keep the connection open + - - Importing blockchain data file. - + + Connect only to the specified node(s) + - Importing bootstrap blockchain data file. - + Connect to a node to retrieve peer addresses, and disconnect + - - Run in the background as a daemon and accept commands - Run in the background as a daemon and accept commands + + Specify your own public address + - Use the test network - Use the test network + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - Accept connections from outside (default: 1 if no -proxy or -connect) + + Discover own IP address (default: 1 when listening and no -externalip) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Find peers using internet relay chat (default: 0) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + Bind to given address. Use [host]:port notation for IPv6 + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + + Find peers using DNS lookup (default: 1) + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + + Stake your beans to support network and gain reward (default: 1) + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. - Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect you should restore from a backup. + + Sync checkpoints policy (default: strict) + - - Attempt to recover private keys from a corrupt wallet.dat - Attempt to recover private keys from a corrupt wallet.dat + + Threshold for disconnecting misbehaving peers (default: 100) + - - Block creation options: - Block creation options: + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Connect only to the specified node(s) - Connect only to the specified node(s) + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Discover own IP address (default: 1 when listening and no -externalip) - Discover own IP address (default: 1 when listening and no -externalip) + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - Failed to listen on any port. Use -listen=0 if you want this. - Failed to listen on any port. Use -listen=0 if you want this. + + Use UPnP to map the listening port (default: 1 when listening) + - - Find peers using DNS lookup (default: 1) - Find peers using DNS lookup (default: 1) + + Use UPnP to map the listening port (default: 0) + - - Sync checkpoints policy (default: strict) - Sync checkpoints policy (default: strict) + + Detach block and address databases. Increases shutdown time (default: 0) + - - Invalid -tor address: '%s' - Invalid -tor address: '%s' + + Fee per KB to add to transactions you send + - - Invalid amount for -reservebalance=<amount> - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + + Accept command line and JSON-RPC commands + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Run in the background as a daemon and accept commands + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + Use the test network + - + Output extra debugging information. Implies all other -debug* options - Output extra debugging information. Implies all other -debug* options + Output extra network debugging information - Output extra network debugging information + Prepend debug output with timestamp - Prepend debug output with timestamp - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL options: (see the Bitcoin Wiki for SSL setup instructions) + - - Select the version of socks proxy to use (4-5, default: 5) - Select the version of socks proxy to use (4-5, default: 5) + + Shrink debug.log file on client startup (default: 1 when no -debug) + - + Send trace/debug info to console instead of debug.log file - Send trace/debug info to console instead of debug.log file + Send trace/debug info to debugger - Send trace/debug info to debugger + - - Set maximum block size in bytes (default: 250000) - Set maximum block size in bytes (default: 250000) + + Username for JSON-RPC connections + - - Set minimum block size in bytes (default: 0) - Set minimum block size in bytes (default: 0) + + Password for JSON-RPC connections + - - Shrink debug.log file on client startup (default: 1 when no -debug) - Shrink debug.log file on client startup (default: 1 when no -debug) + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - - Specify connection timeout in milliseconds (default: 5000) - Specify connection timeout in milliseconds (default: 5000) + + Allow JSON-RPC connections from specified IP address + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Send commands to node running on <ip> (default: 127.0.0.1) + - - Use UPnP to map the listening port (default: 0) - Use UPnP to map the listening port (default: 0) + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Use UPnP to map the listening port (default: 1 when listening) - Use UPnP to map the listening port (default: 1 when listening) + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + - - Use proxy to reach tor hidden services (default: same as -proxy) - Use proxy to reach tor hidden services (default: same as -proxy) + + Require a confirmations for change (default: 0) + - - Username for JSON-RPC connections - Username for JSON-RPC connections + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - - Verifying database integrity... - + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Upgrade wallet to latest format + - Warning: Disk space is low! - Warning: Disk space is low! - - - - Warning: This version is obsolete, upgrade required! - Warning: This version is obsolete, upgrade required! + Set key pool size to <n> (default: 100) + - - wallet.dat corrupt, salvage failed - + + Rescan the block chain for missing wallet transactions + - - Password for JSON-RPC connections - Password for JSON-RPC connections + + Attempt to recover private keys from a corrupt wallet.dat + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - + + How many blocks to check at startup (default: 2500, 0 = all) - - Find peers using internet relay chat (default: 0) - Find peers using internet relay chat (default: 1) {0)?} + + How thorough the block verification is (0-6, default: 1) + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + Imports blocks from external blk000?.dat file - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Block creation options: + - - Allow JSON-RPC connections from specified IP address - Allow JSON-RPC connections from specified IP address + + Set minimum block size in bytes (default: 0) + - Send commands to node running on <ip> (default: 127.0.0.1) - Send commands to node running on <ip> (default: 127.0.0.1) + Set maximum block size in bytes (default: 250000) + - 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) + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - - Require a confirmations for change (default: 0) - + + Use OpenSSL (https) for JSON-RPC connections + - Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Server certificate file (default: server.cert) + - - Execute command when a relevant alert is received (%s in cmd is replaced by message) + + Server private key (default: server.pem) - - Upgrade wallet to latest format - Upgrade wallet to latest format + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Set key pool size to <n> (default: 100) - Set key pool size to <n> (default: 100) + + Invalid amount for -paytxfee=<amount>: '%s' + - Rescan the block chain for missing wallet transactions - Rescan the block chain for missing wallet transactions + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - How many blocks to check at startup (default: 2500, 0 = all) - How many blocks to check at startup (default: 2500, 0 = all) + + Invalid amount for -mininput=<amount>: '%s' + - How thorough the block verification is (0-6, default: 1) - How thorough the block verification is (0-6, default: 1) + Wallet %s resides outside data directory %s. + - Imports blocks from external blk000?.dat file - Imports blocks from external blk000?.dat file + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Use OpenSSL (https) for JSON-RPC connections - Use OpenSSL (https) for JSON-RPC connections + + Verifying database integrity... + - Server certificate file (default: server.cert) - Server certificate file (default: server.cert) + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Server private key (default: server.pem) - Server private key (default: server.pem) + + 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. + - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + wallet.dat corrupt, salvage failed + - - Error: Wallet unlocked for staking only, unable to create transaction. + + Unknown -socks proxy version requested: %i - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Unknown network specified in -onlynet: '%s' + - - This help message - This help message + + Invalid -proxy address: '%s' + - - Wallet %s resides outside data directory %s. - Wallet %s resides outside data directory %s. + + Invalid -tor address: '%s' + - Cannot obtain a lock on data directory %s. BitBean is probably already running. - Cannot obtain a lock on data directory %s. BitBean is probably already running. + Cannot resolve -bind address: '%s' + - - BitBean - BitBean + + Failed to listen on any port. Use -listen=0 if you want this. + - - Unable to bind to %s on this computer (bind returned error %d, %s) - Unable to bind to %s on this computer (bind returned error %d, %s) + + Cannot resolve -externalip address: '%s' + - - Connect through socks proxy - Connect through socks proxy + + Invalid amount for -reservebalance=<amount> + - - Allow DNS lookups for -addnode, -seednode and -connect - Allow DNS lookups for -addnode, -seednode and -connect + + Unable to sign checkpoint, wrong checkpointkey? + + - - Loading addresses... - Loading addresses... + + Loading block index... + - + Error loading blkindex.dat - Error loading blkindex.dat + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - Error loading wallet.dat: Wallet corrupted + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - Error loading wallet.dat: Wallet requires newer version of BitBean + Wallet needed to be rewritten: restart BitBean to complete - Wallet needed to be rewritten: restart BitBean to complete + Error loading wallet.dat - Error loading wallet.dat + - - Invalid -proxy address: '%s' - Invalid -proxy address: '%s' + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - Unknown network specified in -onlynet: '%s' + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - Unknown -socks proxy version requested: %i + + Cannot write default address + - - Cannot resolve -bind address: '%s' - Cannot resolve -bind address: '%s' + + Rescanning... + - - Cannot resolve -externalip address: '%s' - Cannot resolve -externalip address: '%s' + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - Invalid amount for -paytxfee=<amount>: '%s' + + Importing bootstrap blockchain data file. + - - Error: could not start node - Error: could not start node + + Loading addresses... + - - Sending... - Sending... + + Error: could not start node + - - Invalid amount - Invalid amount + + Done loading + - Insufficient funds - Insufficient funds + Unable to bind to %s on this computer. BitBean is probably already running. + - - Loading block index... - Loading block index... + + Unable to bind to %s on this computer (bind returned error %d, %s) + - - 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 + + Error: Wallet locked, unable to create transaction + - - Unable to bind to %s on this computer. BitBean is probably already running. - Unable to bind to %s on this computer. BitBean is probably already running. + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Fee per KB to add to transactions you send - Fee per KB to add to transactions you send + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: Transaction creation failed + - - Loading wallet... - Loading wallet... + + Sending... + - - Cannot downgrade wallet - Cannot downgrade wallet + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Cannot initialize keypool - Cannot initialize keypool + + Invalid amount + - Cannot write default address - Cannot write default address + Insufficient funds + - Rescanning... - Rescanning... + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Done loading - Done loading + + Warning: This version is obsolete, upgrade required! + - - To use the %s option - To use the %s option + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Error - Error + + Warning: Disk space is low! + - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + + bitcoin-core + + Error + Ката diff --git a/src/qt/locale/bitcoin_la.qm b/src/qt/locale/bitbean_la.qm similarity index 51% rename from src/qt/locale/bitcoin_la.qm rename to src/qt/locale/bitbean_la.qm index 265e355..886159c 100644 Binary files a/src/qt/locale/bitcoin_la.qm and b/src/qt/locale/bitbean_la.qm differ diff --git a/src/qt/locale/bitcoin_la.ts b/src/qt/locale/bitbean_la.ts similarity index 56% rename from src/qt/locale/bitcoin_la.ts rename to src/qt/locale/bitbean_la.ts index ed8959d..864bb3d 100644 --- a/src/qt/locale/bitcoin_la.ts +++ b/src/qt/locale/bitbean_la.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - 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. - Hoc est experimentale programma. + Hoc est experimentale programma. Distributum sub MIT/X11 licentia programmatum, vide comitantem plicam COPYING vel http://www.opensource.org/licenses/mit-license.php. @@ -36,72 +48,72 @@ Hoc productum continet programmata composita ab OpenSSL Project pro utendo in Op AddressBookPage - + Address Book - + - + Double-click to edit address or label Dupliciter-clicca ut inscriptionem vel titulum mutes - + Create a new address Crea novam inscriptionem - + Copy the currently selected address to the system clipboard Copia inscriptionem iam selectam in latibulum systematis - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &Copia Inscriptionem - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list Dele active selectam inscriptionem ex enumeratione - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + &Verifica Nuntium - + &Delete &Dele @@ -118,7 +130,7 @@ Hoc productum continet programmata composita ab OpenSSL Project pro utendo in Op Export Address Book Data - + @@ -128,12 +140,12 @@ Hoc productum continet programmata composita ab OpenSSL Project pro utendo in Op Error exporting - + Could not write to file %1. - + @@ -157,34 +169,34 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -233,16 +245,21 @@ Hoc productum continet programmata composita ab OpenSSL Project pro utendo in Op - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + Certusne es te velle tuum cassidile cifrare? - Are you sure you wish to encrypt your wallet? - Certusne es te velle tuum cassidile cifrare? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 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. @@ -259,12 +276,7 @@ Hoc productum continet programmata composita ab OpenSSL Project pro utendo in Op Cassidile cifratum - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -306,333 +318,579 @@ Hoc productum continet programmata composita ab OpenSSL Project pro utendo in Op - BitcoinGUI + BeanControlDialog - - Sign &message... - Signa &nuntium... - - - - Synchronizing with network... - Synchronizans cum rete... + + Bean Control + - - &Overview - &Summarium + + Quantity: + - - Show general overview of wallet - Monstra generale summarium cassidilis + + Bytes: + - - &Transactions - &Transactiones + + Amount: + Quantitas: - - Browse transaction history - Inspicio historiam transactionum + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - E&xi + + Tree mode + - - Quit application - Exi applicatione + + List mode + - - Show information about BitBean - + + Amount + Quantitas - - About &Qt - Informatio de &Qt + + Label + Titulus - - Show information about Qt - Monstra informationem de Qt + + Address + Inscriptio - - &Options... - &Optiones + + Date + Dies - - &Encrypt Wallet... - &Cifra Cassidile... + + Confirmations + - &Backup Wallet... - &Conserva Cassidile... + Confirmed + Confirmatum - - &Change Passphrase... - &Muta tesseram... - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Copia inscriptionem - - &Export... - + + Copy label + Copia titulum - - Send coins to a BitBean address - + + + Copy amount + Copia quantitatem - - Modify configuration options for BitBean - + + Copy transaction ID + Copia transactionis ID - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - Conserva cassidile in locum alium + + Copy after fee + - - Change the passphrase used for wallet encryption - Muta tesseram utam pro cassidilis cifrando + + Copy bytes + - - &Debug window - Fenestra &Debug + + Copy priority + - Open debugging and diagnostic console - Aperi terminalem debug et diagnosticalem + Copy low output + - - &Verify message... - &Verifica nuntium... + + Copy change + - - BitBean - + + highest + - - Wallet - Cassidile + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - &Monstra/Occulta + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Plica + + DUST + - - &Settings - &Configuratio + + yes + - - &Help - &Auxilium + + no + - - Tabs toolbar - Tabella instrumentorum "Tabs" + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (nullus titulus) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + &Summarium - - - %n second(s) ago - + + + Show general overview of wallet + Monstra generale summarium cassidilis - - &Unlock Wallet... - + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transactiones + + + + Browse transaction history + Inspicio historiam transactionum + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + E&xi + + + + Quit application + Exi applicatione + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + Informatio de &Qt + + + + Show information about Qt + Monstra informationem de Qt + + + + &Options... + &Optiones + + + + Modify configuration options for BitBean + + + + + &Show / Hide + &Monstra/Occulta + + + + &Encrypt Wallet... + &Cifra Cassidile... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &Conserva Cassidile... + + + + Backup wallet to another location + Conserva cassidile in locum alium + + + + &Change Passphrase... + &Muta tesseram... + + + + Change the passphrase used for wallet encryption + Muta tesseram utam pro cassidilis cifrando + + + + &Unlock Wallet... + + + + + Unlock wallet + Resera cassidile + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Signa &nuntium... + + + + &Verify message... + &Verifica nuntium... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + Fenestra &Debug + + + + Open debugging and diagnostic console + Aperi terminalem debug et diagnosticalem + + + + &File + &Plica + + + + &Settings + &Configuratio + + + + &Help + &Auxilium + + + + Tabs toolbar + Tabella instrumentorum "Tabs" + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + Synchronizing with network... + Synchronizans cum rete... + + + + ~%n block(s) remaining + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + - + + %n second(s) ago + + + + + + %n minute(s) ago - + + + %n hour(s) ago - + + + %n day(s) ago - + + + Up to date - Recentissimo + Recentissimo Catching up... - Persequens... + Persequens... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Transactio missa + Transactio missa Incoming transaction - Transactio incipiens + Transactio incipiens @@ -641,7 +899,7 @@ Amount: %2 Type: %3 Address: %4 - Dies: %1 + Dies: %1 Quantitas: %2 Typus: %3 Inscriptio: %4 @@ -651,341 +909,313 @@ Inscriptio: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Cassidile <b>cifratum</b> est et iam nunc <b>reseratum</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> + Cassidile <b>cifratum</b> est et iam nunc <b>seratum</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + %n minute(s) - + + + %n hour(s) - %n hora%n horae + + %n hora + %n day(s) - %n dies%n dies + + %n dies + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Monitio Retis + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - + + Not staking because you don't have mature beans + - - Bytes: - + + Not staking + + + + BitcoinGUI - - Amount: - Quantitas: + Sign &message... + Signa &nuntium... - - Priority: - + Synchronizing with network... + Synchronizans cum rete... - - Fee: - + &Overview + &Summarium - - Low Output: - + Show general overview of wallet + Monstra generale summarium cassidilis - - no - + &Transactions + &Transactiones - - After Fee: - + Browse transaction history + Inspicio historiam transactionum - - Change: - + E&xit + E&xi - - (un)select all - + Quit application + Exi applicatione - - Tree mode - + About &Qt + Informatio de &Qt - - List mode - + Show information about Qt + Monstra informationem de Qt - - Amount - Quantitas + &Options... + &Optiones - - Label - + &Encrypt Wallet... + &Cifra Cassidile... - - Address - Inscriptio + &Backup Wallet... + &Conserva Cassidile... - - Date - Dies + &Change Passphrase... + &Muta tesseram... - - Confirmations - + Backup wallet to another location + Conserva cassidile in locum alium - - Confirmed - Confirmatum + Change the passphrase used for wallet encryption + Muta tesseram utam pro cassidilis cifrando - - Priority - + &Debug window + Fenestra &Debug - - Copy address - Copia inscriptionem + Open debugging and diagnostic console + Aperi terminalem debug et diagnosticalem - - Copy label - Copia titulum + &Verify message... + &Verifica nuntium... - - - Copy amount - Copia quantitatem + Wallet + Cassidile - - Copy transaction ID - Copia transactionis ID + &Show / Hide + &Monstra/Occulta - - Copy quantity - + &File + &Plica - - Copy fee - + &Settings + &Configuratio - - Copy after fee - + &Help + &Auxilium - - Copy bytes - + Tabs toolbar + Tabella instrumentorum "Tabs" - - Copy priority - + [testnet] + [testnet] - - Copy low output - + Up to date + Recentissimo - - Copy change - + Catching up... + Persequens... - - highest - + Sent transaction + Transactio missa - - high - + Incoming transaction + Transactio incipiens - - medium-high - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Dies: %1 +Quantitas: %2 +Typus: %3 +Inscriptio: %4 + - - medium - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Cassidile <b>cifratum</b> est et iam nunc <b>reseratum</b> - - low-medium - + Wallet is <b>encrypted</b> and currently <b>locked</b> + Cassidile <b>cifratum</b> est et iam nunc <b>seratum</b> + + + %n hour(s) + + %n hora + + + + %n day(s) + + %n dies + + + + ClientModel - - low - + + Network Alert + Monitio Retis + + + CoinControlDialog - - lowest - + Amount: + Quantitas: - - DUST - + Amount + Quantitas - - yes - + Address + Inscriptio - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Date + Dies - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Confirmed + Confirmatum - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Copy address + Copia inscriptionem - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy label + Copia titulum - - - (no label) - (nullus titulus) + Copy amount + Copia quantitatem - - change from %1 (%2) - + Copy transaction ID + Copia transactionis ID - - (change) - + (no label) + (nullus titulus) EditAddressDialog - + Edit Address Muta Inscriptionem @@ -997,7 +1227,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1007,7 +1237,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1037,7 +1267,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1053,98 +1283,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Usus: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Optiones - + &Main &Princeps - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee Solve &mercedem transactionis - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1154,7 +1384,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1164,12 +1394,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1179,7 +1409,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1239,7 +1469,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1248,31 +1478,35 @@ This label turns red, if the priority is smaller than "medium". - 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 + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - &Monstra inscriptiones in enumeratione transactionum + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + 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 BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + &Monstra inscriptiones in enumeratione transactionum - + &OK &OK @@ -1284,7 +1518,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1295,13 +1529,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1312,78 +1546,154 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Schema - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - Cassidile + Cassidile - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: Immatura: + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + - Mined balance that has not yet matured - Fossum pendendum quod nondum maturum est + Bean Stalk Height: + - - Total: - + + Sprouting Difficulty: + - - Your current total balance - + + Bean Weight: + - - <b>Recent transactions</b> - <b>Recentes transactiones</b> + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + Mined balance that has not yet matured + Fossum pendendum quod nondum maturum est + + + + Total: + - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Recent transactions</b> + <b>Recentes transactiones</b> - + out of sync non synchronizato @@ -1392,65 +1702,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Quantitas: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Nomen clientis @@ -1501,7 +1811,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1531,17 +1841,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1556,12 +1866,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1571,7 +1881,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1581,7 +1891,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1595,59 +1905,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Mitte Nummos + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - Quantitas: + Quantitas: @@ -1655,296 +1965,394 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Mitte pluribus accipientibus simul + Mitte pluribus accipientibus simul Add &Recipient - Adde &Accipientem + Adde &Accipientem Remove all transaction fields - + Clear &All - Vacuefac &Omnia + Vacuefac &Omnia Balance: - Pendendum: + Pendendum: 123.456 BC - + Confirm the send action - Confirma actionem mittendi + Confirma actionem mittendi S&end - &Mitte + &Mitte - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - Copia quantitatem + Copia quantitatem Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - Confirma mittendum nummorum + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - Inscriptio accipientis non est valida, sodes reproba. + Inscriptio accipientis non est valida, sodes reproba. The amount to pay must be larger than 0. - Oportet quantitatem ad pensandum maiorem quam 0 esse. + Oportet quantitatem ad pensandum maiorem quam 0 esse. The amount exceeds your balance. - Quantitas est ultra quod habes. + 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. + 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. + Geminata inscriptio inventa, tantum posse mittere ad quamque inscriptionem semel singulare operatione. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (nullus titulus) + (nullus titulus) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Schema - + A&mount: - &Quantitas: + &Quantitas: Pay &To: - Pensa &Ad: + Pensa &Ad: - + Enter a label for this address to add it to your address book - Insero titulum huic inscriptioni ut eam in tuum librum inscriptionum addas. + Insero titulum huic inscriptioni ut eam in tuum librum inscriptionum addas. &Label: - &Titulus: + &Titulus: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Conglutina inscriptionem ex latibulo + Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + - SignVerifyMessageDialog + SendCoinsDialog - - Signatures - Sign / Verify a Message - Signationes - Signa / Verifica nuntium + Send Coins + Mitte Nummos - - - &Sign Message - &Signa Nuntium + Amount: + Quantitas: - - 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. + Send to multiple recipients at once + Mitte pluribus accipientibus simul + + + Add &Recipient + Adde &Accipientem + + + Clear &All + Vacuefac &Omnia + + + Balance: + Pendendum: + + + Confirm the send action + Confirma actionem mittendi + + + S&end + &Mitte + + + Copy amount + Copia quantitatem + + + Confirm send coins + Confirma mittendum nummorum + + + 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. + + + (no label) + (nullus titulus) + + + + SendCoinsEntry + + A&mount: + &Quantitas: + + + Pay &To: + Pensa &Ad: + + + 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: + + + Alt+A + Alt+A + + + Paste address from clipboard + Conglutina inscriptionem ex latibulo + + + Alt+P + Alt+P + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1975,7 +2383,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -2002,12 +2410,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2018,7 +2426,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2028,7 +2436,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2107,12 +2515,14 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + conflicted - + @@ -2137,7 +2547,9 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - , disseminatum per %n nodo, disseminata per %n nodis + + , disseminatum per %n nodo + @@ -2190,7 +2602,9 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - maturum erit in %n plure frustomaturum erit in %n pluribus frustis + + maturum erit in %n plure frusto + @@ -2232,8 +2646,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2279,7 +2693,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Particularia transactionis @@ -2324,962 +2738,1267 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - Aperi pro %n plure frustoAperi pro %n pluribus frustis + + Aperi pro %n plure frusto + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + + + + + 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 + + + + Received with + Acceptum cum + + + + Received from + Acceptum ab + + + + Sent to + Missum ad + + + + Payment to yourself + Pensitatio ad te ipsum + + + + SPROUT + + + + 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. + + + + 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 Data + + + + + Comma separated file (*.csv) + Comma Separata Plica (*.csv) + + + + Confirmed + Confirmatum + + + + Date + Dies + + + + Type + Typus + + + + Label + Titulus + + + + Address + Inscriptio + + + + Amount + Quantitas + + + + ID + ID + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + Intervallum: + + + + to + ad + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + Ut utaris optione %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Error + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Necesse est te rpcpassword=<tesseram> constituere in plica configurationum: +%s +Si plica non existat, crea eam cum permissionibus ut solus eius dominus eam legere sinatur. + + + + BitBean version + + + + + Usage: + Usus: + + + + Send command to -server or BitBeand + + + + + List commands + Enumera mandata + + + + Get help for a command + Accipe auxilium pro mandato + + + + BitBean + + + + + Options: + Optiones: + + + + This help message + Hic nuntius auxilii + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Specifica indicem datorum + + + + Specify wallet file (within data directory) + + + + + Set database cache size in megabytes (default: 25) + Constitue magnitudinem databasis cache in megabytes (praedefinitum: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Specifica tempumfati conexionis in millisecundis (praedefinitum: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Permitte quaerenda DNS pro -addnode, -seednode, et -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Manutene non plures quam <n> conexiones ad paria (praedefinitum: 125) + + + + Add a node to connect to and attempt to keep the connection open + Adice nodum cui conectere et conare sustinere conexionem apertam + + + + Connect only to the specified node(s) + Conecte sole ad nodos specificatos (vel nodum specificatum) + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Tantum conecte ad nodos in rete <net> (IPv4, IPv6 aut Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Discooperi propriam inscriptionem IP (praedefinitum: 1 quando auscultans et nullum -externalip) + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Accipe conexiones externas (praedefinitum: 1 nisi -proxy neque -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Utere UPnP designare portam auscultandi (praedefinitum: 1 quando auscultans) + + + + Use UPnP to map the listening port (default: 0) + Utere UPnP designare portam auscultandi (praedefinitum: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + Accipe terminalis et JSON-RPC mandata. + + + + Run in the background as a daemon and accept commands + Operare infere sicut daemon et mandata accipe + + + + Use the test network + Utere rete experimentale + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Diminue plicam debug.log ad initium clientis (praedefinitum: 1 nisi -debug) + + + + Send trace/debug info to console instead of debug.log file + Mitte informationem vestigii/debug ad terminale potius quam plicam debug.log + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + Nomen utentis pro conexionibus JSON-RPC + + + + Password for JSON-RPC connections + Tessera pro conexionibus JSON-RPC + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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) - 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! + 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) - Generated but not accepted - Generatum sed non acceptum + Require a confirmations for change (default: 0) + - - Received with - Acceptum cum + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - Received from - Acceptum ab + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - Sent to - Missum ad + Upgrade wallet to latest format + Progredere cassidile ad formam recentissimam - - Payment to yourself - Pensitatio ad te ipsum + + Set key pool size to <n> (default: 100) + Constitue magnitudinem stagni clavium ad <n> (praedefinitum: 100) - - Mined - Fossa + + Rescan the block chain for missing wallet transactions + Iterum perlege catenam frustorum propter absentes cassidilis transactiones - - (n/a) - (n/a) + + Attempt to recover private keys from a corrupt wallet.dat + Conare recipere claves privatas de corrupto wallet.dat - - Transaction status. Hover over this field to show number of confirmations. - Status transactionis. Supervola cum mure ut monstretur numerus confirmationum. + + How many blocks to check at startup (default: 2500, 0 = all) + - - Date and time that the transaction was received. - Dies et tempus quando transactio accepta est. + + How thorough the block verification is (0-6, default: 1) + - - Type of transaction. - Typus transactionis. + + Imports blocks from external blk000?.dat file + - - Destination address of transaction. - Inscriptio destinationis transactionis. + + Block creation options: + Optiones creandi frustorum: - - Amount removed from or added to balance. - Quantitas remota ex pendendo aut addita ei. + + Set minimum block size in bytes (default: 0) + Constitue minimam magnitudinem frusti in octetis/bytes (praedefinitum: 0) - - - TransactionView - - - All - Omne + + Set maximum block size in bytes (default: 250000) + - - Today - Hodie + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - This week - Hac hebdomade + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - This month - Hoc mense + Use OpenSSL (https) for JSON-RPC connections + Utere OpenSSL (https) pro conexionibus JSON-RPC - Last month - Postremo mense + Server certificate file (default: server.cert) + Plica certificationis daemonis moderantis (praedefinitum: server.cert) - This year - Hoc anno + Server private key (default: server.pem) + Clavis privata daemonis moderans (praedefinitum: server.pem) - Range... - Intervallum... + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Received with - Acceptum cum + + Invalid amount for -paytxfee=<amount>: '%s' + Quantitas non valida pro -paytxfee=<quantitas>: '%s' - - Sent to - Missum ad + + 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. - - To yourself - Ad te ipsum + + Invalid amount for -mininput=<amount>: '%s' + - Mined - Fossa + Wallet %s resides outside data directory %s. + - Other - Alia + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Enter address or label to search - Insere inscriptionem vel titulum ut quaeras + + Verifying database integrity... + - - Min amount - Quantitas minima + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Copy address - Copia inscriptionem + + 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. + + + + wallet.dat corrupt, salvage failed + wallet.dat corrupta, salvare abortum est - Copy label - Copia titulum + Unknown -socks proxy version requested: %i + Ignota -socks vicarii versio postulata: %i - Copy amount - Copia quantitatem + Unknown network specified in -onlynet: '%s' + Ignotum rete specificatum in -onlynet: '%s' - Copy transaction ID - Copia transactionis ID + Invalid -proxy address: '%s' + Inscriptio -proxy non valida: '%s' - Edit label - Muta titulum + Invalid -tor address: '%s' + - Show transaction details - Monstra particularia transactionis + Cannot resolve -bind address: '%s' + Non posse resolvere -bind inscriptonem: '%s' - - Export Transaction Data - + + 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. - Comma separated file (*.csv) - Comma Separata Plica (*.csv) + Cannot resolve -externalip address: '%s' + Non posse resolvere -externalip inscriptionem: '%s' - - Confirmed - Confirmatum + + Invalid amount for -reservebalance=<amount> + - Date - Dies + Unable to sign checkpoint, wrong checkpointkey? + + - Type - Typus + Loading block index... + Legens indicem frustorum... - Label - Titulus + Error loading blkindex.dat + - Address - Inscriptio + Loading wallet... + Legens cassidile... - Amount - Quantitas + Error loading wallet.dat: Wallet corrupted + Error legendi wallet.dat: Cassidile corruptum - ID - ID + 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. - - Error exporting - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Could not write to file %1. - + + Wallet needed to be rewritten: restart BitBean to complete + - - Range: - Intervallum: + + Error loading wallet.dat + Error legendi wallet.dat - - to - ad + + Cannot downgrade wallet + Non posse cassidile regredi - - - WalletModel - - Sending... - + + Cannot initialize keypool + - - - bitcoin-core - - BitBean version - + + Cannot write default address + Non posse scribere praedefinitam inscriptionem - Usage: - Usus: + Rescanning... + Iterum perlegens... - Send command to -server or BitBeand - + Importing blockchain data file. + - List commands - Enumera mandata + Importing bootstrap blockchain data file. + - Get help for a command - Accipe auxilium pro mandato + Loading addresses... + Legens inscriptiones... - - Options: - Optiones: + + Error: could not start node + - - Specify configuration file (default: BitBean.conf) - + + Done loading + Completo lengendi - Specify pid file (default: BitBeand.pid) - + Unable to bind to %s on this computer. BitBean is probably already running. + - Specify wallet file (within data directory) - + 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) - - Specify data directory - Specifica indicem datorum + + Error: Wallet locked, unable to create transaction + - - Set database cache size in megabytes (default: 25) - Constitue magnitudinem databasis cache in megabytes (praedefinitum: 25) + + Error: Wallet unlocked for staking only, unable to create transaction. + - Set database disk log size in megabytes (default: 100) - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Error: Transaction creation failed + - Maintain at most <n> connections to peers (default: 125) - Manutene non plures quam <n> conexiones ad paria (praedefinitum: 125) + Sending... + + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Quantitas non valida + + + + Insufficient funds + Inopia nummorum + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - Connect to a node to retrieve peer addresses, and disconnect - Conecta ad nodum acceptare inscriptiones parium, et disconecte + Warning: This version is obsolete, upgrade required! + Monitio: Haec versio obsoleta est, progressio postulata! - Specify your own public address - Specifica tuam propriam publicam inscriptionem + WARNING: syncronized checkpoint violation detected, but skipped! + - - Bind to given address. Use [host]:port notation for IPv6 - + + Warning: Disk space is low! + - - Stake your coins to support network and gain reward (default: 1) - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Threshold for disconnecting misbehaving peers (default: 100) - Limen pro disconectendo paria improba (praedefinitum: 100) + Usage: + Usus: - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Numerum secundorum prohibere ne paria improba reconectant (praedefinitum: 86400) + List commands + Enumera mandata - - 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 + Get help for a command + Accipe auxilium pro mandato - - Detach block and address databases. Increases shutdown time (default: 0) - + Options: + Optiones: - - 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. - + Specify data directory + Specifica indicem datorum - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + Set database cache size in megabytes (default: 25) + Constitue magnitudinem databasis cache in megabytes (praedefinitum: 25) - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + Maintain at most <n> connections to peers (default: 125) + Manutene non plures quam <n> conexiones ad paria (praedefinitum: 125) - - Accept command line and JSON-RPC commands - Accipe terminalis et JSON-RPC mandata. + Connect to a node to retrieve peer addresses, and disconnect + Conecta ad nodum acceptare inscriptiones parium, et disconecte - - Error: Transaction creation failed - + Specify your own public address + Specifica tuam propriam publicam inscriptionem - - Error: Wallet locked, unable to create transaction - + Threshold for disconnecting misbehaving peers (default: 100) + Limen pro disconectendo paria improba (praedefinitum: 100) - - Importing blockchain data file. - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Numerum secundorum prohibere ne paria improba reconectant (praedefinitum: 86400) - - Importing bootstrap blockchain data file. - + 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 + + + Accept command line and JSON-RPC commands + Accipe terminalis et JSON-RPC mandata. - Run in the background as a daemon and accept commands - Operare infere sicut daemon et mandata accipe + Operare infere sicut daemon et mandata accipe - Use the test network - Utere rete experimentale + Utere rete experimentale - Accept connections from outside (default: 1 if no -proxy or -connect) - Accipe conexiones externas (praedefinitum: 1 nisi -proxy neque -connect) + Accipe conexiones externas (praedefinitum: 1 nisi -proxy neque -connect) - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + Error erat dum initians portam RPC %u pro auscultando in IPv6, labens retrorsum ad IPv4: %s - 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 BitBean will not work properly. - + Monitio: -paytxfee constitutum valde magnum! Hoc est merces transactionis solves si mittis transactionem. - 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. + 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. + 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. - Attempt to recover private keys from a corrupt wallet.dat - Conare recipere claves privatas de corrupto wallet.dat + Conare recipere claves privatas de corrupto wallet.dat - Block creation options: - Optiones creandi frustorum: + Optiones creandi frustorum: - Connect only to the specified node(s) - Conecte sole ad nodos specificatos (vel nodum specificatum) + Conecte sole ad nodos specificatos (vel nodum specificatum) - Discover own IP address (default: 1 when listening and no -externalip) - Discooperi propriam inscriptionem IP (praedefinitum: 1 quando auscultans et nullum -externalip) + Discooperi propriam inscriptionem IP (praedefinitum: 1 quando auscultans et nullum -externalip) - 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. + Non potuisse auscultare in ulla porta. Utere -listen=0 si hoc vis. - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Maxima magnitudo memoriae pro datis accipendis singulis conexionibus, <n>*1000 octetis/bytes (praedefinitum: 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) + Maxima magnitudo memoriae pro datis mittendis singulis conexionibus, <n>*1000 octetis/bytes (praedefinitum: 1000) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Tantum conecte ad nodos in rete <net> (IPv4, IPv6 aut Tor) - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - + 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) - - - - Select the version of socks proxy to use (4-5, default: 5) - + Optiones SSL: (vide vici de Bitcoin pro instructionibus SSL configurationis) - Send trace/debug info to console instead of debug.log file - Mitte informationem vestigii/debug ad terminale potius quam plicam debug.log + Mitte informationem vestigii/debug ad terminale potius quam plicam debug.log - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - Set minimum block size in bytes (default: 0) - Constitue minimam magnitudinem frusti in octetis/bytes (praedefinitum: 0) + Constitue minimam magnitudinem frusti in octetis/bytes (praedefinitum: 0) - Shrink debug.log file on client startup (default: 1 when no -debug) - Diminue plicam debug.log ad initium clientis (praedefinitum: 1 nisi -debug) + Diminue plicam debug.log ad initium clientis (praedefinitum: 1 nisi -debug) - Specify connection timeout in milliseconds (default: 5000) - Specifica tempumfati conexionis in millisecundis (praedefinitum: 5000) + Specifica tempumfati conexionis in millisecundis (praedefinitum: 5000) - - Unable to sign checkpoint, wrong checkpointkey? - - - - - Use UPnP to map the listening port (default: 0) - Utere UPnP designare portam auscultandi (praedefinitum: 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - + Utere UPnP designare portam auscultandi (praedefinitum: 1 quando auscultans) - Username for JSON-RPC connections - Nomen utentis pro conexionibus JSON-RPC - - - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - + Nomen utentis pro conexionibus JSON-RPC - Warning: This version is obsolete, upgrade required! - Monitio: Haec versio obsoleta est, progressio postulata! + Monitio: Haec versio obsoleta est, progressio postulata! - wallet.dat corrupt, salvage failed - wallet.dat corrupta, salvare abortum est + wallet.dat corrupta, salvare abortum est - Password for JSON-RPC connections - Tessera pro conexionibus JSON-RPC - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + Tessera pro conexionibus JSON-RPC - Allow JSON-RPC connections from specified IP address - Permitte conexionibus JSON-RPC ex inscriptione specificata + 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) + 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) + Pelle mandatum quando optissimum frustum mutat (%s in mandato substituitur ab hash frusti) - 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) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Facere mandatum quotiescumque cassidilis transactio mutet (%s in mandato sbstituitur ab TxID) - Upgrade wallet to latest format - Progredere cassidile ad formam recentissimam + Progredere cassidile ad formam recentissimam - Set key pool size to <n> (default: 100) - Constitue magnitudinem stagni clavium ad <n> (praedefinitum: 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - + Iterum perlege catenam frustorum propter absentes cassidilis transactiones - Use OpenSSL (https) for JSON-RPC connections - Utere OpenSSL (https) pro conexionibus JSON-RPC + Utere OpenSSL (https) pro conexionibus JSON-RPC - Server certificate file (default: server.cert) - Plica certificationis daemonis moderantis (praedefinitum: server.cert) + Plica certificationis daemonis moderantis (praedefinitum: server.cert) - Server private key (default: server.pem) - Clavis privata daemonis moderans (praedefinitum: server.pem) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - + Clavis privata daemonis moderans (praedefinitum: server.pem) - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - This help message - Hic nuntius auxilii - - - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - + 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) - - - - Connect through socks proxy - + 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 + Permitte quaerenda DNS pro -addnode, -seednode, et -connect - Loading addresses... - Legens inscriptiones... - - - - Error loading blkindex.dat - + Legens inscriptiones... - Error loading wallet.dat: Wallet corrupted - Error legendi wallet.dat: Cassidile corruptum - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + Error legendi wallet.dat: Cassidile corruptum - Error loading wallet.dat - Error legendi wallet.dat + Error legendi wallet.dat - Invalid -proxy address: '%s' - Inscriptio -proxy non valida: '%s' + Inscriptio -proxy non valida: '%s' - Unknown network specified in -onlynet: '%s' - Ignotum rete specificatum in -onlynet: '%s' + Ignotum rete specificatum in -onlynet: '%s' - Unknown -socks proxy version requested: %i - Ignota -socks vicarii versio postulata: %i + Ignota -socks vicarii versio postulata: %i - Cannot resolve -bind address: '%s' - Non posse resolvere -bind inscriptonem: '%s' + Non posse resolvere -bind inscriptonem: '%s' - Cannot resolve -externalip address: '%s' - Non posse resolvere -externalip inscriptionem: '%s' + Non posse resolvere -externalip inscriptionem: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Quantitas non valida pro -paytxfee=<quantitas>: '%s' - - - - Error: could not start node - - - - - Sending... - + Quantitas non valida pro -paytxfee=<quantitas>: '%s' - Invalid amount - Quantitas non valida + Quantitas non valida - Insufficient funds - Inopia nummorum + Inopia nummorum - Loading block index... - Legens indicem frustorum... + 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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + Adice nodum cui conectere et conare sustinere conexionem apertam - Loading wallet... - Legens cassidile... + Legens cassidile... - Cannot downgrade wallet - Non posse cassidile regredi - - - - Cannot initialize keypool - + Non posse cassidile regredi - Cannot write default address - Non posse scribere praedefinitam inscriptionem + Non posse scribere praedefinitam inscriptionem - Rescanning... - Iterum perlegens... + Iterum perlegens... - Done loading - Completo lengendi + Completo lengendi - To use the %s option - Ut utaris optione %s + Ut utaris optione %s - Error - 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. - Necesse est te rpcpassword=<tesseram> constituere in plica configurationum: + Necesse est te rpcpassword=<tesseram> constituere in plica configurationum: %s 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/bitbean_lt.qm b/src/qt/locale/bitbean_lt.qm new file mode 100644 index 0000000..59e02cf Binary files /dev/null and b/src/qt/locale/bitbean_lt.qm differ diff --git a/src/qt/locale/bitcoin_lt.ts b/src/qt/locale/bitbean_lt.ts similarity index 58% rename from src/qt/locale/bitcoin_lt.ts rename to src/qt/locale/bitbean_lt.ts index b2cbda7..7d496aa 100644 --- a/src/qt/locale/bitcoin_lt.ts +++ b/src/qt/locale/bitbean_lt.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - 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. - Tai eksperimentinė programa. + Tai eksperimentinė programa. Platinama pagal MIT/X11 licenciją, kurią rasite faile COPYING arba http://www.opensource.org/licenses/mit-license.php. @@ -36,72 +48,72 @@ Platinama pagal MIT/X11 licenciją, kurią rasite faile COPYING arba http://www. AddressBookPage - + Address Book - + - + Double-click to edit address or label Spragtelėkite, kad pakeistumėte adresą arba žymę - + Create a new address Sukurti naują adresą - + Copy the currently selected address to the system clipboard Kopijuoti esamą adresą į mainų atmintį - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &Kopijuoti adresą - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + &Patikrinti žinutę - + &Delete &Trinti @@ -118,7 +130,7 @@ Platinama pagal MIT/X11 licenciją, kurią rasite faile COPYING arba http://www. Export Address Book Data - + @@ -128,12 +140,12 @@ Platinama pagal MIT/X11 licenciją, kurią rasite faile COPYING arba http://www. Error exporting - + Could not write to file %1. - + @@ -157,34 +169,34 @@ 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ę - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -233,18 +245,23 @@ Platinama pagal MIT/X11 licenciją, kurią rasite faile COPYING arba http://www. - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + Ar tikrai norite šifruoti savo piniginę? - Are you sure you wish to encrypt your wallet? - Ar tikrai norite šifruoti savo piniginę? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + @@ -259,12 +276,7 @@ Platinama pagal MIT/X11 licenciją, kurią rasite faile COPYING arba http://www. Piniginė užšifruota - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -306,333 +318,591 @@ Platinama pagal MIT/X11 licenciją, kurią rasite faile COPYING arba http://www. - BitcoinGUI + BeanControlDialog - - Sign &message... - Pasirašyti ži&nutę... - - - - Synchronizing with network... - Sinchronizavimas su tinklu ... + + Bean Control + - - &Overview - &Apžvalga + + Quantity: + - - Show general overview of wallet - Rodyti piniginės bendrą apžvalgą + + Bytes: + - - &Transactions - &Sandoriai + + Amount: + Suma: - - Browse transaction history - Apžvelgti sandorių istoriją + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - &Išeiti + + Tree mode + - - Quit application - Išjungti programą + + List mode + - - Show information about BitBean - + + Amount + Suma - - About &Qt - Apie &Qt + + Label + Žymė - - Show information about Qt - Rodyti informaciją apie Qt + + Address + Adresas - - &Options... - &Parinktys... + + Date + Data - - &Encrypt Wallet... - &Užšifruoti piniginę... + + Confirmations + - &Backup Wallet... - &Backup piniginę... + Confirmed + Patvirtintas - - &Change Passphrase... - &Keisti slaptafrazę... - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Kopijuoti adresą - - &Export... - + + Copy label + Kopijuoti žymę - - Send coins to a BitBean address - + + + Copy amount + Kopijuoti sumą - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - Daryti piniginės atsarginę kopiją + + Copy after fee + - - Change the passphrase used for wallet encryption - Pakeisti slaptafrazę naudojamą piniginės užšifravimui + + Copy bytes + - - &Debug window - &Derinimo langas + + Copy priority + - Open debugging and diagnostic console - Atverti derinimo ir diagnostikos konsolę + Copy low output + - - &Verify message... - &Tikrinti žinutę... + + Copy change + - - BitBean - + + highest + - - Wallet - Piniginė + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - &Rodyti / Slėpti + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Failas + + DUST + - - &Settings - &Nustatymai + + yes + - - &Help - &Pagalba + + no + - - Tabs toolbar - Kortelių įrankinė + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testavimotinklas] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (nėra žymės) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + &Apžvalga - - - %n second(s) ago - + + + Show general overview of wallet + Rodyti piniginės bendrą apžvalgą - - &Unlock Wallet... - + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Sandoriai + + + + Browse transaction history + Apžvelgti sandorių istoriją + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + &Išeiti + + + + Quit application + Išjungti programą + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + Apie &Qt + + + + Show information about Qt + Rodyti informaciją apie Qt + + + + &Options... + &Parinktys... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + &Rodyti / Slėpti + + + + &Encrypt Wallet... + &Užšifruoti piniginę... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &Backup piniginę... + + + + Backup wallet to another location + Daryti piniginės atsarginę kopiją + + + + &Change Passphrase... + &Keisti slaptafrazę... + + + + Change the passphrase used for wallet encryption + Pakeisti slaptafrazę naudojamą piniginės užšifravimui + + + + &Unlock Wallet... + + + + + Unlock wallet + Atrakinti piniginę + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Pasirašyti ži&nutę... + + + + &Verify message... + &Tikrinti žinutę... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + &Derinimo langas + + + + Open debugging and diagnostic console + Atverti derinimo ir diagnostikos konsolę + + + + &File + &Failas + + + + &Settings + &Nustatymai + + + + &Help + &Pagalba + + + + Tabs toolbar + Kortelių įrankinė + + + + Actions toolbar + + + + + + [testnet] + [testavimotinklas] + + + + + BitBean client + - + + %n active connection(s) to BitBean network + + + + + + + + + Synchronizing with network... + Sinchronizavimas su tinklu ... + + + + ~%n block(s) remaining + + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + %n minute(s) ago - + + + + + %n hour(s) ago - + + + + + %n day(s) ago - + + + + + Up to date - Atnaujinta + Atnaujinta Catching up... - Vejamasi... + Vejamasi... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Sandoris nusiųstas + Sandoris nusiųstas Incoming transaction - Ateinantis sandoris + Ateinantis sandoris @@ -641,7 +911,7 @@ Amount: %2 Type: %3 Address: %4 - Data: %1 + Data: %1 Suma: %2 Tipas: %3 Adresas: %4 @@ -650,341 +920,320 @@ Adresas: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Piniginė <b>užšifruota</b> ir šiuo metu <b>atrakinta</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> + Piniginė <b>užšifruota</b> ir šiuo metu <b>užrakinta</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + + %n minute(s) - + + + + + %n hour(s) - %n valanda%n valandos%n valandų + + %n valanda + %n valandos + %n valandų + %n day(s) - %n diena%n dienos%n dienų + + %n diena + %n dienos + %n dienų + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Tinklo įspėjimas + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - + + Not staking because you don't have mature beans + - - Bytes: - + + Not staking + + + + BitcoinGUI - - Amount: - Suma: + Sign &message... + Pasirašyti ži&nutę... - - Priority: - + Synchronizing with network... + Sinchronizavimas su tinklu ... - - Fee: - + &Overview + &Apžvalga - - Low Output: - + Show general overview of wallet + Rodyti piniginės bendrą apžvalgą - - no - + &Transactions + &Sandoriai - - After Fee: - + Browse transaction history + Apžvelgti sandorių istoriją - - Change: - + E&xit + &Išeiti - - (un)select all - + Quit application + Išjungti programą - - Tree mode - + About &Qt + Apie &Qt - - List mode - + Show information about Qt + Rodyti informaciją apie Qt - - Amount - Suma + &Options... + &Parinktys... - - Label - + &Encrypt Wallet... + &Užšifruoti piniginę... - - Address - Adresas + &Backup Wallet... + &Backup piniginę... - - Date - Data + &Change Passphrase... + &Keisti slaptafrazę... - - Confirmations - + Backup wallet to another location + Daryti piniginės atsarginę kopiją - - Confirmed - Patvirtintas + Change the passphrase used for wallet encryption + Pakeisti slaptafrazę naudojamą piniginės užšifravimui - - Priority - + &Debug window + &Derinimo langas - - Copy address - Kopijuoti adresą + Open debugging and diagnostic console + Atverti derinimo ir diagnostikos konsolę - - Copy label - Kopijuoti žymę + &Verify message... + &Tikrinti žinutę... - - - Copy amount - Kopijuoti sumą + Wallet + Piniginė - - Copy transaction ID - + &Show / Hide + &Rodyti / Slėpti - - Copy quantity - + &File + &Failas - - Copy fee - + &Settings + &Nustatymai - - Copy after fee - + &Help + &Pagalba - - Copy bytes - + Tabs toolbar + Kortelių įrankinė - - Copy priority - + [testnet] + [testavimotinklas] - - Copy low output - + Up to date + Atnaujinta - - Copy change - + Catching up... + Vejamasi... - - highest - + Sent transaction + Sandoris nusiųstas - - high - + Incoming transaction + Ateinantis sandoris - - medium-high - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1 +Suma: %2 +Tipas: %3 +Adresas: %4 - - medium - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Piniginė <b>užšifruota</b> ir šiuo metu <b>atrakinta</b> - - low-medium - + Wallet is <b>encrypted</b> and currently <b>locked</b> + Piniginė <b>užšifruota</b> ir šiuo metu <b>užrakinta</b> - - - low - + + %n hour(s) + + %n valanda + %n valandos + %n valandų + + + %n day(s) + + %n diena + %n dienos + %n dienų + + + + + ClientModel - - lowest - + + Network Alert + Tinklo įspėjimas + + + CoinControlDialog - - DUST - + Amount: + Suma: - - yes - + Amount + Suma - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Address + Adresas - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Date + Data - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Confirmed + Patvirtintas - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy address + Kopijuoti adresą - - - (no label) - (nėra žymės) + Copy label + Kopijuoti žymę - - change from %1 (%2) - + Copy amount + Kopijuoti sumą - - (change) - + (no label) + (nėra žymės) EditAddressDialog - + Edit Address Keisti adresą @@ -996,7 +1245,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1006,7 +1255,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1036,7 +1285,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1052,98 +1301,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Naudojimas: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + 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. Fee 5.00 recommended. - - - - + Pay transaction &fee &Mokėti sandorio mokestį - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1153,7 +1402,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1163,12 +1412,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1178,7 +1427,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1238,7 +1487,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1247,31 +1496,35 @@ This label turns red, if the priority is smaller than "medium". - Choose the default subdivision unit to show in the interface and when sending coins. - Rodomų ir siunčiamų monetų kiekio matavimo vienetai + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - &Rodyti adresus sandorių sąraše + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + 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 BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + &Rodyti adresus sandorių sąraše - + &OK &Gerai @@ -1283,7 +1536,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1294,13 +1547,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1311,78 +1564,154 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Forma - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - Piniginė + Piniginė - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: Nepribrendę: + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + - Mined balance that has not yet matured - + Bean Stalk Height: + - - Total: - Viso: + + Sprouting Difficulty: + - - Your current total balance - Jūsų balansas + + Bean Weight: + - - <b>Recent transactions</b> - <b>Naujausi sandoriai</b> + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + + Total: + Viso: + + + Your current total balance + Jūsų balansas - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Recent transactions</b> + <b>Naujausi sandoriai</b> - + out of sync nesinchronizuota @@ -1391,65 +1720,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Suma: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Kliento pavadinimas @@ -1500,7 +1829,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1515,7 +1844,7 @@ This label turns red, if the priority is smaller than "medium". Estimated total blocks - + @@ -1530,17 +1859,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1555,12 +1884,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1570,7 +1899,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1580,73 +1909,73 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Siųsti monetas + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - Suma: + Suma: @@ -1654,274 +1983,372 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Siųsti keliems gavėjams vienu metu + Siųsti keliems gavėjams vienu metu Add &Recipient - &A Pridėti gavėją + &A Pridėti gavėją Remove all transaction fields - + Clear &All - Išvalyti &viską + Išvalyti &viską Balance: - Balansas: + Balansas: 123.456 BC - + Confirm the send action - Patvirtinti siuntimo veiksmą + Patvirtinti siuntimo veiksmą S&end - &Siųsti + &Siųsti - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - Kopijuoti sumą + Kopijuoti sumą Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - Patvirtinti monetų siuntimą + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - Negaliojantis gavėjo adresas. Patikrinkite. + Negaliojantis gavėjo adresas. Patikrinkite. The amount to pay must be larger than 0. - Apmokėjimo suma turi būti didesnė nei 0. + Apmokėjimo suma turi būti didesnė nei 0. The amount exceeds your balance. - Suma viršija jūsų balansą. + 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ą. + 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. + Rastas adreso dublikatas. + + + + Error: Transaction creation failed. + + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + + + + + (no label) + (nėra žymės) + + + + WARNING: unknown change address + + + + + SendBeansEntry + + + Form + Forma + + + + A&mount: + Su&ma: + + + + Pay &To: + Mokėti &gavėjui: + + + + + 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ė: + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose address from address book + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Įvesti adresą iš mainų atminties + + + + Alt+P + Alt+P + + + + Remove this recipient + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Send Coins + Siųsti monetas + + + Amount: + Suma: + + + Send to multiple recipients at once + Siųsti keliems gavėjams vienu metu + + + Add &Recipient + &A Pridėti gavėją + + + Clear &All + Išvalyti &viską + + + Balance: + Balansas: + + + Confirm the send action + Patvirtinti siuntimo veiksmą + + + S&end + &Siųsti + + + Copy amount + Kopijuoti sumą + + + Confirm send coins + Patvirtinti monetų siuntimą + + + The recipient address is not valid, please recheck. + Negaliojantis gavėjo adresas. Patikrinkite. - - Error: Transaction creation failed. - + The amount to pay must be larger than 0. + Apmokėjimo suma turi būti didesnė nei 0. - - 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. - + The amount exceeds your balance. + Suma viršija jūsų balansą. - - WARNING: Invalid BitBean address - + The total exceeds your balance when the %1 transaction fee is included. + Jei pridedame sandorio mokestį %1 bendra suma viršija jūsų balansą. - - (no label) - (nėra žymės) + Duplicate address found, can only send to each address once per send operation. + Rastas adreso dublikatas. - - WARNING: unknown change address - + (no label) + (nėra žymės) SendCoinsEntry - - Form - - - - A&mount: - Su&ma: + Su&ma: - Pay &To: - Mokėti &gavėjui: + Mokėti &gavėjui: - - 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ę + Įveskite žymę šiam adresui kad galėtumėte įtraukti ją į adresų knygelę - &Label: - Ž&ymė: - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose address from address book - + Ž&ymė: - Alt+A - Alt+A + Alt+A - Paste address from clipboard - Įvesti adresą iš mainų atminties + Įvesti adresą iš mainų atminties - Alt+P - Alt+P - - - - Remove this recipient - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message - + @@ -1932,18 +2359,18 @@ This label turns red, if the priority is smaller than "medium". 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1969,17 +2396,17 @@ This label turns red, if the priority is smaller than "medium". Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + Reset all sign message fields - + @@ -1996,28 +2423,28 @@ This label turns red, if the priority is smaller than "medium". 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2027,7 +2454,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2047,7 +2474,7 @@ This label turns red, if the priority is smaller than "medium". The entered address does not refer to a key. - + @@ -2057,7 +2484,7 @@ This label turns red, if the priority is smaller than "medium". Private key for the entered address is not available. - + @@ -2106,12 +2533,16 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + + conflicted - + @@ -2136,7 +2567,11 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - + + + + + @@ -2189,7 +2624,11 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - + + + + + @@ -2231,8 +2670,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2247,7 +2686,7 @@ This label turns red, if the priority is smaller than "medium". Inputs - + @@ -2278,7 +2717,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Sandorio detelės @@ -2323,32 +2762,36 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2382,8 +2825,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - Išgauta + Išgauta @@ -2476,807 +2923,994 @@ This label turns red, if the priority is smaller than "medium". - Other - Kita + 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 Data + + + + + Comma separated file (*.csv) + Kableliais atskirtų duomenų failas (*.csv) + + + + Confirmed + Patvirtintas + + + + Date + Data + + + + Type + Tipas + + + + Label + Žymė + + + + Address + Adresas + + + + Amount + Suma + + + + ID + ID + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + Grupė: + + + + to + skirta + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Klaida + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + + + + + BitBean version + + + + + Usage: + Naudojimas: + + + + Send command to -server or BitBeand + + + + + List commands + Komandų sąrašas + + + + Get help for a command + Suteikti pagalba komandai + + + + BitBean + + + + + Options: + Parinktys: + + + + This help message + Pagelbos žinutė + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Nustatyti duomenų aplanką + + + + Specify wallet file (within data directory) + + + + + Set database cache size in megabytes (default: 25) + + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Nustatyti sujungimo trukmę milisekundėmis (pagal nutylėjimą: 5000) + + + + Connect through socks proxy + - - Enter address or label to search - Įveskite adresą ar žymę į paiešką + + Select the version of socks proxy to use (4-5, default: 5) + - - Min amount - Minimali suma + + Use proxy to reach tor hidden services (default: same as -proxy) + - - Copy address - Kopijuoti adresą + + Allow DNS lookups for -addnode, -seednode and -connect + Leisti DNS paiešką sujungimui ir mazgo pridėjimui - Copy label - Kopijuoti žymę + Listen for connections on <port> (default: 15714 or testnet: 25714) + - Copy amount - Kopijuoti sumą + Maintain at most <n> connections to peers (default: 125) + Palaikyti ne daugiau <n> jungčių kolegoms (pagal nutylėjimą: 125) - Copy transaction ID - + 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 - Edit label - Taisyti žymę + Connect only to the specified node(s) + Prisijungti tik prie nurodyto mazgo - Show transaction details - Rodyti sandėrio detales + Connect to a node to retrieve peer addresses, and disconnect + - - Export Transaction Data - + + Specify your own public address + - Comma separated file (*.csv) - Kableliais atskirtų duomenų failas (*.csv) + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Confirmed - Patvirtintas + + Discover own IP address (default: 1 when listening and no -externalip) + - Date - Data + Find peers using internet relay chat (default: 0) + - Type - Tipas + Accept connections from outside (default: 1 if no -proxy or -connect) + - Label - Žymė + Bind to given address. Use [host]:port notation for IPv6 + - Address - Adresas + Find peers using DNS lookup (default: 1) + - Amount - Suma + Stake your beans to support network and gain reward (default: 1) + - ID - ID + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Error exporting - + + Sync checkpoints policy (default: strict) + - - Could not write to file %1. - + + Threshold for disconnecting misbehaving peers (default: 100) + Atjungimo dėl netinkamo kolegų elgesio riba (pagal nutylėjimą: 100) - - Range: - Grupė: + + 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) - - to - skirta + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Maksimalus buferis priėmimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 5000) - - - WalletModel - - Sending... - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Maksimalus buferis siuntimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 1000) - - - bitcoin-core - - BitBean version - + + Use UPnP to map the listening port (default: 1 when listening) + Bandymas naudoti UPnP struktūra klausymosi prievadui (default: 1 when listening) - Usage: - Naudojimas: + Use UPnP to map the listening port (default: 0) + Bandymas naudoti UPnP struktūra klausymosi prievadui (default: 0) - Send command to -server or BitBeand - + Detach block and address databases. Increases shutdown time (default: 0) + - - List commands - Komandų sąrašas + + Fee per KB to add to transactions you send + - Get help for a command - Suteikti pagalba komandai + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Options: - Parinktys: + + Accept command line and JSON-RPC commands + Priimti komandinę eilutę ir JSON-RPC komandas - - Specify configuration file (default: BitBean.conf) - + + Run in the background as a daemon and accept commands + Dirbti fone kaip šešėlyje ir priimti komandas - Specify pid file (default: BitBeand.pid) - + Use the test network + Naudoti testavimo tinklą - - Specify wallet file (within data directory) - + + Output extra debugging information. Implies all other -debug* options + - - Specify data directory - Nustatyti duomenų aplanką + + Output extra network debugging information + - - Set database cache size in megabytes (default: 25) - + + Prepend debug output with timestamp + - Set database disk log size in megabytes (default: 100) - + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Send trace/debug info to console instead of debug.log file + Siųsti atsekimo/derinimo info į konsolę vietoj debug.log failo - Maintain at most <n> connections to peers (default: 125) - Palaikyti ne daugiau <n> jungčių kolegoms (pagal nutylėjimą: 125) + Send trace/debug info to debugger + - - Connect to a node to retrieve peer addresses, and disconnect - + + Username for JSON-RPC connections + Vartotojo vardas JSON-RPC jungimuisi - Specify your own public address - + Password for JSON-RPC connections + Slaptažodis JSON-RPC sujungimams - - Bind to given address. Use [host]:port notation for IPv6 - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - Stake your coins to support network and gain reward (default: 1) - + Allow JSON-RPC connections from specified IP address + Leisti JSON-RPC tik iš nurodytų IP adresų - - Threshold for disconnecting misbehaving peers (default: 100) - Atjungimo dėl netinkamo kolegų elgesio riba (pagal nutylėjimą: 100) + + 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) - 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) + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + - - Detach block and address databases. Increases shutdown time (default: 0) - + + Require a confirmations for change (default: 0) + - - 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. - + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - - 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 relevant alert is received (%s in cmd is replaced by message) + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Upgrade wallet to latest format + Atnaujinti piniginę į naujausią formatą - - Accept command line and JSON-RPC commands - Priimti komandinę eilutę ir JSON-RPC komandas + + Set key pool size to <n> (default: 100) + Nustatyti rakto apimties dydį <n> (pagal nutylėjimą: 100) - - Error: Transaction creation failed - + + Rescan the block chain for missing wallet transactions + Ieškoti prarastų piniginės sandorių blokų grandinėje - - Error: Wallet locked, unable to create transaction - + + Attempt to recover private keys from a corrupt wallet.dat + - - Importing blockchain data file. - + + How many blocks to check at startup (default: 2500, 0 = all) + - Importing bootstrap blockchain data file. - + How thorough the block verification is (0-6, default: 1) + - - Run in the background as a daemon and accept commands - Dirbti fone kaip šešėlyje ir priimti komandas + + Imports blocks from external blk000?.dat file + - Use the test network - Naudoti testavimo tinklą + Block creation options: + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Set minimum block size in bytes (default: 0) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Set maximum block size in bytes (default: 250000) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - - 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į. + + Use OpenSSL (https) for JSON-RPC connections + Naudoti OpenSSL (https) jungimuisi JSON-RPC - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Server certificate file (default: server.cert) + Serverio sertifikato failas (pagal nutylėjimą: server.cert) - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Server private key (default: server.pem) + Serverio privatus raktas (pagal nutylėjimą: server.pem) - - 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. - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Invalid amount for -paytxfee=<amount>: '%s' + Neteisinga suma -paytxfee=<amount>: '%s' - - Block creation options: - + + 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į. - - Connect only to the specified node(s) - Prisijungti tik prie nurodyto mazgo + + Invalid amount for -mininput=<amount>: '%s' + - - Discover own IP address (default: 1 when listening and no -externalip) - + + Wallet %s resides outside data directory %s. + - - Failed to listen on any port. Use -listen=0 if you want this. - + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Find peers using DNS lookup (default: 1) - + + Verifying database integrity... + - - Sync checkpoints policy (default: strict) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Invalid -tor address: '%s' - + + 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. + - Invalid amount for -reservebalance=<amount> - + wallet.dat corrupt, salvage failed + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Maksimalus buferis priėmimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 5000) + + Unknown -socks proxy version requested: %i + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - Maksimalus buferis siuntimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 1000) + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + Neteisingas proxy adresas: '%s' + + + + Invalid -tor address: '%s' + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Cannot resolve -bind address: '%s' + - - Output extra debugging information. Implies all other -debug* options - + + Failed to listen on any port. Use -listen=0 if you want this. + - Output extra network debugging information - + Cannot resolve -externalip address: '%s' + - Prepend debug output with timestamp - + Invalid amount for -reservebalance=<amount> + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL opcijos (žr.e Bitcoin Wiki for SSL setup instructions) + + Unable to sign checkpoint, wrong checkpointkey? + + - - Select the version of socks proxy to use (4-5, default: 5) - + + Loading block index... + Įkeliamas blokų indeksas... - - Send trace/debug info to console instead of debug.log file - Siųsti atsekimo/derinimo info į konsolę vietoj debug.log failo + + Error loading blkindex.dat + - Send trace/debug info to debugger - + Loading wallet... + Užkraunama piniginė... - - Set maximum block size in bytes (default: 250000) - + + Error loading wallet.dat: Wallet corrupted + wallet.dat pakrovimo klaida, wallet.dat sugadintas - - Set minimum block size in bytes (default: 0) - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Specify connection timeout in milliseconds (default: 5000) - Nustatyti sujungimo trukmę milisekundėmis (pagal nutylėjimą: 5000) + + Wallet needed to be rewritten: restart BitBean to complete + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Error loading wallet.dat + wallet.dat pakrovimo klaida - - Use UPnP to map the listening port (default: 0) - Bandymas naudoti UPnP struktūra klausymosi prievadui (default: 0) + + Cannot downgrade wallet + - - Use UPnP to map the listening port (default: 1 when listening) - Bandymas naudoti UPnP struktūra klausymosi prievadui (default: 1 when listening) + + Cannot initialize keypool + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Cannot write default address + - - Username for JSON-RPC connections - Vartotojo vardas JSON-RPC jungimuisi + + Rescanning... + Peržiūra - - Verifying database integrity... - + + Importing blockchain data file. + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Importing bootstrap blockchain data file. + - Warning: Disk space is low! - + Loading addresses... + Užkraunami adresai... - - Warning: This version is obsolete, upgrade required! - + + Error: could not start node + - - wallet.dat corrupt, salvage failed - + + Done loading + Įkėlimas baigtas - - Password for JSON-RPC connections - Slaptažodis JSON-RPC sujungimams + + Unable to bind to %s on this computer. BitBean is probably already running. + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Unable to bind to %s on this computer (bind returned error %d, %s) + Nepavyko susieti šiame kompiuteryje prievado %s (bind returned error %d, %s) - - Find peers using internet relay chat (default: 0) - + + Error: Wallet locked, unable to create transaction + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Allow JSON-RPC connections from specified IP address - Leisti JSON-RPC tik iš nurodytų IP adresų + + Error: Transaction creation failed + - 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) + Sending... + - Execute command when the best block changes (%s in cmd is replaced by block hash) - + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + + Invalid amount + Neteisinga suma - - Require a confirmations for change (default: 0) - + + Insufficient funds + Nepakanka lėšų - Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + + Warning: This version is obsolete, upgrade required! + - - Upgrade wallet to latest format - Atnaujinti piniginę į naujausią formatą + + WARNING: syncronized checkpoint violation detected, but skipped! + - Set key pool size to <n> (default: 100) - Nustatyti rakto apimties dydį <n> (pagal nutylėjimą: 100) + Warning: Disk space is low! + - Rescan the block chain for missing wallet transactions - Ieškoti prarastų piniginės sandorių blokų grandinėje + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - How many blocks to check at startup (default: 2500, 0 = all) - + Usage: + Naudojimas: - - How thorough the block verification is (0-6, default: 1) - + List commands + Komandų sąrašas - - Imports blocks from external blk000?.dat file - + Get help for a command + Suteikti pagalba komandai - - Use OpenSSL (https) for JSON-RPC connections - Naudoti OpenSSL (https) jungimuisi JSON-RPC + Options: + Parinktys: - - Server certificate file (default: server.cert) - Serverio sertifikato failas (pagal nutylėjimą: server.cert) + Specify data directory + Nustatyti duomenų aplanką - - Server private key (default: server.pem) - Serverio privatus raktas (pagal nutylėjimą: server.pem) + Maintain at most <n> connections to peers (default: 125) + Palaikyti ne daugiau <n> jungčių kolegoms (pagal nutylėjimą: 125) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + Threshold for disconnecting misbehaving peers (default: 100) + Atjungimo dėl netinkamo kolegų elgesio riba (pagal nutylėjimą: 100) - - Error: Wallet unlocked for staking only, unable to create transaction. - + 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) - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + Accept command line and JSON-RPC commands + Priimti komandinę eilutę ir JSON-RPC komandas - - This help message - Pagelbos žinutė + Run in the background as a daemon and accept commands + Dirbti fone kaip šešėlyje ir priimti komandas - - Wallet %s resides outside data directory %s. - + Use the test network + Naudoti testavimo tinklą - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + 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į. - - BitBean - + Connect only to the specified node(s) + Prisijungti tik prie nurodyto mazgo - - Unable to bind to %s on this computer (bind returned error %d, %s) - Nepavyko susieti šiame kompiuteryje prievado %s (bind returned error %d, %s) + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Maksimalus buferis priėmimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 5000) - - Connect through socks proxy - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Maksimalus buferis siuntimo sujungimui <n>*1000 bitų (pagal nutylėjimą: 1000) - - Allow DNS lookups for -addnode, -seednode and -connect - Leisti DNS paiešką sujungimui ir mazgo pridėjimui + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL opcijos (žr.e Bitcoin Wiki for SSL setup instructions) - - Loading addresses... - Užkraunami adresai... + Send trace/debug info to console instead of debug.log file + Siųsti atsekimo/derinimo info į konsolę vietoj debug.log failo - - Error loading blkindex.dat - + Specify connection timeout in milliseconds (default: 5000) + Nustatyti sujungimo trukmę milisekundėmis (pagal nutylėjimą: 5000) - - Error loading wallet.dat: Wallet corrupted - wallet.dat pakrovimo klaida, wallet.dat sugadintas + Use UPnP to map the listening port (default: 0) + Bandymas naudoti UPnP struktūra klausymosi prievadui (default: 0) - - Error loading wallet.dat: Wallet requires newer version of BitBean - + Use UPnP to map the listening port (default: 1 when listening) + Bandymas naudoti UPnP struktūra klausymosi prievadui (default: 1 when listening) - - Wallet needed to be rewritten: restart BitBean to complete - + Username for JSON-RPC connections + Vartotojo vardas JSON-RPC jungimuisi - - Error loading wallet.dat - wallet.dat pakrovimo klaida + Password for JSON-RPC connections + Slaptažodis JSON-RPC sujungimams - - Invalid -proxy address: '%s' - Neteisingas proxy adresas: '%s' + Allow JSON-RPC connections from specified IP address + Leisti JSON-RPC tik iš nurodytų IP adresų - - Unknown network specified in -onlynet: '%s' - + 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) - - Unknown -socks proxy version requested: %i - + Upgrade wallet to latest format + Atnaujinti piniginę į naujausią formatą - - Cannot resolve -bind address: '%s' - + Set key pool size to <n> (default: 100) + Nustatyti rakto apimties dydį <n> (pagal nutylėjimą: 100) - - Cannot resolve -externalip address: '%s' - + Rescan the block chain for missing wallet transactions + Ieškoti prarastų piniginės sandorių blokų grandinėje - - Invalid amount for -paytxfee=<amount>: '%s' - Neteisinga suma -paytxfee=<amount>: '%s' + Use OpenSSL (https) for JSON-RPC connections + Naudoti OpenSSL (https) jungimuisi JSON-RPC - - Error: could not start node - + Server certificate file (default: server.cert) + Serverio sertifikato failas (pagal nutylėjimą: server.cert) - - Sending... - + Server private key (default: server.pem) + Serverio privatus raktas (pagal nutylėjimą: server.pem) - - Invalid amount - Neteisinga suma + This help message + Pagelbos žinutė - - Insufficient funds - Nepakanka lėšų + Unable to bind to %s on this computer (bind returned error %d, %s) + Nepavyko susieti šiame kompiuteryje prievado %s (bind returned error %d, %s) - - Loading block index... - Įkeliamas blokų indeksas... + Allow DNS lookups for -addnode, -seednode and -connect + Leisti DNS paiešką sujungimui ir mazgo pridėjimui - - 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 + Loading addresses... + Užkraunami adresai... - - Unable to bind to %s on this computer. BitBean is probably already running. - + Error loading wallet.dat: Wallet corrupted + wallet.dat pakrovimo klaida, wallet.dat sugadintas - - Fee per KB to add to transactions you send - + Error loading wallet.dat + wallet.dat pakrovimo klaida - - Invalid amount for -mininput=<amount>: '%s' - + Invalid -proxy address: '%s' + Neteisingas proxy adresas: '%s' - - Loading wallet... - Užkraunama piniginė... + Invalid amount for -paytxfee=<amount>: '%s' + Neteisinga suma -paytxfee=<amount>: '%s' - - Cannot downgrade wallet - + Invalid amount + Neteisinga suma - - Cannot initialize keypool - + Insufficient funds + Nepakanka lėšų - - Cannot write default address - + Loading block index... + Įkeliamas blokų indeksas... - - Rescanning... - Peržiūra + 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 - - Done loading - Įkėlimas baigtas + Loading wallet... + Užkraunama piniginė... - - To use the %s option - + Rescanning... + Peržiūra - - Error - Klaida + Done loading + Įkėlimas baigtas - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + Error + Klaida - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_lv_LV.qm b/src/qt/locale/bitbean_lv_LV.qm similarity index 50% rename from src/qt/locale/bitcoin_lv_LV.qm rename to src/qt/locale/bitbean_lv_LV.qm index b0a8fb5..748ad78 100644 Binary files a/src/qt/locale/bitcoin_lv_LV.qm and b/src/qt/locale/bitbean_lv_LV.qm differ diff --git a/src/qt/locale/bitcoin_sk.ts b/src/qt/locale/bitbean_lv_LV.ts similarity index 51% rename from src/qt/locale/bitcoin_sk.ts rename to src/qt/locale/bitbean_lv_LV.ts index a7a8ac7..dfeb616 100644 --- a/src/qt/locale/bitcoin_sk.ts +++ b/src/qt/locale/bitbean_lv_LV.ts @@ -1,142 +1,138 @@ - + + + +UTF-8 AboutDialog - + About BitBean - O BTestcoine + - + <b>BitBean</b> version - verzia <b>BitBeanu</b> + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - -Toto je experimentálny softvér. - -Distribuovaný pod softvérovou licenciou MIT/X11, viď priložený súbor COPYING alebo http://www.opensource.org/licenses/mit-license.php. - -Tento produkt obsahuje softvér vyvinutý projektom OpenSSL Project pre použitie v sade OpenSSL Toolkit (http://www.openssl.org/) a šifrovací softvér, ktorý napísal Eric Young (eay@cryptsoft.com) a UPnP softvér ktorý napísaný Thomas Bernard. + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - Adresár + - + Double-click to edit address or label - Dvojklikom editovať adresu alebo popis + Adresi vai nosaukumu rediģē ar dubultklikšķi - + Create a new address - Vytvoriť novú adresu + Izveidot jaunu adresi - + Copy the currently selected address to the system clipboard - Kopírovať práve zvolenú adresu do systémovej schránky + Kopēt iezīmēto adresi uz starpliktuvi - + &New Address - &Nová adresa + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - Toto sú vaše BitBean adresy pre príjem platieb. Možno budete chcieť dať inú každému odosielateľovi, aby ste mohli sledovať, kto Vám platí. + - + &Copy Address - &Kopírovať adresu + &Kopēt adresi - + Show &QR Code - Ukáž &QR kód + - + Sign a message to prove you own a BitBean address - Podpísať správu ako dôkaz, že vlastníte túto BitBean adresu + Sign &Message - Podpísať &správu + - + Delete the currently selected address from the list - Vymazať aktuálne vybranú adresu zo zoznamu + - + Verify a message to ensure it was signed with a specified BitBean address - Overte správu, aby ste zabezpečili, že bola podpísaná s určitou BitBean adresou + &Verify Message - &Overte správu + - + &Delete - &Zmazať + &Dzēst Copy &Label - Kopírovať &Popis + Kopēt &Nosaukumu &Edit - &Upraviť + &Rediģēt Export Address Book Data - Exportovať dáta z adresára + Comma separated file (*.csv) - Čiarkou oddelený súbor (*.csv) + Fails ar komatu kā atdalītāju (*.csv) Error exporting - Chyba pri exporte + Could not write to file %1. - Nie je možné zapísať do súboru %1. + @@ -144,498 +140,756 @@ Tento produkt obsahuje softvér vyvinutý projektom OpenSSL Project pre použiti Label - Popis + Nosaukums Address - Adresa + Adrese (no label) - (bez popisu) + (bez nosaukuma) AskPassphraseDialog - + Passphrase Dialog - Dialóg hesla + Paroles dialogs - + Enter passphrase - Zadajte heslo + Ierakstiet paroli - + New passphrase - Nové heslo + Jauna parole - + Repeat new passphrase - Zopakujte nové heslo + Jaunā parole vēlreiz - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - Slúži na vypnutie trivial sendmoney keď je ohrozený OS účet. Neposkytuje žiadnu skutočnú istotu. + For staking only - Len pre stávkovanie + 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 a viac náhodných znakov</b>, alebo <b>8 a viac slov</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 - Zašifrovať peňaženku + Šifrēt maciņu 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 odomknúť. + Lai veikto šo darbību, maciņš jāatslēdz ar paroli. Unlock wallet - Odomknúť peňaženku + Atslēgt maciņu 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. + Šai darbībai maciņš jāatšifrē ar maciņa paroli. Decrypt wallet - Dešifrovať peňaženku + Atšifrēt maciņu Change passphrase - Zmena hesla + Mainīt paroli Enter the old and new passphrase to the wallet. - Zadajte staré a nové heslo k peňaženke. + Ierakstiet maciņa veco un jauno paroli. Confirm wallet encryption - Potvrďte zašifrovanie peňaženky + Apstiprināt maciņa šifrēšanu - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - Upozornenie: Ak zašifrujete vašu peňaženku a stratíte prístupové heslo, potom <b>prídete o všetky svoje MINCE</b>! + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - Ste si istí, že si želáte zašifrovať peňaženku? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - DÔLEŽITÉ: Všetky predchádzajúce zálohy vašej peňaženky, ktoré ste vykonali by mali byť nahradené novo vytvorenou, zašifrovanou peňaženkou. Z bezpečnostných dôvodov bude predchádzajúca záloha nezašifrovanej peňaženky k ničomu, akonáhle začnete používať novú, zašifrovanú peňaženku. + Warning: The Caps Lock key is on! - Upozornenie: Máte zapnutý Caps Lock! + Wallet encrypted - Peňaženka zašifrovaná - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - BitBean sa teraz zavrie aby dokončil proces zašifrovania. Nezabudnite, že zašifrovanie vašej peňaženky nemôže plne chrániť vaše mince pred krádežou malwarom napadnutím vašeho počítača. + Maciņš nošifrēts - + Wallet encryption failed - Šifrovanie peňaženky zlyhalo + Maciņa šifrēšana neizdevās 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á. + Maciņa šifrēšana neizdevās programmas kļūdas dēļ. Jūsu maciņš netika šifrēts. The supplied passphrases do not match. - Zadané heslá nesúhlasia. + Ievadītās paroles nav vienādas. Wallet unlock failed - Odomykanie peňaženky zlyhalo + Maciņu atšifrēt neizdevās The passphrase entered for the wallet decryption was incorrect. - Zadané heslo pre dešifrovanie peňaženky bolo nesprávne. + Maciņa atšifrēšanai ievadītā parole nav pareiza. Wallet decryption failed - Zlyhalo šifrovanie peňaženky. + Maciņu neizdevās atšifrēt Wallet passphrase was successfully changed. - Heslo k peňaženke bolo úspešne zmenené. + - BitcoinGUI + BeanControlDialog - - Sign &message... - Podpísať &správu... - - - - Synchronizing with network... - Synchronizácia so sieťou... + + Bean Control + - - &Overview - &Prehľad + + Quantity: + - - Show general overview of wallet - Zobraziť celkový prehľad o peňaženke + + Bytes: + - - &Transactions - &Transakcie + + Amount: + Daudzums: - - Browse transaction history - Prechádzať históriu transakcií + + Priority: + - - &Address Book - &Adresár + + Fee: + - - Edit the list of stored addresses and labels - Úprava zoznamu uložených adries a popisov + + Low Output: + - - &Receive coins - &Prijať mince + + After Fee: + - - Show the list of addresses for receiving payments - Zobraziť zoznam adries pre príjem platieb + + Change: + - - &Send coins - &Poslať mince + + (un)select all + - - E&xit - &Ukončiť + + Tree mode + - - Quit application - Ukončiť program + + List mode + - - Show information about BitBean - Zobraziť informácie o BitBean + + Amount + Daudzums - - About &Qt - O &Qt + + Label + Nosaukums - - Show information about Qt - Zobrazit informácie o Qt + + Address + Adrese - - &Options... - &Možnosti... + + Date + Datums - - &Encrypt Wallet... - &Zašifrovať peňaženku... + + Confirmations + - &Backup Wallet... - &Zálohovať peňaženku... + Confirmed + Apstiprināts - - &Change Passphrase... - &Zmena hesla... - - - - ~%n block(s) remaining - ~%n blok zostáva~%n blokov zostávaZostáva ~%n blokov + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Stiahnutých %1 z %2 blokov transakčnej histórie (%3% hotových). + + Copy address + Kopēt adresi - - &Export... - &Export... + + Copy label + Kopēt nosaukumu - - Send coins to a BitBean address - Poslať mince na BitBean adresu + + + Copy amount + Kopēt daudzumu - - Modify configuration options for BitBean - Upraviť možnosti konfigurácie pre BitBean + + Copy transaction ID + - - Export the data in the current tab to a file - Exportovať dáta v aktuálnej karte do súboru + + Copy quantity + - - Encrypt or decrypt wallet - Zašifrovať alebo dešifrovať peňaženku + + Copy fee + - - Backup wallet to another location - Zálohovať peňaženku na iné miesto + + Copy after fee + - - Change the passphrase used for wallet encryption - Zmeniť heslo použité na šifrovanie peňaženky + + Copy bytes + - - &Debug window - &Ladiace okno + + Copy priority + - Open debugging and diagnostic console - Otvor konzolu pre ladenie a diagnostiku + Copy low output + - - &Verify message... - Overiť správu + + Copy change + - - BitBean - BitBean + + highest + - - Wallet - Peňaženka + + high + - - &About BitBean - &O BitBean + + medium-high + - - &Show / Hide - Zobraziť / skryť + + medium + - - Unlock wallet - Odomknúť peňaženku + + low-medium + - &Lock Wallet - &Zamknúť peňaženku + low + - Lock wallet - Zamknúť peňaženku + lowest + - - &File - &Súbor + + DUST + - - &Settings - &Nastavenia + + yes + - - &Help - &Pomoc + + no + - - Tabs toolbar - Lišta záložiek + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - Lišta činností + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testovacia sieť] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - BitBean klient + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - %n aktívne spojenie s BitBean sieťov%n aktívnych spojení s BitBean sieťov%n aktívnych spojení s BitBean sieťou + + + + (no label) + (bez nosaukuma) - - Downloaded %1 blocks of transaction history. - Stiahnutých %1 blokov z transakčnej histórie. + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - Stávkovanie.<br>Vaša váha je %1<br>Váha siete je %2<br>Odhadovaný čas pre získanie odmeny je %3 + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - Nestávkujem pretože peňaženka je zamknutá + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - Nestávkujem pretože peňaženka je offline + + BitBean + - - Not staking because wallet is syncing - Nestávkujem pretože peňaženka sa synchronizuje + + Vault + - - Not staking because you don't have mature coins - Nestávkujem pretože nemáte odležané mince + + &Overview + &Pārskats - - - %n second(s) ago - pred %n sekundoupred %n sekundamipred %n sekundami + + + Show general overview of wallet + Rādīt vispārēju maciņa pārskatu - - &Unlock Wallet... - &Odomknúť peňaženku... + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transakcijas + + + + Browse transaction history + Skatīt transakciju vēsturi + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + &Iziet + + + + Quit application + Aizvērt programmu + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + Par &Qt + + + + Show information about Qt + Parādīt informāciju par Qt + + + + &Options... + &Iespējas + + + + Modify configuration options for BitBean + + + + + &Show / Hide + + + + + &Encrypt Wallet... + Š&ifrēt maciņu... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &Izveidot maciņa rezerves kopiju + + + + Backup wallet to another location + Izveidot maciņa rezerves kopiju citur + + + + &Change Passphrase... + &Mainīt paroli + + + + Change the passphrase used for wallet encryption + Mainīt maciņa šifrēšanas paroli + + + + &Unlock Wallet... + + + + + Unlock wallet + Atslēgt maciņu + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Parakstīt &ziņojumu... + + + + &Verify message... + &Pārbaudīt ziņojumu... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + &Debug logs + + + + Open debugging and diagnostic console + Atvērt atkļūdošanas un diagnostikas konsoli + + + + &File + &Fails + + + + &Settings + &Uzstādījumi + + + + &Help + &Palīdzība + + + + Tabs toolbar + Ciļņu rīkjosla + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + + Synchronizing with network... + Sinhronizācija ar tīklu... + + + + ~%n block(s) remaining + + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + - + + %n second(s) ago + + + + + + + + %n minute(s) ago - pred %n minutoupred %n minutamipred %n minutami + + + + + %n hour(s) ago - pred %n hodinoupred %n hodinamipred %n hodinami + + + + + %n day(s) ago - pred %n dňompred %n dňamipred %n dňami + + + + + Up to date - Aktualizovaný + Sinhronizēts Catching up... - Sťahujem... + Sinhronizējos... Last received block was generated %1. - Posledný prijatý blok bol vytvorený %1. + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Táto transakcia je nad veľkostný limit. Stále ju môžete poslať za poplatok %1, ktorý ide uzlom spracujúcim vaše transakcie, čím pomáhate podporovať sieť. Chcete zaplatiť poplatok? + Confirm transaction fee - Potvrďte transakčný poplatok + Sent transaction - Odoslané transakcie + Transakcija nosūtīta Incoming transaction - Prijaté transakcie + Ienākoša transakcija @@ -644,548 +898,495 @@ Amount: %2 Type: %3 Address: %4 - Dátum: %1 -Suma: %2 -Typ: %3 -Adresa: %4 + Datums: %1 +Daudzums: %2 +Tips: %3 +Adrese: %4 + URI handling - URI manipulácia + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - URI nemožno analyzovať! Toto môže byť spôsobené neplatnou BitBean adresu alebo chybnými URI parametrami. + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Peňaženka je <b>zašifrovaná</b> a momentálne <b>odomknutá</b> + Maciņš ir <b>šifrēts</b> un pašlaik <b>atslēgts</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> + Maciņš ir <b>šifrēts</b> un pašlaik <b>slēgts</b> Backup Wallet - Zálohovanie peňaženky + Wallet Data (*.dat) - Dáta peňaženky (*.dat) + Backup Failed - Zálohovanie zlyhalo + There was an error trying to save the wallet data to the new location. - Došlo k chybe pri pokuse o uloženie dát peňaženky do nového umiestnenia. + - + %n second(s) - %n sekunda%n sekúnd%n sekúnd + + + + + %n minute(s) - %n minúta%n minút%n minút + + + + + %n hour(s) - %n hodina%n hodiny%n hodín + + + + + %n day(s) - %n deň%n dni%n dní + + + + + - - Not staking - Nestávkuje sa + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - Došlo k závažnej chybe. BitBean už nemôže pokračovať bezpečne a bude ukončený. + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Výstraha siete + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - Kontrola mincí + + Not staking because wallet is syncing + - - Quantity: - Množstvo: + + Not staking because you don't have mature beans + - - Bytes: - Bajty: + + Not staking + + + + BitcoinGUI - - Amount: - Suma: + Sign &message... + Parakstīt &ziņojumu... - - Priority: - Priorita: + Synchronizing with network... + Sinhronizācija ar tīklu... - - Fee: - Poplatok: + &Overview + &Pārskats - - Low Output: - Nízky výstup: + Show general overview of wallet + Rādīt vispārēju maciņa pārskatu - - no - nie + &Transactions + &Transakcijas - - After Fee: - Po poplatku: + Browse transaction history + Skatīt transakciju vēsturi - - Change: - Zmena: + E&xit + &Iziet - - (un)select all - (ne)označiť všetko + Quit application + Aizvērt programmu - - Tree mode - Stromový režim + About &Qt + Par &Qt - - List mode - Zoznamový režim + Show information about Qt + Parādīt informāciju par Qt - - Amount - Suma + &Options... + &Iespējas - - Label - Menovka + &Encrypt Wallet... + Š&ifrēt maciņu... - - Address - Adresa + &Backup Wallet... + &Izveidot maciņa rezerves kopiju - - Date - Dátum + &Change Passphrase... + &Mainīt paroli - - Confirmations - Potvrdenia + Backup wallet to another location + Izveidot maciņa rezerves kopiju citur - - Confirmed - Potvrdené + Change the passphrase used for wallet encryption + Mainīt maciņa šifrēšanas paroli - - Priority - Priorita + &Debug window + &Debug logs - - Copy address - Kopírovať adresu + Open debugging and diagnostic console + Atvērt atkļūdošanas un diagnostikas konsoli - - Copy label - Kopírovať popis + &Verify message... + &Pārbaudīt ziņojumu... - - - Copy amount - Kopírovať sumu + Wallet + Maciņš - - Copy transaction ID - Kopírovať ID transakcie + &File + &Fails - - Copy quantity - Kopírovať množstvo + &Settings + &Uzstādījumi - - Copy fee - Kopírovať poplatok + &Help + &Palīdzība - - Copy after fee - Kopírovať po poplatku + Tabs toolbar + Ciļņu rīkjosla - - Copy bytes - Kopírovať bajty + [testnet] + [testnet] - - Copy priority - Kopírovať prioritu + Up to date + Sinhronizēts - - Copy low output - Kopírovať nízky výstup + Catching up... + Sinhronizējos... - - Copy change - Kopírovať zmenu + Sent transaction + Transakcija nosūtīta - - highest - najvyššie + Incoming transaction + Ienākoša transakcija - - high - vysoké + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datums: %1 +Daudzums: %2 +Tips: %3 +Adrese: %4 + - - medium-high - stredne vysoké + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Maciņš ir <b>šifrēts</b> un pašlaik <b>atslēgts</b> - - medium - stredné + Wallet is <b>encrypted</b> and currently <b>locked</b> + Maciņš ir <b>šifrēts</b> un pašlaik <b>slēgts</b> + + + ClientModel - - low-medium - stredne nízke + + Network Alert + Tīkla brīdinājums + + + CoinControlDialog - - low - nízke + Amount: + Daudzums: - - lowest - najnižšie + Amount + Daudzums - - DUST - PRACH + Address + Adrese - - yes - áno + Date + Datums - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - Tento popis sčervená, v prípade, že veľkosť transakcie je väčšia ako 10000 bajtov. - - To znamená, že je potrebný poplatok vo výške najmenej %1 za kb. - -Môže sa líšiť +/- 1 bajt za vstup. + Confirmed + Apstiprināts - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - Transakcie s vyššou prioritou sa dostanú s väčšou pravdepodobnosťou do bloku. - -Tento popis sčervenie, ak je priorita menšia ako "stredná". - -To znamená, že je nutný poplatok vo výške aspoň %1 za kb. + Copy address + Kopēt adresi - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - Tento popis sčervenie, ak príjemca dostane sumu menšiu ako %1. - -To znamená, že je potrebný poplatok aspoň %2. - -Sumy nižšie ako 0,546 násobok minimálneho poplatku sú zobrazené ako PRACH. + Copy label + Kopēt nosaukumu - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - Tento popis sčervenie, ak je zmena menšia než %1. - -To znamená, že je potrebný poplatok aspoň %2. + Copy amount + Kopēt daudzumu - - (no label) - (bez popisu) - - - - change from %1 (%2) - zmena od %1 (%2) - - - - (change) - (zmena) + (bez nosaukuma) EditAddressDialog - + Edit Address - Upraviť adresu + Mainīt adrese &Label - &Popis + &Nosaukums The label associated with this address book entry - Popis spojený s touto položkou v adresáry + &Address - &Adresa + &Adrese The address associated with this address book entry. This can only be modified for sending addresses. - Adresa spojená s položkou v tomto adresári. Toto môže byť zmenené iba pre odosielané adresy. + New receiving address - Nová adresa pre prijímanie + Jauna saņemšanas adrese New sending address - Nová adresa pre odoslanie + Jauna nosūtīšanas adrese Edit receiving address - Upraviť adresu pre prijímanie + Mainīt saņemšanas adresi Edit sending address - Upraviť adresu pre odosielanie + Mainīt nosūtīšanas adresi The entered address "%1" is already in the address book. - Zadaná adresa "%1" sa už nachádza v adresári. + Nupat ierakstītā adrese "%1" jau atrodas adrešu grāmatā. The entered address "%1" is not a valid BitBean address. - Zadaná adresa "%1" nie je platnou BitBean adresou. + Could not unlock wallet. - Nepodarilo sa odomknúť peňaženku. + Nav iespējams atslēgt maciņu. New key generation failed. - Generovanie nového kľúča zlyhalo. + Neizdevās ģenerēt jaunu atslēgu. GUIUtil::HelpMessageBox - + BitBean-Qt - BitBean-Qt + version - verzia + Usage: - Použitie: + Lietojums: command-line options - možnosti príkazového riadka + UI options - Možnosti používateľského rozhrania + Set language, for example "de_DE" (default: system locale) - Nastavenie jazyka, napr "de_DE" (predvolené: miestne nastavenie systému) + Start minimized - Spustiť minimalizované + Show splash screen on startup (default: 1) - Zobraziť úvodnú obrazovku pri štarte (predvolené: 1) + OptionsDialog - + Options - Možnosti + Iespējas - + &Main - &Hlavné + &Galvenais - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - Voliteľný transakčný poplatok za kB, ktorý pomáha zaistiť, že vaše transakcie sú spracované rýchlo. Väčšina transakcií je 1 kB. Poplatok 0.01 je odporúčaný. + + Pay transaction &fee + &Maksāt par transakciju - - Pay transaction &fee - Zaplatiť transakčné &poplatky + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - Rezervované množstvo sa nepodieľa na stávkovaní a preto je použiteľné kedykoľvek. + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - Rezerva + Automatically start BitBean after logging in to the system. - Automaticky spustiť BitBean po prihlásení sa do systému. + &Start BitBean on system login - &Spustiť BitBean pri prihlásení do systému + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - Odpojiť blok a databázy z adresami pri vypnutí počítača. To znamená, že môžu byť presunuté do iného adresára dát, ale to spomaľuje vypnutie. Peňaženka je vždy odpojená. + &Detach databases at shutdown - &Odpojiť databázy pri vypnutí + &Network - Sieť + &Tīkls Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - Automaticky otvoriť port klienta BitBean na routeri. To funguje iba vtedy, ak váš router podporuje UPnP a je povolené. + Map port using &UPnP - Mapovať port pomocou &UPnP + Kartēt portu, izmantojot &UPnP Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - Pripojenie k sieti BitBean cez SOCKS proxy server (napr. pri pripojení cez Tor). + &Connect through SOCKS proxy: - &Pripojenie cez SOCKS proxy server: + @@ -1195,280 +1396,356 @@ To znamená, že je potrebný poplatok aspoň %2. IP address of the proxy (e.g. 127.0.0.1) - IP adresa proxy servera (napr. 127.0.0.1) + &Port: - &Port: + &Ports: Port of the proxy (e.g. 9050) - Port proxy (napr. 9050) + Proxy ports (piem. 9050) SOCKS &Version: - Verzia SOCKS: + SOCKS &Versija: SOCKS version of the proxy (e.g. 5) - SOCKS verzia proxy (napr. 5) + proxy SOCKS versija (piem. 5) &Window - Okno + &Logs Show only a tray icon after minimizing the window. - Zobraziť len ikonu na lište po minimalizovaní okna. + Pēc loga minimizācijas rādīt tikai ikonu sistēmas teknē. &Minimize to the tray instead of the taskbar - Minimalizovať na lištu namiesto panelu úloh + &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. - Minimalizovať namiesto ukončenia aplikácie keď sa zatvorí okno. Keď je zvolená táto možnosť, aplikácia sa zatvorí len po zvolení Ukončiť v 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&inimalizovať pri zatvorení + M&inimizēt aizverot &Display - &Displej + &Izskats User Interface &language: - Jazyk používateľského rozhrania: + Lietotāja interfeiss un &valoda: The user interface language can be set here. This setting will take effect after restarting BitBean. - Tu môžete nastaviť jazyk používateľského rozhrania. Toto nastavenie sa prejaví až po reštartovaní BitBean. + &Unit to show amounts in: - &Zobrazovať hodnoty v jednotkách: + &Vienības, kurās attēlot daudzumus: - Choose the default subdivision unit to show in the interface and when sending coins. - Vyberte si predvolené delenie jednotiek zobrazované v rozhraní a pri odosielaní mincí. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - Či chcete zobraziť BitBean adresy v zozname transakcií alebo nie. + + Whether to show bean control features or not. + - &Display addresses in transaction list - &Zobraziť adresy v zozname transakcií + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - Či sa majú zobraziť coin control features alebo nie. + 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 bitkoinus. + + + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - Zobraziť coin &control features (len pre odborníkov!) + &Display addresses in transaction list + &Attēlot adreses transakciju sarakstā - + &OK &OK &Cancel - Zrušiť + &Atcelt &Apply - &Použiť + default - predvolené + pēc noklusēšanas Warning - Upozornenie + This setting will take effect after restarting BitBean. - Toto nastavenie sa prejaví až po reštartovaní BitBean. + The supplied proxy address is invalid. - Zadaná proxy adresa je neplatná. + Norādītā proxy adrese nav derīga. OverviewPage - + Form Forma - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - Zobrazené informácie môžu byť zastaralé. Vaša peňaženka sa automaticky synchronizuje so sieťou BitBean po nadviazaní spojenia, ale tento proces nie je ešte dokončený. + + Bean Vault + - - Stake: - V stávke: + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - Nepotvrdené: + - Wallet - Peňaženka + Maciņš - + Spendable: - Použiteľné: + - + Your current spendable balance - Váš aktuálny použiteľný zostatok + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: - Nezrelé: + Nenobriedušu: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + - Mined balance that has not yet matured - Vyťažený zostatok, ktorý nebol ešte dozretý + Bean Stalk Height: + - - Total: - Celkovo: + + Sprouting Difficulty: + - - Your current total balance - Váš súčasný celkový zostatok + + Bean Weight: + - - <b>Recent transactions</b> - <b>Nedávne transakcie</b> + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Súčet transakcií, ktoré neboli ešte potvrdené, a ešte nezapočítané do aktuálneho zostatku + + <html><head/><body><p>New Transactions</p></body></html> + + + + + Total: + - - Total of coins that was staked, and do not yet count toward the current balance - Súčet mincí, ktoré sú v stávke a ešte neboli započítané do aktuálneho zostatku + <b>Recent transactions</b> + <b>Pēdējās transakcijas</b> - + out of sync - nezosynchronizované + nav sinhronizēts QRCodeDialog - + QR Code Dialog - QR Code Dialóg + Request Payment - Vyžiadať Platbu + Amount: - Čiastka: + Daudzums: Label: - Popis: + Message: - Správa: + &Save As... - &Uložiť ako... + Error encoding URI into QR Code. - Chyba kódovania URI do QR Code. + The entered amount is invalid, please check. - Zadaná suma je neplatná, prosím skontrolujte. + Resulting URI too long, try to reduce the text for label / message. - Výsledná URI príliš dlhá, skúste skrátiť text popisu / správy. + Save QR Code - Uložiť QR Code + PNG Images (*.png) - PNG Obrázky (*.png) + RPCConsole - + Client name - Meno klienta + Klienta vārds @@ -1482,188 +1759,188 @@ To znamená, že je potrebný poplatok aspoň %2. N/A - nie je k dispozícii + N/A Client version - Verzia klienta + Klienta versija &Information - &Informácie + &Informācija Using OpenSSL version - Používa OpenSSL verziu + Startup time - Čas spustenia + Sākuma laiks Network - Sieť + Tīkls Number of connections - Počet pripojení + Savienojumu skaits On testnet - Na testovacej sieti + Block chain - Reťazec blokov + Bloku virkne Current number of blocks - Aktuálny počet blokov + Pašreizējais bloku skaits Estimated total blocks - Očakávaných blokov celkovo + Bloku skaita novērtējums Last block time - Čas posledného bloku + Pēdējā bloka laiks &Open - &Otvoriť + &Atvērt Command-line options - Možnosti príkazového riadka + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - Zobraziť BitBean-Qt nápovedu k získaniu zoznamu pre možnosti príkazového riadku BitBean. + &Show - &Zobraziť + &Console - &Konzola + &Konsole Build date - Dátum zostavenia + Kompilācijas datums BitBean - Debug window - BitBean - Ladiace okno + BitBean Core - Jadro BitBean + Debug log file - Súbor denníka ladenia + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - Otvorte BTestcoin súbor denníku ladenia z aktuálneho adresára dát. To môže trvať niekoľko sekúnd pre veľké súbory denníka. + Clear console - Vymazať konzolu + Notīrīt konsoli Welcome to the BitBean RPC console. - Vitajte v konzole BTestcoin RPC. + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Použite šípky hore a dole pre navigáciu históriou, a <b> Ctrl-L </ b> pre vymazanie obrazovky. + 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. - Zadajte <b>help</b> pre prehľad dostupných príkazov. + Ierakstiet <b>help</b> lai iegūtu pieejamo komandu sarakstu. - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Poslať mince + Send Beans + - Coin Control Features - Coin Control Features + Bean Control Features + Inputs... - Vstupy... + automatically selected - automaticky vybrané + Insufficient funds! - Nedostatok prostriedkov! + Quantity: - Množstvo: + 0 - 0 + Bytes: - Bajtov: + Amount: - Suma: + Daudzums: @@ -1671,386 +1948,472 @@ To znamená, že je potrebný poplatok aspoň %2. 0.00 BC - 123.456 BC {0.00 ?} + Priority: - Priorita: + medium - stredne + Fee: - Poplatok: + Low Output: - Nízky výstup: + no - nie + After Fee: - Po poplatkoch: + Change - Zmeniť + custom change address - vlastná zmena adresy + Send to multiple recipients at once - Poslať viacerým príjemcom naraz + Sūtīt vairākiem saņēmējiem uzreiz Add &Recipient - &Pridať príjemcu + Remove all transaction fields - Odstráňte všetky transakčné polia + Clear &All - Zmazať &všetko + &Notīrīt visu Balance: - Zostatok: + Bilance: 123.456 BC - 123.456 BC + Confirm the send action - Potvrďte odoslanie + Apstiprināt nosūtīšanu S&end - &Odoslať + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Zadajte BitBean adresu (napr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Copy quantity - Kopírovať množstvo + Copy amount - Kopírovať sumu + Kopēt daudzumu Copy fee - Kopírovať poplatok + Copy after fee - Kopírovať po poplatkoch + Copy bytes - Kopírovať bajty + Copy priority - Kopírovať prioritu + Copy low output - Kopírovať nízky výstup + Copy change - Kopírovať zmenu + <b>%1</b> to %2 (%3) - <b>%1</b> do %2 (%3) + - Confirm send coins - Potvrdiť odoslanie mincí + Confirm send beans + Are you sure you want to send %1? - Ste si istý, že chcete poslať %1? + and - a + The recipient address is not valid, please recheck. - Adresa príjemcu je neplatná, overte ju prosím. + The amount to pay must be larger than 0. - Suma na úhradu musí byť väčšia ako 0. + Nosūtāmajai summai jābūt lielākai par 0. The amount exceeds your balance. - Suma je vyššia ako Váš zostatok. + Daudzums pārsniedz pieejamo. The total exceeds your balance when the %1 transaction fee is included. - Celková suma prevyšuje Váš zostatok ak sú započítané aj transakčné poplatky %1. + Kopsumma pārsniedz pieejamo, ja pieskaitīta %1 transakcijas maksa. Duplicate address found, can only send to each address once per send operation. - Objavený duplikát adresy, na každú adresu je možné poslať len raz v jednej odchádzajúcej transakcii. + Atrastas divas vienādas adreses, vienā nosūtīšanas reizē uz katru adresi var sūtīt tikai vienreiz. Error: Transaction creation failed. - Chyba: Vytvorenie transakcie zlyhalo. + - 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: Transakcia bola zamietnutá. To môže nastať, ak niektoré z mincí vo vašej peňaženke sa už použili, ako napríklad, ak ste použili kópiu wallet.dat a mince boli použité v kópii, ale neboli označené tu ako použité. + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - UPOZORNENIE: Neplatná BitBean adresa + (no label) - (bez popisu) + (bez nosaukuma) WARNING: unknown change address - UPOZORNENIE: Neznáma zmena adresy + - SendCoinsEntry + SendBeansEntry - + Form - Formulár + Forma - + A&mount: - Su&ma: + Apjo&ms Pay &To: - Zapla&tiť: + &Saņēmējs: - + 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 + Lai pievienotu adresi adrešu grāmatai, tai jādod nosaukums &Label: - &Popis: + &Nosaukums: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Adresa pre poslanie platby (napr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Choose address from address book - Vybrať adresu z adresára + Alt+A - Alt+A + Alt+A Paste address from clipboard - Vložiť adresu zo schránky + ielīmēt adresi no starpliktuves Alt+P - Alt+P + Alt+P Remove this recipient - Odstrániť tohto príjemcu + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Zadajte BitBean adresu (napr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + - SignVerifyMessageDialog + SendCoinsDialog - - Signatures - Sign / Verify a Message - Podpisy - Prihlásiť sa / Overiť správu + Send Coins + Sūtīt bitkoinus - - - &Sign Message - &Podpísať správu + Amount: + Daudzums: - - 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 svojimi adresami a dokázať tak, že ich 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. Podpisujete iba plne detailné vyhlásenia s ktorými súhlasíte. + Send to multiple recipients at once + Sūtīt vairākiem saņēmējiem uzreiz - - The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Adresa na podpísanie správy (napr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Clear &All + &Notīrīt visu - - - Choose an address from the address book - Vyberte adresu z adresára + Balance: + Bilance: - - - Alt+A - Alt+A + Confirm the send action + Apstiprināt nosūtīšanu - - Paste address from clipboard - Vložiť adresu zo schránky + Copy amount + Kopēt daudzumu - - Alt+P - Alt+P + Confirm send coins + Apstiprināt bitkoinu sūtīšanu - - Enter the message you want to sign here - Sem vložte správu ktorú chcete podpísať + The amount to pay must be larger than 0. + Nosūtāmajai summai jābūt lielākai par 0. - - Copy the current signature to the system clipboard - Skopírujte aktuálny podpis do schránky + 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. + + + (no label) + (bez nosaukuma) + + + + SendCoinsEntry + + A&mount: + Apjo&ms + + + Pay &To: + &Saņēmējs: + + + 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: + + + Alt+A + Alt+A + + + Paste address from clipboard + ielīmēt adresi no starpliktuves + + + Alt+P + Alt+P + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + + Choose an address from the address book + + + + + + 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 + + + + + Copy the current signature to the system clipboard + Sign the message to prove you own this BitBean address - Podpísať správu ako dôkaz, že vlastníte túto BitBean adresu + Reset all sign message fields - Obnoviť všetky polia podpísania správy + Clear &All - Zmazať &všetko + &Notīrīt visu &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. - Zadajte podpisovú adresu správy (uistite sa že presne kopírujete konce riadkov, medzier, tabulátorov, atď.) a podpis nižšie pre overenie správy. Dávajte pozor, aby ste nedali viac do podpisu, než to, čo je v podpísanej správe samotnej, aby ste sa vyhli oklamaniu útokom typu man-in-the-middle. + The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Adresa správy bola podpísaná (napr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Verify the message to ensure it was signed with the specified BitBean address - Overte správu, aby ste sa ubezpečili, že bola podpísaná s danou BitBean adresou + Reset all verify message fields - Obnoviť všetky polia pre overenie správy + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Zadajte BitBean adresu (napr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Click "Sign Message" to generate signature - Kliknite "Podpísať správu" pre získanie podpisu + Enter BitBean signature - Zadajte BitBean podpis + The entered address is invalid. - Zadaná adresa je neplatná. + @@ -2058,59 +2421,59 @@ To znamená, že je potrebný poplatok aspoň %2. Please check the address and try again. - Prosím skontrolujte adresu a skúste znova. + The entered address does not refer to a key. - Zadaná adresa sa nevzťahuje na kľúč. + Wallet unlock was cancelled. - Odomknutie peňaženky bolo zrušené. + Private key for the entered address is not available. - Súkromný kľúč k zadanej adrese nie je k dispozícii. + Message signing failed. - Podpísanie správy zlyhalo. + Message signed. - Správa podpísaná. + The signature could not be decoded. - Podpis nie je možné dekódovať. + Please check the signature and try again. - Prosím skontrolujte podpis a skúste znova. + The signature did not match the message digest. - Podpis nezodpovedá súhrnu správy. + Message verification failed. - Overenie správy zlyhalo. + Message verified. - Správa overená. + @@ -2118,81 +2481,89 @@ To znamená, že je potrebný poplatok aspoň %2. Open until %1 - Otvorené do %1 + Atvērts līdz %1 Open for %n block(s) - Otvoriť pre %n blokOtvoriť pre %n blokovOtvoriť pre %n blokov + + + + + conflicted - v rozpore + %1/offline - %1/offline + %1/unconfirmed - %1/nepotvrdené + %1/neapstiprinātas %1 confirmations - %1 potvrdení + %1 apstiprinājumu Status - Stav + , broadcast through %n node(s) - , vysielanie cez %n uzol, vysielanie cez %n uzlov, vysielanie cez %n uzlov + + + + + Date - Dátum + Datums Source - Zdroj + Generated - Vygenerované + From - Od + To - Pre + own address - vlastná adresa + label - popis + @@ -2201,17 +2572,21 @@ To znamená, že je potrebný poplatok aspoň %2. Credit - Kredit + matures in %n more block(s) - dozreje o ďalší %n blokdozreje o ďalších %n blokovdozreje o ďalších %n blokov + + + + + not accepted - neprijaté + @@ -2219,90 +2594,90 @@ To znamená, že je potrebný poplatok aspoň %2. Debit - Debet + Transaction fee - Transakčný poplatok + Net amount - Čiastka netto + Message - Správa + Comment - Komentár + Transaction ID - ID transakcie + - Generated coins must mature 110 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. - Generované mince musia zrieť 510 blokov pred tým, než môžu byť použité. Keď sa vygeneroval tento blok, bol vysielaný do siete, kde má byť pridaný do reťazca blokov. Ak sa nepodarí dostať ho do reťazca blokov, jeho stav sa zmení na "Neprijatý", a nebude použiteľný. Toto sa môže občas stať, ak iný uzol generuje blok v priebehu niekoľkých sekúnd pred Vami. + Generated beans must mature 110 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 + Daudzums true - pravda + false - nepravda + , has not been successfully broadcast yet - , ešte nebola úspešne odoslaná + , vēl nav veiksmīgi izziņots unknown - neznámy + nav zināms TransactionDescDialog - + Transaction details - Detaily transakcie + Transakcijas detaļas This pane shows a detailed description of the transaction - Táto časť obrazovky zobrazuje detailný popis transakcie + Šis panelis parāda transakcijas detaļas @@ -2310,1002 +2685,1207 @@ To znamená, že je potrebný poplatok aspoň %2. Date - Dátum + Datums Type - Typ + Tips Address - Adresa + Adrese Amount - Hodnota + Daudzums Open until %1 - Otvorené do %1 + Atvērts līdz %1 Confirmed (%1 confirmations) - Potvrdené (%1 potvrdení) + Apstiprināts (%1 apstiprinājumu) Open for %n more block(s) - Otvoriť pre %n ďalší blokOtvoriť pre %n ďalšie blokyOtvoriť pre %n ďalšie bloky + + + + + Offline - Offline + Unconfirmed - Nepotvrdené + Confirming (%1 of %2 recommended confirmations) - Potvrdzujem (%1 z %2 doporučených potvrdení) + Conflicted - V rozpore + Immature (%1 confirmations, will be available after %2) - Nezrelé (%1 potvrdení, bude k dispozícii po %2) + This block was not received by any other nodes and will probably not be accepted! - Ten blok nebol prijatý žiadnym iným uzlom a pravdepodobne nebude akceptovaný! + Neviens cits mezgls šo bloku nav saņēmis un droši vien netiks akceptēts! Generated but not accepted - Vypočítané ale neakceptované + Ģenerēts, taču nav akceptēts Received with - Prijaté s + Saņemts ar Received from - Prijaté od: + Saņemts no Sent to - Odoslané na + Nosūtīts Payment to yourself - Platba sebe samému + Maksājums sev + SPROUT + + + Mined - Vyťažené + Atrasts (n/a) - (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. + + + + 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 + + + + + Edit label + Mainīt nosaukumu + + + + Show transaction details + Rādīt transakcijas detaļas + + + + Export Transaction Data + + + + + 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 + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + Diapazons: + + + + to + uz + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + Izmantot opciju %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Kļūda + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Konfigurācijas failā jāuzstāda rpcpassword=<password>: +%s +Ja fails neeksistē, izveidojiet to ar atļauju lasīšanai tikai īpašniekam. + + + + BitBean version + + + + + Usage: + Lietojums: + + + + Send command to -server or BitBeand + + + + + List commands + Komandu saraksts + + + + Get help for a command + Palīdzība par komandu + + + + BitBean + + + + + Options: + Iespējas: + + + + This help message + Šis palīdzības paziņojums + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Norādiet datu direktoriju + + + + Specify wallet file (within data directory) + + + + + Set database cache size in megabytes (default: 25) + Uzstādiet datu bāzes bufera izmēru megabaitos (pēc noklusēšanas: 25) + + + + Set database disk log size in megabytes (default: 100) + - - Transaction status. Hover over this field to show number of confirmations. - Status transakcie. Presuňte myš nad toto pole a zobrazí sa počet potvrdení. + + Specify connection timeout in milliseconds (default: 5000) + - - Date and time that the transaction was received. - Dátum a čas prijatia transakcie. + + Connect through socks proxy + - - Type of transaction. - Typ transakcie. + + Select the version of socks proxy to use (4-5, default: 5) + - - Destination address of transaction. - Cieľová adresa transakcie. + + Use proxy to reach tor hidden services (default: same as -proxy) + - - Amount removed from or added to balance. - Suma pridaná alebo odobraná k zostatku. + + Allow DNS lookups for -addnode, -seednode and -connect + Atļaut DNS uzmeklēšanu priekš -addnode, -seednode un -connect - - - TransactionView - - - All - Všetko + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - Today - Dnes + + Maintain at most <n> connections to peers (default: 125) + Uzturēt līdz <n> savienojumiem ar citiem mezgliem(pēc noklusēšanas: 125) - This week - Tento týždeň + Add a node to connect to and attempt to keep the connection open + Pievienot mezglu, kam pievienoties un turēt savienojumu atvērtu - This month - Tento mesiac + Connect only to the specified node(s) + - Last month - Minulý mesiac + Connect to a node to retrieve peer addresses, and disconnect + Pievienoties mezglam, lai iegūtu citu mezglu adreses, un atvienoties - This year - Tento rok + Specify your own public address + Norādiet savu publisko adresi - Range... - Rozsah... + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Received with - Prijaté s + + Discover own IP address (default: 1 when listening and no -externalip) + - - Sent to - Odoslané na + + Find peers using internet relay chat (default: 0) + - - To yourself - Samému sebe + + Accept connections from outside (default: 1 if no -proxy or -connect) + - Mined - Vyťažené + Bind to given address. Use [host]:port notation for IPv6 + - Other - Iné + Find peers using DNS lookup (default: 1) + - - Enter address or label to search - Vložte adresu alebo popis pre vyhľadávanie + + Stake your beans to support network and gain reward (default: 1) + - - Min amount - Min. množstvo + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Copy address - Kopírovať adresu + + Sync checkpoints policy (default: strict) + - Copy label - Kopírovať popis + Threshold for disconnecting misbehaving peers (default: 100) + Slieksnis pārkāpējmezglu atvienošanai (pēc noklusēšanas: 100) - Copy amount - Kopírovať sumu + 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) - - Copy transaction ID - Kopírovať ID transakcie + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - Edit label - Editovať popis + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - Show transaction details - Zobraziť podrobnosti transakcie + Use UPnP to map the listening port (default: 1 when listening) + - - Export Transaction Data - Export transakčných údajov + + Use UPnP to map the listening port (default: 0) + - Comma separated file (*.csv) - Čiarkou oddelovaný súbor (*.csv) + Detach block and address databases. Increases shutdown time (default: 0) + - - Confirmed - Potvrdené + + Fee per KB to add to transactions you send + - Date - Dátum + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Type - Typ + + Accept command line and JSON-RPC commands + Pieņemt komandrindas un JSON-RPC komandas - Label - Popis + Run in the background as a daemon and accept commands + Darbināt fonā kā servisu un pieņemt komandas - Address - Adresa + Use the test network + Izmantot testa tīklu - Amount - Suma + Output extra debugging information. Implies all other -debug* options + - ID - ID + Output extra network debugging information + - - Error exporting - Chyba pri exporte + + Prepend debug output with timestamp + - - Could not write to file %1. - Nemožno zapisovať do súboru %1. + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Range: - Rozsah: + + Send trace/debug info to console instead of debug.log file + Debug/trace informāciju izvadīt konsolē, nevis debug.log failā - - to - do + + Send trace/debug info to debugger + - - - WalletModel - - Sending... - Posielam... + + Username for JSON-RPC connections + JSON-RPC savienojumu lietotājvārds - - - bitcoin-core - - BitBean version - BitBean verzia + + Password for JSON-RPC connections + JSON-RPC savienojumu parole - Usage: - Použitie: + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - - Send command to -server or BitBeand - Pošli príkaz na -server alebo BitBeand + + Allow JSON-RPC connections from specified IP address + Atļaut JSON-RPC savienojumus no norādītās IP adreses - List commands - Zoznam príkazov + 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) - Get help for a command - Získať pomoc pre príkaz + 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) - - Options: - Možnosti: + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + - - Specify configuration file (default: BitBean.conf) - Zadajte konfiguračný súbor (predvolené: BitBean.conf) + + Require a confirmations for change (default: 0) + - Specify pid file (default: BitBeand.pid) - Zadajte pid súbor (predvolené: BitBeand.pid) + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - Specify wallet file (within data directory) - Zadajte súbor peňaženky (v rámci dátového adresára) + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - - Specify data directory - Zadajte priečinok s dátami + + Upgrade wallet to latest format + Atjaunot maciņa formātu uz jaunāko - - Set database cache size in megabytes (default: 25) - Nastaviť veľkosť vyrovnávajúcej pamäte pre databázu v megabytoch (predvolené: 25) + + Set key pool size to <n> (default: 100) + Uzstādīt atslēgu bufera izmēru uz <n> (pēc noklusēšanas: 100) - Set database disk log size in megabytes (default: 100) - Nastaviť veľkosť databázového denníka na disku v MB (predvolené: 100) + Rescan the block chain for missing wallet transactions + Atkārtoti skanēt bloku virkni, meklējot trūkstošās maciņa transakcijas - - Listen for connections on <port> (default: 15714 or testnet: 25714) - Počúvať pripojenia na <port> (predvolené: 15714 alebo testovacia sieť: 25714) + + Attempt to recover private keys from a corrupt wallet.dat + - Maintain at most <n> connections to peers (default: 125) - Udržiavať maximálne <n> spojení (predvolené: 125) + How many blocks to check at startup (default: 2500, 0 = all) + - - Connect to a node to retrieve peer addresses, and disconnect - Pre načítanie peer adresy sa pripojte k uzlu, a odpojte + + How thorough the block verification is (0-6, default: 1) + - Specify your own public address - Určite vašu vlastnú verejnú adresu + Imports blocks from external blk000?.dat file + - - Bind to given address. Use [host]:port notation for IPv6 - Spojiť do danej adresy. Použite [host]:port zápis pre IPv6 + + Block creation options: + - - Stake your coins to support network and gain reward (default: 1) - Nechajte stávkovať vaše mince pre podporu siete a získajte odmenu (predvolené: 1) + + Set minimum block size in bytes (default: 0) + - - Threshold for disconnecting misbehaving peers (default: 100) - Hranica pre odpojenie zle sa správajúcich peerov (predvolené: 100) + + Set maximum block size in bytes (default: 250000) + - 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) + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - Pri nastavovaní portu RPC %u pre počúvanie na IPv4 došlo k chybe: %s + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - - Detach block and address databases. Increases shutdown time (default: 0) - Odpojiť blok a databázy adries. Zvyšuje vypínací čas (predvolené: 0) + + Use OpenSSL (https) for JSON-RPC connections + JSON-RPC savienojumiem izmantot OpenSSL (https) - - 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: Transakcia bola zamietnutá. To môže nastať, ak niektoré z mincí vo vašej peňaženke sa už použili, ako napríklad, ak ste použili kópiu wallet.dat a mince boli použité v kópii, ale neboli označené ako použité tu. + + Server certificate file (default: server.cert) + Servera sertifikāta fails (pēc noklusēšanas: server.cert) - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - Chyba: Táto operácia vyžaduje transakčný poplatok vo výške aspoň %s, pretože jeho množstvo, zložitosť, alebo použitím nedávno prijatých finančných prostriedkov + + Server private key (default: server.pem) + Servera privātā atslēga (pēc noklusēšanas: server.pem) - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - Počúvajte pre JSON-RPC spojenie na <port> (predvolené: 15715 alebo testovaciasieť: 25715) + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Accept command line and JSON-RPC commands - Prijímať príkazy z príkazového riadku a JSON-RPC + + Invalid amount for -paytxfee=<amount>: '%s' + Nederīgs daudzums priekš -paytxfree=<amount>: '%s' - - Error: Transaction creation failed - Chyba: Vytvorenie transakcie zlyhalo + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - Error: Wallet locked, unable to create transaction - Chyba: Peňaženka je zamknutá, nie je možné vytvoriť transakciu + + Invalid amount for -mininput=<amount>: '%s' + - - Importing blockchain data file. - Importovanie dátového súboru reťazca blokov. + + Wallet %s resides outside data directory %s. + - Importing bootstrap blockchain data file. - Import zavádzacej časti blockchain dátového súbora. + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Run in the background as a daemon and accept commands - Bežať na pozadí ako démon a prijímať príkazy + + Verifying database integrity... + - Use the test network - Použiť testovaciu sieť + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Accept connections from outside (default: 1 if no -proxy or -connect) - Prijímať pripojenie z vonka (predvolené: 1, ak nie -proxy alebo -connect) + + 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. + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - Pri nastavovaní portu RPC %u pre počúvanie na IPv6, spadne späť do IPv4 došlo k chybe: %s + + wallet.dat corrupt, salvage failed + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - Chyba pri inicializácii databázy prostredie %s! Ak chcete obnoviť, ZÁLOHUJTE TENTO ADRESÁR, potom všetko z neho odstránte okrem wallet.dat. + + Unknown -socks proxy version requested: %i + Pieprasīta nezināma -socks proxy versija: %i - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - Nastavte maximálnu veľkosť high-priority/low-fee transakcií v bajtoch (predvolené: 27000) + + Unknown network specified in -onlynet: '%s' + -onlynet komandā norādīts nepazīstams tīkls: '%s' - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - Upozornenie: -paytxfee je nastavené veľmi vysoko. Toto sú transakčné poplatky ktoré zaplatíte ak odošlete transakciu. + + Invalid -proxy address: '%s' + Nederīga -proxy adrese: '%s' - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - Upozornenie: Skontrolujte, že dátum a čas počítača sú správne! Ak je Váš čas nesprávny BitBean nebude pracovať správne. + + Invalid -tor address: '%s' + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - Upozornenie: Chyba pri čítaní wallet.dat! Všetky kľúče načítané správne, ale transakčné dáta alebo položky adresára môže chýbať alebo byť nesprávne. + + Cannot resolve -bind address: '%s' + Nevar uzmeklēt -bind adresi: '%s' - - 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. - Upozornenie: wallet.dat poškodený, údaje zachránené! Pôvodný wallet.dat bol uložený ako wallet.{timestamp}.bak v %s; ak váš zostatok alebo transakcie nie sú správne, mali by ste obnoviť zo zálohy. + + Failed to listen on any port. Use -listen=0 if you want this. + - - Attempt to recover private keys from a corrupt wallet.dat - Pokus obnoviť súkromné kľúče z poškodeného wallet.dat + + Cannot resolve -externalip address: '%s' + Nevar atrisināt -externalip adresi: '%s' - - Block creation options: - Voľby vytvorenia bloku: + + Invalid amount for -reservebalance=<amount> + - - Connect only to the specified node(s) - Pripojiť sa len k určenému uzlu(om) + + Unable to sign checkpoint, wrong checkpointkey? + + - - Discover own IP address (default: 1 when listening and no -externalip) - Objavte vlastnú IP adresa (predvolené: 1 pri počúvaní a nie -externalip) + + Loading block index... + Ielādē bloku indeksu... - - Failed to listen on any port. Use -listen=0 if you want this. - Nepodarilo sa počúvať žiadnom porte. Použite -listen=0 ak to chcete. + + Error loading blkindex.dat + - - Find peers using DNS lookup (default: 1) - Nájsť peerov pomocou vyhľadávania DNS (predvolené: 1) + + Loading wallet... + Ielādē maciņu... - - Sync checkpoints policy (default: strict) - Sync checkpoints policy (predvolené: strict) + + Error loading wallet.dat: Wallet corrupted + Nevar ielādēt wallet.dat: maciņš bojāts - - Invalid -tor address: '%s' - Neplatná -tor adresa: '%s' + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - - Invalid amount for -reservebalance=<amount> - Neplatná suma pre -reservebalance=<množstvo> + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Maximum pre-pripojenie prijímacej vyrovnávacej pamäti, <n>*1000 bajtov (predvolené: 5000) + + Wallet needed to be rewritten: restart BitBean to complete + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - Maximum pre-pripojenie posielacej vyrovnávacej pamäti, <n>*1000 bajtov (predvolené: 1000) + Error loading wallet.dat + Kļūda ielādējot wallet.dat - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Pripojiť len k uzlom siete <net> (IPv4, IPv6 alebo Tor) + + Cannot downgrade wallet + Nevar maciņa formātu padarīt vecāku - - Output extra debugging information. Implies all other -debug* options - Výstupné ďalšie informácie o ladení. Znamená všetky -debug* možnosti + + Cannot initialize keypool + - Output extra network debugging information - Výstupné ďalšie sieťové informácie o ladení + Cannot write default address + Nevar ierakstīt adresi pēc noklusēšanas - Prepend debug output with timestamp - Pred debug výstup s časovou pečiatkou + Rescanning... + Skanēju no jauna... - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL možnosť: (pozrite Bitcoin Wiki pre návod na nastavenie SSL) + + Importing blockchain data file. + - - Select the version of socks proxy to use (4-5, default: 5) - Vyberte verziu SOCKS proxy pre používanie (4-5, predvolené: 5) + + Importing bootstrap blockchain data file. + - - Send trace/debug info to console instead of debug.log file - Odoslať trace/debug informácie na konzolu namiesto debug.info žurnálu + + Loading addresses... + Ielādē adreses... - Send trace/debug info to debugger - Poslať stopy/ladiace informácie do debuggera + Error: could not start node + - - Set maximum block size in bytes (default: 250000) - Nastavte maximálnu veľkosť bloku v bajtoch (predvolené: 250000) + + Done loading + Ielāde pabeigta - - Set minimum block size in bytes (default: 0) - Nastavte minimálnu veľkosť bloku v bajtoch (predvolené: 0) + + Unable to bind to %s on this computer. BitBean is probably already running. + - - Shrink debug.log file on client startup (default: 1 when no -debug) - Stlačiť debug.log súbor na spustenie klienta (predvolené: 1, keď nie -debug) + + 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) - - Specify connection timeout in milliseconds (default: 5000) - Určiť aut spojenia v milisekundách (predvolené: 5000) + + Error: Wallet locked, unable to create transaction + - - Unable to sign checkpoint, wrong checkpointkey? - - Nemožno podpísať kontrolný bod, zlý checkpointkey? - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Use UPnP to map the listening port (default: 0) - Skúsiť použiť UPnP pre mapovanie počúvajúceho portu (default: 0) + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - 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) + + Error: Transaction creation failed + - - Use proxy to reach tor hidden services (default: same as -proxy) - Použiť proxy server k získaniu Tor skrytých služieb (predvolené: rovnaká ako -proxy) + + Sending... + - - Username for JSON-RPC connections - Užívateľské meno pre JSON-RPC spojenia + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Verifying database integrity... - Overenie integrity databázy ... + + Invalid amount + Nederīgs daudzums - - WARNING: syncronized checkpoint violation detected, but skipped! - UPOZORNENIE: detekovaný synchronizovaný porušený checkpoint, ale preskočený! + + Insufficient funds + Nepietiek bitkoinu - Warning: Disk space is low! - Upozornenie: Nedostatok miesta na disku! + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - + Warning: This version is obsolete, upgrade required! - Upozornenie: Táto verzia je zastaraná, vyžaduje sa aktualizácia! + - - wallet.dat corrupt, salvage failed - wallet.dat je poškodený, záchrana zlyhala + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Password for JSON-RPC connections - Heslo pre JSON-rPC spojenia + + Warning: Disk space is low! + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - %s, musíte nastaviť rpcpassword v konfiguračnom súbore: - %s -Je odporúčané použiť nasledujúce náhodné heslo: -rpcuser=BitBeanrpc -rpcpassword=%s -(Nemusíte si pamätať toto heslo) -Užívateľské meno a heslo nesmú byť rovnaké. -Ak súbor neexistuje, vytvorte ho s oprávneniami súborov vlastníkov iba na čítatanie. -Odporúča sa tiež nastaviť alertnotify, takže budete upozornení na problémy; -napríklad: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Find peers using internet relay chat (default: 0) - Nájsť peerov pomocou Internet Relay Chat (predvolené: 1) {0)?} + Usage: + Lietojums: - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - Synchronizácia času s ostatnými uzlami. Zakázať ak čas na vašom systéme je presný, napr synchronizáciu s NTP (predvolené: 1) + List commands + Komandu saraksts - - When creating transactions, ignore inputs with value less than this (default: 0.01) - Pri vytváraní transakcií, ignorovať vstupy s hodnotou nižšou než táto (predvolené: 0.01) + Get help for a command + Palīdzība par komandu - - Allow JSON-RPC connections from specified IP address - Povoliť JSON-RPC spojenia z určenej IP adresy. + Options: + Iespējas: - - 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) + Specify data directory + Norādiet datu direktoriju - - 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) + Set database cache size in megabytes (default: 25) + Uzstādiet datu bāzes bufera izmēru megabaitos (pēc noklusēšanas: 25) - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Spustiť príkaz ak sa zmení transakcia v peňaženke (%s v cmd sa nahrádza TxID) + Maintain at most <n> connections to peers (default: 125) + Uzturēt līdz <n> savienojumiem ar citiem mezgliem(pēc noklusēšanas: 125) - - Require a confirmations for change (default: 0) - Požadovať potvrdenie pre zmenu (predvolené: 0) + Connect to a node to retrieve peer addresses, and disconnect + Pievienoties mezglam, lai iegūtu citu mezglu adreses, un atvienoties - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - Presadzovať transakčné skripty k používaniu kanonických PUSH operátorov (predvolené: 1) + Specify your own public address + Norādiet savu publisko adresi - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - Spustiť príkaz, keď je prijaté príslušné upozornenie (%s v cmd je nahradený správou) + Threshold for disconnecting misbehaving peers (default: 100) + Slieksnis pārkāpējmezglu atvienošanai (pēc noklusēšanas: 100) - - Upgrade wallet to latest format - Aktualizuj peňaženku na najnovší formát. + 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) - - Set key pool size to <n> (default: 100) - Nastaviť zásobu adries na <n> (predvolené: 100) + Accept command line and JSON-RPC commands + Pieņemt komandrindas un JSON-RPC komandas - - Rescan the block chain for missing wallet transactions - Znovu skenovať reťaz blokov pre chýbajúce transakcie + Run in the background as a daemon and accept commands + Darbināt fonā kā servisu un pieņemt komandas - - How many blocks to check at startup (default: 2500, 0 = all) - Koľko blokov na kontrolu pri štarte (predvolené: 2500, 0 = všetky) + Use the test network + Izmantot testa tīklu - - How thorough the block verification is (0-6, default: 1) - Ako dôkladné overenie bloku je (0-6, predvolené: 1) + Send trace/debug info to console instead of debug.log file + Debug/trace informāciju izvadīt konsolē, nevis debug.log failā - - Imports blocks from external blk000?.dat file - Importovať bloky z externého blk000?.dat súbora + Username for JSON-RPC connections + JSON-RPC savienojumu lietotājvārds - - Use OpenSSL (https) for JSON-RPC connections - Použiť OpenSSL (https) pre JSON-RPC spojenia + Password for JSON-RPC connections + JSON-RPC savienojumu parole - - Server certificate file (default: server.cert) - Súbor s certifikátom servra (predvolené: server.cert) + Allow JSON-RPC connections from specified IP address + Atļaut JSON-RPC savienojumus no norādītās IP adreses - - Server private key (default: server.pem) - Súkromný kľúč servra (predvolené: server.pem) + 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) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Akceptovateľné ciphers (predvolené: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + 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) - - Error: Wallet unlocked for staking only, unable to create transaction. - Chyba: Peňaženka odomknuté len pre stávkovanie, nemožné vytvoriť transakciu. + Upgrade wallet to latest format + Atjaunot maciņa formātu uz jaunāko - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - UPOZORNENIE: Neplatný checkpoint nájdený! Uvedené transakcie nemusia byť správne! Možno budete musieť upgradovať, alebo upozorniť vývojárov. + Set key pool size to <n> (default: 100) + Uzstādīt atslēgu bufera izmēru uz <n> (pēc noklusēšanas: 100) - - This help message - Táto pomocná správa + Rescan the block chain for missing wallet transactions + Atkārtoti skanēt bloku virkni, meklējot trūkstošās maciņa transakcijas - - Wallet %s resides outside data directory %s. - Peňaženka %s bydlisko mimo dátový adresár %s. + Use OpenSSL (https) for JSON-RPC connections + JSON-RPC savienojumiem izmantot OpenSSL (https) - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - Nemožno získať zámok na dátový adresár %s. BitBean už pravdepodobne beží. + Server certificate file (default: server.cert) + Servera sertifikāta fails (pēc noklusēšanas: server.cert) - - BitBean - BitBean + Server private key (default: server.pem) + Servera privātā atslēga (pēc noklusēšanas: server.pem) - - Unable to bind to %s on this computer (bind returned error %d, %s) - Nemôžem sa pripojiť k %s na tomto počítači (bind vrátil chybu %d, %s) + This help message + Šis palīdzības paziņojums - - Connect through socks proxy - Pripojenie cez SOCKS proxy + 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 - Povoliť vyhľadávanie DNS pre pridanie nódy a spojenie + Atļaut DNS uzmeklēšanu priekš -addnode, -seednode un -connect - Loading addresses... - Načítavanie adries... - - - - Error loading blkindex.dat - Chyba pri načítaní blkindex.dat + Ielādē adreses... - 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 BitBean - Chyba pri načítaní wallet.dat: Peňaženka vyžaduje novšiu verziu BitBean - - - - Wallet needed to be rewritten: restart BitBean to complete - Peňaženka potrebuje byť prepísaná: reštartujte BitBean k dokončeniu + Nevar ielādēt wallet.dat: maciņš bojāts - Error loading wallet.dat - Chyba načítania wallet.dat + Kļūda ielādējot wallet.dat - Invalid -proxy address: '%s' - Neplatná adresa proxy: '%s' + Nederīga -proxy adrese: '%s' - Unknown network specified in -onlynet: '%s' - Neznámy siete je uvedené v -onlynet: '%s' + -onlynet komandā norādīts nepazīstams tīkls: '%s' - Unknown -socks proxy version requested: %i - Neznáma požadovaná SOCKS proxy verzia:% i + Pieprasīta nezināma -socks proxy versija: %i - Cannot resolve -bind address: '%s' - Nemožno rozložiť -bind adresu: '%s' + Nevar uzmeklēt -bind adresi: '%s' - Cannot resolve -externalip address: '%s' - Nemožno rozložiť -externalip adresu: '%s' + Nevar atrisināt -externalip adresi: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Neplatná suma pre -paytxfee=<amount>: '%s' - - - - Error: could not start node - Chyba: nemožno spustiť uzol - - - - Sending... - Posielam... + Nederīgs daudzums priekš -paytxfree=<amount>: '%s' - Invalid amount - Neplatná suma + Nederīgs daudzums - Insufficient funds - Nedostatok prostriedkov + Nepietiek bitkoinu - Loading block index... - Načítavanie zoznamu blokov... + Ielādē bloku indeksu... - 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. BitBean is probably already running. - Nemôžem sa pripojiť na %s na tomto počítači. BitBean je pravdepodobne už beží. - - - - Fee per KB to add to transactions you send - Poplatok za KB pridať do transakcií, ktoré odosielate - - - - Invalid amount for -mininput=<amount>: '%s' - Neplatná suma pre -mininput=<amount>: '%s' + Pievienot mezglu, kam pievienoties un turēt savienojumu atvērtu - Loading wallet... - Načítavam peňaženku... + Ielādē maciņu... - Cannot downgrade wallet - Nie je možné prejsť na nižšiu verziu peňaženky - - - - Cannot initialize keypool - Nemožno inicializovať keypool + Nevar maciņa formātu padarīt vecāku - Cannot write default address - Nie je možné zapísať predvolenú adresu. + Nevar ierakstīt adresi pēc noklusēšanas - Rescanning... - Nové prehľadávanie... + Skanēju no jauna... - Done loading - Dokončené načítavanie + Ielāde pabeigta - To use the %s option - Použiť %s možnosť. + Izmantot opciju %s - Error - Chyba + 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. - Musíš nastaviť rpcpassword=<heslo> v konfiguračnom súbore: + Konfigurācijas failā jāuzstāda rpcpassword=<password>: %s -Ak súbor neexistuje, vytvorte ho s oprávnením pre čítanie len vlastníkom (owner-readable-only) +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.qm b/src/qt/locale/bitbean_ms_MY.qm similarity index 58% rename from src/qt/locale/bitcoin_ms_MY.qm rename to src/qt/locale/bitbean_ms_MY.qm index 22d0346..93e9d8c 100644 Binary files a/src/qt/locale/bitcoin_ms_MY.qm and b/src/qt/locale/bitbean_ms_MY.qm differ diff --git a/src/qt/locale/bitcoin_ms_MY.ts b/src/qt/locale/bitbean_ms_MY.ts similarity index 61% rename from src/qt/locale/bitcoin_ms_MY.ts rename to src/qt/locale/bitbean_ms_MY.ts index bd64467..147d8fb 100644 --- a/src/qt/locale/bitcoin_ms_MY.ts +++ b/src/qt/locale/bitbean_ms_MY.ts @@ -1,120 +1,123 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + Double-click to edit address or label Klik dua kali untuk mengubah alamat atau label - + Create a new address Cipta alamat baru - + Copy the currently selected address to the system clipboard Salin alamat terpilih ke dalam sistem papan klip - + &New Address Alamat baru - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete &Padam Copy &Label - + &Edit - + Export Address Book Data - + @@ -124,12 +127,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -137,7 +140,7 @@ This product includes software developed by the OpenSSL Project for use in the O Label - + @@ -147,849 +150,887 @@ This product includes software developed by the OpenSSL Project for use in the O (no label) - + AskPassphraseDialog - + Passphrase Dialog - + - + Enter passphrase Kata laluan - + New passphrase Kata laluan baru - + Repeat new passphrase Ulang kata laluan baru - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + 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 COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + Wallet encrypted - - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins 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. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - + + Bean Control + - - &Overview - + + Quantity: + - - Show general overview of wallet - + + Bytes: + - - &Transactions - + + Amount: + - - Browse transaction history - + + Priority: + - - &Address Book - Buku Alamat + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - + + Tree mode + - - Quit application - + + List mode + - - Show information about BitBean - + + Amount + - - About &Qt - + + Label + - - Show information about Qt - + + Address + Alamat - - &Options... - Pilihan + + Date + - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - + Confirmed + - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - + + DUST + - - &Settings - + + yes + - - &Help - + + no + - - Tabs toolbar - + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + - - Not staking because wallet is locked - + + (change) + + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - + + Vault + - - - %n second(s) ago - + + + &Overview + - - &Unlock Wallet... - + + Show general overview of wallet + - - - %n minute(s) ago - + + + &Send Beans + - - - %n hour(s) ago - - - - - %n day(s) ago - + + + Send Beans to a BitBean address + - - Up to date - + + &Receive Beans + - - Catching up... - + + Show the list of addresses for receiving payments + - - Last received block was generated %1. - + + &Transactions + - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + + Browse transaction history + - Confirm transaction fee - + &Address Book + Buku Alamat - - Sent transaction - + + Edit the list of stored addresses and labels + - - Incoming transaction - + + E&xit + - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - + Quit application + - - - URI handling - + + &About BitBean + - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + + Show information about BitBean + - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + + About &Qt + - - Wallet is <b>encrypted</b> and currently <b>locked</b> - + + Show information about Qt + - - Backup Wallet - + + &Options... + Pilihan - - Wallet Data (*.dat) - + + Modify configuration options for BitBean + - - Backup Failed - + + &Show / Hide + - - There was an error trying to save the wallet data to the new location. - - - - - %n second(s) - - - - - %n minute(s) - + + &Encrypt Wallet... + - - - %n hour(s) - + + + Encrypt or decrypt wallet + - - - %n day(s) - + + + &Backup Wallet... + - - Not staking - + + Backup wallet to another location + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + &Change Passphrase... + - - - ClientModel - - Network Alert - + + Change the passphrase used for wallet encryption + - - - CoinControlDialog - - Coin Control - + + &Unlock Wallet... + - - Quantity: - + + Unlock wallet + - - Bytes: - + + &Lock Wallet + - - Amount: - + + Lock wallet + - - Priority: - + + Sign &message... + - - Fee: - + + &Verify message... + - - Low Output: - + + &Export... + - - no - + + Export the data in the current tab to a file + - - After Fee: - + + &Debug window + - - Change: - + + Open debugging and diagnostic console + - - (un)select all - + + &File + - - Tree mode - + + &Settings + - - List mode - + + &Help + - - Amount - + + Tabs toolbar + - - Label - + + Actions toolbar + - - Address - Alamat + + + [testnet] + - - Date - + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + - - Confirmations - + + Synchronizing with network... + + + + + ~%n block(s) remaining + + + - - Confirmed - + + Downloaded %1 of %2 blocks of transaction history (%3% done). + - - Priority - + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + %n minute(s) ago + + + + + + + %n hour(s) ago + + + + + + + %n day(s) ago + + + - - Copy address - + + Up to date + - - Copy label - + + Catching up... + - - - Copy amount - + + Last received block was generated %1. + - - Copy transaction ID - + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + - - Copy quantity - + + Confirm transaction fee + - - Copy fee - + + Sent transaction + - Copy after fee - + Incoming transaction + - Copy bytes - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + - - Copy priority - + + + URI handling + - - Copy low output - + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + - - Copy change - + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + - - highest - + + Wallet is <b>encrypted</b> and currently <b>locked</b> + - - high - + + Backup Wallet + - - medium-high - + + Wallet Data (*.dat) + - - medium - + + Backup Failed + + + There was an error trying to save the wallet data to the new location. + + + + + %n second(s) + + + + + - low-medium - + %n minute(s) + + + - - - low - + + + %n hour(s) + + + + + + + %n day(s) + + + - - lowest - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - DUST - + + Not staking because wallet is locked + - - yes - + + Not staking because wallet is offline + - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + + Not staking because wallet is syncing + - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + + Not staking because you don't have mature beans + - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + + Not staking + + + + BitcoinGUI - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + &Address Book + Buku Alamat - - - (no label) - + &Options... + Pilihan + + + ClientModel - - change from %1 (%2) - + + Network Alert + + + + CoinControlDialog - - (change) - + Address + Alamat EditAddressDialog - + Edit Address Alamat &Label - + The label associated with this address book entry - + @@ -999,452 +1040,516 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + New receiving address - + New sending address - + Edit receiving address - + Edit sending address - + The entered address "%1" is already in the address book. - + The entered address "%1" is not a valid BitBean address. - + Could not unlock wallet. - + New key generation failed. - + GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options - + - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - + &Cancel - + &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + + + + + Unconfirmed: + + + + + Spendable: + + + + + Your current spendable balance + + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + - - The supplied proxy address is invalid. - + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - - OverviewPage - - Form - + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + BitBean Network + - - Stake: - + + Bean Stalk Height: + - - Unconfirmed: - + + Sprouting Difficulty: + - - Wallet - + + Bean Weight: + - - Spendable: - + + Connections: + - - Your current spendable balance - + + Total Beans: + - - Immature: - + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + - - Mined balance that has not yet matured - + + + + + + 0 + - - Total: - + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + - - Your current total balance - + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + - - <b>Recent transactions</b> - + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + Total: + - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1458,188 +1563,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - + @@ -1647,386 +1752,393 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - + Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - Baki + Baki 123.456 BC - + Confirm the send action - + S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - + Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - + WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + - + A&mount: - + Pay &To: - + - + Enter a label for this address to add it to your address book - + &Label: - + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Balance: + Baki 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2034,59 +2146,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2094,81 +2206,85 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - + Open for %n block(s) - + + + conflicted - + %1/offline - + %1/unconfirmed - + %1 confirmations - + Status - + , broadcast through %n node(s) - + + + Date - + Source - + Generated - + From - + To - + own address - + label - + @@ -2177,17 +2293,19 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + not accepted - + @@ -2195,90 +2313,90 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + unknown - + TransactionDescDialog - + Transaction details - + This pane shows a detailed description of the transaction - + @@ -2286,12 +2404,12 @@ This label turns red, if the priority is smaller than "medium". Date - + Type - + @@ -2301,112 +2419,114 @@ This label turns red, if the priority is smaller than "medium". Amount - + Open until %1 - + Confirmed (%1 confirmations) - + Open for %n more block(s) - + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + This block was not received by any other nodes and will probably not be accepted! - + Generated but not accepted - + Received with - + Received from - + Sent to - + Payment to yourself - + - Mined - + SPROUT + (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. - + @@ -2415,107 +2535,107 @@ This label turns red, if the priority is smaller than "medium". 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 Data - + @@ -2525,22 +2645,22 @@ This label turns red, if the priority is smaller than "medium". Confirmed - + Date - + Type - + Label - + @@ -2550,32 +2670,32 @@ This label turns red, if the priority is smaller than "medium". Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to - + @@ -2583,693 +2703,693 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core - - BitBean version - + + To use the %s option + - Usage: - + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - + + Error + - List commands - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - + + BitBean version + - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - + Usage: + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send command to -server or BitBeand + - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - + List commands + - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - - - - - Threshold for disconnecting misbehaving peers (default: 100) - + Get help for a command + - 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 - - - - - Detach block and address databases. Increases shutdown time (default: 0) - - - - - 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 - - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - - - - - Accept command line and JSON-RPC commands - + BitBean + - - Error: Transaction creation failed - + + Options: + - - Error: Wallet locked, unable to create transaction - + + This help message + - - Importing blockchain data file. - + + Specify configuration file (default: BitBean.conf) + - Importing bootstrap blockchain data file. - + Specify pid file (default: BitBeand.pid) + - - Run in the background as a daemon and accept commands - + + Specify data directory + - Use the test network - + Specify wallet file (within data directory) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Set database cache size in megabytes (default: 25) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Set database disk log size in megabytes (default: 100) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Specify connection timeout in milliseconds (default: 5000) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Connect through socks proxy + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Select the version of socks proxy to use (4-5, default: 5) + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Use proxy to reach tor hidden services (default: same as -proxy) + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Allow DNS lookups for -addnode, -seednode and -connect + - - 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. - + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Maintain at most <n> connections to peers (default: 125) + - - Block creation options: - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node(s) - - - - - Discover own IP address (default: 1 when listening and no -externalip) - - - - - Failed to listen on any port. Use -listen=0 if you want this. - - - - - Find peers using DNS lookup (default: 1) - + - - Sync checkpoints policy (default: strict) - + + Connect to a node to retrieve peer addresses, and disconnect + - - Invalid -tor address: '%s' - + + Specify your own public address + - - Invalid amount for -reservebalance=<amount> - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Discover own IP address (default: 1 when listening and no -externalip) + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Find peers using internet relay chat (default: 0) + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Output extra debugging information. Implies all other -debug* options - + + Bind to given address. Use [host]:port notation for IPv6 + - Output extra network debugging information - + Find peers using DNS lookup (default: 1) + - Prepend debug output with timestamp - + Stake your beans to support network and gain reward (default: 1) + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Select the version of socks proxy to use (4-5, default: 5) - + + Sync checkpoints policy (default: strict) + - - Send trace/debug info to console instead of debug.log file - + + Threshold for disconnecting misbehaving peers (default: 100) + - Send trace/debug info to debugger - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Set maximum block size in bytes (default: 250000) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Set minimum block size in bytes (default: 0) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Use UPnP to map the listening port (default: 1 when listening) + - - Specify connection timeout in milliseconds (default: 5000) - + + Use UPnP to map the listening port (default: 0) + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Use UPnP to map the listening port (default: 0) - + + Fee per KB to add to transactions you send + - - Use UPnP to map the listening port (default: 1 when listening) - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Accept command line and JSON-RPC commands + - - Username for JSON-RPC connections - + + Run in the background as a daemon and accept commands + - - Verifying database integrity... - + + Use the test network + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Output extra debugging information. Implies all other -debug* options + - Warning: Disk space is low! - + Output extra network debugging information + - - Warning: This version is obsolete, upgrade required! - + + Prepend debug output with timestamp + - - wallet.dat corrupt, salvage failed - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Password for JSON-RPC connections - + + Send trace/debug info to console instead of debug.log file + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Send trace/debug info to debugger + - - Find peers using internet relay chat (default: 0) - + + Username for JSON-RPC connections + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Password for JSON-RPC connections + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - + 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) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Require a confirmations for change (default: 0) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Upgrade wallet to latest format - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + - + + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) - + How thorough the block verification is (0-6, default: 1) - + Imports blocks from external blk000?.dat file - + - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Invalid amount for -paytxfee=<amount>: '%s' + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - This help message - + + Invalid amount for -mininput=<amount>: '%s' + - + Wallet %s resides outside data directory %s. - + Cannot obtain a lock on data directory %s. BitBean is probably already running. - + - - BitBean - + + Verifying database integrity... + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect through socks proxy - + + 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. + - - Allow DNS lookups for -addnode, -seednode and -connect - + + wallet.dat corrupt, salvage failed + - - Loading addresses... - + + Unknown -socks proxy version requested: %i + - + + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Cannot resolve -externalip address: '%s' + + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - + Wallet needed to be rewritten: restart BitBean to complete - + Error loading wallet.dat - + - - Invalid -proxy address: '%s' - + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - + + Cannot write default address + - - Cannot resolve -bind address: '%s' - + + Rescanning... + - - Cannot resolve -externalip address: '%s' - + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - + + Importing bootstrap blockchain data file. + - - Error: could not start node - + + Loading addresses... + - - Sending... - + + Error: could not start node + - - Invalid amount - + + Done loading + - Insufficient funds - + Unable to bind to %s on this computer. BitBean is probably already running. + - - Loading block index... - + + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Add a node to connect to and attempt to keep the connection open - + + Error: Wallet locked, unable to create transaction + - - Unable to bind to %s on this computer. BitBean is probably already running. - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Fee per KB to add to transactions you send - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: Transaction creation failed + - - Loading wallet... - + + Sending... + - - Cannot downgrade wallet - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Cannot initialize keypool - + + Invalid amount + - Cannot write default address - + Insufficient funds + - Rescanning... - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Done loading - + + Warning: This version is obsolete, upgrade required! + - - To use the %s option - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Error - + + Warning: Disk space is low! + - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_nb.qm b/src/qt/locale/bitbean_nb.qm new file mode 100644 index 0000000..8a8d73f Binary files /dev/null and b/src/qt/locale/bitbean_nb.qm differ diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitbean_nb.ts similarity index 52% rename from src/qt/locale/bitcoin_nb.ts rename to src/qt/locale/bitbean_nb.ts index 1485bef..243fca8 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitbean_nb.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean Om BitBean - + <b>BitBean</b> version <b>BitBean</b> versjon - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Dette er eksperimentell programvare. Distribuert under MIT/X11 programvarelisensen, se medfølgende fil COPYING eller http://www.opensource.org/licenses/mit-license.php. @@ -37,47 +49,47 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i AddressBookPage - + Address Book Adressebok - + Double-click to edit address or label Dobbeltklikk for å redigere adresse eller merkelapp - + Create a new address Lag en ny adresse - + Copy the currently selected address to the system clipboard Kopier den valgte adressen til systemets utklippstavle - + &New Address &Ny Adresse - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. Dette er adressene for å motta betalinger. Du ønsker kanskje å gi ulike adresser til hver avsender så du lettere kan holde øye med hvem som betaler deg. - + &Copy Address &Kopier Adresse - + Show &QR Code Vis &QR Kode - + Sign a message to prove you own a BitBean address Signer en melding for å bevise din egen BitBean adresse. @@ -87,12 +99,12 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Signer &Melding - + Delete the currently selected address from the list Slett den valgte adressen fra listen. - + Verify a message to ensure it was signed with a specified BitBean address Verifiser en melding får å forsikre deg om at den er signert med en spesifikk BitBean adresse @@ -102,7 +114,7 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i &Verifiser en melding - + &Delete &Slett @@ -158,34 +170,34 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -234,16 +246,21 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + Er du sikker på at du vil kryptere lommeboken? - Are you sure you wish to encrypt your wallet? - Er du sikker på at du vil kryptere lommeboken? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 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. @@ -260,12 +277,7 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i Lommebok kryptert - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -307,333 +319,587 @@ Dette produktet inneholder programvare utviklet av OpenSSL prosjektet for bruk i - BitcoinGUI - - - Sign &message... - Signer &melding... - + BeanControlDialog - - Synchronizing with network... - Synkroniserer med nettverk... + + Bean Control + - - &Overview - &Oversikt + + Quantity: + Mengde: - - Show general overview of wallet - Vis generell oversikt over lommeboken + + Bytes: + Bytes: - - &Transactions - &Transaksjoner + + Amount: + Beløp: - - Browse transaction history - Vis transaksjonshistorikk + + Priority: + Prioritet: - - &Address Book - &Adressebok + + Fee: + Avgift: - - Edit the list of stored addresses and labels - Endre listen med lagrede adresser og merkelapper + + Low Output: + Lav Utdata: - - &Receive coins - &Mottatte coins + + After Fee: + Etter Avgift: - - Show the list of addresses for receiving payments - Vis listen med adresser for å motta betalinger + + Change: + Endring: - - &Send coins - &Send coins + + (un)select all + Fjern alt valgt - - E&xit - &Avslutt + + Tree mode + Tre modus - - Quit application - Avslutt applikasjonen + + List mode + Liste modus - - Show information about BitBean - Vis info om BitBean + + Amount + Beløp - - About &Qt - Om &Qt + + Label + Merkelapp - - Show information about Qt - Vis informasjon om Qt + + Address + Adresse - - &Options... - &Innstillinger... + + Date + Dato - - &Encrypt Wallet... - &Krypter Lommebok... + + Confirmations + Bekreftelser - &Backup Wallet... - Lag &Sikkerhetskopi av Lommebok... + Confirmed + Bekreftet - - &Change Passphrase... - &Endre Adgangsfrase... - - - - ~%n block(s) remaining - ~%n blokker igjen~%n blokker igjen + + Priority + Prioritet - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Lastet ned %1 av %2 blokker med transaksjonshistorie (%3 ferdig). + + Copy address + Kopier adresse - - &Export... - &Eksporter... + + Copy label + Kopier merkelapp - - Send coins to a BitBean address - Send coins til en BitBean adresse + + + Copy amount + Kopiér beløp - - Modify configuration options for BitBean - Endre innstillingene til BitBean + + Copy transaction ID + Kopier transaksjons-ID - - Export the data in the current tab to a file - Eksporter dataene i nåværende fane til en fil + + Copy quantity + Kopier mengde - - Encrypt or decrypt wallet - Krypter eller dekrypter lommeboken + + Copy fee + Kopier gebyr - - Backup wallet to another location - Sikkerhetskopiér lommebok til annet sted + + Copy after fee + Kopier etter gebyr - - Change the passphrase used for wallet encryption - Endre adgangsfrasen brukt for kryptering av lommebok + + Copy bytes + - - &Debug window - &Feilsøkingsvindu + + Copy priority + Kopier prioritet - Open debugging and diagnostic console - Åpne konsoll for feilsøk og diagnostikk + Copy low output + - - &Verify message... - &Verifiser melding... + + Copy change + Kopier veksel - - BitBean - BitBean + + highest + høyest - - Wallet - Lommebok + + high + høy - - &About BitBean - &Om BitBean + + medium-high + medium-høy - - &Show / Hide - &Gjem / vis + + medium + medium - - Unlock wallet - Lås opp lommebok + + low-medium + lav-medium - &Lock Wallet - &Lås Lommeboken + low + lav - Lock wallet - Lås lommeboken + lowest + lavest - - &File - &Fil + + DUST + - - &Settings - &Innstillinger + + yes + ja - - &Help - &Hjelp + + no + nei - - Tabs toolbar - Verktøylinje for faner + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnett] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - BitBean klient + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Denne merkelappen blir rød, viss endringen er mindre enn %1 + +Dette betyr at det trengs en avgift på minimum %2. - - - %n active connection(s) to BitBean network - %n aktiv tilkobling til BitBean nettverket%n aktive tilkoblinger til BitBean nettverket + + + + (no label) + (ingen merkelapp) - - Downloaded %1 blocks of transaction history. - Lastet ned %1 blokker med transaksjonshistorie + + change from %1 (%2) + endring fra %1 (%2) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + (endring) + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + BitBean - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + &Oversikt - - - %n second(s) ago - %n sekunder siden%n sekunder siden + + + Show general overview of wallet + Vis generell oversikt over lommeboken + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Vis listen med adresser for å motta betalinger + + + + &Transactions + &Transaksjoner + + + + Browse transaction history + Vis transaksjonshistorikk + + + + &Address Book + &Adressebok + + + + Edit the list of stored addresses and labels + Endre listen med lagrede adresser og merkelapper + + + + E&xit + &Avslutt + + + + Quit application + Avslutt applikasjonen + + + + &About BitBean + &Om BitBean + + + + Show information about BitBean + Vis info om BitBean + + + + About &Qt + Om &Qt + + + + Show information about Qt + Vis informasjon om Qt + + + + &Options... + &Innstillinger... + + + + Modify configuration options for BitBean + Endre innstillingene til BitBean + + + + &Show / Hide + &Gjem / vis + + + + &Encrypt Wallet... + &Krypter Lommebok... + + + + Encrypt or decrypt wallet + Krypter eller dekrypter lommeboken + + + + &Backup Wallet... + Lag &Sikkerhetskopi av Lommebok... + + + + Backup wallet to another location + Sikkerhetskopiér lommebok til annet sted + + + + &Change Passphrase... + &Endre Adgangsfrase... + + + + Change the passphrase used for wallet encryption + Endre adgangsfrasen brukt for kryptering av lommebok - + &Unlock Wallet... - &Lås opp lommeboken + &Lås opp lommeboken + + + + Unlock wallet + Lås opp lommebok + + + + &Lock Wallet + &Lås Lommeboken + + + + Lock wallet + Lås lommeboken + + + + Sign &message... + Signer &melding... + + + + &Verify message... + &Verifiser melding... + + + + &Export... + &Eksporter... + + + + Export the data in the current tab to a file + Eksporter dataene i nåværende fane til en fil + + + + &Debug window + &Feilsøkingsvindu + + + + Open debugging and diagnostic console + Åpne konsoll for feilsøk og diagnostikk + + + + &File + &Fil + + + + &Settings + &Innstillinger + + + + &Help + &Hjelp + + + + Tabs toolbar + Verktøylinje for faner + + + + Actions toolbar + + + + + + [testnet] + [testnett] + + + + + BitBean client + BitBean klient + + + + %n active connection(s) to BitBean network + + %n aktiv tilkobling til BitBean nettverket + %n aktive tilkoblinger til BitBean nettverket + + + + + Synchronizing with network... + Synkroniserer med nettverk... + + + + ~%n block(s) remaining + + ~%n blokker igjen + ~%n blokker igjen + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Lastet ned %1 av %2 blokker med transaksjonshistorie (%3 ferdig). + + + + Downloaded %1 blocks of transaction history. + Lastet ned %1 blokker med transaksjonshistorie + + + + %n second(s) ago + + %n sekunder siden + %n sekunder siden + - + %n minute(s) ago - %n minutt siden%n minutter siden + + %n minutt siden + %n minutter siden + %n hour(s) ago - %n time siden%n timer siden + + %n time siden + %n timer siden + %n day(s) ago - %n dag siden%n dager siden + + %n dag siden + %n dager siden + Up to date - Ajour + Ajour Catching up... - Kommer ajour... + Kommer ajour... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Sendt transaksjon + Sendt transaksjon Incoming transaction - Innkommende transaksjon + Innkommende transaksjon @@ -642,7 +908,7 @@ Amount: %2 Type: %3 Address: %4 - Dato: %1 + Dato: %1 Beløp: %2 Type: %3 Adresse: %4 @@ -652,487 +918,727 @@ Adresse: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Lommeboken er <b>kryptert</b> og for tiden <b>ulåst</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> + Lommeboken er <b>kryptert</b> og for tiden <b>låst</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - Backup Mislyktes + Backup Mislyktes There was an error trying to save the wallet data to the new location. - + - + %n second(s) - %n sekund%n sekunder + + %n sekund + %n sekunder + %n minute(s) - %n minutt%n minutter + + %n minutt + %n minutter + %n hour(s) - %n time%n timer + + %n time + %n timer + %n day(s) - %n dag%n dager + + %n dag + %n dager + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Nettverksvarsel + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - Mengde: + + Not staking because you don't have mature beans + - - Bytes: - Bytes: + + Not staking + + + + BitcoinGUI - - Amount: - Beløp: + Sign &message... + Signer &melding... - - Priority: - Prioritet: + Synchronizing with network... + Synkroniserer med nettverk... - - Fee: - Avgift: + &Overview + &Oversikt - - Low Output: - Lav Utdata: + Show general overview of wallet + Vis generell oversikt over lommeboken - - no - nei + &Transactions + &Transaksjoner - - After Fee: - Etter Avgift: + Browse transaction history + Vis transaksjonshistorikk - - Change: - Endring: + &Address Book + &Adressebok - - (un)select all - Fjern alt valgt + Edit the list of stored addresses and labels + Endre listen med lagrede adresser og merkelapper - - Tree mode - Tre modus + &Receive coins + &Mottatte coins - - List mode - Liste modus + Show the list of addresses for receiving payments + Vis listen med adresser for å motta betalinger - - Amount - Beløp + &Send coins + &Send coins - - Label - Merkelapp + E&xit + &Avslutt - - Address - Adresse + Quit application + Avslutt applikasjonen - - Date - Dato + Show information about BitBean + Vis info om BitBean - - Confirmations - Bekreftelser + About &Qt + Om &Qt - - Confirmed - Bekreftet + Show information about Qt + Vis informasjon om Qt - - Priority - Prioritet + &Options... + &Innstillinger... - - Copy address - Kopier adresse + &Encrypt Wallet... + &Krypter Lommebok... - - Copy label - Kopier merkelapp + &Backup Wallet... + Lag &Sikkerhetskopi av Lommebok... - - - Copy amount - Kopiér beløp + &Change Passphrase... + &Endre Adgangsfrase... - - - Copy transaction ID - Kopier transaksjons-ID + + ~%n block(s) remaining + + ~%n blokker igjen + ~%n blokker igjen + - - Copy quantity - Kopier mengde + Downloaded %1 of %2 blocks of transaction history (%3% done). + Lastet ned %1 av %2 blokker med transaksjonshistorie (%3 ferdig). - - Copy fee - Kopier gebyr + &Export... + &Eksporter... - - Copy after fee - Kopier etter gebyr + Send coins to a BitBean address + Send coins til en BitBean adresse - - Copy bytes - + Modify configuration options for BitBean + Endre innstillingene til BitBean - - Copy priority - Kopier prioritet + Export the data in the current tab to a file + Eksporter dataene i nåværende fane til en fil - - Copy low output - + Encrypt or decrypt wallet + Krypter eller dekrypter lommeboken - - Copy change - Kopier veksel + Backup wallet to another location + Sikkerhetskopiér lommebok til annet sted - - highest - høyest + Change the passphrase used for wallet encryption + Endre adgangsfrasen brukt for kryptering av lommebok - - high - høy + &Debug window + &Feilsøkingsvindu - - medium-high - medium-høy + Open debugging and diagnostic console + Åpne konsoll for feilsøk og diagnostikk - - medium - medium + &Verify message... + &Verifiser melding... - - low-medium - lav-medium + BitBean + BitBean - - low - lav + Wallet + Lommebok - - lowest - lavest + &About BitBean + &Om BitBean - - DUST - + &Show / Hide + &Gjem / vis - - yes - ja + Unlock wallet + Lås opp lommebok - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + &Lock Wallet + &Lås Lommeboken - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Lock wallet + Lås lommeboken - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + &File + &Fil - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - Denne merkelappen blir rød, viss endringen er mindre enn %1 - -Dette betyr at det trengs en avgift på minimum %2. + &Settings + &Innstillinger - - - (no label) - (ingen merkelapp) + &Help + &Hjelp - - change from %1 (%2) - endring fra %1 (%2) + Tabs toolbar + Verktøylinje for faner - - (change) - (endring) + [testnet] + [testnett] - - - EditAddressDialog - - Edit Address - Rediger adresse + BitBean client + BitBean klient - - - &Label - &Merkelapp + + %n active connection(s) to BitBean network + + %n aktiv tilkobling til BitBean nettverket + %n aktive tilkoblinger til BitBean nettverket + - - The label associated with this address book entry - Navnet assosiert med denne adressen + Downloaded %1 blocks of transaction history. + Lastet ned %1 blokker med transaksjonshistorie + + + %n second(s) ago + + %n sekunder siden + %n sekunder siden + - - &Address - &Adresse + &Unlock Wallet... + &Lås opp lommeboken + + + %n minute(s) ago + + %n minutt siden + %n minutter siden + + + + %n hour(s) ago + + %n time siden + %n timer siden + + + + %n day(s) ago + + %n dag siden + %n dager siden + - - The address associated with this address book entry. This can only be modified for sending addresses. - + Up to date + Ajour - - New receiving address - Ny mottaksadresse + Catching up... + Kommer ajour... - - New sending address - Ny utsendingsadresse + Sent transaction + Sendt transaksjon - - Edit receiving address - Rediger mottaksadresse + Incoming transaction + Innkommende transaksjon - - Edit sending address - Rediger utsendingsadresse + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Dato: %1 +Beløp: %2 +Type: %3 +Adresse: %4 + - - The entered address "%1" is already in the address book. - Den oppgitte adressen "%1" er allerede i adresseboken. + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Lommeboken er <b>kryptert</b> og for tiden <b>ulåst</b> - - The entered address "%1" is not a valid BitBean address. - Den angitte adressen "%1" er ikke en gyldig BitBean adresse. + Wallet is <b>encrypted</b> and currently <b>locked</b> + Lommeboken er <b>kryptert</b> og for tiden <b>låst</b> - - Could not unlock wallet. - Kunne ikke låse opp lommeboken. + Backup Failed + Backup Mislyktes + + + %n second(s) + + %n sekund + %n sekunder + + + + %n minute(s) + + %n minutt + %n minutter + + + + %n hour(s) + + %n time + %n timer + + + + %n day(s) + + %n dag + %n dager + + + + ClientModel - - New key generation failed. - Generering av ny nøkkel feilet. + + Network Alert + Nettverksvarsel - GUIUtil::HelpMessageBox + CoinControlDialog - - - BitBean-Qt - BitBean-Qt + Quantity: + Mengde: - - version - versjon + Bytes: + Bytes: - - Usage: - Bruk: + Amount: + Beløp: - - command-line options - + Priority: + Prioritet: - - UI options - + Fee: + Avgift: - - Set language, for example "de_DE" (default: system locale) - + Low Output: + Lav Utdata: - - Start minimized - Start Minimert + no + nei - - Show splash screen on startup (default: 1) - + After Fee: + Etter Avgift: - - - OptionsDialog - - Options - Innstillinger + Change: + Endring: - - &Main - &Hoved + (un)select all + Fjern alt valgt - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + Tree mode + Tre modus - + List mode + Liste modus + + + Amount + Beløp + + + Label + Merkelapp + + + Address + Adresse + + + Date + Dato + + + Confirmations + Bekreftelser + + + Confirmed + Bekreftet + + + Priority + Prioritet + + + Copy address + Kopier adresse + + + Copy label + Kopier merkelapp + + + Copy amount + Kopiér beløp + + + Copy transaction ID + Kopier transaksjons-ID + + + Copy quantity + Kopier mengde + + + Copy fee + Kopier gebyr + + + Copy after fee + Kopier etter gebyr + + + Copy priority + Kopier prioritet + + + Copy change + Kopier veksel + + + highest + høyest + + + high + høy + + + medium-high + medium-høy + + + medium + medium + + + low-medium + lav-medium + + + low + lav + + + lowest + lavest + + + yes + ja + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Denne merkelappen blir rød, viss endringen er mindre enn %1 + +Dette betyr at det trengs en avgift på minimum %2. + + + (no label) + (ingen merkelapp) + + + change from %1 (%2) + endring fra %1 (%2) + + + (change) + (endring) + + + + EditAddressDialog + + + Edit Address + Rediger adresse + + + + &Label + &Merkelapp + + + + The label associated with this address book entry + Navnet assosiert med denne adressen + + + + &Address + &Adresse + + + + The address associated with this address book entry. This can only be modified for sending addresses. + + + + + 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 BitBean address. + Den angitte adressen "%1" er ikke en gyldig BitBean adresse. + + + + Could not unlock wallet. + Kunne ikke låse opp lommeboken. + + + + New key generation failed. + Generering av ny nøkkel feilet. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + version + versjon + + + + Usage: + Bruk: + + + + command-line options + + + + + UI options + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + Start Minimert + + + + Show splash screen on startup (default: 1) + + + + + OptionsDialog + + + Options + Innstillinger + + + + &Main + &Hoved + + + Pay transaction &fee Betal transaksjons&gebyr - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + @@ -1142,12 +1648,12 @@ Dette betyr at det trengs en avgift på minimum %2. Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1157,7 +1663,7 @@ Dette betyr at det trengs en avgift på minimum %2. Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1167,7 +1673,7 @@ Dette betyr at det trengs en avgift på minimum %2. Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + @@ -1182,7 +1688,7 @@ Dette betyr at det trengs en avgift på minimum %2. IP address of the proxy (e.g. 127.0.0.1) - + @@ -1242,7 +1748,7 @@ Dette betyr at det trengs en avgift på minimum %2. The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1251,13 +1757,27 @@ Dette betyr at det trengs en avgift på minimum %2. + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + 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 bitcoins. + Velg standard delt enhet for visning i grensesnittet og for sending av bitcoins. - + Whether to show BitBean addresses in the transaction list or not. - + @@ -1265,17 +1785,11 @@ Dette betyr at det trengs en avgift på minimum %2. &Vis adresser i transaksjonslisten - Whether to show coin control features or not. - Skal mynt kontroll funksjoner vises eller ikke. - - - - Display coin &control features (experts only!) - + Skal mynt kontroll funksjoner vises eller ikke. - + &OK &OK @@ -1304,7 +1818,7 @@ Dette betyr at det trengs en avgift på minimum %2. This setting will take effect after restarting BitBean. - + @@ -1315,78 +1829,158 @@ Dette betyr at det trengs en avgift på minimum %2. OverviewPage - + Form Skjema - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: Ubekreftet: - Wallet - Lommebok + Lommebok - + Spendable: Disponibelt: - + Your current spendable balance Din nåværende saldo - - Immature: - Umoden: - - - - Mined balance that has not yet matured - Minet saldo har ikke modnet enda + + Sprouting: + - - Total: - Totalt: + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + - - Your current total balance - Din nåværende saldo + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + - - <b>Recent transactions</b> - <b>Siste transaksjoner</b> + + Immature: + Umoden: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + Minet saldo har ikke modnet enda - - Total of coins that was staked, and do not yet count toward the current balance - + + 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 @@ -1395,14 +1989,14 @@ Dette betyr at det trengs en avgift på minimum %2. QRCodeDialog - + QR Code Dialog - + Request Payment - + @@ -1427,22 +2021,22 @@ Dette betyr at det trengs en avgift på minimum %2. Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + @@ -1453,7 +2047,7 @@ Dette betyr at det trengs en avgift på minimum %2. RPCConsole - + Client name Klientnavn @@ -1504,7 +2098,7 @@ Dette betyr at det trengs en avgift på minimum %2. On testnet - + @@ -1534,12 +2128,12 @@ Dette betyr at det trengs en avgift på minimum %2. Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + @@ -1559,12 +2153,12 @@ Dette betyr at det trengs en avgift på minimum %2. BitBean - Debug window - + BitBean Core - + @@ -1574,7 +2168,7 @@ Dette betyr at det trengs en avgift på minimum %2. Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1584,7 +2178,7 @@ Dette betyr at det trengs en avgift på minimum %2. Welcome to the BitBean RPC console. - + @@ -1598,59 +2192,59 @@ Dette betyr at det trengs en avgift på minimum %2. - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Send Bitcoins + Send Beans + - Coin Control Features - Mynt Kontroll Funksjoner + Bean Control Features + Inputs... - Inndata... + Inndata... automatically selected - automatisk valgte + automatisk valgte Insufficient funds! - Utilstrekkelige midler! + Utilstrekkelige midler! Quantity: - Mengde: + Mengde: 0 - + Bytes: - Bytes: + Bytes: Amount: - Beløp: + Beløp: @@ -1658,272 +2252,442 @@ Dette betyr at det trengs en avgift på minimum %2. 0.00 BC - + Priority: - Prioritet: + Prioritet: medium - + medium Fee: - Avgift: + Avgift: Low Output: - Lav Utdata: + Lav Utdata: no - nei + nei After Fee: - Etter Avgift: + Etter Avgift: Change - + custom change address - + Send to multiple recipients at once - Send til flere enn én mottaker + Send til flere enn én mottaker Add &Recipient - &Legg til Mottaker + &Legg til Mottaker Remove all transaction fields - + Clear &All - Fjern &Alt + Fjern &Alt Balance: - Saldo: + Saldo: 123.456 BC - + Confirm the send action - Bekreft sending + Bekreft sending S&end - S&end + S&end - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - Kopier mengde + Kopier mengde Copy amount - Kopiér beløp + Kopiér beløp Copy fee - Kopier gebyr + Kopier gebyr Copy after fee - + Kopier etter gebyr Copy bytes - + Copy priority - + Kopier prioritet Copy low output - + Copy change - + Kopier veksel <b>%1</b> to %2 (%3) - + - Confirm send coins - Bekreft sending av bitcoins + Confirm send beans + Are you sure you want to send %1? - Er du sikker på du ønsker å sende %1? + Er du sikker på du ønsker å sende %1? and - og + og The recipient address is not valid, please recheck. - Adresse for mottaker er ugyldig. + 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øpen som skal betales må være over 0. The amount exceeds your balance. - Beløpet overstiger saldo. + 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. + 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. + Duplikate adresser funnet. Kan bare sende én gang til hver adresse per operasjon. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - ADVARSEL: Ugyldig BitBean adresse + ADVARSEL: Ugyldig BitBean adresse (no label) - (ingen merkelapp) + (ingen merkelapp) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Skjema - + A&mount: - &Beløp: + &Beløp: Pay &To: - Betal &Til: + Betal &Til: - + 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 + Skriv inn en merkelapp for denne adressen for å legge den til i din adressebok &Label: - &Merkelapp: + &Merkelapp: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - Velg adresse fra adresseboken + Velg adresse fra adresseboken Alt+A - Alt+A + Alt+A Paste address from clipboard - Lim inn adresse fra utklippstavlen + Lim inn adresse fra utklippstavlen Alt+P - Alt+P + Alt+P Remove this recipient - Fjern denne mottakeren + Fjern denne mottakeren - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + Send Bitcoins + + + Coin Control Features + Mynt Kontroll Funksjoner + + + Inputs... + Inndata... + + + automatically selected + automatisk valgte + + + Insufficient funds! + Utilstrekkelige midler! + + + Quantity: + Mengde: + + + Bytes: + Bytes: + + + Amount: + Beløp: + + + Priority: + Prioritet: + + + Fee: + Avgift: + + + Low Output: + Lav Utdata: + + + no + nei + + + After Fee: + Etter Avgift: + + + Send to multiple recipients at once + Send til flere enn én mottaker + + + Add &Recipient + &Legg til Mottaker + + + Clear &All + Fjern &Alt + + + Balance: + Saldo: + + + Confirm the send action + Bekreft sending + + + S&end + S&end + + + Copy quantity + Kopier mengde + + + Copy amount + Kopiér beløp + + + Copy fee + Kopier gebyr + + + Confirm send coins + Bekreft sending av bitcoins + + + Are you sure you want to send %1? + Er du sikker på du ønsker å sende %1? + + + and + og + + + 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. + + + 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. + + + WARNING: Invalid BitBean address + ADVARSEL: Ugyldig BitBean adresse + + + (no label) + (ingen merkelapp) + + + + SendCoinsEntry + + A&mount: + &Beløp: + + + Pay &To: + Betal &Til: + + + 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 address from address book + Velg adresse fra adresseboken + + + Alt+A + Alt+A + + + Paste address from clipboard + Lim inn adresse fra utklippstavlen + + + Alt+P + Alt+P + + + Remove this recipient + Fjern denne mottakeren SignVerifyMessageDialog - + Signatures - Sign / Verify a Message Signaturer - Signer / Verifiser en melding @@ -1941,7 +2705,7 @@ Dette betyr at det trengs en avgift på minimum %2. The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -1978,7 +2742,7 @@ Dette betyr at det trengs en avgift på minimum %2. Sign the message to prove you own this BitBean address - + @@ -2005,12 +2769,12 @@ Dette betyr at det trengs en avgift på minimum %2. The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2021,7 +2785,7 @@ Dette betyr at det trengs en avgift på minimum %2. Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2031,7 +2795,7 @@ Dette betyr at det trengs en avgift på minimum %2. Enter BitBean signature - + @@ -2110,12 +2874,15 @@ Dette betyr at det trengs en avgift på minimum %2. Open for %n block(s) - + + + + conflicted - + @@ -2140,7 +2907,10 @@ Dette betyr at det trengs en avgift på minimum %2. , broadcast through %n node(s) - , kringkast gjennom %n node, kringkast gjennom %n noder + + , kringkast gjennom %n node + , kringkast gjennom %n noder + @@ -2193,7 +2963,10 @@ Dette betyr at det trengs en avgift på minimum %2. matures in %n more block(s) - blir moden om %n blokkblir moden om %n blokker + + blir moden om %n blokk + blir moden om %n blokker + @@ -2235,8 +3008,8 @@ Dette betyr at det trengs en avgift på minimum %2. - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2282,7 +3055,7 @@ Dette betyr at det trengs en avgift på minimum %2. TransactionDescDialog - + Transaction details Transaksjonsdetaljer @@ -2300,989 +3073,1331 @@ Dette betyr at det trengs en avgift på minimum %2. Dato - - Type - Type + + Type + Type + + + + Address + Adresse + + + + Amount + Beløp + + + + Open until %1 + Åpen til %1 + + + + Confirmed (%1 confirmations) + Bekreftet (%1 bekreftelser) + + + + Open for %n more block(s) + + Åpen for %n blokk til + Åpen for %n blokker til + + + + + Offline + + + + + Unconfirmed + Ubekreftet + + + + Confirming (%1 of %2 recommended confirmations) + Bekrefter (%1 av %2 anbefalte bekreftelser) + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + Denne blokken har ikke blitt mottatt av noen andre noder og vil sannsynligvis ikke bli akseptert! + + + + Generated but not accepted + Generert men ikke akseptert + + + + Received with + Mottatt med + + + + Received from + Mottatt fra + + + + Sent to + Sendt til + + + + Payment to yourself + Betaling til deg selv + + + + SPROUT + + + + 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 + + + + Amount removed from or added to balance. + Beløp fjernet eller lagt til saldo. + + + + TransactionView + + + + All + Alle + + + + Today + I dag + + + + This week + Denne uken + + + + This month + Denne måneden + + + + Last month + Forrige måned + + + + This year + Dette året + + + + Range... + Intervall... + + + + Received with + Mottatt med + + + + Sent to + Sendt til + + + + 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 + + + + Copy transaction ID + Kopier transaksjons-ID + + + + Edit label + Rediger merkelapp + + + + Show transaction details + Vis transaksjonsdetaljer + + + + Export Transaction Data + + + + + Comma separated file (*.csv) + Kommaseparert fil (*.csv) + + + + Confirmed + Bekreftet + + + + Date + Dato + + + + Type + Type + + + + Label + Merkelapp + + + + Address + Adresse + + + + Amount + Beløp + + + + ID + ID + + + + Error exporting + Feil under eksportering + + + + Could not write to file %1. + Kunne ikke skrive til filen %1 + + + + Range: + Intervall: + + + + to + til + + + + WalletModel + + + Sending... + Sender... + + + + bitbean-core + + + To use the %s option + For å bruke %s opsjonen + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Feil + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Du må sette rpcpassword=<passord> i konfigurasjonsfilen: +%s +Hvis filen ikke finnes, opprett den med leserettighet kun for eier av filen. + + + + BitBean version + BitBean versjon + + + + Usage: + Bruk: + + + + Send command to -server or BitBeand + + + + + List commands + List opp kommandoer + + + + Get help for a command + Vis hjelpetekst for en kommando + + + + BitBean + BitBean + + + + Options: + Innstillinger: + + + + This help message + Denne hjelpemeldingen + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Angi mappe for datafiler + + + + Specify wallet file (within data directory) + Angi lommebok fil (inne i data mappe) + + + + Set database cache size in megabytes (default: 25) + Sett størrelse på mellomlager for database i megabytes (standardverdi: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Angi tidsavbrudd for forbindelse i millisekunder (standardverdi: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Tillat DNS oppslag for -addnode, -seednode og -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Hold maks <n> koblinger åpne til andre noder (standardverdi: 125) + + + + Add a node to connect to and attempt to keep the connection open + Legg til node for tilkobling og hold forbindelsen åpen + + + + Connect only to the specified node(s) + Koble kun til angitt(e) node(r) + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Koble kun til noder i nettverket <nett> (IPv4, IPv6 eller Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Oppdag egen IP-adresse (standardverdi: 1 ved lytting og uten -externalip) + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Ta imot tilkoblinger fra utsiden (standardverdi: 1 hvis uten -proxy eller -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Bruk UPnP for lytteport (standardverdi: 1 ved lytting) + + + + Use UPnP to map the listening port (default: 0) + Bruk UPnP for lytteport (standardverdi: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + Gebyr per KB som skal legges til transaksjoner du sender + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + Ta imot kommandolinje- og JSON-RPC-kommandoer + + + + 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 + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + 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) + + + + Send trace/debug info to console instead of debug.log file + Send spor/debug informasjon til konsollet istedenfor debug.log filen + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + Brukernavn for JSON-RPC forbindelser + + + + Password for JSON-RPC connections + Passord for JSON-RPC forbindelser + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + + + + + Upgrade wallet to latest format + Oppgradér lommebok til nyeste format + + + + Set key pool size to <n> (default: 100) + Angi størrelse på nøkkel-lager til <n> (standardverdi: 100) + + + + Rescan the block chain for missing wallet transactions + Se gjennom blokk-kjeden etter manglende lommeboktransaksjoner + + + + Attempt to recover private keys from a corrupt wallet.dat + Forsøk å berge private nøkler fra en korrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + + Imports blocks from external blk000?.dat file + - - Address - Adresse + + Block creation options: + Valg for opprettelse av blokker: - - Amount - Beløp + + Set minimum block size in bytes (default: 0) + Sett minimum blokkstørrelse i bytes (standardverdi: 0) - - Open until %1 - Åpen til %1 + + Set maximum block size in bytes (default: 250000) + - - Confirmed (%1 confirmations) - Bekreftet (%1 bekreftelser) + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - - Open for %n more block(s) - Åpen for %n blokk tilÅpen for %n blokker til + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - - Offline - + + Use OpenSSL (https) for JSON-RPC connections + Bruk OpenSSL (https) for JSON-RPC forbindelser - - Unconfirmed - Ubekreftet + + Server certificate file (default: server.cert) + Servers sertifikat (standardverdi: server.cert) - - Confirming (%1 of %2 recommended confirmations) - Bekrefter (%1 av %2 anbefalte bekreftelser) + + Server private key (default: server.pem) + Servers private nøkkel (standardverdi: server.pem) - - Conflicted - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - Immature (%1 confirmations, will be available after %2) - + Invalid amount for -paytxfee=<amount>: '%s' + Ugyldig beløp for -paytxfee=<beløp>: '%s' - - 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! + + 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. - Generated but not accepted - Generert men ikke akseptert + Invalid amount for -mininput=<amount>: '%s' + - - Received with - Mottatt med + + Wallet %s resides outside data directory %s. + Lommeboken %s holder til utenfor data mappen %s. - - Received from - Mottatt fra + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - Sent to - Sendt til + Verifying database integrity... + Verifiserer databasens integritet... - - Payment to yourself - Betaling til deg selv + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Mined - Utvunnet + + 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. - - (n/a) - - + + wallet.dat corrupt, salvage failed + wallet.dat korrupt, bergning feilet - - Transaction status. Hover over this field to show number of confirmations. - Transaksjonsstatus. Hold muspekeren over dette feltet for å se antall bekreftelser. + + Unknown -socks proxy version requested: %i + Ukjent -socks proxy versjon angitt: %i - - Date and time that the transaction was received. - Dato og tid for da transaksjonen ble mottat. + + Unknown network specified in -onlynet: '%s' + Ukjent nettverk angitt i -onlynet '%s' - - Type of transaction. - Type transaksjon. + + Invalid -proxy address: '%s' + Ugyldig -proxy adresse: '%s' - - Destination address of transaction. - Mottaksadresse for transaksjonen + + Invalid -tor address: '%s' + - - Amount removed from or added to balance. - Beløp fjernet eller lagt til saldo. + + Cannot resolve -bind address: '%s' + Kunne ikke slå opp -bind adresse: '%s' - - - TransactionView - - - All - Alle + + 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. - - Today - I dag + + Cannot resolve -externalip address: '%s' + Kunne ikke slå opp -externalip adresse: '%s' - This week - Denne uken + Invalid amount for -reservebalance=<amount> + - This month - Denne måneden + Unable to sign checkpoint, wrong checkpointkey? + + - Last month - Forrige måned + Loading block index... + Laster blokkindeks... - This year - Dette året + Error loading blkindex.dat + - Range... - Intervall... + Loading wallet... + Laster lommebok... - - Received with - Mottatt med + + Error loading wallet.dat: Wallet corrupted + Feil ved lasting av wallet.dat: Lommeboken er skadet - - Sent to - Sendt til + + 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. - - To yourself - Til deg selv + + Error loading wallet.dat: Wallet requires newer version of BitBean + - Mined - Utvunnet + Wallet needed to be rewritten: restart BitBean to complete + - Other - Andre + Error loading wallet.dat + Feil ved lasting av wallet.dat - - Enter address or label to search - Skriv inn adresse eller merkelapp for søk + + Cannot downgrade wallet + Kan ikke nedgradere lommebok - - Min amount - Minimumsbeløp + + Cannot initialize keypool + - - Copy address - Kopier adresse + + Cannot write default address + Kan ikke skrive standardadresse - Copy label - Kopier merkelapp + Rescanning... + Leser gjennom... - Copy amount - Kopiér beløp + Importing blockchain data file. + - Copy transaction ID - Kopier transaksjons-ID + Importing bootstrap blockchain data file. + - Edit label - Rediger merkelapp + Loading addresses... + Laster adresser... - Show transaction details - Vis transaksjonsdetaljer + Error: could not start node + - - Export Transaction Data - + + Done loading + Ferdig med lasting - Comma separated file (*.csv) - Kommaseparert fil (*.csv) + Unable to bind to %s on this computer. BitBean is probably already running. + - - Confirmed - Bekreftet + + 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) - Date - Dato + Error: Wallet locked, unable to create transaction + - Type - Type + Error: Wallet unlocked for staking only, unable to create transaction. + - Label - Merkelapp + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Address - Adresse + + Error: Transaction creation failed + Feil: Opprettelse av transaksjonen mislyktes - Amount - Beløp + Sending... + Sender... - ID - ID + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - Error exporting - + Invalid amount + Ugyldig beløp - - Could not write to file %1. - Kunne ikke skrive til filen %1 + + Insufficient funds + Utilstrekkelige midler - - Range: - Intervall: + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - to - til + + Warning: This version is obsolete, upgrade required! + Advarsel: Denne versjonen er foreldet, oppgradering kreves! - - - WalletModel - - Sending... - Sender... + + WARNING: syncronized checkpoint violation detected, but skipped! + + + + + Warning: Disk space is low! + Advarsel: Lite lagringsplass! + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + bitcoin-core - BitBean version - BitBean versjon + BitBean versjon - Usage: - Bruk: - - - - Send command to -server or BitBeand - + Bruk: - List commands - List opp kommandoer + List opp kommandoer - Get help for a command - Vis hjelpetekst for en kommando + Vis hjelpetekst for en kommando - Options: - Innstillinger: - - - - Specify configuration file (default: BitBean.conf) - - - - - Specify pid file (default: BitBeand.pid) - + Innstillinger: - Specify wallet file (within data directory) - Angi lommebok fil (inne i data mappe) + Angi lommebok fil (inne i data mappe) - Specify data directory - Angi mappe for datafiler + Angi mappe for datafiler - Set database cache size in megabytes (default: 25) - Sett størrelse på mellomlager for database i megabytes (standardverdi: 25) - - - - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Sett størrelse på mellomlager for database i megabytes (standardverdi: 25) - Maintain at most <n> connections to peers (default: 125) - Hold maks <n> koblinger åpne til andre noder (standardverdi: 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 + Koble til node for å hente adresser til andre noder, koble så fra igjen - Specify your own public address - Angi din egen offentlige adresse - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - + Angi din egen offentlige adresse - Threshold for disconnecting misbehaving peers (default: 100) - Grenseverdi for å koble fra noder med dårlig oppførsel (standardverdi: 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) + 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 - - - - Detach block and address databases. Increases shutdown time (default: 0) - - - - - 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 - - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + En feil oppstod ved opprettelse av RPC port %u for lytting: %s - Accept command line and JSON-RPC commands - Ta imot kommandolinje- og JSON-RPC-kommandoer + Ta imot kommandolinje- og JSON-RPC-kommandoer - Error: Transaction creation failed - Feil: Opprettelse av transaksjonen mislyktes - - - - Error: Wallet locked, unable to create transaction - - - - - Importing blockchain data file. - - - - - Importing bootstrap blockchain data file. - + Feil: Opprettelse av transaksjonen mislyktes - Run in the background as a daemon and accept commands - Kjør i bakgrunnen som daemon og ta imot kommandoer + Kjør i bakgrunnen som daemon og ta imot kommandoer - Use the test network - Bruk testnettverket + 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) + Ta imot tilkoblinger fra utsiden (standardverdi: 1 hvis uten -proxy eller -connect) - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + En feil oppstod under oppsettet av RPC port %u for IPv6, tilbakestilles til IPv4: %s - 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 BitBean will not work properly. - + Advarsel: -paytxfee er satt veldig høyt! Dette er transaksjonsgebyret du betaler når du sender transaksjoner. - 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 taster lest riktig, men transaksjon dataene eller adresse innlegg er kanskje manglende eller 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. + 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. - Attempt to recover private keys from a corrupt wallet.dat - Forsøk å berge private nøkler fra en korrupt wallet.dat + Forsøk å berge private nøkler fra en korrupt wallet.dat - Block creation options: - Valg for opprettelse av blokker: + Valg for opprettelse av blokker: - Connect only to the specified node(s) - Koble kun til angitt(e) node(r) + Koble kun til angitt(e) node(r) - Discover own IP address (default: 1 when listening and no -externalip) - Oppdag egen IP-adresse (standardverdi: 1 ved lytting og uten -externalip) + Oppdag egen IP-adresse (standardverdi: 1 ved lytting og uten -externalip) - 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. - - - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - + Kunne ikke lytte på noen port. Bruk -listen=0 hvis det er dette du vil. - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Maks mottaksbuffer per forbindelse, <n>*1000 bytes (standardverdi: 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) + Maks sendebuffer per forbindelse, <n>*1000 bytes (standardverdi: 1000) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Koble kun til noder i nettverket <nett> (IPv4, IPv6 eller Tor) + Koble kun til noder i nettverket <nett> (IPv4, IPv6 eller Tor) - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL valg: (se Bitcoin Wiki for instruksjoner for oppsett av SSL) - - - - Select the version of socks proxy to use (4-5, default: 5) - + 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 trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - + Send spor/debug informasjon til konsollet istedenfor debug.log filen - Set minimum block size in bytes (default: 0) - Sett minimum blokkstørrelse i bytes (standardverdi: 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) + Krymp debug.log filen når klienten starter (standardverdi: 1 hvis uten -debug) - Specify connection timeout in milliseconds (default: 5000) - Angi tidsavbrudd for forbindelse i millisekunder (standardverdi: 5000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - + Angi tidsavbrudd for forbindelse i millisekunder (standardverdi: 5000) - Use UPnP to map the listening port (default: 0) - Bruk UPnP for lytteport (standardverdi: 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - + Bruk UPnP for lytteport (standardverdi: 1 ved lytting) - Username for JSON-RPC connections - Brukernavn for JSON-RPC forbindelser + Brukernavn for JSON-RPC forbindelser - Verifying database integrity... - Verifiserer databasens integritet... - - - - WARNING: syncronized checkpoint violation detected, but skipped! - + Verifiserer databasens integritet... - Warning: Disk space is low! - Advarsel: Lite lagringsplass! + Advarsel: Lite lagringsplass! - Warning: This version is obsolete, upgrade required! - Advarsel: Denne versjonen er foreldet, oppgradering kreves! + Advarsel: Denne versjonen er foreldet, oppgradering kreves! - wallet.dat corrupt, salvage failed - wallet.dat korrupt, bergning feilet + wallet.dat korrupt, bergning feilet - Password for JSON-RPC connections - Passord for JSON-RPC forbindelser - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + Passord for JSON-RPC forbindelser - Allow JSON-RPC connections from specified IP address - Tillat JSON-RPC tilkoblinger fra angitt IP-adresse + 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) + 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) + Eksekvér kommando når beste blokk endrer seg (%s i kommandoen erstattes med blokkens hash) - 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) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Kjør kommando når en lommeboktransaksjon endres (%s i cmd er erstattet med TxID) - Upgrade wallet to latest format - Oppgradér lommebok til nyeste format + Oppgradér 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ørrelse på nøkkel-lager til <n> (standardverdi: 100) - Rescan the block chain for missing wallet transactions - Se gjennom blokk-kjeden etter manglende lommeboktransaksjoner - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - + Se gjennom blokk-kjeden etter manglende lommeboktransaksjoner - Use OpenSSL (https) for JSON-RPC connections - Bruk OpenSSL (https) for JSON-RPC forbindelser + Bruk OpenSSL (https) for JSON-RPC forbindelser - Server certificate file (default: server.cert) - Servers sertifikat (standardverdi: server.cert) + Servers sertifikat (standardverdi: server.cert) - Server private key (default: server.pem) - Servers private nøkkel (standardverdi: server.pem) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + Servers private nøkkel (standardverdi: server.pem) - This help message - Denne hjelpemeldingen + Denne hjelpemeldingen - Wallet %s resides outside data directory %s. - Lommeboken %s holder til utenfor data mappen %s. - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + Lommeboken %s holder til utenfor data mappen %s. - BitBean - BitBean + BitBean - 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) - - - - Connect through socks proxy - + 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 DNS oppslag for -addnode, -seednode og -connect - Loading addresses... - Laster adresser... - - - - Error loading blkindex.dat - + 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 BitBean - + Feil ved lasting av wallet.dat: Lommeboken er skadet - - Wallet needed to be rewritten: restart BitBean to complete - - - - Error loading wallet.dat - Feil ved lasting av wallet.dat + Feil ved lasting av wallet.dat - Invalid -proxy address: '%s' - Ugyldig -proxy adresse: '%s' + Ugyldig -proxy adresse: '%s' - Unknown network specified in -onlynet: '%s' - Ukjent nettverk angitt i -onlynet '%s' + Ukjent nettverk angitt i -onlynet '%s' - Unknown -socks proxy version requested: %i - Ukjent -socks proxy versjon angitt: %i + Ukjent -socks proxy versjon angitt: %i - Cannot resolve -bind address: '%s' - Kunne ikke slå opp -bind adresse: '%s' + Kunne ikke slå opp -bind adresse: '%s' - Cannot resolve -externalip address: '%s' - Kunne ikke slå opp -externalip adresse: '%s' + Kunne ikke slå opp -externalip adresse: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Ugyldig beløp for -paytxfee=<beløp>: '%s' - - - - Error: could not start node - + Ugyldig beløp for -paytxfee=<beløp>: '%s' - Sending... - Sender... + Sender... - Invalid amount - Ugyldig beløp + Ugyldig beløp - Insufficient funds - Utilstrekkelige midler + Utilstrekkelige midler - Loading block index... - Laster blokkindeks... + 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. BitBean is probably already running. - + Legg til node for tilkobling og hold forbindelsen åpen - Fee per KB to add to transactions you send - Gebyr per KB som skal legges til transaksjoner du sender - - - - Invalid amount for -mininput=<amount>: '%s' - + Gebyr per KB som skal legges til transaksjoner du sender - Loading wallet... - Laster lommebok... + Laster lommebok... - Cannot downgrade wallet - Kan ikke nedgradere lommebok - - - - Cannot initialize keypool - + Kan ikke nedgradere lommebok - Cannot write default address - Kan ikke skrive standardadresse + Kan ikke skrive standardadresse - Rescanning... - Leser gjennom... + Leser gjennom... - Done loading - Ferdig med lasting + Ferdig med lasting - To use the %s option - For å bruke %s opsjonen + For å bruke %s opsjonen - Error - Feil + 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. - Du må sette rpcpassword=<passord> i konfigurasjonsfilen: + Du må sette rpcpassword=<passord> i konfigurasjonsfilen: %s 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/bitbean_nl.qm b/src/qt/locale/bitbean_nl.qm new file mode 100644 index 0000000..0187409 Binary files /dev/null and b/src/qt/locale/bitbean_nl.qm differ diff --git a/src/qt/locale/bitbean_nl.ts b/src/qt/locale/bitbean_nl.ts new file mode 100644 index 0000000..45b07ec --- /dev/null +++ b/src/qt/locale/bitbean_nl.ts @@ -0,0 +1,4894 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + Over BitBean + + + + <b>BitBean</b> version + <b>BitBean</b> versie + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + Copyright © 2009-2014 De Bitcoin ontwikkelaars +Copyright © 2012-2014 De NovaCoin ontwikkelaars +Copyright © 2014 De BitBean ontwikkelaars + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +Dit is experimentele software. + +Gedistribueerd onder de MIT/X11 software licentie, zie het bijgevoegde bestand COPYING of http://www.opensource.org/licenses/mit-license.php. + +Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in de OpenSSL Toolkit (http://www.openssl.org/) en cryptografische software gemaakt door Eric Young (eay@cryptsoft.com) en UPnP software geschreven door Thomas Bernard. + + + + AddressBookPage + + + Address Book + Adresboek + + + + Double-click to edit address or label + Dubbelklik om het adres of label te wijzigen + + + + Create a new address + Maak een nieuw adres aan + + + + Copy the currently selected address to the system clipboard + Kopieer het huidig geselecteerde adres naar het klembord + + + + &New Address + &Nieuw adres + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + Dit zijn al jou BitBean adressen om betalingen mee te ontvangen. Je kunt iedere verzender een apart adres geven zodat je kunt volgen wie jou betaald. + + + + &Copy Address + &Kopiëer Adres + + + + Show &QR Code + Toon &QR Code + + + + Sign a message to prove you own a BitBean address + Teken een bericht om te bewijzen dat je een BitBean adres bezit. + + + + Sign &Message + Teken &Bericht + + + + Delete the currently selected address from the list + Verwijder het geselecteerde adres van de lijst + + + + Verify a message to ensure it was signed with a specified BitBean address + Verifieer een bericht om zeker te zijn dat deze is ondertekend met een specifiek BitBean adres + + + + &Verify Message + &Verifieer Bericht + + + + &Delete + &Verwijder + + + + Copy &Label + Kopiëer &Label + + + + &Edit + &Bewerk + + + + Export Address Book Data + Exporteer Adresboek Data + + + + Comma separated file (*.csv) + Kommagescheiden bestand (*.csv) + + + + Error exporting + Fout bij exporteren + + + + Could not write to file %1. + Kan niet schrijven naat bestand %1 + + + + AddressTableModel + + + Label + Label + + + + Address + Adres + + + + (no label) + (geen label) + + + + AskPassphraseDialog + + + Passphrase Dialog + Wachtwoordscherm + + + + Enter passphrase + Voer wachtwoord in + + + + New passphrase + Nieuw wachtwoord + + + + Repeat new passphrase + Herhaal wachtwoord + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Bedoeld om het command 'sendmoney' uit te schakelen indien het OS niet meer veilig is. Geeft geen echte beveiliging. + + + + For staking only + Alleen voor staking + + + + 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 verschillende 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 COINS</b>! + Waarschuwing: Als je je portemonnee versleuteld en je verliest je wachtwoord zul je <b>AL JE MUNTEN VERLIEZEN</b>! + + + + Are you sure you wish to encrypt your wallet? + Weet u zeker dat u uw portemonnee wilt versleutelen? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + 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! + + + + + Wallet encrypted + Portemonnee versleuteld + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + BitBean zal nu sluiten om het versleutel proces te voltooien. Onthou dat het versleutelen van je portemonnee je niet volledig beschermt tegen diefstal van munten door malware op je computer. + + + + + + + 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. + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + Kwantiteit + + + + Bytes: + Bytes: + + + + Amount: + + + + + Priority: + Prioriteit: + + + + Fee: + Vergoeding: + + + + Low Output: + Lage uitvoer: + + + + After Fee: + Na vergoeding: + + + + Change: + Wijzigen: + + + + (un)select all + (de)selecteer alles + + + + Tree mode + Boom modus + + + + List mode + Lijst modus + + + + Amount + Bedrag + + + + Label + Label + + + + 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 + + + + Copy quantity + Kopieer aantal + + + + Copy fee + Kopieer vergoeding + + + + Copy after fee + Kopieer na vergoeding + + + + Copy bytes + Kopieer bytes + + + + Copy priority + Kopieer prioriteit + + + + Copy low output + Kopieer lage uitvoer + + + + Copy change + Kopieer wijzig + + + + highest + hoogste + + + + high + hoog + + + + medium-high + gemiddeld hoog + + + + medium + gemiddeld + + + + low-medium + laag gemiddeld + + + + low + laag + + + + lowest + laagste + + + + DUST + STOF + + + + yes + ja + + + + no + nee + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Dit label wordt rood, als de transactie grootte groter is dan 10000 bytes.<br> + +Dit betekend een fee van minimaal %1 per kb is noodzakelijk.<br> + +Kan varieren van +/- 1 Byte per invulling + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Transacties met hogere prioriteit komen sneller in een blok + +Dit label wordt rood, als de prioriteit kleiner is dan "normaal". + +Dit betekend een fee van minimaal %1 per kb is noodzakelijk. + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Dit label wordt rood, als elke ontvanger ontvangt een bedrag dat kleiner is dan 1%. + +Dit betekent dat een vergoeding van ten minste 2% is vereist. + +Bedragen onder 0.546 keer het minimum vergoeding worden weergegeven als DUST. + + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Dit label wordt rood, als de verandering kleiner is dan %1. + +Dit betekend dat een fee van %2 is vereist. + + + + + (no label) + (geen label) + + + + change from %1 (%2) + wijzig van %1 (%2) + + + + (change) + (wijzig) + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Een fatale fout . BTestcoin kan niet langer veilig doorgaan en sluit af. + + + + BitBean + BitBean + + + + Vault + + + + + &Overview + &Overzicht + + + + Show general overview of wallet + Toon algemeen overzicht van de portemonnee + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Toon de lijst aan adressen voor ontvangen betalingen + + + + &Transactions + &Transacties + + + + Browse transaction history + Blader door transactieverleden + + + + &Address Book + &Adresboek + + + + Edit the list of stored addresses and labels + Wijzig de lijst met bewaarde adressen en labels + + + + E&xit + &Afsluiten + + + + Quit application + Programma afsluiten + + + + &About BitBean + &Over BitBean + + + + Show information about BitBean + Toon informatie over BitBean + + + + About &Qt + Over &Qt + + + + Show information about Qt + Toon informatie over Qt + + + + &Options... + &Opties... + + + + Modify configuration options for BitBean + Verander configuratie opties voor BitBean + + + + &Show / Hide + &Toon / Verberg + + + + &Encrypt Wallet... + &Versleutel Portemonnee... + + + + Encrypt or decrypt wallet + Versleutel of ontsleutel de portemonnee + + + + &Backup Wallet... + &Backup Portemonnee... + + + + Backup wallet to another location + Backup portemonnee naar een andere locatie + + + + &Change Passphrase... + &Wijzig Wachtwoord + + + + Change the passphrase used for wallet encryption + Wijzig het wachtwoord voor uw portemonneversleuteling + + + + &Unlock Wallet... + Ontgrendel portemonnee... + + + + Unlock wallet + Open portemonnee + + + + &Lock Wallet + &Sluit portemonnee + + + + Lock wallet + Sluit portemonnee + + + + Sign &message... + &Onderteken bericht... + + + + &Verify message... + &Verifiëer bericht... + + + + &Export... + &Exporteren... + + + + Export the data in the current tab to a file + Exporteer de data in de huidige tab naar een bestand + + + + &Debug window + &Debugscherm + + + + Open debugging and diagnostic console + Open debugging en diagnostische console + + + + &File + &Bestand + + + + &Settings + &Instellingen + + + + &Help + &Hulp + + + + Tabs toolbar + Tab-werkbalk + + + + Actions toolbar + Acties werkbalk + + + + + [testnet] + [testnetwerk] + + + + + BitBean client + BitBean client + + + + %n active connection(s) to BitBean network + + %n actieve verbinding naar BitBean netwerk + %n actieve verbindingen naar BitBean netwerk + + + + + Synchronizing with network... + Synchroniseren met netwerk... + + + + ~%n block(s) remaining + + ~%n blok nodig + ~%n blokken nodig + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + %1 van %2 aan transactie historie blokken gedownload (%3% klaar). + + + + Downloaded %1 blocks of transaction history. + %1 blokken van transactie geschiedenis gedownload. + + + + %n second(s) ago + + %n seconden geleden + %n seconden geleden + + + + + %n minute(s) ago + + %n minuut geleden + %n minuten geleden + + + + + %n hour(s) ago + + %n uur geleden + %n uren geleden + + + + + %n day(s) ago + + %n dag geleden + %n dagen geleden + + + + + Up to date + Bijgewerkt + + + + Catching up... + Aan het bijwerken... + + + + Last received block was generated %1. + Laatst ontvangen blok is gegenereerd op %1. + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + De grootte van deze transactie overschrijdt de limiet. U kan deze transactie laten uitvoeren voor een meerkost van %1, dewelke doorgestuurd wordt naar de nodes die uw transactie verwerken, alsook ter ondersteuning van het netwerk. Wil u deze meerkost betalen? + + + + Confirm transaction fee + Bevestig transactie kosten + + + + Sent transaction + Verzonden transactie + + + + Incoming transaction + Binnenkomende transactie + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum: %1 +Bedrag: %2 +Type: %3 +Adres: %4 + + + + + + URI handling + URI-behandeling + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI kan niet ontleedt worden! Mogelijke oorzaken zijn een ongeldig BitBean adres of incorrecte URI parameters. + + + + 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> + + + + Backup Wallet + Backup Portemonnee + + + + Wallet Data (*.dat) + Portemonnee bestanden (*.dat) + + + + Backup Failed + Backup mislukt + + + + There was an error trying to save the wallet data to the new location. + Er was een fout opgetreden bij het opslaan van de wallet data naar de nieuwe locatie. + + + + %n second(s) + + %n seconden + %n seconden + + + + + %n minute(s) + + %n minuut + %n minuten + + + + + %n hour(s) + + %n uur + %n uur + + + + + %n day(s) + + %n dag + %n dagen + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Staking. <br> Uw gewicht wordt %1 <br> Network gewicht is %2 <br> Verwachte tijd om beloning te verdienen is %3 + + + + Not staking because wallet is locked + Niet staking omdat portemonnee aan het beveiligd is + + + + Not staking because wallet is offline + Niet staking omdat portemonnee aan het offline is + + + + Not staking because wallet is syncing + Niet staking omdat portemonnee aan het synchroniseren is. + + + + Not staking because you don't have mature beans + + + + + Not staking + Niet aan het staken. + + + + BitcoinGUI + + Sign &message... + &Onderteken bericht... + + + Synchronizing with network... + Synchroniseren met netwerk... + + + &Overview + &Overzicht + + + Show general overview of wallet + Toon algemeen overzicht van de portemonnee + + + &Transactions + &Transacties + + + Browse transaction history + Blader door transactieverleden + + + &Address Book + &Adresboek + + + Edit the list of stored addresses and labels + Wijzig de lijst met bewaarde adressen en labels + + + &Receive coins + &Ontvang munten + + + Show the list of addresses for receiving payments + Toon de lijst aan adressen voor ontvangen betalingen + + + &Send coins + Verstuur munten + + + E&xit + &Afsluiten + + + Quit application + Programma afsluiten + + + Show information about BitBean + Toon informatie over BitBean + + + About &Qt + Over &Qt + + + Show information about Qt + Toon informatie over Qt + + + &Options... + &Opties... + + + &Encrypt Wallet... + &Versleutel Portemonnee... + + + &Backup Wallet... + &Backup Portemonnee... + + + &Change Passphrase... + &Wijzig Wachtwoord + + + ~%n block(s) remaining + + ~%n blok nodig + ~%n blokken nodig + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + %1 van %2 aan transactie historie blokken gedownload (%3% klaar). + + + &Export... + &Exporteren... + + + Send coins to a BitBean address + Verstuur munten naar een BitBean adres + + + Modify configuration options for BitBean + Verander configuratie opties voor BitBean + + + Export the data in the current tab to a file + Exporteer de data in de huidige tab naar een bestand + + + Encrypt or decrypt wallet + Versleutel of ontsleutel de portemonnee + + + 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... + + + BitBean + BitBean + + + Wallet + Portemonnee + + + &About BitBean + &Over BitBean + + + &Show / Hide + &Toon / Verberg + + + Unlock wallet + Open portemonnee + + + &Lock Wallet + &Sluit portemonnee + + + Lock wallet + Sluit portemonnee + + + &File + &Bestand + + + &Settings + &Instellingen + + + &Help + &Hulp + + + Tabs toolbar + Tab-werkbalk + + + Actions toolbar + Acties werkbalk + + + [testnet] + [testnetwerk] + + + BitBean client + BitBean client + + + %n active connection(s) to BitBean network + + %n actieve verbinding naar BitBean netwerk + %n actieve verbindingen naar BitBean netwerk + + + + Downloaded %1 blocks of transaction history. + %1 blokken van transactie geschiedenis gedownload. + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Staking. <br> Uw gewicht wordt %1 <br> Network gewicht is %2 <br> Verwachte tijd om beloning te verdienen is %3 + + + Not staking because wallet is locked + Niet staking omdat portemonnee aan het beveiligd is + + + Not staking because wallet is offline + Niet staking omdat portemonnee aan het offline is + + + Not staking because wallet is syncing + Niet staking omdat portemonnee aan het synchroniseren is. + + + Not staking because you don't have mature coins + Niet staking omdat je geen mature munten hebt + + + %n second(s) ago + + %n seconden geleden + %n seconden geleden + + + + &Unlock Wallet... + Ontgrendel portemonnee... + + + %n minute(s) ago + + %n minuut geleden + %n minuten geleden + + + + %n hour(s) ago + + %n uur geleden + %n uren geleden + + + + %n day(s) ago + + %n dag geleden + %n dagen geleden + + + + Up to date + Bijgewerkt + + + Catching up... + Aan het bijwerken... + + + Last received block was generated %1. + Laatst ontvangen blok is gegenereerd op %1. + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + De grootte van deze transactie overschrijdt de limiet. U kan deze transactie laten uitvoeren voor een meerkost van %1, dewelke doorgestuurd wordt naar de nodes die uw transactie verwerken, alsook ter ondersteuning van het netwerk. Wil u deze meerkost betalen? + + + Confirm transaction fee + Bevestig transactie kosten + + + Sent transaction + Verzonden transactie + + + Incoming transaction + Binnenkomende transactie + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum: %1 +Bedrag: %2 +Type: %3 +Adres: %4 + + + + URI handling + URI-behandeling + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI kan niet ontleedt worden! Mogelijke oorzaken zijn een ongeldig BitBean adres of incorrecte URI parameters. + + + 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> + + + Backup Wallet + Backup Portemonnee + + + Wallet Data (*.dat) + Portemonnee bestanden (*.dat) + + + Backup Failed + Backup mislukt + + + There was an error trying to save the wallet data to the new location. + Er was een fout opgetreden bij het opslaan van de wallet data naar de nieuwe locatie. + + + %n second(s) + + %n seconden + %n seconden + + + + %n minute(s) + + %n minuut + %n minuten + + + + %n hour(s) + + %n uur + %n uur + + + + %n day(s) + + %n dag + %n dagen + + + + Not staking + Niet aan het staken. + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Een fatale fout . BTestcoin kan niet langer veilig doorgaan en sluit af. + + + + ClientModel + + + Network Alert + Netwerkwaarschuwing + + + + CoinControlDialog + + Coin Control + Coin controle opties + + + Quantity: + Kwantiteit + + + Bytes: + Bytes: + + + Amount: + Bedrag: + + + Priority: + Prioriteit: + + + Fee: + Vergoeding: + + + Low Output: + Lage uitvoer: + + + no + nee + + + After Fee: + Na vergoeding: + + + Change: + Wijzigen: + + + (un)select all + (de)selecteer alles + + + Tree mode + Boom modus + + + List mode + Lijst modus + + + Amount + Bedrag + + + Label + Label + + + 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 + + + Copy quantity + Kopieer aantal + + + Copy fee + Kopieer vergoeding + + + Copy after fee + Kopieer na vergoeding + + + Copy bytes + Kopieer bytes + + + Copy priority + Kopieer prioriteit + + + Copy low output + Kopieer lage uitvoer + + + Copy change + Kopieer wijzig + + + highest + hoogste + + + high + hoog + + + medium-high + gemiddeld hoog + + + medium + gemiddeld + + + low-medium + laag gemiddeld + + + low + laag + + + lowest + laagste + + + DUST + STOF + + + yes + ja + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Dit label wordt rood, als de transactie grootte groter is dan 10000 bytes.<br> + +Dit betekend een fee van minimaal %1 per kb is noodzakelijk.<br> + +Kan varieren van +/- 1 Byte per invulling + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Transacties met hogere prioriteit komen sneller in een blok + +Dit label wordt rood, als de prioriteit kleiner is dan "normaal". + +Dit betekend een fee van minimaal %1 per kb is noodzakelijk. + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Dit label wordt rood, als elke ontvanger ontvangt een bedrag dat kleiner is dan 1%. + +Dit betekent dat een vergoeding van ten minste 2% is vereist. + +Bedragen onder 0.546 keer het minimum vergoeding worden weergegeven als DUST. + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Dit label wordt rood, als de verandering kleiner is dan %1. + +Dit betekend dat een fee van %2 is vereist. + + + (no label) + (geen label) + + + change from %1 (%2) + wijzig van %1 (%2) + + + (change) + (wijzig) + + + + EditAddressDialog + + + Edit Address + Bewerk Adres + + + + &Label + &Label + + + + The label associated with this address book entry + Het label geassocieerd met deze notitie in het adresboek + + + + &Address + &Adres + + + + The address associated with this address book entry. This can only be modified for sending addresses. + Het adres geassocieerd met deze notitie in het adresboek. Dit kan enkel aangepast worden bij verzend-adressen. + + + + New receiving address + Nieuw ontvangstadres + + + + New sending address + Nieuw adres om naar te verzenden + + + + Edit receiving address + Bewerk ontvangstadres + + + + Edit sending address + Bewerk adres om naar te verzenden + + + + The entered address "%1" is already in the address book. + Het opgegeven adres "%1" bestaat al in uw adresboek. + + + + The entered address "%1" is not a valid BitBean address. + Het ingevoerde adres "%1" is geen geldig BTestcoin adres. + + + + Could not unlock wallet. + Kon de portemonnee niet openen. + + + + New key generation failed. + Genereren nieuwe sleutel mislukt. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + version + versie + + + + Usage: + Gebruik: + + + + command-line options + Commandoregel-opties + + + + UI options + Gebruikerinterface-opties + + + + Set language, for example "de_DE" (default: system locale) + Stel taal in, bijvoorbeeld "de_DE" (standaard: systeeminstellingen) + + + + Start minimized + Geminimaliseerd starten + + + + Show splash screen on startup (default: 1) + Laat laadscherm zien bij het opstarten. (standaard: 1) + + + + OptionsDialog + + + Options + Opties + + + + &Main + &Algemeen + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. + Optioneel transactiekosten per kB dat helpt ervoor zorgen dat uw transacties worden snel verwerkt. De meeste transacties zijn 1 kB. Fee 0.01 aanbevolen. + + + + Pay transaction &fee + Betaal &transactiekosten + + + Reserved amount does not participate in staking and is therefore spendable at any time. + Gereserveerde hoeveelheid doet niet mee in staking en is daarom altijd uitgeefbaar. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + Gereserveerd + + + + Automatically start BitBean after logging in to the system. + Automatisch starten van BTestcoin na inloggen van het systeem. + + + + &Start BitBean on system login + &Start BTestcoin bij systeem aanmelding + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + Los blok en adressenbestanden bij het afsluiten. Dit betekent dat ze naar een ander data-map worden verplaatst, maar het vertraagt ​​shutdown. De portemonnee is altijd vrijstaand. + + + + &Detach databases at shutdown + &Koppel database los bij afsluiten + + + + &Network + &Netwerk + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + De BitBean client poort automatisch openen op de router. Dit werkt alleen wanneer uw router UPnP ondersteunt en deze is ingeschakeld. + + + + Map port using &UPnP + Portmapping via &UPnP + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + Verbinding maken met het BitBean netwerk via een SOCKS proxy (bijvoorbeeld als U gebruik maakt van Tor) + + + + &Connect through SOCKS proxy: + &Verbind door SOCKS proxy: + + + + Proxy &IP: + Proxy &IP: + + + + IP address of the proxy (e.g. 127.0.0.1) + IP Adres van de proxy (bijv. 127.0.0.1) + + + + &Port: + &Poort: + + + + Port of the proxy (e.g. 9050) + Poort van de proxy (bijv. 9050) + + + + SOCKS &Version: + SOCKS-&Versie: + + + + SOCKS version of the proxy (e.g. 5) + SOCKS-versie van de proxy (bijv. 5) + + + + &Window + &Scherm + + + + Show only a tray icon after minimizing the window. + Laat alleen een systeemvak-icoon zien wanneer het venster geminimaliseerd is + + + + &Minimize to the tray instead of the taskbar + &Minimaliseer naar het systeemvak in plaats van de taakbalk + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. + Minimaliseer het venster in de plaats van de applicatie af te sluiten als het venster gesloten wordt. Wanneer deze optie aan staan, kan de applicatie alleen worden afgesloten door Afsluiten te kiezen in het menu. + + + + M&inimize on close + Minimaliseer bij sluiten van het &venster + + + + &Display + &Interface + + + + User Interface &language: + Taal &Gebruikersinterface: + + + + The user interface language can be set here. This setting will take effect after restarting BitBean. + De user interface-taal kan hier ingesteld worden. Deze instelling word toegepast na BitBean opnieuw op te starten. + + + + &Unit to show amounts in: + &Eenheid om bedrag in te tonen: + + + + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Kies de standaard onderverdelingseenheid om weer te geven in uw programma, en voor het versturen van munten + + + + Whether to show BitBean addresses in the transaction list or not. + BitBean adressen in de transactielijst weergeven of niet + + + + &Display addresses in transaction list + Toon a&dressen in de transactielijst + + + Whether to show coin control features or not. + Munt controle functies weergeven of niet. + + + Display coin &control features (experts only!) + Laat coin & control functies zien (enkel voor gevorderden!) + + + + &OK + &OK + + + + &Cancel + Ann&uleren + + + + &Apply + &Toepassen + + + + default + standaard + + + + + Warning + Waarschuwing + + + + + This setting will take effect after restarting BitBean. + Deze instelling word toegepast na een restart van BitBean. + + + + The supplied proxy address is invalid. + Het opgegeven proxyadres is ongeldig. + + + + OverviewPage + + + Form + Vorm + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + De weergegeven informatie kan verouderd zijn, Je portemonnee synchroniseerd automatisch met het BitBean netwerk nadat er verbindig is gemaakt, maar dit proces is nog niet voltooid. + + + Stake: + Stake: + + + + Unconfirmed: + Onbevestigd: + + + Wallet + Portemonnee + + + + Spendable: + Uitgeefbaar: + + + + Your current spendable balance + Uw beschikbare saldo + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + Immatuur: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + 0 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + 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> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Totaal van de transacties die nog moeten worden bevestigd, en nog niet mee voor het huidige balans + + + Total of coins that was staked, and do not yet count toward the current balance + Totaal aantal munten dat was staked, en nog niet telt voor huidige balans. + + + + + out of sync + niet gesynchroniseerd + + + + QRCodeDialog + + + QR Code Dialog + QR Code Scherm + + + + Request Payment + Vraag betaling + + + + Amount: + Hoeveelheid: + + + + Label: + Label: + + + + Message: + Bericht: + + + + &Save As... + &Opslaan als... + + + + Error encoding URI into QR Code. + Fout tijdens encoderen URI in QR-code + + + + The entered amount is invalid, please check. + De ingevoerde hoeveel is ongeldig, controleer aub. + + + + 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. + + + + Save QR Code + Sla QR Code op. + + + + PNG Images (*.png) + PNG Afbeeldingen (*.png) + + + + RPCConsole + + + Client name + Clientnaam + + + + + + + + + + + + + N/A + N.v.t. + + + + Client version + Clientversie + + + + &Information + &Informatie + + + + Using OpenSSL version + Gebruikt OpenSSL versie + + + + Startup time + Opstarttijd + + + + Network + Netwerk + + + + Number of connections + Aantal connecties + + + + On testnet + Op testnetwerk + + + + Block chain + Blokketen + + + + Current number of blocks + Huidig aantal blokken + + + + Estimated total blocks + Geschat totaal aantal blokken + + + + Last block time + Tijd laatste blok + + + + &Open + &Open + + + + Command-line options + Commandoregel-opties + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + Laat het BTestcoin-QT help bericht zien om een lijst te krijgen met mogelijke BTestcoin command-regel opties. + + + + &Show + &Show + + + + &Console + &Console + + + + Build date + Bouwdatum + + + + BitBean - Debug window + BTestcoin - Debugscherm + + + + BitBean Core + BitBean Kern + + + + Debug log file + Debug-logbestand + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + Open het BitBean debug log bestand van de huidige data map. Dit kan een paar seconden duren voor grote log bestanden. + + + + Clear console + Maak console leeg + + + + Welcome to the BitBean RPC console. + Welkom bij de BitBean 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. + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + Invoer... + + + + automatically selected + automatisch geselecteerd + + + + Insufficient funds! + Onvoldoende fonds! + + + + Quantity: + Kwantiteit + + + + + 0 + 0 + + + + Bytes: + Bytes: + + + + Amount: + + + + + + + + 0.00 BC + 123.456 BC + + + + Priority: + Prioriteit: + + + + medium + gemiddeld + + + + Fee: + Vergoeding: + + + + Low Output: + Lage uitvoer: + + + + no + nee + + + + After Fee: + Na vergoeding: + + + + Change + Wijzigen + + + + custom change address + handmatig veranderen adres + + + + Send to multiple recipients at once + Verstuur aan verschillende ontvangers ineens + + + + Add &Recipient + Voeg &Ontvanger Toe + + + + Remove all transaction fields + Verwijder alles in de invulvelden + + + + Clear &All + Verwijder &Alles + + + + Balance: + Saldo: + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + Bevestig de verstuuractie + + + + S&end + &Verstuur + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Voeg een BTestcoin adres in (bijv. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Copy quantity + Kopieer aantal + + + + Copy amount + Kopieer bedrag + + + + Copy fee + Kopieer vergoeding + + + + Copy after fee + Kopieer na vergoeding + + + + Copy bytes + Kopieer bytes + + + + Copy priority + Kopieer prioriteit + + + + Copy low output + Kopieer lage uitvoer + + + + Copy change + Kopieer wijzig + + + + <b>%1</b> to %2 (%3) + <b> %1 </b> to %2 (%3) + + + + Confirm send beans + + + + + Are you sure you want to send %1? + Weet je zeker dat je %1 wilt verzenden? + + + + and + en + + + + The recipient address is not valid, please recheck. + Het ontvangstadres is niet geldig, controleer uw invoer. + + + + The amount to pay must be larger than 0. + Het ingevoerde bedrag moet groter zijn dan 0. + + + + The amount exceeds your balance. + Bedrag is hoger dan uw huidige saldo + + + + The total exceeds your balance when the %1 transaction fee is included. + Totaal overschrijdt uw huidige saldo wanneer de %1 transactiekosten worden meegerekend + + + + Duplicate address found, can only send to each address once per send operation. + Dubbel adres gevonden, u kunt slechts eenmaal naar een bepaald adres verzenden per verstuurtransactie + + + + Error: Transaction creation failed. + FOUT: Creëren van transactie mislukt. + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + WAARSCHUWING: Ongeldig BTestcoin adres + + + + (no label) + (geen label) + + + + WARNING: unknown change address + WAARSCHUWING: Onbekend adres + + + + SendBeansEntry + + + Form + Vorm + + + + A&mount: + Bedra&g: + + + + Pay &To: + Betaal &Aan: + + + + + Enter a label for this address to add it to your address book + Vul een label in voor dit adres om het toe te voegen aan uw adresboek + + + + &Label: + &Label: + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Het adres om naar te betalen (bijv. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + Kies adres uit adresboek + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Plak adres vanuit klembord + + + + Alt+P + Alt+P + + + + Remove this recipient + Verwijder deze ontvanger + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Voeg een BTestcoin adres in (bijv. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + SendCoinsDialog + + Send Coins + Verstuur munten + + + Coin Control Features + Coin controle opties + + + Inputs... + Invoer... + + + automatically selected + automatisch geselecteerd + + + Insufficient funds! + Onvoldoende fonds! + + + Quantity: + Kwantiteit + + + 0 + 0 + + + Bytes: + Bytes: + + + Amount: + Bedrag: + + + 0.00 BC + 123.456 BC + + + Priority: + Prioriteit: + + + medium + gemiddeld + + + Fee: + Vergoeding: + + + Low Output: + Lage uitvoer: + + + no + nee + + + After Fee: + Na vergoeding: + + + Change + Wijzigen + + + custom change address + handmatig veranderen adres + + + Send to multiple recipients at once + Verstuur aan verschillende ontvangers ineens + + + Add &Recipient + Voeg &Ontvanger Toe + + + Remove all transaction fields + Verwijder alles in de invulvelden + + + Clear &All + Verwijder &Alles + + + Balance: + Saldo: + + + 123.456 BC + 123.456 BC + + + Confirm the send action + Bevestig de verstuuractie + + + S&end + &Verstuur + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Voeg een BTestcoin adres in (bijv. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Copy quantity + Kopieer aantal + + + Copy amount + Kopieer bedrag + + + Copy fee + Kopieer vergoeding + + + Copy after fee + Kopieer na vergoeding + + + Copy bytes + Kopieer bytes + + + Copy priority + Kopieer prioriteit + + + Copy low output + Kopieer lage uitvoer + + + Copy change + Kopieer wijzig + + + <b>%1</b> to %2 (%3) + <b> %1 </b> to %2 (%3) + + + Confirm send coins + Bevestig versturen munten + + + Are you sure you want to send %1? + Weet je zeker dat je %1 wilt verzenden? + + + and + en + + + The recipient address is not valid, please recheck. + Het ontvangstadres is niet geldig, controleer uw invoer. + + + The amount to pay must be larger than 0. + Het ingevoerde bedrag moet groter zijn dan 0. + + + The amount exceeds your balance. + Bedrag is hoger dan uw huidige saldo + + + The total exceeds your balance when the %1 transaction fee is included. + Totaal overschrijdt uw huidige saldo wanneer de %1 transactiekosten worden meegerekend + + + Duplicate address found, can only send to each address once per send operation. + Dubbel adres gevonden, u kunt slechts eenmaal naar een bepaald adres verzenden per verstuurtransactie + + + Error: Transaction creation failed. + FOUT: Creëren van transactie mislukt. + + + 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 geweigerd, Dit kan gebeuren als sommige munten in je portemonnee al gebruikt zijn, door het gebruik van een kopie van wallet.dat en de munten in de kopie zijn niet gemarkeerd als gebruikt. + + + WARNING: Invalid BitBean address + WAARSCHUWING: Ongeldig BTestcoin adres + + + (no label) + (geen label) + + + WARNING: unknown change address + WAARSCHUWING: Onbekend adres + + + + SendCoinsEntry + + Form + Vorm + + + A&mount: + Bedra&g: + + + Pay &To: + Betaal &Aan: + + + Enter a label for this address to add it to your address book + Vul een label in voor dit adres om het toe te voegen aan uw adresboek + + + &Label: + &Label: + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Het adres om naar te betalen (bijv. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + Kies adres uit adresboek + + + Alt+A + Alt+A + + + Paste address from clipboard + Plak adres vanuit klembord + + + Alt+P + Alt+P + + + Remove this recipient + Verwijder deze ontvanger + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Voeg een BTestcoin adres in (bijv. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Handtekeningen - Onderteken een bericht / Verifiëer een handtekening + + + + + &Sign Message + O&nderteken Bericht + + + + You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + U kunt berichten ondertekenen met een van uw adressen om te bewijzen dat u dit adres bezit. Pas op dat u geen onduidelijke dingen ondertekent, want phishingaanvallen zouden u kunnen misleiden om zo uw identiteit te stelen. Onderteken alleen berichten waarmee u het volledig eens bent. + + + + The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Het adres om het bericht te ondertekenen (bijv. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + Kies een adres uit het adresboek + + + + + 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 + + + + Copy the current signature to the system clipboard + Kopieer de huidige handtekening naar het systeemklembord + + + + Sign the message to prove you own this BitBean address + Teken een bericht om te bewijzen dat je een BitBean adres bezit. + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Het adres van het bericht is ondertekend met (bijv. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + Verifieer een bericht om zeker te zijn dat deze is ondertekend met een specifiek BitBean adres + + + + Reset all verify message fields + Verwijder alles in de invulvelden + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Voeg een BTestcoin adres in (bijv. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + Klik "Onderteken Bericht" om de handtekening te genereren + + + + Enter BitBean signature + Voer BitBean handtekening in + + + + + 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. + + + + TransactionDesc + + + Open until %1 + Openen totdat %1 + + + + Open for %n block(s) + + Open voor nog %n blok + Open voor nog %n blokken + + + + + conflicted + conflicted + + + + %1/offline + %1/offline + + + + %1/unconfirmed + %1/onbevestigd + + + + %1 confirmations + %1 bevestigingen + + + + Status + Status + + + + , broadcast through %n node(s) + + , 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 blok + komt 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: + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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. + Gegenereerd munten moeten 510 blokken maturen voordat ze kunnen worden besteed. Wanneer je een blok genereerd, het naar het netwerk is verzonden en toegevoegd aan de blokketen, zal de status veranderen naar "niet geaccepteerd"and kan het niet uitgegeven worden. Dit kan soms gebeuren als een ander knooppunt genereert een blok binnen een paar seconden na jou. + + + + 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 uitgezonden + + + + unknown + onbekend + + + + TransactionDescDialog + + + Transaction details + Transactiedetails + + + + This pane shows a detailed description of the transaction + Dit venster laat een uitgebreide beschrijving van de transactie zien + + + + TransactionTableModel + + + Date + Datum + + + + Type + Type + + + + Address + Adres + + + + Amount + Bedrag + + + + Open until %1 + Open tot %1 + + + + Confirmed (%1 confirmations) + Bevestigd (%1 bevestigingen) + + + + Open for %n more block(s) + + Open voor nog %n blok + Open voor nog %n blokken + + + + + Offline + Offline + + + + Unconfirmed + Onbevestigd: + + + + Confirming (%1 of %2 recommended confirmations) + Bevestigen.. (%1 van de %2 bevestigingen) + + + + Conflicted + Conflicted + + + + Immature (%1 confirmations, will be available after %2) + Immature (%1 bevestiging, word beschikbaar na %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Dit blok is niet ontvangen bij andere nodes en zal waarschijnlijk niet worden geaccepteerd! + + + + Generated but not accepted + Gegenereerd maar niet geaccepteerd + + + + Received with + Ontvangen met + + + + Received from + Ontvangen van + + + + Sent to + Verzonden aan + + + + Payment to yourself + Betaling aan uzelf + + + + SPROUT + + + + 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 laten zien. + + + + Date and time that the transaction was received. + Datum en tijd waarop deze transactie is ontvangen. + + + + Type of transaction. + Type transactie. + + + + Destination address of transaction. + Ontvangend adres van transactie. + + + + Amount removed from or added to balance. + Bedrag verwijderd van of toegevoegd aan saldo + + + + TransactionView + + + + All + Alles + + + + Today + Vandaag + + + + This week + Deze week + + + + This month + Deze maand + + + + Last month + Vorige maand + + + + This year + Dit jaar + + + + Range... + Bereik... + + + + Received with + Ontvangen met + + + + Sent to + Verzonden aan + + + + 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 Data + Exporteer Transactie Data + + + + Comma separated file (*.csv) + Kommagescheiden bestand (*.csv) + + + + Confirmed + Bevestigd + + + + Date + Datum + + + + Type + Type + + + + Label + Label + + + + Address + Adres + + + + Amount + Bedrag + + + + ID + ID + + + + Error exporting + Fout bij exporteren + + + + Could not write to file %1. + Kan niet schrijven naar bestand %1 + + + + Range: + Bereik: + + + + to + naar + + + + WalletModel + + + Sending... + Versturen... + + + + bitbean-core + + + To use the %s option + Om de %s optie te gebruiken + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, u moet een rpcpassword instellen in het configuratiebestand: +%s +Het wordt aanbevolen de volgende willekeurig wachtwoord gebruiken: +rpcuser = BitBeanrpc +rpcpassword = %s +(je hoeft niet dit wachtwoord te onthouden) +De gebruikersnaam en het wachtwoord MAG NIET hetzelfde zijn. +Als het bestand niet bestaat, maakt u met leesbare-alleen-eigenaar bestandsbeheermachtigingen. +Het wordt ook aanbevolen om alertnotify instellen zodat u een melding van problemen; +bijvoorbeeld: alertnotify = echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + Error + Fout + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + U dient rpcpassword=<wachtwoord> in te stellen in het configuratiebestand: +%s +Als het bestand niet bestaat, maak het dan aan, met een alleen-lezen permissie. + + + + BitBean version + BitBean versie + + + + Usage: + Gebruik: + + + + Send command to -server or BitBeand + Verstuur commando naar -server of BitBeand + + + + List commands + Lijst van commando's + + + + Get help for a command + Toon hulp voor een commando + + + + BitBean + BitBean + + + + Options: + Opties: + + + + This help message + Dit helpbericht + + + + Specify configuration file (default: BitBean.conf) + Selecteer configuratie bestand (standaard: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + Selecteer pid bestand (standaard: BitBean.conf) + + + + Specify data directory + Stel datamap in + + + + Specify wallet file (within data directory) + Specificeer het portemonnee bestand (vanuit de gegevensmap) + + + + Set database cache size in megabytes (default: 25) + Stel databankcachegrootte in in megabytes (standaard: 25) + + + + Set database disk log size in megabytes (default: 100) + Stel database cache grootte in in megabytes (standaard: 100) + + + + Specify connection timeout in milliseconds (default: 5000) + Specificeer de time-outtijd in milliseconden (standaard: 5000) + + + + Connect through socks proxy + Verbind door socks proxy + + + + Select the version of socks proxy to use (4-5, default: 5) + Selecteer de versie van socks proxy (4-5, default: 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + Gebruik proxy tor verborgen diensten (standaard: zelfde als -proxy) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Sta DNS-naslag toe voor -addnode, -seednode en -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Luister voor verbindingen op <poort> (standaard: 15714 of testnet: 25714) + + + + Maintain at most <n> connections to peers (default: 125) + Onderhoud maximaal <n> verbindingen naar peers (standaard: 125) + + + + 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 + + + + Connect only to the specified node(s) + Verbind alleen naar de gespecificeerde node(s) + + + + Connect to a node to retrieve peer addresses, and disconnect + 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 adres + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Verbind alleen naar nodes in netwerk <net> (IPv4, IPv6 of Tor) + + + + 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) + + + + Find peers using internet relay chat (default: 0) + Zoek peers door gebruik van Internet Relay Chat (standaard: 1) {? 0)} + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Accepteer verbindingen van buitenaf (standaard: 1 als geen -proxy of -connect is opgegeven) + + + + Bind to given address. Use [host]:port notation for IPv6 + Koppel aan gegeven adres. Gebruik [host]:poort notatie voor IPv6 + + + + Find peers using DNS lookup (default: 1) + Zoek peers doormiddel van DNS lookup (standaard: 1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Synchroniseer tijd met andere connecties. Uitschakelen als de tijd op uw systeem nauwkeurig is bijv. synchroniseren met NTP (standaard: 1) + + + + Sync checkpoints policy (default: strict) + Sync checkpoints beleid (standaard: strikt) + + + + 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) + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 0) + Gebruik UPnP om de luisterende poort te mappen (standaard: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + Ontkoppel blok en adressenbestanden. Verhoogt shutdown tijd (standaard: 0) + + + + Fee per KB to add to transactions you send + Vergoeding per KB toe te voegen aan de transacties die u verzendt + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Bij het maken van transacties, negeer ingangen met waarde minder dan dit (standaard: 0,01) + + + + Accept command line and JSON-RPC commands + Aanvaard commandoregel- en JSON-RPC-commando's + + + + 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 + + + + Output extra debugging information. Implies all other -debug* options + Geef extra debugging informatie weer. Impliceert alle andere debug * opties + + + + Output extra network debugging information + Geef extra netwerk debug informatie weer + + + + Prepend debug output with timestamp + Voeg een tijdstempel toe aan debug output + + + + 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) + + + + 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 + + + + Send trace/debug info to debugger + Stuur trace/debug info naar de debugger + + + + Username for JSON-RPC connections + Gebruikersnaam voor JSON-RPC-verbindingen + + + + Password for JSON-RPC connections + Wachtwoord voor JSON-RPC-verbindingen + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Wacht op JSON-RPC-connecties op <poort> (standaard: 15715 of testnet: 25715) + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + Vereist een bevestiging voor verandering (standaard: 0) + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Dwing transactie scripts gebruik van canonieke PUSH operatoren (standaard: 1) + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Voer opdracht uit zodra een relevante waarschuwing wordt ontvangen (%s in cmd wordt vervangen door bericht) + + + + 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 + + + + Attempt to recover private keys from a corrupt wallet.dat + Poog de geheime sleutels uit een corrupt wallet.dat bestand terug te halen + + + + How many blocks to check at startup (default: 2500, 0 = all) + Hoeveel blokken controleren bij opstarten (standaard: 2500, 0= alles) + + + + How thorough the block verification is (0-6, default: 1) + Hoe grondig het blokverificatie is (0-6, standaard: 1) + + + + Imports blocks from external blk000?.dat file + Importeer blokken van extern blk000?.dat bestand + + + + Block creation options: + Blokcreatie-opties: + + + + Set minimum block size in bytes (default: 0) + Stel minimum blokgrootte in in bytes (standaard: 0) + + + + Set maximum block size in bytes (default: 250000) + Stel maximale block grootte in bytes in (standaard: 250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Stel maximale grootte van high-priority/low-fee transacties in bytes (standaard: 27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Aanvaardbare cijfers (standaard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Invalid amount for -paytxfee=<amount>: '%s' + Ongeldig bedrag voor -paytxfee=<bedrag>: '%s' + + + + 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 versturen van een transactie. + + + + Invalid amount for -mininput=<amount>: '%s' + Ongeldig bedrag voor -mininput = <bedrag>: '%s' + + + + Wallet %s resides outside data directory %s. + Portemonnee %s bevindt zich buiten de datamap %s. + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Kan een slot op data directory %s niet verkrijgen. BitBean wordt waarschijnlijk al uitgevoerd. + + + + Verifying database integrity... + Database integriteit wordt geverifieërd + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Fout bij het ​​initialiseren van de database omgeving %s! Om te herstellen, BACKUP die directory, verwijder dan alles van behalve het 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. + 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. + + + + wallet.dat corrupt, salvage failed + wallet.dat corrupt, veiligstellen mislukt + + + + Unknown -socks proxy version requested: %i + Onbekende -socks proxyversie aangegeven: %i + + + + Unknown network specified in -onlynet: '%s' + Onbekend netwerk gespecificeerd in -onlynet: '%s' + + + + Invalid -proxy address: '%s' + Ongeldig -proxy adres: '%s' + + + + Invalid -tor address: '%s' + Ongeldig-tor adres: '%s' + + + + Cannot resolve -bind address: '%s' + Kan -bind adres niet herleiden: '%s' + + + + 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. + + + + Cannot resolve -externalip address: '%s' + Kan -externlip adres niet herleiden: '%s' + + + + Invalid amount for -reservebalance=<amount> + Ongeldig bedrag voor -reservebalance = <bedrag> + + + + Unable to sign checkpoint, wrong checkpointkey? + + Kan checkpoint niet ondertekenen, verkeerde checkpoint sleutel? + + + + + Loading block index... + Blokindex aan het laden... + + + + Error loading blkindex.dat + Fout bij laden van blkindex.dat + + + + Loading wallet... + Portemonnee aan het laden... + + + + Error loading wallet.dat: Wallet corrupted + Fout bij laden wallet.dat: Portemonnee corrupt + + + + 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. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Fout bij laden van wallet.dat: Portemonnee vereist een nieuwere versie van BitBean + + + + Wallet needed to be rewritten: restart BitBean to complete + Portemonnee moet herschreven worden: herstart BitBean om te voltooien + + + + Error loading wallet.dat + Fout bij laden wallet.dat + + + + Cannot downgrade wallet + Kan portemonnee niet downgraden + + + + Cannot initialize keypool + Kan keypool niet initialiseren + + + + Cannot write default address + Kan standaardadres niet schrijven + + + + Rescanning... + Blokketen aan het doorzoeken... + + + + Importing blockchain data file. + Importeren van blokketen data bestand. + + + + Importing bootstrap blockchain data file. + Importeren van blokketen data bestand. + + + + Loading addresses... + Adressen aan het laden... + + + + Error: could not start node + Fout: kan geen verbinding maken met node + + + + Done loading + Klaar met laden + + + + Unable to bind to %s on this computer. BitBean is probably already running. + Niet mogelijk om %s op deze computer. BitBean is waarschijnlijk al geopened. + + + + 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) + + + + Error: Wallet locked, unable to create transaction + Fout: Portemonnee is op slot, niet mogelijk een transactie te creëren. + + + + Error: Wallet unlocked for staking only, unable to create transaction. + Fout: Portemonnee ontgrendeld voor alleen staking, niet in staat om de transactie te maken. + + + + 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 een transactie vergoeding van ten minste %s vanwege de hoeveelheid, complexiteit, of het gebruik van recent ontvangen gelden + + + + Error: Transaction creation failed + Fout: Creëren van transactie mislukt. + + + + Sending... + Versturen... + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Ongeldig bedrag + + + + Insufficient funds + Ontoereikend saldo + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Waarschuwing: Controleer of de datum en tijd van de computer juist zijn! Als uw klok verkeerd is BitBean zal niet goed werken. + + + + Warning: This version is obsolete, upgrade required! + Waarschuwing: Deze versie is verouderd, een upgrade is vereist! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + WAARSCHUWING: gesynchroniseerd checkpoint overtreding is geconstateerd, maar overgeslagen! + + + + Warning: Disk space is low! + Waarschuwing: Hardeschijf raakt vol! + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + WAARSCHUWING: Ongeldig controlepunt gevonden! Weergegeven transacties kunnen niet kloppen! Het is mogelijk dat je moet upgraden, of developers moet waarschuwen. + + + + bitcoin-core + + BitBean version + BitBean versie + + + Usage: + Gebruik: + + + Send command to -server or BitBeand + Verstuur commando naar -server of BitBeand + + + List commands + Lijst van commando's + + + Get help for a command + Toon hulp voor een commando + + + Options: + Opties: + + + Specify configuration file (default: BitBean.conf) + Selecteer configuratie bestand (standaard: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + Selecteer pid bestand (standaard: BitBean.conf) + + + Specify wallet file (within data directory) + Specificeer het portemonnee bestand (vanuit de gegevensmap) + + + Specify data directory + Stel datamap in + + + Set database cache size in megabytes (default: 25) + Stel databankcachegrootte in in megabytes (standaard: 25) + + + Set database disk log size in megabytes (default: 100) + Stel database cache grootte in in megabytes (standaard: 100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Luister voor verbindingen op <poort> (standaard: 15714 of testnet: 25714) + + + 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 adressen van anderen op te halen, en verbreek vervolgens de verbinding + + + Specify your own public address + Specificeer uw eigen publieke adres + + + Bind to given address. Use [host]:port notation for IPv6 + Koppel aan gegeven adres. Gebruik [host]:poort notatie voor IPv6 + + + Stake your coins to support network and gain reward (default: 1) + Stake je munten om netwerk te supporten en krijg hiervoor beloning (standaard: 1) + + + 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 + + + Detach block and address databases. Increases shutdown time (default: 0) + Ontkoppel blok en adressenbestanden. Verhoogt shutdown tijd (standaard: 0) + + + 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 geweigerd, Dit kan gebeuren als sommige munten in je portemonnee al gebruikt zijn, door het gebruik van een kopie van wallet.dat en de munten in de kopie zijn niet gemarkeerd als gebruikt. + + + 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 een transactie vergoeding van ten minste %s vanwege de hoeveelheid, complexiteit, of het gebruik van recent ontvangen gelden + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Wacht op JSON-RPC-connecties op <poort> (standaard: 15715 of testnet: 25715) + + + Accept command line and JSON-RPC commands + Aanvaard commandoregel- en JSON-RPC-commando's + + + Error: Transaction creation failed + Fout: Creëren van transactie mislukt. + + + Error: Wallet locked, unable to create transaction + Fout: Portemonnee is op slot, niet mogelijk een transactie te creëren. + + + Importing blockchain data file. + Importeren van blokketen data bestand. + + + Importing bootstrap blockchain data file. + Importeren van blokketen data bestand. + + + 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) + + + 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 + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Fout bij het ​​initialiseren van de database omgeving %s! Om te herstellen, BACKUP die directory, verwijder dan alles van behalve het wallet.dat. + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Stel maximale grootte van high-priority/low-fee transacties in bytes (standaard: 27000) + + + 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 versturen van een transactie. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Waarschuwing: Controleer of de datum en tijd van de computer juist zijn! Als uw klok verkeerd is BitBean zal niet goed werken. + + + 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. + + + Attempt to recover private keys from a corrupt wallet.dat + Poog de geheime sleutels uit een corrupt wallet.dat bestand terug te halen + + + Block creation options: + Blokcreatie-opties: + + + Connect only to the specified node(s) + Verbind alleen naar de gespecificeerde node(s) + + + 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) + + + 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. + + + Find peers using DNS lookup (default: 1) + Zoek peers doormiddel van DNS lookup (standaard: 1) + + + Sync checkpoints policy (default: strict) + Sync checkpoints beleid (standaard: strikt) + + + Invalid -tor address: '%s' + Ongeldig-tor adres: '%s' + + + Invalid amount for -reservebalance=<amount> + Ongeldig bedrag voor -reservebalance = <bedrag> + + + 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) + Verbind alleen naar nodes in netwerk <net> (IPv4, IPv6 of Tor) + + + Output extra debugging information. Implies all other -debug* options + Geef extra debugging informatie weer. Impliceert alle andere debug * opties + + + Output extra network debugging information + Geef extra netwerk debug informatie weer + + + Prepend debug output with timestamp + Voeg een tijdstempel toe aan debug output + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL-opties: (zie de Bitcoin wiki voor SSL-instructies) + + + Select the version of socks proxy to use (4-5, default: 5) + Selecteer de versie van socks proxy (4-5, default: 5) + + + 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 + + + Send trace/debug info to debugger + Stuur trace/debug info naar de debugger + + + Set maximum block size in bytes (default: 250000) + Stel maximale block grootte in bytes in (standaard: 250000) + + + Set minimum block size in bytes (default: 0) + Stel minimum blokgrootte in in bytes (standaard: 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) + + + Specify connection timeout in milliseconds (default: 5000) + Specificeer de time-outtijd in milliseconden (standaard: 5000) + + + Unable to sign checkpoint, wrong checkpointkey? + + Kan checkpoint niet ondertekenen, verkeerde checkpoint sleutel? + + + + 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) + + + Use proxy to reach tor hidden services (default: same as -proxy) + Gebruik proxy tor verborgen diensten (standaard: zelfde als -proxy) + + + Username for JSON-RPC connections + Gebruikersnaam voor JSON-RPC-verbindingen + + + Verifying database integrity... + Database integriteit wordt geverifieërd + + + WARNING: syncronized checkpoint violation detected, but skipped! + WAARSCHUWING: gesynchroniseerd checkpoint overtreding is geconstateerd, maar overgeslagen! + + + Warning: Disk space is low! + Waarschuwing: Hardeschijf raakt vol! + + + Warning: This version is obsolete, upgrade required! + Waarschuwing: Deze versie is verouderd, een upgrade is vereist! + + + wallet.dat corrupt, salvage failed + wallet.dat corrupt, veiligstellen mislukt + + + Password for JSON-RPC connections + Wachtwoord voor JSON-RPC-verbindingen + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, u moet een rpcpassword instellen in het configuratiebestand: +%s +Het wordt aanbevolen de volgende willekeurig wachtwoord gebruiken: +rpcuser = BitBeanrpc +rpcpassword = %s +(je hoeft niet dit wachtwoord te onthouden) +De gebruikersnaam en het wachtwoord MAG NIET hetzelfde zijn. +Als het bestand niet bestaat, maakt u met leesbare-alleen-eigenaar bestandsbeheermachtigingen. +Het wordt ook aanbevolen om alertnotify instellen zodat u een melding van problemen; +bijvoorbeeld: alertnotify = echo %%s | mail -s "BitBean Alert" admin@foo.com + + + Find peers using internet relay chat (default: 0) + Zoek peers door gebruik van Internet Relay Chat (standaard: 1) {? 0)} + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Synchroniseer tijd met andere connecties. Uitschakelen als de tijd op uw systeem nauwkeurig is bijv. synchroniseren met NTP (standaard: 1) + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Bij het maken van transacties, negeer ingangen met waarde minder dan dit (standaard: 0,01) + + + 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) + + + 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) + + + Require a confirmations for change (default: 0) + Vereist een bevestiging voor verandering (standaard: 0) + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Dwing transactie scripts gebruik van canonieke PUSH operatoren (standaard: 1) + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Voer opdracht uit zodra een relevante waarschuwing wordt ontvangen (%s in cmd wordt vervangen door bericht) + + + 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 + + + How many blocks to check at startup (default: 2500, 0 = all) + Hoeveel blokken controleren bij opstarten (standaard: 2500, 0= alles) + + + How thorough the block verification is (0-6, default: 1) + Hoe grondig het blokverificatie is (0-6, standaard: 1) + + + Imports blocks from external blk000?.dat file + Importeer blokken van extern blk000?.dat bestand + + + 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) + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Aanvaardbare cijfers (standaard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + Error: Wallet unlocked for staking only, unable to create transaction. + Fout: Portemonnee ontgrendeld voor alleen staking, niet in staat om de transactie te maken. + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + WAARSCHUWING: Ongeldig controlepunt gevonden! Weergegeven transacties kunnen niet kloppen! Het is mogelijk dat je moet upgraden, of developers moet waarschuwen. + + + This help message + Dit helpbericht + + + Wallet %s resides outside data directory %s. + Portemonnee %s bevindt zich buiten de datamap %s. + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Kan een slot op data directory %s niet verkrijgen. BitBean wordt waarschijnlijk al uitgevoerd. + + + BitBean + BitBean + + + 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) + + + Connect through socks proxy + Verbind door socks proxy + + + 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 blkindex.dat + Fout bij laden van blkindex.dat + + + Error loading wallet.dat: Wallet corrupted + Fout bij laden wallet.dat: Portemonnee corrupt + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Fout bij laden van wallet.dat: Portemonnee vereist een nieuwere versie van BitBean + + + Wallet needed to be rewritten: restart BitBean to complete + Portemonnee moet herschreven worden: herstart BitBean 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' + + + Error: could not start node + Fout: kan geen verbinding maken met node + + + Sending... + Versturen... + + + 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. BitBean is probably already running. + Niet mogelijk om %s op deze computer. BitBean is waarschijnlijk al geopened. + + + Fee per KB to add to transactions you send + Vergoeding per KB toe te voegen aan de transacties die u verzendt + + + Invalid amount for -mininput=<amount>: '%s' + Ongeldig bedrag voor -mininput = <bedrag>: '%s' + + + Loading wallet... + Portemonnee aan het laden... + + + Cannot downgrade wallet + Kan portemonnee niet downgraden + + + Cannot initialize keypool + Kan keypool niet initialiseren + + + 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. + U dient rpcpassword=<wachtwoord> in te stellen in het configuratiebestand: +%s +Als het bestand niet bestaat, maak het dan aan, met een alleen-lezen permissie. + + + diff --git a/src/qt/locale/bitcoin_pam.qm b/src/qt/locale/bitbean_pam.qm similarity index 50% rename from src/qt/locale/bitcoin_pam.qm rename to src/qt/locale/bitbean_pam.qm index 9b4ac7e..7d705ab 100644 Binary files a/src/qt/locale/bitcoin_pam.qm and b/src/qt/locale/bitbean_pam.qm differ diff --git a/src/qt/locale/bitcoin_pam.ts b/src/qt/locale/bitbean_pam.ts similarity index 58% rename from src/qt/locale/bitcoin_pam.ts rename to src/qt/locale/bitbean_pam.ts index 459eeb9..bd1db02 100644 --- a/src/qt/locale/bitcoin_pam.ts +++ b/src/qt/locale/bitbean_pam.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - 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. - + Metung ya ining experimental software. Me-distribute ya lalam na ning lisensya na ning MIT/X11 software, lawan ye ing makayabeng file COPYING o http://www.opensource.org/licenses/mit-license.php. 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. @@ -35,72 +47,72 @@ Ing produktung ini atin yang makayabeng software a gewa dareng OpenSSL Project p AddressBookPage - + Address Book - + - + 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 - + Copy the currently selected address to the system clipboard Kopyan me ing salukuyan at makipiling address keng system clipboard - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &Kopyan ing address - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list Ilako ya ing kasalungsungan makapiling address keng listahan - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + &Beripikan ing Mensayi - + &Delete &Ilako @@ -117,7 +129,7 @@ Ing produktung ini atin yang makayabeng software a gewa dareng OpenSSL Project p Export Address Book Data - + @@ -127,12 +139,12 @@ Ing produktung ini atin yang makayabeng software a gewa dareng OpenSSL Project p Error exporting - + Could not write to file %1. - + @@ -156,34 +168,34 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -232,16 +244,21 @@ Ing produktung ini atin yang makayabeng software a gewa dareng OpenSSL Project p - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + Siguradu na kang buri meng i-encrypt ing kekang wallet? - Are you sure you wish to encrypt your wallet? - Siguradu na kang buri meng i-encrypt ing kekang wallet? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 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. @@ -258,12 +275,7 @@ Ing produktung ini atin yang makayabeng software a gewa dareng OpenSSL Project p Me-encrypt ne ing wallet - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -305,333 +317,579 @@ Ing produktung ini atin yang makayabeng software a gewa dareng OpenSSL Project p - BitcoinGUI + BeanControlDialog - - Sign &message... - I-sign ing &mensayi - - - - Synchronizing with network... - Mag-sychronize ne king network... + + Bean Control + - - &Overview - &Overview + + Quantity: + - - Show general overview of wallet - Ipakit ing kabuuang lawe ning wallet + + Bytes: + - - &Transactions - &Transaksion + + Amount: + - - Browse transaction history - Lawan ing kasalesayan ning transaksion + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - L&umwal + + Tree mode + - - Quit application - Tuknangan ing aplikasyon + + List mode + - - Show information about BitBean - + + Amount + Alaga - - About &Qt - Tungkul &Qt + + Label + Label - - Show information about Qt - Magpakit impormasion tungkul king Qt + + Address + Address - - &Options... - &Pipamilian... + + Date + Kaaldauan - - &Encrypt Wallet... - I-&Encrypt in Wallet... + + Confirmations + - &Backup Wallet... - I-&Backup ing Wallet... + Confirmed + Me-kumpirma - - &Change Passphrase... - &Alilan ing Passphrase... - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Kopyan ing address - - &Export... - + + Copy label + Kopyan ing label - - Send coins to a BitBean address - + + + Copy amount + Kopyan ing alaga - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - I-backup ing wallet king aliwang lugal + + Copy after fee + - - Change the passphrase used for wallet encryption - Alilan ya ing passphrase a gagamitan para king wallet encryption + + Copy bytes + - - &Debug window - I-&Debug ing awang + + Copy priority + - Open debugging and diagnostic console - Ibuklat ing debugging at diagnostic console + Copy low output + - - &Verify message... - &Beripikan ing message... + + Copy change + - - BitBean - + + highest + - - Wallet - Wallet + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - &Ipalto / Isalikut + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &File + + DUST + - - &Settings - &Pamag-ayus + + yes + - - &Help - &Saup + + no + - - Tabs toolbar - Gamit para king Tabs + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (alang label) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + &Overview - - - %n second(s) ago - + + + Show general overview of wallet + Ipakit ing kabuuang lawe ning wallet - - &Unlock Wallet... - + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transaksion + + + + Browse transaction history + Lawan ing kasalesayan ning transaksion + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + L&umwal + + + + Quit application + Tuknangan ing aplikasyon + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + Tungkul &Qt + + + + Show information about Qt + Magpakit impormasion tungkul king Qt + + + + &Options... + &Pipamilian... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + &Ipalto / Isalikut + + + + &Encrypt Wallet... + I-&Encrypt in Wallet... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + I-&Backup ing Wallet... + + + + Backup wallet to another location + I-backup ing wallet king aliwang lugal + + + + &Change Passphrase... + &Alilan ing Passphrase... + + + + Change the passphrase used for wallet encryption + Alilan ya ing passphrase a gagamitan para king wallet encryption + + + + &Unlock Wallet... + + + + + Unlock wallet + Unlock ya ing wallet + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + I-sign ing &mensayi + + + + &Verify message... + &Beripikan ing message... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + I-&Debug ing awang + + + + Open debugging and diagnostic console + Ibuklat ing debugging at diagnostic console + + + + &File + &File + + + + &Settings + &Pamag-ayus + + + + &Help + &Saup + + + + Tabs toolbar + Gamit para king Tabs + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + Synchronizing with network... + Mag-sychronize ne king network... + + + + ~%n block(s) remaining + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + - + + %n second(s) ago + + + + + + %n minute(s) ago - + + + %n hour(s) ago - + + + %n day(s) ago - + + + Up to date - Makatuki ya king aldo + Makatuki ya king aldo Catching up... - Catching up... + Catching up... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Mipadalang transaksion + Mipadalang transaksion Incoming transaction - Paparatang a transaksion + Paparatang a transaksion @@ -640,7 +898,7 @@ Amount: %2 Type: %3 Address: %4 - Aldo: %1 + Aldo: %1 Alaga: %2 Type: %3 Address: %4 @@ -650,341 +908,293 @@ Address: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Maka-<b>encrypt</b> ya ing wallet at kasalukuyan yang maka-<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> + Maka-<b>encrypt</b> ya ing wallet at kasalukuyan yang maka-<b>locked</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + %n minute(s) - + + + %n hour(s) - + + + %n day(s) - + + + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Alertu ning Network + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - + + Not staking because you don't have mature beans + - - Bytes: - + + Not staking + + + + BitcoinGUI - - Amount: - + Sign &message... + I-sign ing &mensayi - - Priority: - + Synchronizing with network... + Mag-sychronize ne king network... - - Fee: - + &Overview + &Overview - - Low Output: - + Show general overview of wallet + Ipakit ing kabuuang lawe ning wallet - - no - + &Transactions + &Transaksion - - After Fee: - + Browse transaction history + Lawan ing kasalesayan ning transaksion - - Change: - + E&xit + L&umwal - - (un)select all - + Quit application + Tuknangan ing aplikasyon - - Tree mode - + About &Qt + Tungkul &Qt - - List mode - + Show information about Qt + Magpakit impormasion tungkul king Qt - - Amount - Alaga + &Options... + &Pipamilian... - - Label - + &Encrypt Wallet... + I-&Encrypt in Wallet... - - Address - Address + &Backup Wallet... + I-&Backup ing Wallet... - - Date - Kaaldauan + &Change Passphrase... + &Alilan ing Passphrase... - - Confirmations - + Backup wallet to another location + I-backup ing wallet king aliwang lugal - - Confirmed - Me-kumpirma + Change the passphrase used for wallet encryption + Alilan ya ing passphrase a gagamitan para king wallet encryption - - Priority - + &Debug window + I-&Debug ing awang - - Copy address - Kopyan ing address + Open debugging and diagnostic console + Ibuklat ing debugging at diagnostic console - - Copy label - Kopyan ing label + &Verify message... + &Beripikan ing message... - - - Copy amount - Kopyan ing alaga + Wallet + Wallet - - Copy transaction ID - + &Show / Hide + &Ipalto / Isalikut - - Copy quantity - + &File + &File - - Copy fee - + &Settings + &Pamag-ayus - - Copy after fee - + &Help + &Saup - - Copy bytes - + Tabs toolbar + Gamit para king Tabs - - Copy priority - + [testnet] + [testnet] - - Copy low output - + Up to date + Makatuki ya king aldo - - Copy change - + Catching up... + Catching up... - - highest - + Sent transaction + Mipadalang transaksion - - high - + Incoming transaction + Paparatang a transaksion - - medium-high - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Aldo: %1 +Alaga: %2 +Type: %3 +Address: %4 + - - medium - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Maka-<b>encrypt</b> ya ing wallet at kasalukuyan yang maka-<b>unlocked</b> - - low-medium - + Wallet is <b>encrypted</b> and currently <b>locked</b> + Maka-<b>encrypt</b> ya ing wallet at kasalukuyan yang maka-<b>locked</b> + + + ClientModel - - low - + + Network Alert + Alertu ning Network + + + CoinControlDialog - - lowest - + Amount + Alaga - - DUST - + Address + Address - - yes - + Date + Kaaldauan - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Confirmed + Me-kumpirma - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Copy address + Kopyan ing address - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Copy label + Kopyan ing label - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy amount + Kopyan ing alaga - - (no label) - (alang label) - - - - change from %1 (%2) - - - - - (change) - + (alang label) EditAddressDialog - + Edit Address Alilan ing Address @@ -996,7 +1206,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1006,7 +1216,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1036,7 +1246,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1052,98 +1262,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Pamanggamit: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Pipamilian - + &Main &Pun - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee Mamayad &bayad para king transaksion - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1153,7 +1363,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1163,12 +1373,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1178,7 +1388,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1238,7 +1448,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1247,31 +1457,35 @@ This label turns red, if the priority is smaller than "medium". - 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. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - &Ipakit ing address king listahan naning transaksion + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + 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 BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + &Ipakit ing address king listahan naning transaksion - + &OK &OK @@ -1283,7 +1497,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1294,13 +1508,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1311,78 +1525,158 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Form - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - Wallet + Wallet - + Spendable: - + - + Your current spendable balance Ing kekang kasalungsungan balanse a malyari mung gastusan - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: Immature: + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + Mined balance that has not yet matured - Reng me-minang balanse a epa meg-matured + Reng me-minang balanse a epa meg-matured - + Total: Kabuuan: - Your current total balance - Ing kekang kasalungsungan kabuuang balanse + Ing kekang kasalungsungan kabuuang balanse - <b>Recent transactions</b> - <b>Reng kapilan pamung transaksion</b> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + <b>Reng kapilan pamung transaksion</b> - - Total of coins that was staked, and do not yet count toward the current balance - - - - + out of sync ali ya maka-sync @@ -1391,65 +1685,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Lagyu ning kliente @@ -1500,7 +1794,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1530,17 +1824,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1555,12 +1849,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1570,7 +1864,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1580,7 +1874,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1594,59 +1888,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Magpadalang Barya + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - + @@ -1654,296 +1948,390 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Misanang magpadala kareng alialiuang tumanggap + Misanang magpadala kareng alialiuang tumanggap Add &Recipient - Maglage &Tumanggap + Maglage &Tumanggap Remove all transaction fields - + Clear &All - I-Clear &Eganagana + I-Clear &Eganagana Balance: - Balanse: + Balanse: 123.456 BC - + Confirm the send action - Kumpirman ing aksion king pamagpadala + Kumpirman ing aksion king pamagpadala S&end - Ipadala + Ipadala - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - Kopyan ing alaga + Kopyan ing alaga Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - Kumpirman ing pamagpadalang barya + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - Ing address na ning tumanggap ali ya katanggap-tanggap, maliari pung pakilaue pasibayu. + 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. + Ing alaga na ning bayaran dapat mung mas matas ya king 0. The amount exceeds your balance. - Ing alaga mipasobra ya king kekang balanse. + 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 + 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. + Atin meakit a milupang address, maliari kamung magpadalang misan king metung a address king misan a pamagpadalang transaksion. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (alang label) + (alang label) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Form - + A&mount: - A&laga: + A&laga: Pay &To: - Ibayad &kang: + Ibayad &kang: - + 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 + Magpalub kang label para king address a ini ban a-iabe me king aklat dareng address &Label: - &Label: + &Label: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Idikit ing address menibat king clipboard + Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + - SignVerifyMessageDialog + SendCoinsDialog - - Signatures - Sign / Verify a Message - Pirma - Pirman / I-beripika ing mensayi + Send Coins + Magpadalang Barya - - - &Sign Message - &Pirman ing Mensayi + Send to multiple recipients at once + Misanang magpadala kareng alialiuang tumanggap - - 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. + Add &Recipient + Maglage &Tumanggap - + Clear &All + I-Clear &Eganagana + + + Balance: + Balanse: + + + Confirm the send action + Kumpirman ing aksion king pamagpadala + + + S&end + Ipadala + + + Copy amount + Kopyan ing alaga + + + Confirm send coins + Kumpirman ing pamagpadalang barya + + + 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. + + + (no label) + (alang label) + + + + SendCoinsEntry + + A&mount: + A&laga: + + + Pay &To: + Ibayad &kang: + + + 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: + + + Alt+A + Alt+A + + + Paste address from clipboard + Idikit ing address menibat king clipboard + + + Alt+P + Alt+P + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1974,7 +2362,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -1996,17 +2384,17 @@ This label turns red, if the priority is smaller than "medium". 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2017,7 +2405,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2027,7 +2415,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2106,12 +2494,14 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + conflicted - + @@ -2136,7 +2526,9 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - + + + @@ -2189,7 +2581,9 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - + + + @@ -2231,8 +2625,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2247,7 +2641,7 @@ This label turns red, if the priority is smaller than "medium". Inputs - + @@ -2278,7 +2672,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Detalye ning Transaksion @@ -2323,32 +2717,34 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2382,8 +2778,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - Me-mina + Me-mina @@ -2415,870 +2815,1117 @@ This label turns red, if the priority is smaller than "medium". Amount removed from or added to balance. Alagang milako o miragdag king balanse. - - - TransactionView + + + 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 Data + + + + + Comma separated file (*.csv) + Comma separated file (*.csv) + + + + Confirmed + Me-kumpirma + + + + Date + Kaaldauan + + + + Type + Klase + + + + Label + Label + + + + Address + Address + + + + Amount + Alaga + + + + ID + ID + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + Angga: + + + + to + para kang + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + Para agamit ing %s a pimamilian + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Mali + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + Atin kamalian a milyari kabang ayusan ya ing RPC port %u para keng pamakiramdam king IPv4: %s + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Dapat meng ilage ing rpcpassword=<password> king configuration file: +%s +Nung ing file ala ya, gawa ka gamit ing owner-readable-only file permissions. + + + + BitBean version + + + + + Usage: + Pamanggamit: + + + + Send command to -server or BitBeand + + + + + List commands + Listahan dareng commands + + + + Get help for a command + Maniauad saup para kareng command + + + + BitBean + + + + + Options: + Pipamilian: + + + + This help message + Ining saup a mensayi + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Pilinan ing data directory + + + + Specify wallet file (within data directory) + + + + + Set database cache size in megabytes (default: 25) + Ilage ya ing dagul o lati na ing database cache king megabytes (default: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Payagan ing pamaglawe DNS para king -addnode, -seednode and -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Mag-maintain peka <n> koneksion keng peers (default: 125) + + + + 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 + + + + Connect only to the specified node(s) + Kumunekta mu king mepiling node(s) + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + + Discover own IP address (default: 1 when listening and no -externalip) + I-discover ing sariling IP address (default: 1 istung makiramdam at -externalip) + + + + Find peers using internet relay chat (default: 0) + + - - - All - Eganagana + + Accept connections from outside (default: 1 if no -proxy or -connect) + Tumanggap koneksion menibat king kilwal (default: 1 if no -proxy or -connect) - - Today - Aldo iti + + Bind to given address. Use [host]:port notation for IPv6 + - This week - Paruminggung iti + Find peers using DNS lookup (default: 1) + - This month - Bulan a iti + Stake your beans to support network and gain reward (default: 1) + - Last month - Milabas a bulan + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + - This year - Banuang iti + Threshold for disconnecting misbehaving peers (default: 100) + Threshold for disconnecting misbehaving peers (default: 100) - Range... - Angganan... + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - Received with - Atanggap kayabe ning + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Sent to - Mipadala kang + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - To yourself - Keng sarili mu + + Use UPnP to map the listening port (default: 1 when listening) + - Mined - Me-mina + Use UPnP to map the listening port (default: 0) + - Other - Aliwa + Detach block and address databases. Increases shutdown time (default: 0) + - - Enter address or label to search - Magpalub kang address o label para pantunan + + Fee per KB to add to transactions you send + - - Min amount - Pekaditak a alaga + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Copy address - Kopyan ing address + + Accept command line and JSON-RPC commands + Tumanggap command line at JSON-RPC commands - Copy label - Kopyan ing label + Run in the background as a daemon and accept commands + Gumana king gulut bilang daemon at tumanggap commands - Copy amount - Kopyan ing alaga + Use the test network + Gamitan ing test network - Copy transaction ID - + Output extra debugging information. Implies all other -debug* options + - Edit label - Alilan ing label + Output extra network debugging information + - Show transaction details - Ipakit ing detalye ning transaksion + Prepend debug output with timestamp + - - Export Transaction Data - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - Comma separated file (*.csv) - Comma separated file (*.csv) + Send trace/debug info to console instead of debug.log file + Magpadalang trace/debug info okeng console kesa keng debug.log file - - Confirmed - Me-kumpirma + + Send trace/debug info to debugger + - Date - Kaaldauan + Username for JSON-RPC connections + Username para king JSON-RPC koneksion - Type - Klase + Password for JSON-RPC connections + Password para king JSON-RPC koneksion - Label - Label + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - - Address - Address + + Allow JSON-RPC connections from specified IP address + Payagan ya i JSON-RPC koneksion para king metung a IP address - Amount - Alaga + 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) - ID - ID + 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) - - Error exporting - + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + - - Could not write to file %1. - + + Require a confirmations for change (default: 0) + - - Range: - Angga: + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - - to - para kang + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - - - WalletModel - - Sending... - + + Upgrade wallet to latest format + I-upgrade ing wallet king pekabayung porma - - - bitcoin-core - - BitBean version - + + Set key pool size to <n> (default: 100) + I-set ing key pool size king <n>(default: 100) - Usage: - Pamanggamit: + Rescan the block chain for missing wallet transactions + I-scan pasibayu ing block chain para kareng mauaualang transaksion - Send command to -server or BitBeand - + Attempt to recover private keys from a corrupt wallet.dat + - List commands - Listahan dareng commands + How many blocks to check at startup (default: 2500, 0 = all) + - Get help for a command - Maniauad saup para kareng command + How thorough the block verification is (0-6, default: 1) + - - Options: - Pipamilian: + + Imports blocks from external blk000?.dat file + - - Specify configuration file (default: BitBean.conf) - + + Block creation options: + Pipamilian king pamag-gawang block: - Specify pid file (default: BitBeand.pid) - + Set minimum block size in bytes (default: 0) + Ilage ing pekaditak a dagul na ning block king bytes (default: 0) - - Specify wallet file (within data directory) - + + Set maximum block size in bytes (default: 250000) + - - Specify data directory - Pilinan ing data directory + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Set database cache size in megabytes (default: 25) - Ilage ya ing dagul o lati na ing database cache king megabytes (default: 25) + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Use OpenSSL (https) for JSON-RPC connections + Gumamit OpenSSL(https) para king JSON-RPC koneksion - Maintain at most <n> connections to peers (default: 125) - Mag-maintain peka <n> koneksion keng peers (default: 125) + Server certificate file (default: server.cert) + Server certificate file (default: server.cert) - - Connect to a node to retrieve peer addresses, and disconnect - Kumunekta king note ban ayakua mula reng peer address, at mako king panga konekta + + Server private key (default: server.pem) + Server private key (default: server.pem) - Specify your own public address - Sabyan me ing kekang pampublikong address + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Bind to given address. Use [host]:port notation for IPv6 - + + Invalid amount for -paytxfee=<amount>: '%s' + Eya maliari ing alaga keng -paytxfee=<amount>: '%s' - - Stake your coins to support network and gain reward (default: 1) - + + 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. - - Threshold for disconnecting misbehaving peers (default: 100) - Threshold for disconnecting misbehaving peers (default: 100) + + Invalid amount for -mininput=<amount>: '%s' + - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Wallet %s resides outside data directory %s. + - - 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 + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Detach block and address databases. Increases shutdown time (default: 0) - + + Verifying database integrity... + - - 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 initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + 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. + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + wallet.dat corrupt, salvage failed + - - Accept command line and JSON-RPC commands - Tumanggap command line at JSON-RPC commands + + Unknown -socks proxy version requested: %i + E kilalang -socks proxy version requested: %i - - Error: Transaction creation failed - + + Unknown network specified in -onlynet: '%s' + E kilalang network ing mepili king -onlynet: '%s' - - Error: Wallet locked, unable to create transaction - + + Invalid -proxy address: '%s' + Ali katanggap-tanggap a -proxy addresss: '%s' - - Importing blockchain data file. - + + Invalid -tor address: '%s' + - Importing bootstrap blockchain data file. - + Cannot resolve -bind address: '%s' + Eya me-resolve ing -bind address: '%s' - - Run in the background as a daemon and accept commands - Gumana king gulut bilang daemon at tumanggap commands + + 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. - Use the test network - Gamitan ing test network + Cannot resolve -externalip address: '%s' + Eya me-resolve ing -externalip address: '%s' - - Accept connections from outside (default: 1 if no -proxy or -connect) - Tumanggap koneksion menibat king kilwal (default: 1 if no -proxy or -connect) + + Invalid amount for -reservebalance=<amount> + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Unable to sign checkpoint, wrong checkpointkey? + + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Loading block index... + Lo-load dane ing block index... - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Error loading blkindex.dat + - - 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. + + Loading wallet... + Lo-load dane ing wallet... - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Error loading wallet.dat: Wallet corrupted + Me-mali ya ing pamag-load king wallet.dat: Me-corrupt ya ing wallet - + 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. - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Attempt to recover private keys from a corrupt wallet.dat - + + Wallet needed to be rewritten: restart BitBean to complete + - - Block creation options: - Pipamilian king pamag-gawang block: + + Error loading wallet.dat + Me-mali ya ing pamag-load king wallet.dat - - Connect only to the specified node(s) - Kumunekta mu king mepiling node(s) + + Cannot downgrade wallet + Ali ya magsilbing i-downgrade ing wallet - - Discover own IP address (default: 1 when listening and no -externalip) - I-discover ing sariling IP address (default: 1 istung makiramdam at -externalip) + + Cannot initialize keypool + - - 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. + + Cannot write default address + Eya misulat ing default address - - Find peers using DNS lookup (default: 1) - + + Rescanning... + I-scan deng pasibayu... - - Sync checkpoints policy (default: strict) - + + Importing blockchain data file. + - - Invalid -tor address: '%s' - + + Importing bootstrap blockchain data file. + - - Invalid amount for -reservebalance=<amount> - + + Loading addresses... + Lo-load da ne ing address... - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Error: could not start node + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Done loading + Yari ne ing pamag-load - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Unable to bind to %s on this computer. BitBean is probably already running. + - - Output extra debugging information. Implies all other -debug* options - + + 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) - Output extra network debugging information - + Error: Wallet locked, unable to create transaction + - Prepend debug output with timestamp - + Error: Wallet unlocked for staking only, unable to create transaction. + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Pipamilian ning SSL: (lawen ye ing Bitcoin Wiki para king SSL setup instructions) + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Select the version of socks proxy to use (4-5, default: 5) - + + Error: Transaction creation failed + - - Send trace/debug info to console instead of debug.log file - Magpadalang trace/debug info okeng console kesa keng debug.log file + + Sending... + - Send trace/debug info to debugger - + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Set maximum block size in bytes (default: 250000) - + + Invalid amount + Ing alaga e ya katanggap-tanggap - - Set minimum block size in bytes (default: 0) - Ilage ing pekaditak a dagul na ning block king bytes (default: 0) + + Insufficient funds + Kulang a pondo - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Specify connection timeout in milliseconds (default: 5000) - + + Warning: This version is obsolete, upgrade required! + Kapabaluan: Ing bersioin a ini laus ne, kailangan nang mag-upgrade! - - Unable to sign checkpoint, wrong checkpointkey? - - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Use UPnP to map the listening port (default: 0) - + + Warning: Disk space is low! + - - Use UPnP to map the listening port (default: 1 when listening) - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Use proxy to reach tor hidden services (default: same as -proxy) - + Usage: + Pamanggamit: - - Username for JSON-RPC connections - Username para king JSON-RPC koneksion + List commands + Listahan dareng commands - - Verifying database integrity... - + Get help for a command + Maniauad saup para kareng command - - WARNING: syncronized checkpoint violation detected, but skipped! - + Options: + Pipamilian: - - Warning: Disk space is low! - + Specify data directory + Pilinan ing data directory - - Warning: This version is obsolete, upgrade required! - Kapabaluan: Ing bersioin a ini laus ne, kailangan nang mag-upgrade! + Set database cache size in megabytes (default: 25) + Ilage ya ing dagul o lati na ing database cache king megabytes (default: 25) - - wallet.dat corrupt, salvage failed - + Maintain at most <n> connections to peers (default: 125) + Mag-maintain peka <n> koneksion keng peers (default: 125) - - Password for JSON-RPC connections - Password para king JSON-RPC koneksion + Connect to a node to retrieve peer addresses, and disconnect + Kumunekta king note ban ayakua mula reng peer address, at mako king panga konekta - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + Specify your own public address + Sabyan me ing kekang pampublikong address - - Find peers using internet relay chat (default: 0) - + Threshold for disconnecting misbehaving peers (default: 100) + Threshold for disconnecting misbehaving peers (default: 100) - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + 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 - - Allow JSON-RPC connections from specified IP address - Payagan ya i JSON-RPC koneksion para king metung a IP address + Accept command line and JSON-RPC commands + Tumanggap command line at JSON-RPC commands - - 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) + Run in the background as a daemon and accept commands + Gumana king gulut bilang daemon at tumanggap commands - - 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) + Use the test network + Gamitan ing test network - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Accept connections from outside (default: 1 if no -proxy or -connect) + Tumanggap koneksion menibat king kilwal (default: 1 if no -proxy or -connect) - - Require a confirmations for change (default: 0) - + 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. - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Block creation options: + Pipamilian king pamag-gawang block: - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Connect only to the specified node(s) + Kumunekta mu king mepiling node(s) - - Upgrade wallet to latest format - I-upgrade ing wallet king pekabayung porma + Discover own IP address (default: 1 when listening and no -externalip) + I-discover ing sariling IP address (default: 1 istung makiramdam at -externalip) - - Set key pool size to <n> (default: 100) - I-set ing key pool size king <n>(default: 100) + 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. - - Rescan the block chain for missing wallet transactions - I-scan pasibayu ing block chain para kareng mauaualang transaksion + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Pipamilian ning SSL: (lawen ye ing Bitcoin Wiki para king SSL setup instructions) - - How many blocks to check at startup (default: 2500, 0 = all) - + Send trace/debug info to console instead of debug.log file + Magpadalang trace/debug info okeng console kesa keng debug.log file - - How thorough the block verification is (0-6, default: 1) - + Set minimum block size in bytes (default: 0) + Ilage ing pekaditak a dagul na ning block king bytes (default: 0) - - Imports blocks from external blk000?.dat file - + Username for JSON-RPC connections + Username para king JSON-RPC koneksion - - Use OpenSSL (https) for JSON-RPC connections - Gumamit OpenSSL(https) para king JSON-RPC koneksion + Warning: This version is obsolete, upgrade required! + Kapabaluan: Ing bersioin a ini laus ne, kailangan nang mag-upgrade! - - Server certificate file (default: server.cert) - Server certificate file (default: server.cert) + Password for JSON-RPC connections + Password para king JSON-RPC koneksion - - Server private key (default: server.pem) - Server private key (default: server.pem) + Allow JSON-RPC connections from specified IP address + Payagan ya i JSON-RPC koneksion para king metung a IP address - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + 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) - - Error: Wallet unlocked for staking only, unable to create transaction. - + 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) - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + Upgrade wallet to latest format + I-upgrade ing wallet king pekabayung porma - - This help message - Ining saup a mensayi + Set key pool size to <n> (default: 100) + I-set ing key pool size king <n>(default: 100) - - Wallet %s resides outside data directory %s. - + Rescan the block chain for missing wallet transactions + I-scan pasibayu ing block chain para kareng mauaualang transaksion - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + Use OpenSSL (https) for JSON-RPC connections + Gumamit OpenSSL(https) para king JSON-RPC koneksion - - BitBean - + Server certificate file (default: server.cert) + Server certificate file (default: server.cert) - - 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) + Server private key (default: server.pem) + Server private key (default: server.pem) - - Connect through socks proxy - + This help message + Ining saup a mensayi - - Allow DNS lookups for -addnode, -seednode and -connect - Payagan ing pamaglawe DNS para king -addnode, -seednode and -connect + 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) - - Loading addresses... - Lo-load da ne ing address... + Allow DNS lookups for -addnode, -seednode and -connect + Payagan ing pamaglawe DNS para king -addnode, -seednode and -connect - - Error loading blkindex.dat - + 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 BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + Me-mali ya ing pamag-load king wallet.dat: Me-corrupt ya ing wallet - Error loading wallet.dat - Me-mali ya ing pamag-load king wallet.dat + Me-mali ya ing pamag-load king wallet.dat - Invalid -proxy address: '%s' - Ali katanggap-tanggap a -proxy addresss: '%s' + Ali katanggap-tanggap a -proxy addresss: '%s' - Unknown network specified in -onlynet: '%s' - E kilalang network ing mepili king -onlynet: '%s' + E kilalang network ing mepili king -onlynet: '%s' - Unknown -socks proxy version requested: %i - E kilalang -socks proxy version requested: %i + E kilalang -socks proxy version requested: %i - Cannot resolve -bind address: '%s' - Eya me-resolve ing -bind address: '%s' + Eya me-resolve ing -bind address: '%s' - Cannot resolve -externalip address: '%s' - Eya me-resolve ing -externalip address: '%s' + Eya me-resolve ing -externalip address: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Eya maliari ing alaga keng -paytxfee=<amount>: '%s' - - - - Error: could not start node - - - - - Sending... - + Eya maliari ing alaga keng -paytxfee=<amount>: '%s' - Invalid amount - Ing alaga e ya katanggap-tanggap + Ing alaga e ya katanggap-tanggap - Insufficient funds - Kulang a pondo + Kulang a pondo - Loading block index... - Lo-load dane ing 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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + Magdagdag a node ban kumunekta at subuknan apanatili yang makabuklat ing koneksion - Loading wallet... - Lo-load dane ing wallet... + Lo-load dane ing wallet... - Cannot downgrade wallet - Ali ya magsilbing i-downgrade ing wallet - - - - Cannot initialize keypool - + Ali ya magsilbing i-downgrade ing wallet - Cannot write default address - Eya misulat ing default address + Eya misulat ing default address - Rescanning... - I-scan deng pasibayu... + I-scan deng pasibayu... - Done loading - Yari ne ing pamag-load + Yari ne ing pamag-load - To use the %s option - Para agamit ing %s a pimamilian + Para agamit ing %s a pimamilian - Error - Mali + 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. - Dapat meng ilage ing rpcpassword=<password> king configuration file: + Dapat meng ilage ing rpcpassword=<password> king configuration file: %s 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/bitbean_pl.qm b/src/qt/locale/bitbean_pl.qm new file mode 100644 index 0000000..5b9af97 Binary files /dev/null and b/src/qt/locale/bitbean_pl.qm differ diff --git a/src/qt/locale/bitcoin_pl.ts b/src/qt/locale/bitbean_pl.ts similarity index 53% rename from src/qt/locale/bitcoin_pl.ts rename to src/qt/locale/bitbean_pl.ts index e0ebf0e..f7229f5 100644 --- a/src/qt/locale/bitcoin_pl.ts +++ b/src/qt/locale/bitbean_pl.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean O BitBean - + <b>BitBean</b> version <b>BitBean</b> wersja - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - 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. - + Oprogramowanie eksperymentalne. Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -37,48 +49,48 @@ This product includes software developed by the OpenSSL Project for use in the O AddressBookPage - + Address Book Książka Adresowa - + Double-click to edit address or label Kliknij dwukrotnie, aby edytować adres lub etykietę - + Create a new address Utwórz nowy adres - + Copy the currently selected address to the system clipboard Skopiuj aktualnie wybrany adres do schowka - + &New Address Nowy Adres - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. Tutaj znajdują się twoje adresy do odbierania wpłat. Możesz dodać kolejny adres dla każdego wysyłającego aby określić od kogo pochodzi wpłata. - + &Copy Address &Kopiuj adres - + Show &QR Code Pokaż &Kod QR - + Sign a message to prove you own a BitBean address Podpisz wiadomość by udowodnić, że jesteś właścicielem adresu BitBean @@ -88,12 +100,12 @@ Możesz dodać kolejny adres dla każdego wysyłającego aby określić od kogo Podpisz &Wiadomość - + Delete the currently selected address from the list Usuń zaznaczony adres z listy - + Verify a message to ensure it was signed with a specified BitBean address Zweryfikuj wiadomość, w celu zapewnienia, że została podpisana z określonego adresu BitBean @@ -103,7 +115,7 @@ Możesz dodać kolejny adres dla każdego wysyłającego aby określić od kogo &Zweryfikuj wiadomość - + &Delete &Usuń @@ -159,34 +171,34 @@ Możesz dodać kolejny adres dla każdego wysyłającego aby określić od kogo AskPassphraseDialog - + Passphrase Dialog Okienko Hasła - + Enter passphrase Wpisz hasło - + New passphrase Nowe hasło - + Repeat new passphrase Powtórz nowe hasło - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -234,17 +246,26 @@ Możesz dodać kolejny adres dla każdego wysyłającego aby określić od kogo Potwierdź szyfrowanie portfela - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - Uwaga: Jeśli zaszyfrujesz swój portfel i zgubisz hasło, wtedy<b>UTRACISZ SWOJE MONETY!</b>! + Uwaga: Jeśli zaszyfrujesz swój portfel i zgubisz hasło, wtedy<b>UTRACISZ SWOJE MONETY!</b>! - + Are you sure you wish to encrypt your wallet? Jesteś pewien, że chcesz zaszyfrować swój portfel? - + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 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. @@ -261,12 +282,7 @@ Możesz dodać kolejny adres dla każdego wysyłającego aby określić od kogo Portfel zaszyfrowany - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -308,333 +324,591 @@ Możesz dodać kolejny adres dla każdego wysyłającego aby określić od kogo - BitcoinGUI - - - Sign &message... - Podpisz wiado&mość... - + BeanControlDialog - - Synchronizing with network... - Synchronizacja z siecią... + + Bean Control + - - &Overview - P&odsumowanie + + Quantity: + Ilość: - - Show general overview of wallet - Pokazuje ogólny zarys portfela + + Bytes: + Bajtów: - - &Transactions - &Transakcje + + Amount: + Kwota: - - Browse transaction history - Przeglądaj historię transakcji + + Priority: + Priorytet: - - &Address Book - &Książka Adresowa + + Fee: + Opłata: - - Edit the list of stored addresses and labels - Edytuj listę przechowywanych adresów i etykiet + + Low Output: + - - &Receive coins - &Odbierz monety + + After Fee: + Po opłacie: - - Show the list of addresses for receiving payments - Pokaż listę adresów do odbierania wpłat + + Change: + Reszta: - - &Send coins - &Wyślij monety + + (un)select all + Zaznacz/Odznacz wszystko - - E&xit - &Zakończ + + Tree mode + Widok drzewa - - Quit application - Zamknij program + + List mode + Widok listy - - Show information about BitBean - Pokaż informacje dotyczące BitBean + + Amount + Kwota - - About &Qt - O &Qt + + Label + Etykieta - - Show information about Qt - Pokazuje informacje o Qt + + Address + Adres - - &Options... - &Opcje... + + Date + Data - - &Encrypt Wallet... - Zaszyfruj Portf&el + + Confirmations + Potwierdzenia - &Backup Wallet... - Wykonaj kopię zapasową... + Confirmed + Potwierdzony - - &Change Passphrase... - &Zmień hasło... - - - - ~%n block(s) remaining - + + Priority + Priorytet - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Pobrano %1 z %2 bloków historii transakcji (%3% gotowe). + + Copy address + Kopiuj adres - - &Export... - &Exportuj + + Copy label + Kopiuj etykietę - - Send coins to a BitBean address - Wyślij monety na adres BitBean + + + Copy amount + Kopiuj kwotę - - Modify configuration options for BitBean - + + Copy transaction ID + Skopiuj ID transakcji - - Export the data in the current tab to a file - + + Copy quantity + Skopiuj ilość - - Encrypt or decrypt wallet - + + Copy fee + Skopiuj opłatę - - Backup wallet to another location - Zapasowy portfel w innej lokalizacji + + Copy after fee + Skopiuj ilość po opłacie - - Change the passphrase used for wallet encryption - Zmień hasło użyte do szyfrowania portfela + + Copy bytes + Skopiuj ilość bajtów - - &Debug window - &Okno debugowania + + Copy priority + Skopiuj priorytet - Open debugging and diagnostic console - Otwórz konsolę debugowania i diagnostyki + Copy low output + - - &Verify message... - &Zweryfikuj wiadomość... + + Copy change + Skopiuj resztę - - BitBean - BitBean + + highest + najwyższa - - Wallet - Portfel + + high + wysoka - - &About BitBean - + + medium-high + średnio wysoki - - &Show / Hide - &Pokaż / Ukryj + + medium + średnia - - Unlock wallet - + + low-medium + średnio niski - &Lock Wallet - + low + niski - Lock wallet - + lowest + najniższy - - &File - &Plik + + DUST + - - &Settings - P&referencje + + yes + tak - - &Help - Pomo&c + + no + nie - - Tabs toolbar - Pasek zakładek + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (bez etykiety) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + reszta z %1 (%2) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + (reszta) + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + BitBean - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + P&odsumowanie - - - %n second(s) ago - + + + Show general overview of wallet + Pokazuje ogólny zarys portfela + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Pokaż listę adresów do odbierania wpłat + + + + &Transactions + &Transakcje + + + + Browse transaction history + Przeglądaj historię transakcji + + + + &Address Book + &Książka Adresowa + + + + Edit the list of stored addresses and labels + Edytuj listę przechowywanych adresów i etykiet + + + + E&xit + &Zakończ + + + + Quit application + Zamknij program + + + + &About BitBean + + + + + Show information about BitBean + Pokaż informacje dotyczące BitBean + + + + About &Qt + O &Qt + + + + Show information about Qt + Pokazuje informacje o Qt + + + + &Options... + &Opcje... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + &Pokaż / Ukryj + + + + &Encrypt Wallet... + Zaszyfruj Portf&el + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + Wykonaj kopię zapasową... + + + + Backup wallet to another location + Zapasowy portfel w innej lokalizacji + + + + &Change Passphrase... + &Zmień hasło... + + + + Change the passphrase used for wallet encryption + Zmień hasło użyte do szyfrowania portfela - + &Unlock Wallet... - + + + + + Unlock wallet + Odblokuj portfel + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Podpisz wiado&mość... + + + + &Verify message... + &Zweryfikuj wiadomość... + + + + &Export... + &Exportuj + + + + Export the data in the current tab to a file + + + + + &Debug window + &Okno debugowania + + + + Open debugging and diagnostic console + Otwórz konsolę debugowania i diagnostyki + + + + &File + &Plik + + + + &Settings + P&referencje + + + + &Help + Pomo&c + + + + Tabs toolbar + Pasek zakładek + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + - + + %n active connection(s) to BitBean network + + + + + + + + + Synchronizing with network... + Synchronizacja z siecią... + + + + ~%n block(s) remaining + + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Pobrano %1 z %2 bloków historii transakcji (%3% gotowe). + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + %n minute(s) ago - + + + + + %n hour(s) ago - + + + + + %n day(s) ago - + + + + + Up to date - Aktualny + Aktualny Catching up... - Łapanie bloków... + Łapanie bloków... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Transakcja wysłana + Transakcja wysłana Incoming transaction - Transakcja przychodząca + Transakcja przychodząca @@ -643,7 +917,7 @@ Amount: %2 Type: %3 Address: %4 - Data: %1 + Data: %1 Kwota: %2 Typ: %3 Adres: %4 @@ -653,341 +927,477 @@ Adres: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Portfel jest <b>zaszyfrowany</b> i obecnie <b>niezablokowany</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> + Portfel jest <b>zaszyfrowany</b> i obecnie <b>zablokowany</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + + %n minute(s) - + + + + + %n hour(s) - %n godzina%n godzin%n godzin + + %n godzina + %n godzin + %n godzin + %n day(s) - %n dzień%n dni%n dni + + %n dzień + %n dni + %n dni + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Sieć Alert + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - Ilość: + + Not staking because you don't have mature beans + - - Bytes: - Bajtów: + + Not staking + + + + BitcoinGUI - - Amount: - Kwota: + Sign &message... + Podpisz wiado&mość... - - Priority: - Priorytet: + Synchronizing with network... + Synchronizacja z siecią... - - Fee: - Opłata: + &Overview + P&odsumowanie - - Low Output: - + Show general overview of wallet + Pokazuje ogólny zarys portfela - - no - nie + &Transactions + &Transakcje - - After Fee: - Po opłacie: + Browse transaction history + Przeglądaj historię transakcji - - Change: - Reszta: + &Address Book + &Książka Adresowa - - (un)select all - Zaznacz/Odznacz wszystko + Edit the list of stored addresses and labels + Edytuj listę przechowywanych adresów i etykiet - - Tree mode - Widok drzewa + &Receive coins + &Odbierz monety - - List mode - Widok listy + Show the list of addresses for receiving payments + Pokaż listę adresów do odbierania wpłat - - Amount - Kwota + &Send coins + &Wyślij monety - - Label - + E&xit + &Zakończ - - Address - Adres + Quit application + Zamknij program + + + Show information about BitBean + Pokaż informacje dotyczące BitBean + + + 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... + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Pobrano %1 z %2 bloków historii transakcji (%3% gotowe). + + + &Export... + &Exportuj + + + Send coins to a BitBean address + Wyślij monety na adres BitBean + + + 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ść... + + + BitBean + BitBean + + + Wallet + Portfel + + + &Show / Hide + &Pokaż / Ukryj + + + &File + &Plik + + + &Settings + P&referencje + + + &Help + Pomo&c + + + Tabs toolbar + Pasek zakładek + + + [testnet] + [testnet] + + + 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 +Address: %4 + + Data: %1 +Kwota: %2 +Typ: %3 +Adres: %4 + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Portfel jest <b>zaszyfrowany</b> i obecnie <b>niezablokowany</b> + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Portfel jest <b>zaszyfrowany</b> i obecnie <b>zablokowany</b> + + + %n hour(s) + + %n godzina + %n godzin + %n godzin + + + + %n day(s) + + %n dzień + %n dni + %n dni + + + + + ClientModel + + + Network Alert + Sieć Alert + + + + CoinControlDialog + + Quantity: + Ilość: + + + Bytes: + Bajtów: + + + Amount: + Kwota: + + + Priority: + Priorytet: + + + Fee: + Opłata: + + + no + nie + + + 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 + Data - Confirmations - Potwierdzenia + Potwierdzenia - Confirmed - Potwierdzony + Potwierdzony - Priority - Priorytet + Priorytet - Copy address - Kopiuj adres + Kopiuj adres - Copy label - Kopiuj etykietę + Kopiuj etykietę - - Copy amount - Kopiuj kwotę + Kopiuj kwotę - Copy transaction ID - Skopiuj ID transakcji + Skopiuj ID transakcji - Copy quantity - Skopiuj ilość + Skopiuj ilość - Copy fee - Skopiuj opłatę + Skopiuj opłatę - Copy after fee - Skopiuj ilość po opłacie + Skopiuj ilość po opłacie - Copy bytes - Skopiuj ilość bajtów + Skopiuj ilość bajtów - Copy priority - Skopiuj priorytet - - - - Copy low output - + Skopiuj priorytet - Copy change - Skopiuj resztę + Skopiuj resztę - highest - najwyższa + najwyższa - high - wysoka + wysoka - medium-high - średnio wysoki + średnio wysoki - medium - średnia + średnia - low-medium - średnio niski + średnio niski - low - niski + niski - lowest - najniższy - - - - DUST - + najniższy - yes - tak - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 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. - - This means a fee of at least %2 is required. - + tak - - (no label) - (bez etykiety) + (bez etykiety) - change from %1 (%2) - reszta z %1 (%2) + reszta z %1 (%2) - (change) - (reszta) + (reszta) EditAddressDialog - + Edit Address Edytuj adres @@ -999,7 +1409,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1009,7 +1419,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1039,7 +1449,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1055,98 +1465,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Użycie: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + 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. Fee 5.00 recommended. - - - - + Pay transaction &fee Płać prowizję za transakcje - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1156,7 +1566,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1166,12 +1576,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1181,7 +1591,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1241,7 +1651,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1250,31 +1660,35 @@ This label turns red, if the priority is smaller than "medium". - 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 + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - &Wyświetlaj adresy w liście transakcji + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + 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 BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + &Wyświetlaj adresy w liście transakcji - + &OK &OK @@ -1286,7 +1700,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1297,13 +1711,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1314,78 +1728,158 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Formularz - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + + - + Unconfirmed: - + - Wallet - Portfel + Portfel - + Spendable: - + - + Your current spendable balance Twoje obecne saldo - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: Niedojrzały: + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + Mined balance that has not yet matured - Balans wydobycia, który jeszcze nie dojrzał + Balans wydobycia, który jeszcze nie dojrzał - + Total: Wynosi ogółem: - Your current total balance - Twoje obecne saldo + Twoje obecne saldo - <b>Recent transactions</b> - <b>Ostatnie transakcje</b> + <b>Ostatnie transakcje</b> - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - - - - - Total of coins that was staked, and do not yet count toward the current balance - - - - + out of sync desynchronizacja @@ -1394,65 +1888,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Kwota: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Nazwa klienta @@ -1503,7 +1997,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1533,17 +2027,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1558,12 +2052,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1573,7 +2067,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1583,7 +2077,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1597,59 +2091,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Wyślij Monety + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - Ilość: + Ilość: 0 - + Bytes: - Bajtów: + Bajtów: Amount: - Kwota: + Kwota: @@ -1657,272 +2151,414 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - Priorytet: + Priorytet: medium - + średnia Fee: - Opłata: + Opłata: Low Output: - + no - + nie After Fee: - Po opłacie: + Po opłacie: Change - + custom change address - + Send to multiple recipients at once - Wyślij do wielu odbiorców na raz + Wyślij do wielu odbiorców na raz Add &Recipient - Dodaj Odbio&rce + Dodaj Odbio&rce Remove all transaction fields - + Clear &All - Wyczyść &wszystko + Wyczyść &wszystko Balance: - Saldo: + Saldo: 123.456 BC - + Confirm the send action - Potwierdź akcję wysyłania + Potwierdź akcję wysyłania S&end - Wy&syłka + Wy&syłka - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - Skopiuj ilość + Skopiuj ilość Copy amount - Kopiuj kwotę + Kopiuj kwotę Copy fee - Skopiuj opłatę + Skopiuj opłatę Copy after fee - Skopiuj ilość po opłacie + Skopiuj ilość po opłacie Copy bytes - Skopiuj ilość bajtów + Skopiuj ilość bajtów Copy priority - Skopiuj priorytet + Skopiuj priorytet Copy low output - + Copy change - Skopiuj resztę + Skopiuj resztę <b>%1</b> to %2 (%3) - + - Confirm send coins - Potwierdź wysyłanie monet + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - Adres odbiorcy jest nieprawidłowy, proszę poprawić + 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. + Kwota do zapłacenia musi być większa od 0. The amount exceeds your balance. - Kwota przekracza twoje saldo. + 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. + 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. + Znaleziono powtórzony adres, można wysłać tylko raz na każdy adres podczas operacji wysyłania. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (bez etykiety) + (bez etykiety) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Formularz - + A&mount: - Su&ma: + Su&ma: Pay &To: - Zapłać &dla: + Zapłać &dla: - + 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 + Wprowadź etykietę dla tego adresu by dodać go do książki adresowej &Label: - &Etykieta: + &Etykieta: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Wklej adres ze schowka + Wklej adres ze schowka Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + Wyślij Monety + + + Quantity: + Ilość: + + + Bytes: + Bajtów: + + + Amount: + Kwota: + + + Priority: + Priorytet: + + + Fee: + Opłata: + + + After Fee: + Po opłacie: + + + Send to multiple recipients at once + Wyślij do wielu odbiorców na raz + + + Add &Recipient + Dodaj Odbio&rce + + + Clear &All + Wyczyść &wszystko + + + Balance: + Saldo: + + + Confirm the send action + Potwierdź akcję wysyłania + + + S&end + Wy&syłka + + + 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 change + Skopiuj resztę + + + Confirm send coins + Potwierdź wysyłanie monet + + + 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. + + + (no label) + (bez etykiety) + + + + SendCoinsEntry + + A&mount: + Su&ma: + + + Pay &To: + Zapłać &dla: + + + 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: + + + Alt+A + Alt+A + + + Paste address from clipboard + Wklej adres ze schowka + + + Alt+P + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message Podpisy - Podpisz / zweryfikuj wiadomość @@ -1940,13 +2576,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1977,7 +2613,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -2004,12 +2640,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2020,7 +2656,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2030,7 +2666,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2109,12 +2745,16 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + + conflicted - + @@ -2139,7 +2779,11 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - , emitowany przez %n węzeł, emitowany przez %n węzły, emitowany przez %n węzłów + + , emitowany przez %n węzeł + , emitowany przez %n węzły + , emitowany przez %n węzłów + @@ -2192,7 +2836,11 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - potwierdzona przy %n bloku więcejpotwierdzona przy %n blokach więcejpotwierdzona przy %n blokach więcej + + potwierdzona przy %n bloku więcej + potwierdzona przy %n blokach więcej + potwierdzona przy %n blokach więcej + @@ -2234,8 +2882,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2281,7 +2929,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Szczegóły transakcji @@ -2326,12 +2974,16 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + + + Offline - + @@ -2346,12 +2998,12 @@ This label turns red, if the priority is smaller than "medium". Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2360,928 +3012,1235 @@ This label turns red, if the priority is smaller than "medium". - Generated but not accepted - Wygenerowano ale nie zaakceptowano + Generated but not accepted + Wygenerowano ale nie zaakceptowano + + + + Received with + Otrzymane przez + + + + Received from + Odebrano od + + + + Sent to + Wysłano do + + + + Payment to yourself + Płatność do siebie + + + + SPROUT + + + + 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. + + + + 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ę + + + + Show transaction details + Pokaż szczegóły transakcji + + + + Export Transaction Data + + + + + Comma separated file (*.csv) + CSV (rozdzielany przecinkami) + + + + Confirmed + Potwierdzony + + + + Date + Data + + + + Type + Typ + + + + Label + Etykieta + + + + Address + Adres + + + + Amount + Kwota + + + + ID + ID + + + + Error exporting + Błąd exportowania + + + + Could not write to file %1. + Nie mogę zapisać do pliku %1 + + + + Range: + Zakres: + + + + to + do + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + Aby użyć opcji %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Błąd + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Musisz ustawić rpcpassword=<hasło> w pliku configuracyjnym: +%s +Jeżeli plik nie istnieje, utwórz go z uprawnieniami właściciela-tylko-do-odczytu. + + + + BitBean version + + + + + Usage: + Użycie: + + + + Send command to -server or BitBeand + + + + + List commands + Lista poleceń + + + + Get help for a command + Uzyskaj pomoc do polecenia + + + + BitBean + BitBean + + + + Options: + Opcje: + + + + This help message + Ta wiadomość pomocy + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Wskaż folder danych + + + + Specify wallet file (within data directory) + Określ plik portfela (w obrębie folderu danych) + + + + Set database cache size in megabytes (default: 25) + Ustaw rozmiar w megabajtach cache-u bazy danych (domyślnie: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Wskaż czas oczekiwania bezczynności połączenia w milisekundach (domyślnie: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Zezwól -addnode, -seednode i -connect na łączenie się z serwerem DNS + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Utrzymuj maksymalnie <n> połączeń z peerami (domyślnie: 125) + + + + 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 + + + + Connect only to the specified node(s) + Łącz tylko do wskazanego węzła + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Łącz z węzłami tylko w sieci <net> (IPv4, IPv6 lub Tor) + + + + 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 ) + + + + Find peers using internet relay chat (default: 0) + + + + + 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) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + 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) + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 0) + Używaj UPnP do mapowania portu nasłuchu (domyślnie: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + Akceptuj linię poleceń oraz polecenia JSON-RPC + + + + 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 + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + 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) + + + + Send trace/debug info to console instead of debug.log file + Wyślij informację/raport do konsoli zamiast do pliku debug.log. + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + Nazwa użytkownika dla połączeń JSON-RPC + + + + Password for JSON-RPC connections + Hasło do połączeń JSON-RPC + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + - - Received with - Otrzymane przez + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - Received from - Odebrano od + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - Sent to - Wysłano do + Upgrade wallet to latest format + Zaktualizuj portfel do najnowszego formatu. - - Payment to yourself - Płatność do siebie + + Set key pool size to <n> (default: 100) + Ustaw rozmiar puli kluczy na <n> (domyślnie: 100) - - Mined - Wydobyto + + Rescan the block chain for missing wallet transactions + Przeskanuj blok łańcuchów żeby znaleźć zaginione transakcje portfela - - (n/a) - (brak) + + Attempt to recover private keys from a corrupt wallet.dat + Próbuj odzyskać klucze prywatne z uszkodzonego wallet.dat - - Transaction status. Hover over this field to show number of confirmations. - Status transakcji. Najedź na pole, aby zobaczyć liczbę potwierdzeń. + + How many blocks to check at startup (default: 2500, 0 = all) + - - Date and time that the transaction was received. - Data i czas odebrania transakcji. + + How thorough the block verification is (0-6, default: 1) + - - Type of transaction. - Rodzaj transakcji. + + Imports blocks from external blk000?.dat file + - - Destination address of transaction. - Adres docelowy transakcji. + + Block creation options: + Opcje tworzenia bloku: - - Amount removed from or added to balance. - Kwota usunięta z lub dodana do konta. + + Set minimum block size in bytes (default: 0) + Ustaw minimalny rozmiar bloku w bajtach (domyślnie: 0) - - - TransactionView - - - All - Wszystko + + Set maximum block size in bytes (default: 250000) + - - Today - Dzisiaj + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - This week - W tym tygodniu + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - This month - W tym miesiącu + Use OpenSSL (https) for JSON-RPC connections + Użyj OpenSSL (https) do połączeń JSON-RPC - Last month - W zeszłym miesiącu + Server certificate file (default: server.cert) + Plik certyfikatu serwera (domyślnie: server.cert) - This year - W tym roku + Server private key (default: server.pem) + Klucz prywatny serwera (domyślnie: server.pem) - Range... - Zakres... + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Received with - Otrzymane przez + + Invalid amount for -paytxfee=<amount>: '%s' + Nieprawidłowa kwota dla -paytxfee=<amount>: '%s' - - Sent to - Wysłano do + + 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. - - To yourself - Do siebie + + Invalid amount for -mininput=<amount>: '%s' + - Mined - Wydobyto + Wallet %s resides outside data directory %s. + - Other - Inne + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Enter address or label to search - Wprowadź adres albo etykietę żeby wyszukać + + Verifying database integrity... + - - Min amount - Min suma + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Copy address - Kopiuj adres + + 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ą. + + + + wallet.dat corrupt, salvage failed + wallet.dat uszkodzony, odtworzenie się nie powiodło - Copy label - Kopiuj etykietę + Unknown -socks proxy version requested: %i + Nieznana wersja proxy w -socks: %i - Copy amount - Kopiuj kwotę + Unknown network specified in -onlynet: '%s' + Nieznana sieć w -onlynet: '%s' - Copy transaction ID - Skopiuj ID transakcji + Invalid -proxy address: '%s' + Nieprawidłowy adres -proxy: '%s' - Edit label - Edytuj etykietę + Invalid -tor address: '%s' + - Show transaction details - Pokaż szczegóły transakcji + Cannot resolve -bind address: '%s' + Nie można uzyskać adresu -bind: '%s' - - Export Transaction Data - + + 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. - Comma separated file (*.csv) - CSV (rozdzielany przecinkami) + Cannot resolve -externalip address: '%s' + Nie można uzyskać adresu -externalip: '%s' - - Confirmed - Potwierdzony + + Invalid amount for -reservebalance=<amount> + - Date - Data + Unable to sign checkpoint, wrong checkpointkey? + + - Type - Typ + Loading block index... + Ładowanie indeksu bloku... - Label - Etykieta + Error loading blkindex.dat + - Address - Adres + Loading wallet... + Wczytywanie portfela... - Amount - Kwota + Error loading wallet.dat: Wallet corrupted + Błąd ładowania wallet.dat: Uszkodzony portfel - ID - ID + 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. - - Error exporting - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Could not write to file %1. - + + Wallet needed to be rewritten: restart BitBean to complete + - - Range: - Zakres: + + Error loading wallet.dat + Błąd ładowania wallet.dat - - to - do + + Cannot downgrade wallet + Nie można dezaktualizować portfela - - - WalletModel - - Sending... - + + Cannot initialize keypool + - - - bitcoin-core - - BitBean version - + + Cannot write default address + Nie można zapisać domyślnego adresu - Usage: - Użycie: + Rescanning... + Ponowne skanowanie... - Send command to -server or BitBeand - + Importing blockchain data file. + - List commands - Lista poleceń + Importing bootstrap blockchain data file. + - Get help for a command - Uzyskaj pomoc do polecenia + Loading addresses... + Wczytywanie adresów... - - Options: - Opcje: + + Error: could not start node + - - Specify configuration file (default: BitBean.conf) - + + Done loading + Wczytywanie zakończone - Specify pid file (default: BitBeand.pid) - + Unable to bind to %s on this computer. BitBean is probably already running. + - Specify wallet file (within data directory) - Określ plik portfela (w obrębie folderu danych) + 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) - - Specify data directory - Wskaż folder danych + + Error: Wallet locked, unable to create transaction + - - Set database cache size in megabytes (default: 25) - Ustaw rozmiar w megabajtach cache-u bazy danych (domyślnie: 25) + + Error: Wallet unlocked for staking only, unable to create transaction. + - Set database disk log size in megabytes (default: 100) - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Error: Transaction creation failed + + + + + Sending... + + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Nieprawidłowa kwota + + + + Insufficient funds + Niewystarczające środki + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + + + + + Warning: This version is obsolete, upgrade required! + Uwaga: Ta wersja jest przestarzała, aktualizacja wymagana! - Maintain at most <n> connections to peers (default: 125) - Utrzymuj maksymalnie <n> połączeń z peerami (domyślnie: 125) + WARNING: syncronized checkpoint violation detected, but skipped! + - - 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 + + Warning: Disk space is low! + - Specify your own public address - Podaj swój publiczny adres + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Bind to given address. Use [host]:port notation for IPv6 - + Usage: + Użycie: - - Stake your coins to support network and gain reward (default: 1) - + List commands + Lista poleceń - - 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) + Get help for a command + Uzyskaj pomoc do polecenia - - 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) + Options: + Opcje: - - 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 + Specify wallet file (within data directory) + Określ plik portfela (w obrębie folderu danych) - - Detach block and address databases. Increases shutdown time (default: 0) - + Specify data directory + Wskaż folder danych - - 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. - + Set database cache size in megabytes (default: 25) + Ustaw rozmiar w megabajtach cache-u bazy danych (domyślnie: 25) - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + Maintain at most <n> connections to peers (default: 125) + Utrzymuj maksymalnie <n> połączeń z peerami (domyślnie: 125) - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + 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 - - Accept command line and JSON-RPC commands - Akceptuj linię poleceń oraz polecenia JSON-RPC + Specify your own public address + Podaj swój publiczny adres - - Error: Transaction creation failed - + 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) - - Error: Wallet locked, unable to create transaction - + 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) - - Importing blockchain data file. - + 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 - - Importing bootstrap blockchain data file. - + Accept command line and JSON-RPC commands + Akceptuj linię poleceń oraz polecenia JSON-RPC - Run in the background as a daemon and accept commands - Uruchom w tle jako daemon i przyjmuj polecenia + Uruchom w tle jako daemon i przyjmuj polecenia - Use the test network - Użyj sieci testowej + 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) + Akceptuj połączenia z zewnątrz (domyślnie: 1 jeśli nie ustawiono -proxy lub -connect) - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + Wystąpił błąd podczas ustawiania portu RPC %u w tryb nasłuchu dla IPv6, korzystam z IPv4: %s - 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 BitBean will not work properly. - + Ostrzeżenie: -paytxfee jest bardzo duży. To jest prowizja za transakcje, którą płacisz, gdy wysyłasz monety. - 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. + 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ą. + 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ą. - Attempt to recover private keys from a corrupt wallet.dat - Próbuj odzyskać klucze prywatne z uszkodzonego wallet.dat + Próbuj odzyskać klucze prywatne z uszkodzonego wallet.dat - Block creation options: - Opcje tworzenia bloku: + Opcje tworzenia bloku: - Connect only to the specified node(s) - Łącz tylko do wskazanego węzła + Łącz tylko do wskazanego węzła - 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 ) + Odkryj własny adres IP (domyślnie: 1 kiedy w trybie nasłuchu i brak -externalip ) - 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. + Próba otwarcia jakiegokolwiek portu nie powiodła się. Użyj -listen=0 jeśli tego chcesz. - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Maksymalny bufor odbioru na połączenie, <n>*1000 bajtów (domyślnie: 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) + Maksymalny bufor wysyłu na połączenie, <n>*1000 bajtów (domyślnie: 1000) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Łącz z węzłami tylko w sieci <net> (IPv4, IPv6 lub Tor) - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - + Łącz z węzłami tylko w sieci <net> (IPv4, IPv6 lub Tor) - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opcje SSL: (odwiedź Bitcoin Wiki w celu uzyskania instrukcji) - - - - Select the version of socks proxy to use (4-5, default: 5) - + Opcje SSL: (odwiedź Bitcoin Wiki w celu uzyskania instrukcji) - Send trace/debug info to console instead of debug.log file - Wyślij informację/raport do konsoli zamiast do pliku debug.log. + Wyślij informację/raport do konsoli zamiast do pliku debug.log. - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - Set minimum block size in bytes (default: 0) - Ustaw minimalny rozmiar bloku w bajtach (domyślnie: 0) + Ustaw minimalny rozmiar bloku w bajtach (domyślnie: 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) + Zmniejsz plik debug.log przy starcie programu (domyślnie: 1 jeśli nie użyto -debug) - Specify connection timeout in milliseconds (default: 5000) - Wskaż czas oczekiwania bezczynności połączenia w milisekundach (domyślnie: 5000) + Wskaż czas oczekiwania bezczynności połączenia w milisekundach (domyślnie: 5000) - - Unable to sign checkpoint, wrong checkpointkey? - - - - - Use UPnP to map the listening port (default: 0) - Używaj UPnP do mapowania portu nasłuchu (domyślnie: 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - + 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 - - - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - + Nazwa użytkownika dla połączeń JSON-RPC - Warning: This version is obsolete, upgrade required! - Uwaga: Ta wersja jest przestarzała, aktualizacja wymagana! + Uwaga: Ta wersja jest przestarzała, aktualizacja wymagana! - wallet.dat corrupt, salvage failed - wallet.dat uszkodzony, odtworzenie się nie powiodło + wallet.dat uszkodzony, odtworzenie się nie powiodło - Password for JSON-RPC connections - Hasło do połączeń JSON-RPC - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + Hasło do połączeń JSON-RPC - Allow JSON-RPC connections from specified IP address - Przyjmuj połączenia JSON-RPC ze wskazanego adresu IP + 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) + 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) + Wykonaj polecenie kiedy najlepszy blok ulegnie zmianie (%s w komendzie zastanie zastąpione przez hash bloku) - 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) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Wykonaj polecenie, kiedy transakcja portfela ulegnie zmianie (%s w poleceniu zostanie zastąpione przez TxID) - Upgrade wallet to latest format - Zaktualizuj portfel do najnowszego formatu. + Zaktualizuj portfel do najnowszego formatu. - Set key pool size to <n> (default: 100) - Ustaw rozmiar puli kluczy na <n> (domyślnie: 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - + 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 + Użyj OpenSSL (https) do połączeń JSON-RPC - Server certificate file (default: server.cert) - Plik certyfikatu serwera (domyślnie: server.cert) + Plik certyfikatu serwera (domyślnie: server.cert) - Server private key (default: server.pem) - Klucz prywatny serwera (domyślnie: server.pem) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - + Klucz prywatny serwera (domyślnie: server.pem) - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - This help message - Ta wiadomość pomocy - - - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - + 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) - - - - Connect through socks proxy - + 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 + Zezwól -addnode, -seednode i -connect na łączenie się z serwerem DNS - Loading addresses... - Wczytywanie adresów... - - - - Error loading blkindex.dat - + 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 BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + Błąd ładowania wallet.dat: Uszkodzony portfel - Error loading wallet.dat - Błąd ładowania wallet.dat + Błąd ładowania wallet.dat - Invalid -proxy address: '%s' - Nieprawidłowy adres -proxy: '%s' + Nieprawidłowy adres -proxy: '%s' - Unknown network specified in -onlynet: '%s' - Nieznana sieć w -onlynet: '%s' + Nieznana sieć w -onlynet: '%s' - Unknown -socks proxy version requested: %i - Nieznana wersja proxy w -socks: %i + Nieznana wersja proxy w -socks: %i - Cannot resolve -bind address: '%s' - Nie można uzyskać adresu -bind: '%s' + Nie można uzyskać adresu -bind: '%s' - Cannot resolve -externalip address: '%s' - Nie można uzyskać adresu -externalip: '%s' + Nie można uzyskać adresu -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Nieprawidłowa kwota dla -paytxfee=<amount>: '%s' - - - - Error: could not start node - - - - - Sending... - + Nieprawidłowa kwota dla -paytxfee=<amount>: '%s' - Invalid amount - Nieprawidłowa kwota + Nieprawidłowa kwota - Insufficient funds - Niewystarczające środki + Niewystarczające środki - Loading block index... - Ładowanie indeksu bloku... + Ł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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + Dodaj węzeł do łączenia się and attempt to keep the connection open - Loading wallet... - Wczytywanie portfela... + Wczytywanie portfela... - Cannot downgrade wallet - Nie można dezaktualizować portfela - - - - Cannot initialize keypool - + Nie można dezaktualizować portfela - Cannot write default address - Nie można zapisać domyślnego adresu + Nie można zapisać domyślnego adresu - Rescanning... - Ponowne skanowanie... + Ponowne skanowanie... - Done loading - Wczytywanie zakończone + Wczytywanie zakończone - To use the %s option - Aby użyć opcji %s + Aby użyć opcji %s - Error - Błąd + 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. - Musisz ustawić rpcpassword=<hasło> w pliku configuracyjnym: + Musisz ustawić rpcpassword=<hasło> w pliku configuracyjnym: %s 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/bitbean_pt_BR.qm b/src/qt/locale/bitbean_pt_BR.qm new file mode 100644 index 0000000..e524384 Binary files /dev/null and b/src/qt/locale/bitbean_pt_BR.qm differ diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitbean_pt_BR.ts similarity index 53% rename from src/qt/locale/bitcoin_pt_BR.ts rename to src/qt/locale/bitbean_pt_BR.ts index f6a8feb..9c55190 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitbean_pt_BR.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean Sobre o BitBean - + <b>BitBean</b> version <b>BitBean</b> versao - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - ⏎ + ⏎ Este é um software experimental.⏎ ⏎ Distribuido sob a licença de software MIT/X11, veja o arquivo anexo COPYING ou http://www.opensource.org/licenses/mit-license.php.⏎ @@ -37,47 +49,47 @@ Este produto inclui software desenvolvido pelo Projeto OpenSSL para uso no OpenS AddressBookPage - + Address Book Livro de Endereços - + Double-click to edit address or label Clique duas vezes para editar o endereço ou a etiqueta - + Create a new address Criar um novo endereço - + Copy the currently selected address to the system clipboard Copie o endereço selecionado para a área de transferência do sistema - + &New Address &Novo Endereço - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. Estes são os seus endereços BitBean para receber pagamentos. Você pode dar um diferente a cada remetente para que você possa acompanhar quem está pagando. - + &Copy Address &Copiar Endereço - + Show &QR Code Mostrar &QR Code - + Sign a message to prove you own a BitBean address Assine a mensagem para provar que você possui um endereço BitBean @@ -87,12 +99,12 @@ Este produto inclui software desenvolvido pelo Projeto OpenSSL para uso no OpenS Assinar &Mensagem - + Delete the currently selected address from the list Excluir os endereços selecionados da lista - + Verify a message to ensure it was signed with a specified BitBean address Verifique a mensagem para garantir que ela foi assinada com um endereço BitBean específico @@ -102,7 +114,7 @@ Este produto inclui software desenvolvido pelo Projeto OpenSSL para uso no OpenS &Verificar Mensagem - + &Delete &Excluir @@ -158,27 +170,27 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. Serve para desativar o envio de dinheiro trivial quando conta do SO for comprometida. Não oferece segurança real. @@ -233,17 +245,26 @@ Este produto inclui software desenvolvido pelo Projeto OpenSSL para uso no OpenS Confirmar criptografia da carteira - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - Aviso: Se você criptografar sua carteira e perder sua senha, você vai <b>PERDER TODAS AS SUAS MOEDAS</ b>! + Aviso: Se você criptografar sua carteira e perder sua senha, você vai <b>PERDER TODAS AS SUAS MOEDAS</ b>! - + Are you sure you wish to encrypt your wallet? Tem certeza de que deseja criptografar sua carteira? - + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 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. @@ -260,12 +281,11 @@ Este produto inclui software desenvolvido pelo Projeto OpenSSL para uso no OpenS Carteira criptografada - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - BitBean vai fechar agora para concluir o processo de criptografia. Lembre-se que a criptografia de sua carteira não pode proteger totalmente suas moedas de serem roubados por malwares infectem seu computador. + BitBean vai fechar agora para concluir o processo de criptografia. Lembre-se que a criptografia de sua carteira não pode proteger totalmente suas moedas de serem roubados por malwares infectem seu computador. - + @@ -307,333 +327,585 @@ Este produto inclui software desenvolvido pelo Projeto OpenSSL para uso no OpenS - BitcoinGUI + BeanControlDialog - - Sign &message... - &Assinar Mensagem... - - - - Synchronizing with network... - Sincronizando com a rede... + + Bean Control + - - &Overview - &Visão geral + + Quantity: + Quantidade: - - Show general overview of wallet - Mostrar visão geral da carteira + + Bytes: + Bytes: - - &Transactions - &Transações + + Amount: + Quantia: - - Browse transaction history - Navegar pelo histórico de transações + + Priority: + Prioridade: - - &Address Book - &Livro de Endereços + + Fee: + Taxa: - - Edit the list of stored addresses and labels - Edite a lista de endereços armazenados e rótulos + + Low Output: + Rendimento baixo: - - &Receive coins - &Receber moedas + + After Fee: + Depois da taxa: - - Show the list of addresses for receiving payments - Mostrar a lista de endereços para o recebimento de pagamentos + + Change: + trocar - - &Send coins - &Enviar moedas + + (un)select all + (de)selecionar tudo - - E&xit - S&air + + Tree mode + Modo árvore - - Quit application - Sair da aplicação + + List mode + Modo lista - - Show information about BitBean - Mostrar informações sobre o BitBean + + Amount + Quantidade - - About &Qt - Sobre &Qt + + Label + - - Show information about Qt - Mostrar informações sobre o Qt + + Address + Endereço - - &Options... - &Opções... + + Date + Data - - &Encrypt Wallet... - &Criptografar Carteira... + + Confirmations + Confirmações - &Backup Wallet... - &Backup Carteira... + Confirmed + Confirmado - - &Change Passphrase... - &Mudar frase de segurança... - - - - ~%n block(s) remaining - ~%n bloco faltando~%n blocos faltando + + Priority + Prioridade - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Baixados %1 de %2 blocos de histórico de transações (%3% completo). + + Copy address + Copiar endereço - - &Export... - &Exportar... + + Copy label + Copiar etiqueta - - Send coins to a BitBean address - Enviar moedas para um endereço BitBean + + + Copy amount + Copiar quantia - - Modify configuration options for BitBean - Modificar opções de configuração para BitBean + + Copy transaction ID + Copiar ID da transação - - Export the data in the current tab to a file - Exportar os dados da guia atual para um arquivo + + Copy quantity + Copiar quantidade - - Encrypt or decrypt wallet - Cryptografar ou Decryptografar carteira + + Copy fee + Copiar taxa - - Backup wallet to another location - Fazer cópia de segurança da carteira para uma outra localização + + Copy after fee + Copia pós-taxa - - Change the passphrase used for wallet encryption - Mudar a frase de segurança utilizada na criptografia da carteira + + Copy bytes + Copiar bytes - - &Debug window - Janela de &Depuração + + Copy priority + Copia prioridade - Open debugging and diagnostic console - Abrir console de depuração e diagnóstico + Copy low output + Copia saída de pouco valor - - &Verify message... - &Verificar mensagem... + + Copy change + Copia alteração - - BitBean - BitBean + + highest + mais alta possível - - Wallet - Carteira + + high + alta - - &About BitBean - Sobre o BitBean + + medium-high + média-alta - - &Show / Hide - &Exibir/Ocultar + + medium + média - - Unlock wallet - Desbloquear carteira + + low-medium + média-baixa - &Lock Wallet - &Bloquear Carteira + low + baixa - Lock wallet - Bloquear Carteira + lowest + a mais baixa possível - - &File - &Arquivo + + DUST + - - &Settings - &Configurações + + yes + sim - - &Help - &Ajuda + + no + não - - Tabs toolbar - Barra de ferramentas + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + (Sem rótulo) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + troco de %1 (%2) - - Not staking because wallet is locked - + + (change) + (troco) + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + BitBean - - Not staking because you don't have mature coins - - - - - %n second(s) ago - + + Vault + - + + &Overview + &Visão geral + + + + Show general overview of wallet + Mostrar visão geral da carteira + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Mostrar a lista de endereços para o recebimento de pagamentos + + + + &Transactions + &Transações + + + + Browse transaction history + Navegar pelo histórico de transações + + + + &Address Book + &Livro de Endereços + + + + Edit the list of stored addresses and labels + Edite a lista de endereços armazenados e rótulos + + + + E&xit + S&air + + + + Quit application + Sair da aplicação + + + + &About BitBean + Sobre o BitBean + + + + Show information about BitBean + Mostrar informações sobre o BitBean + + + + About &Qt + Sobre &Qt + + + + Show information about Qt + Mostrar informações sobre o Qt + + + + &Options... + &Opções... + + + + Modify configuration options for BitBean + Modificar opções de configuração para BitBean + + + + &Show / Hide + &Exibir/Ocultar + + + + &Encrypt Wallet... + &Criptografar Carteira... + + + + Encrypt or decrypt wallet + Cryptografar ou Decryptografar carteira + + + + &Backup Wallet... + &Backup Carteira... + + + + Backup wallet to another location + Fazer cópia de segurança da carteira para uma outra localização + + + + &Change Passphrase... + &Mudar frase de segurança... + + + + Change the passphrase used for wallet encryption + Mudar a frase de segurança utilizada na criptografia da carteira + + + &Unlock Wallet... - + + + + + Unlock wallet + Desbloquear carteira + + + + &Lock Wallet + &Bloquear Carteira + + + + Lock wallet + Bloquear Carteira + + + + Sign &message... + &Assinar Mensagem... + + + + &Verify message... + &Verificar mensagem... + + + + &Export... + &Exportar... + + + + Export the data in the current tab to a file + Exportar os dados da guia atual para um arquivo + + + + &Debug window + Janela de &Depuração + + + + Open debugging and diagnostic console + Abrir console de depuração e diagnóstico + + + + &File + &Arquivo + + + + &Settings + &Configurações + + + + &Help + &Ajuda + + + + Tabs toolbar + Barra de ferramentas + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + Sincronizando com a rede... + + + + ~%n block(s) remaining + + ~%n bloco faltando + ~%n blocos faltando + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Baixados %1 de %2 blocos de histórico de transações (%3% completo). + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + - + %n minute(s) ago - + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - Atualizado + Atualizado Catching up... - Recuperando o atraso ... + Recuperando o atraso ... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Transação enviada + Transação enviada Incoming transaction - Transação recebida + Transação recebida @@ -642,7 +914,7 @@ Amount: %2 Type: %3 Address: %4 - Data: %1 + Data: %1 Quantidade: %2 Tipo: %3 Endereço: %4 @@ -651,341 +923,513 @@ Endereço: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Carteira está <b>criptografada</b> e atualmente <b>desbloqueada</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> + Carteira está <b>criptografada</b> e atualmente <b>bloqueada</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - %n hora%n horas + + %n hora + %n horas + %n day(s) - %n dia%n dias + + %n dia + %n dias + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Alerta da Rede + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - Quantidade: + + Not staking because you don't have mature beans + - - Bytes: - Bytes: + + Not staking + + + + BitcoinGUI - - Amount: - Quantia: + Sign &message... + &Assinar Mensagem... - - Priority: - Prioridade: + Synchronizing with network... + Sincronizando com a rede... - - Fee: - Taxa: + &Overview + &Visão geral - - Low Output: - Rendimento baixo: + Show general overview of wallet + Mostrar visão geral da carteira - - no - não + &Transactions + &Transações - - After Fee: - Depois da taxa: + Browse transaction history + Navegar pelo histórico de transações - - Change: - trocar + &Address Book + &Livro de Endereços - - (un)select all - (de)selecionar tudo + Edit the list of stored addresses and labels + Edite a lista de endereços armazenados e rótulos - - Tree mode - Modo árvore + &Receive coins + &Receber moedas - - List mode - Modo lista + Show the list of addresses for receiving payments + Mostrar a lista de endereços para o recebimento de pagamentos - - Amount - Quantidade + &Send coins + &Enviar moedas - - Label - + E&xit + S&air + + + Quit application + Sair da aplicação + + + Show information about BitBean + Mostrar informações sobre o BitBean + + + 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... + + + ~%n block(s) remaining + + ~%n bloco faltando + ~%n blocos faltando + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Baixados %1 de %2 blocos de histórico de transações (%3% completo). + + + &Export... + &Exportar... + + + Send coins to a BitBean address + Enviar moedas para um endereço BitBean + + + Modify configuration options for BitBean + Modificar opções de configuração para BitBean + + + Export the data in the current tab to a file + Exportar os dados da guia atual para um arquivo + + + Encrypt or decrypt wallet + Cryptografar ou Decryptografar carteira + + + 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... + + + BitBean + BitBean + + + Wallet + Carteira + + + &About BitBean + Sobre o BitBean + + + &Show / Hide + &Exibir/Ocultar + + + Unlock wallet + Desbloquear carteira + + + &Lock Wallet + &Bloquear Carteira + + + Lock wallet + Bloquear Carteira + + + &File + &Arquivo + + + &Settings + &Configurações + + + &Help + &Ajuda + + + Tabs toolbar + Barra de ferramentas + + + [testnet] + [testnet] + + + 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 +Address: %4 + + Data: %1 +Quantidade: %2 +Tipo: %3 +Endereço: %4 + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Carteira está <b>criptografada</b> e atualmente <b>desbloqueada</b> + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Carteira está <b>criptografada</b> e atualmente <b>bloqueada</b> + + + %n hour(s) + + %n hora + %n horas + + + + %n day(s) + + %n dia + %n dias + + + + + ClientModel + + + Network Alert + Alerta da Rede + + + + CoinControlDialog + + Quantity: + Quantidade: + + + Bytes: + Bytes: + + + Amount: + Quantia: + + + Priority: + Prioridade: + + + Fee: + Taxa: + + + Low Output: + Rendimento baixo: + + + no + não + + + 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 + Endereço - Date - Data + Data - Confirmations - Confirmações + Confirmações - Confirmed - Confirmado + Confirmado - Priority - Prioridade + Prioridade - Copy address - Copiar endereço + Copiar endereço - Copy label - Copiar etiqueta + Copiar etiqueta - - Copy amount - Copiar quantia + Copiar quantia - Copy transaction ID - Copiar ID da transação + Copiar ID da transação - Copy quantity - Copiar quantidade + Copiar quantidade - Copy fee - Copiar taxa + Copiar taxa - Copy after fee - Copia pós-taxa + Copia pós-taxa - Copy bytes - Copiar bytes + Copiar bytes - Copy priority - Copia prioridade + Copia prioridade - Copy low output - Copia saída de pouco valor + Copia saída de pouco valor - Copy change - Copia alteração + Copia alteração - highest - mais alta possível + mais alta possível - high - alta + alta - medium-high - média-alta + média-alta - medium - média + média - low-medium - média-baixa + média-baixa - low - baixa + baixa - lowest - a mais baixa possível - - - - DUST - + a mais baixa possível - yes - sim - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 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. - - This means a fee of at least %2 is required. - + sim - - (no label) - (Sem rótulo) + (Sem rótulo) - change from %1 (%2) - troco de %1 (%2) + troco de %1 (%2) - (change) - (troco) + (troco) EditAddressDialog - + Edit Address Editar Endereço @@ -997,7 +1441,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1007,7 +1451,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1037,7 +1481,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1053,98 +1497,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Uso: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + 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. Fee 5.00 recommended. - - - - + Pay transaction &fee Pagar taxa de &transação - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1154,7 +1598,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1164,12 +1608,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1179,7 +1623,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1239,7 +1683,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1248,13 +1692,27 @@ This label turns red, if the priority is smaller than "medium". + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + Choose the default subdivision unit to show in the interface and when sending coins. - Escolha a unidade padrão de subdivisão para interface mostrar quando enviar bitcoins. + Escolha a unidade padrão de subdivisão para interface mostrar quando enviar bitcoins. - + Whether to show BitBean addresses in the transaction list or not. - + @@ -1262,17 +1720,11 @@ This label turns red, if the priority is smaller than "medium". 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. + Mostrar ou não opções de controle da moeda. - - Display coin &control features (experts only!) - - - - + &OK &OK @@ -1284,7 +1736,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1295,13 +1747,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1312,78 +1764,158 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Formulário - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - Carteira + Carteira - + Spendable: - + - + Your current spendable balance Seu saldo atual spendable - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: Imaturo: + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + Mined balance that has not yet matured - Saldo minerado que ainda não maturou + Saldo minerado que ainda não maturou - + Total: Total: - Your current total balance - Seu saldo total atual + Seu saldo total atual - <b>Recent transactions</b> - <b>Transações recentes</b> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - - - - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Transações recentes</b> - + out of sync fora de sincronia @@ -1392,65 +1924,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Quantia: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Nome do cliente @@ -1501,7 +2033,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1531,17 +2063,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1556,12 +2088,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1571,7 +2103,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1581,7 +2113,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1595,59 +2127,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Enviar dinheiro + Send Beans + - Coin Control Features - Opções de Controle da Moeda + Bean Control Features + Inputs... - Entradas... + Entradas... automatically selected - automaticamente selecionado + automaticamente selecionado Insufficient funds! - Saldo insuficiente! + Saldo insuficiente! Quantity: - Quantidade: + Quantidade: 0 - + Bytes: - Bytes: + Bytes: Amount: - Quantia: + Quantia: @@ -1655,272 +2187,438 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - Prioridade: + Prioridade: medium - + média Fee: - Taxa: + Taxa: Low Output: - Rendimento baixo: + Rendimento baixo: no - + não After Fee: - Depois da taxa: + Depois da taxa: Change - + custom change address - + Send to multiple recipients at once - Enviar para vários destinatários de uma só vez + Enviar para vários destinatários de uma só vez Add &Recipient - Adicionar destinatário + Adicionar destinatário Remove all transaction fields - + Clear &All - Limpar Tudo + Limpar Tudo Balance: - Saldo: + Saldo: 123.456 BC - + Confirm the send action - Confirmar o envio + Confirmar o envio S&end - Enviar + Enviar - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - Copiar quantidade + Copiar quantidade Copy amount - Copiar quantia + Copiar quantia Copy fee - Copiar taxa + Copiar taxa Copy after fee - Copia pós-taxa + Copia pós-taxa Copy bytes - Copiar bytes + Copiar bytes Copy priority - Copia prioridade + Copia prioridade Copy low output - Copia saída de pouco valor + Copia saída de pouco valor Copy change - Copia alteração + Copia alteração <b>%1</b> to %2 (%3) - + - Confirm send coins - Confirmar envio de dinheiro + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - O endereço do destinatário não é válido, favor verificar. + 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. + A quantidade a ser paga precisa ser maior que 0. The amount exceeds your balance. - A quantidade excede seu saldo. + 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. + 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. + Endereço duplicado: pode-se enviar para cada endereço apenas uma vez por transação. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (Sem rótulo) + (Sem rótulo) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Formulário - + A&mount: - Q&uantidade: + Q&uantidade: Pay &To: - Pagar &Para: + Pagar &Para: - + 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 uma etiqueta para este endereço para adicioná-lo ao catálogo de endereços &Label: - &Etiqueta: + &Etiqueta: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Colar o endereço da área de transferência + Colar o endereço da área de transferência Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + 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: + + + Send to multiple recipients at once + Enviar para vários destinatários de uma só vez + + + Add &Recipient + Adicionar destinatário + + + Clear &All + Limpar Tudo + + + Balance: + Saldo: + + + Confirm the send action + Confirmar o envio + + + S&end + Enviar + + + 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 + + + Confirm send coins + Confirmar envio de dinheiro + + + 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. + + + (no label) + (Sem rótulo) + + + + SendCoinsEntry + + A&mount: + Q&uantidade: + + + Pay &To: + Pagar &Para: + + + 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 + + + &Label: + &Etiqueta: + + + Alt+A + Alt+A + + + Paste address from clipboard + Colar o endereço da área de transferência + + + Alt+P + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message Assinaturas - Assinar / Verificar uma mensagem @@ -1938,13 +2636,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1975,7 +2673,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -2002,12 +2700,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2018,7 +2716,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2028,7 +2726,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2107,7 +2805,10 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + @@ -2137,7 +2838,10 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - , difundir atráves de %n nó, difundir atráves de %n nós + + , difundir atráves de %n nó + , difundir atráves de %n nós + @@ -2190,7 +2894,10 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - matura em mais %n blocomatura em mais %n blocos + + matura em mais %n bloco + matura em mais %n blocos + @@ -2232,8 +2939,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2279,7 +2986,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Detalhes da transação @@ -2324,7 +3031,10 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - Abrir para mais %n blocoAbrir para mais %n blocos + + Abrir para mais %n bloco + Abrir para mais %n blocos + @@ -2358,928 +3068,1235 @@ This label turns red, if the priority is smaller than "medium". - Generated but not accepted - Gerado mas não aceito + Generated but not accepted + Gerado mas não aceito + + + + Received with + Recebido por + + + + Received from + Recebido de + + + + Sent to + Enviado para + + + + Payment to yourself + Pagamento para você mesmo + + + + SPROUT + + + + 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. + + + + 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 + + + + Min amount + Quantidade mínima + + + + Copy address + Copiar endereço + + + + Copy label + Copiar etiqueta + + + + Copy amount + Copiar quantia + + + + Copy transaction ID + Copiar ID da transação + + + + Edit label + Editar etiqueta + + + + Show transaction details + Mostrar detalhes da transação + + + + Export Transaction Data + + + + + Comma separated file (*.csv) + Arquivo separado por vírgulas (*. csv) + + + + Confirmed + Confirmado + + + + Date + Data + + + + Type + Tipo + + + + Label + Etiqueta + + + + Address + Endereço + + + + Amount + Quantidade + + + + ID + ID + + + + Error exporting + Erro ao exportar + + + + Could not write to file %1. + Não foi possível escrever no arquivo %1. + + + + Range: + Intervalo: + + + + to + para + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + Para usar a opção %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Erro + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Você precisa especificar rpcpassword=<senha> no arquivo de configurações:⏎ +%s⏎ +Se o arquivo não existir, crie um com permissão de leitura apenas pelo dono + + + + BitBean version + + + + + Usage: + Uso: + + + + Send command to -server or BitBeand + + + + + List commands + Lista de comandos + + + + Get help for a command + Obtenha ajuda sobre um comando + + + + BitBean + BitBean + + + + Options: + Opções: + + + + This help message + Esta mensagem de ajuda + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Especificar diretório de dados + + + + Specify wallet file (within data directory) + Especifique o arquivo da carteira (dentro do 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) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Especifique o tempo limite (timeout) da conexão em milissegundos (padrão: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Permitir consultas DNS para -addnode, -seednode e -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Manter no máximo <n> conexões aos peers (padrão: 125) + + + + 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 + + + + Connect only to the specified node(s) + Conectar apenas a nó(s) específico(s) + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Apenas conectar em nós na rede <net> (IPv4, IPv6, ou Tor) + + + + 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) + + + + Find peers using internet relay chat (default: 0) + + + + + 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) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Usar UPnP para mapear porta de escuta (padrão: 1 quando estiver escutando) + + + + Use UPnP to map the listening port (default: 0) + Usar UPnP para mapear porta de escuta (padrão: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + Aceitar linha de comando e comandos JSON-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 + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + 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) + + + + 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 + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + Nome de usuário para conexões JSON-RPC + + + + Password for JSON-RPC connections + Senha para conexões JSON-RPC + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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) + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + - - Received with - Recebido por + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - Received from - Recebido de + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - Sent to - Enviado para + Upgrade wallet to latest format + Atualizar carteira para o formato mais recente - - Payment to yourself - Pagamento para você mesmo + + Set key pool size to <n> (default: 100) + Determinar tamanho do pool de endereços para <n> (padrão: 100) - - Mined - Minerado + + Rescan the block chain for missing wallet transactions + Re-escanear blocos procurando por transações perdidas da carteira - - (n/a) - (n/a) + + Attempt to recover private keys from a corrupt wallet.dat + Tentar recuperar chaves privadas de um arquivo wallet.dat corrompido - - 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. + + How many blocks to check at startup (default: 2500, 0 = all) + - - Date and time that the transaction was received. - Data e hora em que a transação foi recebida. + + How thorough the block verification is (0-6, default: 1) + - - Type of transaction. - Tipo de transação. + + Imports blocks from external blk000?.dat file + - - Destination address of transaction. - Endereço de destino da transação. + + Block creation options: + Opções de criação de blocos: - - Amount removed from or added to balance. - Quantidade debitada ou creditada ao saldo. + + Set minimum block size in bytes (default: 0) + Determinar tamanho mínimo de bloco em bytes (padrão: 0) - - - TransactionView - - - All - Todos + + Set maximum block size in bytes (default: 250000) + - - Today - Hoje + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - This week - Esta semana + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - This month - Este mês + Use OpenSSL (https) for JSON-RPC connections + Usar OpenSSL (https) para conexões JSON-RPC - Last month - Mês passado + Server certificate file (default: server.cert) + Arquivo de certificado do servidor (padrão: server.cert) - This year - Este ano + Server private key (default: server.pem) + Chave privada do servidor (padrão: server.pem) - Range... - Intervalo... + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Received with - Recebido por + + Invalid amount for -paytxfee=<amount>: '%s' + Quantidade inválida para -paytxfee=<quantidade>: '%s' - - Sent to - Enviado para + + 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. - - To yourself - Para você mesmo + + Invalid amount for -mininput=<amount>: '%s' + - Mined - Minerado + Wallet %s resides outside data directory %s. + - Other - Outro + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Enter address or label to search - Procure um endereço ou etiqueta + + Verifying database integrity... + - - Min amount - Quantidade mínima + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Copy address - Copiar endereço + + 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. + + + + wallet.dat corrupt, salvage failed + wallet.dat corrompido, recuperação falhou - Copy label - Copiar etiqueta + Unknown -socks proxy version requested: %i + Versão desconhecida do proxy -socks requisitada: %i - Copy amount - Copiar quantia + Unknown network specified in -onlynet: '%s' + Rede desconhecida especificada em -onlynet: '%s' - Copy transaction ID - Copiar ID da transação + Invalid -proxy address: '%s' + Endereço -proxy inválido: '%s' - Edit label - Editar etiqueta + Invalid -tor address: '%s' + - Show transaction details - Mostrar detalhes da transação + Cannot resolve -bind address: '%s' + Impossível encontrar o endereço -bind: '%s' - - Export Transaction Data - + + 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. - Comma separated file (*.csv) - Arquivo separado por vírgulas (*. csv) + Cannot resolve -externalip address: '%s' + Impossível encontrar endereço -externalip: '%s' - - Confirmed - Confirmado + + Invalid amount for -reservebalance=<amount> + - Date - Data + Unable to sign checkpoint, wrong checkpointkey? + + - Type - Tipo + Loading block index... + Carregando índice de blocos... - Label - Etiqueta + Error loading blkindex.dat + - Address - Endereço + Loading wallet... + Carregando carteira... - Amount - Quantidade + Error loading wallet.dat: Wallet corrupted + Erro ao carregar wallet.dat: Carteira corrompida - ID - ID + 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. - - Error exporting - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Could not write to file %1. - + + Wallet needed to be rewritten: restart BitBean to complete + - - Range: - Intervalo: + + Error loading wallet.dat + Erro ao carregar wallet.dat - - to - para + + Cannot downgrade wallet + Não é possível fazer downgrade da carteira - - - WalletModel - - Sending... - + + Cannot initialize keypool + - - - bitcoin-core - - BitBean version - + + Cannot write default address + Não foi possível escrever no endereço padrão - Usage: - Uso: + Rescanning... + Re-escaneando... - Send command to -server or BitBeand - + Importing blockchain data file. + - List commands - Lista de comandos + Importing bootstrap blockchain data file. + - Get help for a command - Obtenha ajuda sobre um comando + Loading addresses... + Carregando endereços... - - Options: - Opções: + + Error: could not start node + - - Specify configuration file (default: BitBean.conf) - + + Done loading + Carregamento terminado - Specify pid file (default: BitBeand.pid) - + Unable to bind to %s on this computer. BitBean is probably already running. + - Specify wallet file (within data directory) - Especifique o arquivo da carteira (dentro do diretório de dados) + 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) - - Specify data directory - Especificar diretório de dados + + Error: Wallet locked, unable to create transaction + - - Set database cache size in megabytes (default: 25) - Definir o tamanho do cache do banco de dados em megabytes (padrão: 25) + + Error: Wallet unlocked for staking only, unable to create transaction. + - Set database disk log size in megabytes (default: 100) - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Error: Transaction creation failed + + + + + Sending... + + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Quantidade inválida + + + + Insufficient funds + Saldo insuficiente + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + + + + + Warning: This version is obsolete, upgrade required! + Cuidado: Esta versão está obsoleta, atualização exigida! - Maintain at most <n> connections to peers (default: 125) - Manter no máximo <n> conexões aos peers (padrão: 125) + WARNING: syncronized checkpoint violation detected, but skipped! + - - Connect to a node to retrieve peer addresses, and disconnect - Conectar a um nó para receber endereços de participantes, e desconectar. + + Warning: Disk space is low! + - Specify your own public address - Especificar seu próprio endereço público + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Bind to given address. Use [host]:port notation for IPv6 - + Usage: + Uso: - - Stake your coins to support network and gain reward (default: 1) - + List commands + Lista de comandos - - Threshold for disconnecting misbehaving peers (default: 100) - Limite para desconectar peers mal comportados (padrão: 100) + Get help for a command + Obtenha ajuda sobre um comando - - 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) + Options: + Opções: - - 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 + Specify wallet file (within data directory) + Especifique o arquivo da carteira (dentro do diretório de dados) - - Detach block and address databases. Increases shutdown time (default: 0) - + Specify data directory + Especificar diretório de dados - - 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. - + Set database cache size in megabytes (default: 25) + Definir o tamanho do cache do banco de dados em megabytes (padrão: 25) - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + Maintain at most <n> connections to peers (default: 125) + Manter no máximo <n> conexões aos peers (padrão: 125) - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + Connect to a node to retrieve peer addresses, and disconnect + Conectar a um nó para receber endereços de participantes, e desconectar. - - Accept command line and JSON-RPC commands - Aceitar linha de comando e comandos JSON-RPC + Specify your own public address + Especificar seu próprio endereço público - - Error: Transaction creation failed - + Threshold for disconnecting misbehaving peers (default: 100) + Limite para desconectar peers mal comportados (padrão: 100) - - Error: Wallet locked, unable to create transaction - + 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) - - Importing blockchain data file. - + 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 - - Importing bootstrap blockchain data file. - + Accept command line and JSON-RPC commands + Aceitar linha de comando e comandos JSON-RPC - Run in the background as a daemon and accept commands - Rodar em segundo plano como serviço e aceitar comandos + Rodar em segundo plano como serviço e aceitar comandos - Use the test network - Usar rede de teste + 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) + Aceitar conexões externas (padrão: 1 se opções -proxy ou -connect não estiverem presentes) - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + Um erro ocorreu ao configurar a porta RPC %u para escuta em IPv6, voltando ao IPv4: %s - 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. - - - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + Cuidado: valor de -paytxfee escolhido é muito alto! Este é o valor da taxa de transação que você irá pagar se enviar a transação. - 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. + 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. - 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. + 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. - Attempt to recover private keys from a corrupt wallet.dat - Tentar recuperar chaves privadas de um arquivo wallet.dat corrompido + Tentar recuperar chaves privadas de um arquivo wallet.dat corrompido - Block creation options: - Opções de criação de blocos: + Opções de criação de blocos: - Connect only to the specified node(s) - Conectar apenas a nó(s) específico(s) + Conectar apenas a nó(s) específico(s) - 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) + Descobrir os próprios endereços IP (padrão: 1 quando no modo listening e opção -externalip não estiver presente) - 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. + Falha ao escutar em qualquer porta. Use -listen=0 se você quiser isso. - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Buffer máximo de recebimento por conexão, <n>*1000 bytes (padrão: 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) + Buffer máximo de envio por conexão, <n>*1000 bytes (padrão: 1000) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Apenas conectar em nós na rede <net> (IPv4, IPv6, ou Tor) - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - + 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) - - - - Select the version of socks proxy to use (4-5, default: 5) - + Opções SSL: (veja a Wiki do Bitcoin para instruções de configuração SSL) - 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 + Mandar informação de trace/debug para o console em vez de para o arquivo debug.log - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - Set minimum block size in bytes (default: 0) - Determinar tamanho mínimo de bloco em bytes (padrão: 0) + Determinar tamanho mínimo de bloco em bytes (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) + Encolher arquivo debug.log ao iniciar o cliente (padrão 1 se opção -debug não estiver presente) - Specify connection timeout in milliseconds (default: 5000) - Especifique o tempo limite (timeout) da conexão em milissegundos (padrão: 5000) + Especifique o tempo limite (timeout) da conexão em milissegundos (padrão: 5000) - - Unable to sign checkpoint, wrong checkpointkey? - - - - - Use UPnP to map the listening port (default: 0) - Usar UPnP para mapear porta de escuta (padrão: 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - + 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 - - - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - + Nome de usuário para conexões JSON-RPC - Warning: This version is obsolete, upgrade required! - Cuidado: Esta versão está obsoleta, atualização exigida! + Cuidado: Esta versão está obsoleta, atualização exigida! - wallet.dat corrupt, salvage failed - wallet.dat corrompido, recuperação falhou + wallet.dat corrompido, recuperação falhou - Password for JSON-RPC connections - Senha para conexões JSON-RPC - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + 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 + 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> (pardã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) + Executar comando quando o melhor bloco mudar (%s no comando será substituído pelo hash do bloco) - 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) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Executar comando quando uma transação da carteira mudar (%s no comando será substituído por TxID) - Upgrade wallet to latest format - Atualizar carteira para o formato mais recente + 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) + 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - + 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 + Usar OpenSSL (https) para conexões JSON-RPC - Server certificate file (default: server.cert) - Arquivo de certificado do servidor (padrão: 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - + Chave privada do servidor (padrão: server.pem) - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - This help message - Esta mensagem de ajuda - - - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - + 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) - - - - Connect through socks proxy - + 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 + Permitir consultas DNS para -addnode, -seednode e -connect - Loading addresses... - Carregando endereços... - - - - Error loading blkindex.dat - + 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 BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + Erro ao carregar wallet.dat: Carteira corrompida - Error loading wallet.dat - Erro ao carregar wallet.dat + Erro ao carregar wallet.dat - Invalid -proxy address: '%s' - Endereço -proxy inválido: '%s' + Endereço -proxy inválido: '%s' - Unknown network specified in -onlynet: '%s' - Rede desconhecida especificada em -onlynet: '%s' + Rede desconhecida especificada em -onlynet: '%s' - Unknown -socks proxy version requested: %i - Versão desconhecida do proxy -socks requisitada: %i + Versão desconhecida do proxy -socks requisitada: %i - Cannot resolve -bind address: '%s' - Impossível encontrar o endereço -bind: '%s' + Impossível encontrar o endereço -bind: '%s' - Cannot resolve -externalip address: '%s' - Impossível encontrar endereço -externalip: '%s' + Impossível encontrar endereço -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Quantidade inválida para -paytxfee=<quantidade>: '%s' - - - - Error: could not start node - - - - - Sending... - + Quantidade inválida para -paytxfee=<quantidade>: '%s' - Invalid amount - Quantidade inválida + Quantidade inválida - Insufficient funds - Saldo insuficiente + Saldo insuficiente - Loading block index... - Carregando índice de blocos... + 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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + Adicionar um nó com o qual se conectar e tentar manter a conexão ativa - Loading wallet... - Carregando carteira... + Carregando carteira... - Cannot downgrade wallet - Não é possível fazer downgrade da carteira - - - - Cannot initialize keypool - + Não é possível fazer downgrade da carteira - Cannot write default address - Não foi possível escrever no endereço padrão + Não foi possível escrever no endereço padrão - Rescanning... - Re-escaneando... + Re-escaneando... - Done loading - Carregamento terminado + Carregamento terminado - To use the %s option - Para usar a opção %s + Para usar a opção %s - Error - Erro + 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. - Você precisa especificar rpcpassword=<senha> no arquivo de configurações:⏎ + Você precisa especificar rpcpassword=<senha> no arquivo de configurações:⏎ %s⏎ 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/bitbean_pt_PT.qm b/src/qt/locale/bitbean_pt_PT.qm new file mode 100644 index 0000000..a4424a2 Binary files /dev/null and b/src/qt/locale/bitbean_pt_PT.qm differ diff --git a/src/qt/locale/bitcoin_pt_PT.ts b/src/qt/locale/bitbean_pt_PT.ts similarity index 53% rename from src/qt/locale/bitcoin_pt_PT.ts rename to src/qt/locale/bitbean_pt_PT.ts index ec54c52..20b768c 100644 --- a/src/qt/locale/bitcoin_pt_PT.ts +++ b/src/qt/locale/bitbean_pt_PT.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Este é um programa experimental. Distribuído sob uma licença de software MIT/X11, por favor verifique o ficheiro anexo license.txt ou http://www.opensource.org/licenses/mit-license.php. @@ -37,72 +49,72 @@ Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no Open AddressBookPage - + Address Book - + - + 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 - + Copy the currently selected address to the system clipboard Copie o endereço selecionado para a área de transferência - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &Copiar Endereço - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list Apagar o endereço selecionado da lista - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + &Verificar Mensagem - + &Delete E&liminar @@ -119,7 +131,7 @@ Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no Open Export Address Book Data - + @@ -129,12 +141,12 @@ Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no Open Error exporting - + Could not write to file %1. - + @@ -158,34 +170,34 @@ Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no Open AskPassphraseDialog - + Passphrase Dialog Diálogo de Frase-Passe - + Enter passphrase Escreva a frase de segurança - + New passphrase Nova frase de segurança - + Repeat new passphrase Repita a nova frase de segurança - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -234,16 +246,21 @@ Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no Open - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + Tem a certeza que deseja encriptar a carteira? - Are you sure you wish to encrypt your wallet? - Tem a certeza que deseja encriptar a carteira? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 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. @@ -260,12 +277,7 @@ Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no Open Carteira encriptada - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -307,333 +319,585 @@ Este produto inclui software desenvolvido pelo Projecto OpenSSL para uso no Open - BitcoinGUI - - - Sign &message... - Assinar &mensagem... - + BeanControlDialog - - Synchronizing with network... - Sincronizando com a rede... + + Bean Control + - - &Overview - Visã&o geral + + Quantity: + Quantidade: - - Show general overview of wallet - Mostrar visão geral da carteira + + Bytes: + Bytes: - - &Transactions - &Transações + + Amount: + Quantia: - - Browse transaction history - Navegar pelo histórico de transações + + Priority: + Prioridade: - - &Address Book - + + Fee: + Taxa: - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + Depois de taxas: - - Show the list of addresses for receiving payments - + + Change: + Troco: - - &Send coins - + + (un)select all + (des)seleccionar todos - - E&xit - Fec&har + + Tree mode + Modo de árvore - - Quit application - Sair da aplicação + + List mode + Modo lista - - Show information about BitBean - + + Amount + Quantia - - About &Qt - Sobre &Qt + + Label + Rótulo - - Show information about Qt - Mostrar informação sobre Qt + + Address + Endereço - - &Options... - &Opções... + + Date + Data - - &Encrypt Wallet... - E&ncriptar Carteira... + + Confirmations + Confirmados - &Backup Wallet... - &Guardar Carteira... + Confirmed + Confirmada - - &Change Passphrase... - Mudar &Palavra-passe... - - - - ~%n block(s) remaining - + + Priority + Prioridade - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Copiar endereço - - &Export... - + + Copy label + Copiar rótulo - - Send coins to a BitBean address - + + + Copy amount + Copiar quantia - - Modify configuration options for BitBean - + + Copy transaction ID + Copiar ID da Transação - - Export the data in the current tab to a file - + + Copy quantity + Copiar quantidade - - Encrypt or decrypt wallet - + + Copy fee + Taxa de cópia - - Backup wallet to another location - Faça uma cópia de segurança da carteira para outra localização + + Copy after fee + Taxa depois de cópia - - Change the passphrase used for wallet encryption - Mudar a frase de segurança utilizada na encriptação da carteira + + Copy bytes + Copiar bytes - - &Debug window - Janela de &depuração + + Copy priority + Prioridade de Cópia - Open debugging and diagnostic console - Abrir consola de diagnóstico e depuração + Copy low output + Copiar output baixo - - &Verify message... - &Verificar mensagem... + + Copy change + Copiar alteração - - BitBean - + + highest + o maior - - Wallet - Carteira + + high + alto - - &About BitBean - + + medium-high + médio-alto - - &Show / Hide - Mo&strar / Ocultar + + medium + médio - - Unlock wallet - + + low-medium + baixo-médio - &Lock Wallet - + low + baixo - Lock wallet - + lowest + O mais baixo - - &File - &Ficheiro + + DUST + - - &Settings - Con&figurações + + yes + sim - - &Help - A&juda + + no + não - - Tabs toolbar - Barra de separadores + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [rede de testes] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + Alteração de %1 (%2) - - Not staking because wallet is locked - + + (change) + (Alteração) + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - + + Vault + - - - %n second(s) ago - + + + &Overview + Visã&o geral - - &Unlock Wallet... - + + Show general overview of wallet + Mostrar visão geral da carteira + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transações + + + + Browse transaction history + Navegar pelo histórico de transações + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + Fec&har + + + + Quit application + Sair da aplicação + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + Sobre &Qt + + + + Show information about Qt + Mostrar informação sobre Qt + + + + &Options... + &Opções... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + Mo&strar / Ocultar + + + + &Encrypt Wallet... + E&ncriptar Carteira... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &Guardar Carteira... + + + + Backup wallet to another location + Faça uma cópia de segurança da carteira para outra localização + + + + &Change Passphrase... + Mudar &Palavra-passe... + + + + Change the passphrase used for wallet encryption + Mudar a frase de segurança utilizada na encriptação da carteira + + + + &Unlock Wallet... + + + + + Unlock wallet + Desbloquear carteira + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + Assinar &mensagem... + + + + &Verify message... + &Verificar mensagem... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + Janela de &depuração + + + + Open debugging and diagnostic console + Abrir consola de diagnóstico e depuração + + + + &File + &Ficheiro + + + + &Settings + Con&figurações + + + + &Help + A&juda + + + + Tabs toolbar + Barra de separadores + + + + Actions toolbar + + + + + + [testnet] + [rede de testes] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + Sincronizando com a rede... + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + - + %n minute(s) ago - + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - Atualizado + Atualizado Catching up... - Recuperando... + Recuperando... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Transação enviada + Transação enviada Incoming transaction - Transação recebida + Transação recebida @@ -642,7 +906,7 @@ Amount: %2 Type: %3 Address: %4 - Data: %1 + Data: %1 Quantia: %2 Tipo: %3 Endereço: %4 @@ -652,341 +916,439 @@ Endereço: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - A carteira está <b>encriptada</b> e atualmente <b>desbloqueada</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 carteira está <b>encriptada</b> e atualmente <b>bloqueada</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - %n hora%n horas + + %n hora + %n horas + %n day(s) - %n dia%n dias + + %n dia + %n dias + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Alerta da Rede + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - Quantidade: + + Not staking because you don't have mature beans + - - Bytes: - Bytes: + + Not staking + + + + BitcoinGUI - - Amount: - Quantia: + Sign &message... + Assinar &mensagem... - - Priority: - Prioridade: + Synchronizing with network... + Sincronizando com a rede... - - Fee: - Taxa: + &Overview + Visã&o geral - - Low Output: - Saída Baixa: + Show general overview of wallet + Mostrar visão geral da carteira - - no - não + &Transactions + &Transações - - After Fee: - Depois de taxas: + Browse transaction history + Navegar pelo histórico de transações - - Change: - Troco: + E&xit + Fec&har - - (un)select all - (des)seleccionar todos + Quit application + Sair da aplicação - - Tree mode - Modo de árvore + About &Qt + Sobre &Qt - - List mode - Modo lista + Show information about Qt + Mostrar informação sobre Qt - - Amount - Quantia + &Options... + &Opções... - - Label - + &Encrypt Wallet... + E&ncriptar Carteira... - - Address - Endereço + &Backup Wallet... + &Guardar Carteira... + + + &Change Passphrase... + Mudar &Palavra-passe... + + + 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... + + + Wallet + Carteira + + + &Show / Hide + Mo&strar / Ocultar + + + &File + &Ficheiro + + + &Settings + Con&figurações + + + &Help + A&juda + + + Tabs toolbar + Barra de separadores + + + [testnet] + [rede de testes] + + + Up to date + Atualizado + + + Catching up... + Recuperando... + + + Sent transaction + Transação enviada + + + Incoming transaction + Transação recebida + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1 +Quantia: %2 +Tipo: %3 +Endereço: %4 + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + A carteira 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> + + + %n hour(s) + + %n hora + %n horas + + + + %n day(s) + + %n dia + %n dias + + + + + ClientModel + + + Network Alert + Alerta da Rede + + + + CoinControlDialog + + Quantity: + Quantidade: + + + Bytes: + Bytes: + + + Amount: + Quantia: + + + Priority: + Prioridade: + + + Fee: + Taxa: + + + Low Output: + Saída Baixa: + + + no + não + + + After Fee: + Depois de taxas: + + + Change: + Troco: + + + (un)select all + (des)seleccionar todos + + + Tree mode + Modo de árvore + + + List mode + Modo lista + + + Amount + Quantia + + + Address + Endereço - Date - Data + Data - Confirmations - Confirmados + Confirmados - Confirmed - Confirmada + Confirmada - Priority - Prioridade + Prioridade - Copy address - Copiar endereço + Copiar endereço - Copy label - Copiar rótulo + Copiar rótulo - - Copy amount - Copiar quantia + Copiar quantia - Copy transaction ID - Copiar ID da Transação + Copiar ID da Transação - Copy quantity - Copiar quantidade + Copiar quantidade - Copy fee - Taxa de cópia + Taxa de cópia - Copy after fee - Taxa depois de cópia + Taxa depois de cópia - Copy bytes - Copiar bytes + Copiar bytes - Copy priority - Prioridade de Cópia + Prioridade de Cópia - Copy low output - Copiar output baixo + Copiar output baixo - Copy change - Copiar alteração + Copiar alteração - highest - o maior + o maior - high - alto + alto - medium-high - médio-alto + médio-alto - medium - médio + médio - low-medium - baixo-médio + baixo-médio - low - baixo + baixo - lowest - O mais baixo - - - - DUST - + O mais baixo - yes - sim - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 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. - - This means a fee of at least %2 is required. - + sim - - (no label) - (Sem rótulo) + (Sem rótulo) - change from %1 (%2) - Alteração de %1 (%2) + Alteração de %1 (%2) - (change) - (Alteração) + (Alteração) EditAddressDialog - + Edit Address Editar Endereço @@ -998,7 +1360,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1008,7 +1370,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1038,7 +1400,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1054,98 +1416,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Utilização: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + 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. Fee 5.00 recommended. - - - - + Pay transaction &fee Pagar &taxa de transação - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1155,7 +1517,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1165,12 +1527,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1180,7 +1542,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1240,7 +1602,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1249,13 +1611,27 @@ This label turns red, if the priority is smaller than "medium". + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + 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. + Escolha a subdivisão unitária a ser mostrada por defeito na aplicação e ao enviar moedas. - + Whether to show BitBean addresses in the transaction list or not. - + @@ -1263,17 +1639,11 @@ This label turns red, if the priority is smaller than "medium". 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 controlo "coin" ou não. - - Display coin &control features (experts only!) - - - - + &OK &OK @@ -1285,7 +1655,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1296,13 +1666,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1313,78 +1683,158 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Formulário - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - Carteira + Carteira - + Spendable: - + - + Your current spendable balance O seu saldo disponível para gastar - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: Imaturo: - - Mined balance that has not yet matured - O saldo minado ainda não maturou + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - Total: - Total: + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - Your current total balance - O seu saldo total actual + + BitBean Network + - - <b>Recent transactions</b> - <b>Transações recentes</b> + + Bean Stalk Height: + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + Sprouting Difficulty: + - - Total of coins that was staked, and do not yet count toward the current balance - + + Bean Weight: + - + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + O saldo minado ainda não maturou + + + + 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 @@ -1393,65 +1843,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Quantia: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Nome do Cliente @@ -1502,7 +1952,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1532,17 +1982,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1557,12 +2007,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1572,7 +2022,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1582,7 +2032,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1596,59 +2046,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Enviar Moedas + Send Beans + - Coin Control Features - Funcionalidades de Coin Controlo: + Bean Control Features + Inputs... - Entradas + Entradas automatically selected - Selecção automática + Selecção automática Insufficient funds! - Fundos insuficientes! + Fundos insuficientes! Quantity: - Quantidade: + Quantidade: 0 - + Bytes: - Bytes: + Bytes: Amount: - Quantia: + Quantia: @@ -1656,272 +2106,438 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - Prioridade: + Prioridade: medium - + médio Fee: - Taxa: + Taxa: Low Output: - Output Baixo: + no - + não After Fee: - Depois de taxas: + Depois de taxas: Change - + custom change address - + Send to multiple recipients at once - Enviar para múltiplos destinatários de uma vez + Enviar para múltiplos destinatários de uma vez Add &Recipient - Adicionar &Destinatário + Adicionar &Destinatário Remove all transaction fields - + Clear &All - &Limpar Tudo + Balance: - Saldo: + Saldo: 123.456 BC - + Confirm the send action - Confirme ação de envio + Confirme ação de envio S&end - &Enviar + &Enviar - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - Copiar quantidade + Copiar quantidade Copy amount - Copiar quantia + Copiar quantia Copy fee - Taxa de cópia + Taxa de cópia Copy after fee - Taxa depois de cópia + Taxa depois de cópia Copy bytes - Copiar bytes + Copiar bytes Copy priority - Prioridade de Cópia + Prioridade de Cópia Copy low output - Copiar output baixo + Copiar output baixo Copy change - Copiar alteração + Copiar alteração <b>%1</b> to %2 (%3) - + - Confirm send coins - Confirme envio de moedas + Confirm send beans + Are you sure you want to send %1? - + and - + The recipient address is not valid, please recheck. - O endereço de destino não é válido, por favor verifique. + 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. + A quantia a pagar deverá ser maior que 0. The amount exceeds your balance. - A quantia excede o seu saldo. + 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. + 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. + Endereço duplicado encontrado, apenas poderá enviar uma vez para cada endereço por cada operação de envio. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (Sem rótulo) + WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Formulário - + A&mount: - Qu&antia: + Qu&antia: Pay &To: - &Pagar A: + &Pagar A: - + 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 + Escreva um rótulo para este endereço para o adicionar ao seu livro de endereços &Label: - Rótu&lo: + Rótu&lo: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Cole endereço da área de transferência + Cole endereço da área de transferência Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + Enviar Moedas + + + Coin Control Features + Funcionalidades de Coin Controlo: + + + Inputs... + Entradas + + + automatically selected + Selecção automática + + + Insufficient funds! + Fundos insuficientes! + + + Quantity: + Quantidade: + + + Bytes: + Bytes: + + + Amount: + Quantia: + + + Priority: + Prioridade: + + + Fee: + Taxa: + + + Low Output: + Output Baixo: + + + After Fee: + Depois de taxas: + + + Send to multiple recipients at once + Enviar para múltiplos destinatários de uma vez + + + Add &Recipient + Adicionar &Destinatário + + + Clear &All + &Limpar Tudo + + + Balance: + Saldo: + + + Confirm the send action + Confirme ação de envio + + + S&end + &Enviar + + + Copy quantity + Copiar quantidade + + + Copy amount + Copiar quantia + + + Copy fee + Taxa de cópia + + + Copy after fee + Taxa depois de cópia + + + Copy bytes + Copiar bytes + + + Copy priority + Prioridade de Cópia + + + Copy low output + Copiar output baixo + + + Copy change + Copiar alteração + + + Confirm send coins + Confirme envio de moedas + + + 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. + + + (no label) + (Sem rótulo) + + + + SendCoinsEntry + + A&mount: + Qu&antia: + + + Pay &To: + &Pagar A: + + + 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: + + + Alt+A + Alt+A + + + Paste address from clipboard + Cole endereço da área de transferência + + + Alt+P + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message Assinaturas - Assinar / Verificar uma Mensagem @@ -1939,13 +2555,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1976,7 +2592,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -2003,12 +2619,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2019,7 +2635,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2029,7 +2645,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2108,12 +2724,15 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + conflicted - + @@ -2138,7 +2757,10 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - , transmitida através de %n nó, transmitida através de %n nós + + , transmitida através de %n nó + , transmitida através de %n nós + @@ -2191,7 +2813,10 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - matura daqui por %n blocomatura daqui por %n blocos + + matura daqui por %n bloco + matura daqui por %n blocos + @@ -2233,8 +2858,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2280,7 +2905,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Detalhes da transação @@ -2325,32 +2950,35 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - Aberta por mais %n blocoAberta por mais %n blocos + + Aberta por mais %n bloco + Aberta por mais %n blocos + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2359,928 +2987,1235 @@ This label turns red, if the priority is smaller than "medium". - Generated but not accepted - Gerado mas não aceite + Generated but not accepted + Gerado mas não aceite + + + + Received with + Recebido com + + + + Received from + Recebido de + + + + Sent to + Enviado para + + + + Payment to yourself + Pagamento ao próprio + + + + SPROUT + + + + Mined + 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. + + + + Date and time that the transaction was received. + Data e hora a que esta 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. + + + + 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 + + + + 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 Data + + + + + Comma separated file (*.csv) + Ficheiro separado por vírgula (*.csv) + + + + Confirmed + Confirmada + + + + Date + Data + + + + Type + Tipo + + + + Label + Rótulo + + + + Address + Endereço + + + + Amount + Quantia + + + + ID + ID + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + Período: + + + + to + até + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + Para usar a opção %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Erro + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Deverá definir rpcpassword=<password> no ficheiro de configuração: +%s +Se o ficheiro não existir, crie-o com permissões de leitura apenas para o dono. + + + + BitBean version + + + + + Usage: + Utilização: + + + + Send command to -server or BitBeand + + + + + List commands + Listar comandos + + + + Get help for a command + Obter ajuda para um comando + + + + BitBean + + + + + Options: + Opções: + + + + This help message + Esta mensagem de ajuda + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Especificar pasta de dados + + + + Specify wallet file (within data directory) + Especifique ficheiro de carteira (dentro da 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) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Especificar tempo de espera da ligação em millisegundos (por defeito: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Permitir procuras DNS para -addnode, -seednode e -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + 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) + + + + 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 + + + + Connect only to the specified node(s) + Apenas ligar ao(s) nó(s) especificado(s) + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Apenas ligar a nós na rede <net> (IPv4, IPv6 ou Tor) + + + + 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) + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Aceitar ligações externas (padrão: 1 sem -proxy ou -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + Threshold for disconnecting misbehaving peers (default: 100) + Tolerância para desligar nós mal-formados (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) + + + + 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) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Armazenamento intermédio de envio por ligação, <n>*1000 bytes (por defeito: 1000) + + + + Use UPnP to map the listening port (default: 1 when listening) + Usar UPnP para mapear a porta de escuta (padrão: 1 ao escutar) + + + + Use UPnP to map the listening port (default: 0) + Usar UPnP para mapear a porta de escuta (padrão: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + Aceitar comandos da consola e JSON-RPC + + + + Run in the background as a daemon and accept commands + Correr o processo como um daemon e aceitar comandos + + + + Use the test network + Utilizar a rede de testes - testnet + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + 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) + + + + 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 + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + Nome de utilizador para ligações JSON-RPC + + + + Password for JSON-RPC connections + Palavra-passe para ligações JSON-RPC + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + - - Received with - Recebido com + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - Received from - Recebido de + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - Sent to - Enviado para + Upgrade wallet to latest format + Atualize a carteira para o formato mais recente - - Payment to yourself - Pagamento ao próprio + + Set key pool size to <n> (default: 100) + Definir o tamanho da memória de chaves para <n> (por defeito: 100) - - Mined - Minadas + + Rescan the block chain for missing wallet transactions + Reexaminar a cadeia de blocos para transações em falta na carteira - - (n/a) - (n/d) + + Attempt to recover private keys from a corrupt wallet.dat + Tentar recuperar chaves privadas de um wallet.dat corrupto - - 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. + + How many blocks to check at startup (default: 2500, 0 = all) + - - Date and time that the transaction was received. - Data e hora a que esta transação foi recebida. + + How thorough the block verification is (0-6, default: 1) + - - Type of transaction. - Tipo de transação. + + Imports blocks from external blk000?.dat file + - - Destination address of transaction. - Endereço de destino da transação. + + Block creation options: + Opções de criação de bloco: - - Amount removed from or added to balance. - Quantia retirada ou adicionada ao saldo. + + Set minimum block size in bytes (default: 0) + Definir tamanho minímo de um bloco em bytes (por defeito: 0) - - - TransactionView - - - All - Todas + + Set maximum block size in bytes (default: 250000) + - - Today - Hoje + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - This week - Esta semana + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - This month - Este mês + Use OpenSSL (https) for JSON-RPC connections + Usar OpenSSL (https) para ligações JSON-RPC - Last month - Mês passado + Server certificate file (default: server.cert) + Ficheiro de certificado do servidor (por defeito: server.cert) - This year - Este ano + Server private key (default: server.pem) + Chave privada do servidor (por defeito: server.pem) - Range... - Período... + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Received with - Recebida com + + Invalid amount for -paytxfee=<amount>: '%s' + Quantia inválida para -paytxfee=<amount>: '%s' - - Sent to - Enviada para + + 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. - - To yourself - Para si + + Invalid amount for -mininput=<amount>: '%s' + - Mined - Minadas + Wallet %s resides outside data directory %s. + - Other - Outras + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Enter address or label to search - Escreva endereço ou rótulo a procurar + + Verifying database integrity... + - - Min amount - Quantia mínima + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Copy address - Copiar endereço + + 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. + + + + wallet.dat corrupt, salvage failed + wallet.dat corrupta, recuperação falhou - Copy label - Copiar rótulo + Unknown -socks proxy version requested: %i + Versão desconhecida de proxy -socks requisitada: %i - Copy amount - Copiar quantia + Unknown network specified in -onlynet: '%s' + Rede desconhecida especificada em -onlynet: '%s' - Copy transaction ID - Copiar ID da Transação + Invalid -proxy address: '%s' + Endereço -proxy inválido: '%s' - Edit label - Editar rótulo + Invalid -tor address: '%s' + - Show transaction details - Mostrar detalhes da transação + Cannot resolve -bind address: '%s' + Não conseguiu resolver endereço -bind: '%s' - - Export Transaction Data - + + 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. - Comma separated file (*.csv) - Ficheiro separado por vírgula (*.csv) + Cannot resolve -externalip address: '%s' + Não conseguiu resolver endereço -externalip: '%s' - - Confirmed - Confirmada + + Invalid amount for -reservebalance=<amount> + - Date - Data + Unable to sign checkpoint, wrong checkpointkey? + + - Type - Tipo + Loading block index... + Carregar índice de blocos... - Label - Rótulo + Error loading blkindex.dat + - Address - Endereço + Loading wallet... + Carregar carteira... - Amount - Quantia + Error loading wallet.dat: Wallet corrupted + Erro ao carregar wallet.dat: Carteira danificada - ID - ID + 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. - - Error exporting - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Could not write to file %1. - + + Wallet needed to be rewritten: restart BitBean to complete + - - Range: - Período: + + Error loading wallet.dat + Erro ao carregar wallet.dat - - to - até + + Cannot downgrade wallet + Impossível mudar a carteira para uma versão anterior - - - WalletModel - - Sending... - + + Cannot initialize keypool + - - - bitcoin-core - - BitBean version - + + Cannot write default address + Impossível escrever endereço por defeito - Usage: - Utilização: + Rescanning... + Reexaminando... - Send command to -server or BitBeand - + Importing blockchain data file. + - List commands - Listar comandos + Importing bootstrap blockchain data file. + - Get help for a command - Obter ajuda para um comando + Loading addresses... + Carregar endereços... - - Options: - Opções: + + Error: could not start node + - - Specify configuration file (default: BitBean.conf) - + + Done loading + Carregamento completo - Specify pid file (default: BitBeand.pid) - + Unable to bind to %s on this computer. BitBean is probably already running. + - Specify wallet file (within data directory) - Especifique ficheiro de carteira (dentro da pasta de dados) + 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) - - Specify data directory - Especificar pasta de dados + + Error: Wallet locked, unable to create transaction + - - Set database cache size in megabytes (default: 25) - Definir o tamanho da cache de base de dados em megabytes (por defeito: 25) + + Error: Wallet unlocked for staking only, unable to create transaction. + - Set database disk log size in megabytes (default: 100) - + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Error: Transaction creation failed + + + + + Sending... + + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Quantia inválida + + + + Insufficient funds + Fundos insuficientes + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + + + + + Warning: This version is obsolete, upgrade required! + Atenção: Esta versão está obsoleta, é necessário actualizar! - 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) + WARNING: syncronized checkpoint violation detected, but skipped! + - - Connect to a node to retrieve peer addresses, and disconnect - Ligar a um nó para recuperar endereços de pares, e desligar + + Warning: Disk space is low! + - Specify your own public address - Especifique o seu endereço público + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Bind to given address. Use [host]:port notation for IPv6 - + Usage: + Utilização: - - Stake your coins to support network and gain reward (default: 1) - + List commands + Listar comandos - - Threshold for disconnecting misbehaving peers (default: 100) - Tolerância para desligar nós mal-formados (por defeito: 100) + Get help for a command + Obter ajuda para um comando - - 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) + Options: + Opções: - - 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 + Specify wallet file (within data directory) + Especifique ficheiro de carteira (dentro da pasta de dados) - - Detach block and address databases. Increases shutdown time (default: 0) - + Specify data directory + Especificar pasta de dados - - 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. - + Set database cache size in megabytes (default: 25) + Definir o tamanho da cache de base de dados em megabytes (por defeito: 25) - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + 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) - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + Connect to a node to retrieve peer addresses, and disconnect + Ligar a um nó para recuperar endereços de pares, e desligar - - Accept command line and JSON-RPC commands - Aceitar comandos da consola e JSON-RPC + Specify your own public address + Especifique o seu endereço público - - Error: Transaction creation failed - + Threshold for disconnecting misbehaving peers (default: 100) + Tolerância para desligar nós mal-formados (por defeito: 100) - - Error: Wallet locked, unable to create transaction - + 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) - - Importing blockchain data file. - + 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 - - Importing bootstrap blockchain data file. - + Accept command line and JSON-RPC commands + Aceitar comandos da consola e JSON-RPC - Run in the background as a daemon and accept commands - Correr o processo como um daemon e aceitar comandos + Correr o processo como um daemon e aceitar comandos - Use the test network - Utilizar a rede de testes - testnet + Utilizar a rede de testes - testnet - Accept connections from outside (default: 1 if no -proxy or -connect) - Aceitar ligações externas (padrão: 1 sem -proxy ou -connect) + Aceitar ligações externas (padrão: 1 sem -proxy ou -connect) - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + Ocorreu um erro ao definir a porta %u do serviço RPC a escutar em IPv6, a usar IPv4: %s - 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 BitBean will not work properly. - + Atenção: -paytxfee está definida com um valor muito alto! Esta é a taxa que irá pagar se enviar uma transação. - 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. + 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 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. - Attempt to recover private keys from a corrupt wallet.dat - Tentar recuperar chaves privadas de um wallet.dat corrupto + Tentar recuperar chaves privadas de um wallet.dat corrupto - Block creation options: - Opções de criação de bloco: + Opções de criação de bloco: - Connect only to the specified node(s) - Apenas ligar ao(s) nó(s) especificado(s) + Apenas ligar ao(s) nó(s) especificado(s) - 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) + Descobrir endereço IP próprio (padrão: 1 ao escutar e sem -externalip) - 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 quer isto. - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - 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) + 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) + Armazenamento intermédio de envio por ligação, <n>*1000 bytes (por defeito: 1000) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Apenas ligar a nós na rede <net> (IPv4, IPv6 ou Tor) - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - + 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) - - - - Select the version of socks proxy to use (4-5, default: 5) - + Opções SSL: (ver a Wiki Bitcoin para instruções de configuração SSL) - 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 + Enviar informação de rastreio/depuração para a consola e não para o ficheiro debug.log - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - Set minimum block size in bytes (default: 0) - Definir tamanho minímo de um bloco em bytes (por defeito: 0) + Definir tamanho minímo de um bloco em bytes (por defeito: 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) + Encolher ficheiro debug.log ao iniciar o cliente (por defeito: 1 sem -debug definido) - Specify connection timeout in milliseconds (default: 5000) - Especificar tempo de espera da ligação em millisegundos (por defeito: 5000) + Especificar tempo de espera da ligação em millisegundos (por defeito: 5000) - - Unable to sign checkpoint, wrong checkpointkey? - - - - - Use UPnP to map the listening port (default: 0) - Usar UPnP para mapear a porta de escuta (padrão: 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - + 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 - - - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - + Nome de utilizador para ligações JSON-RPC - Warning: This version is obsolete, upgrade required! - Atenção: Esta versão está obsoleta, é necessário actualizar! + Atenção: Esta versão está obsoleta, é necessário actualizar! - wallet.dat corrupt, salvage failed - wallet.dat corrupta, recuperação falhou + wallet.dat corrupta, recuperação falhou - Password for JSON-RPC connections - Palavra-passe para ligações JSON-RPC - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + 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 + 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) + 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 mudar o melhor bloco (no comando, %s é substituído pela hash do bloco) - 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) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Executar comando quando uma das transações na carteira mudar (no comando, %s é substituído pelo ID da Transação) - Upgrade wallet to latest format - Atualize a carteira para o formato mais recente + 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) + 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - + Reexaminar a cadeia de blocos para transações em falta na carteira - Use OpenSSL (https) for JSON-RPC connections - Usar OpenSSL (https) para ligações JSON-RPC + Usar OpenSSL (https) para ligações JSON-RPC - Server certificate file (default: server.cert) - Ficheiro de certificado do servidor (por defeito: 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - + Chave privada do servidor (por defeito: server.pem) - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - This help message - Esta mensagem de ajuda - - - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - + 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) - - - - Connect through socks proxy - + Incapaz de vincular a %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 + Permitir procuras DNS para -addnode, -seednode e -connect - Loading addresses... - Carregar endereços... - - - - Error loading blkindex.dat - + 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 BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + Erro ao carregar wallet.dat: Carteira danificada - Error loading wallet.dat - Erro ao carregar wallet.dat + Erro ao carregar wallet.dat - Invalid -proxy address: '%s' - Endereço -proxy inválido: '%s' + Endereço -proxy inválido: '%s' - Unknown network specified in -onlynet: '%s' - Rede desconhecida especificada em -onlynet: '%s' + Rede desconhecida especificada em -onlynet: '%s' - Unknown -socks proxy version requested: %i - Versão desconhecida de proxy -socks requisitada: %i + Versão desconhecida de proxy -socks requisitada: %i - Cannot resolve -bind address: '%s' - Não conseguiu resolver endereço -bind: '%s' + Não conseguiu resolver endereço -bind: '%s' - Cannot resolve -externalip address: '%s' - Não conseguiu resolver endereço -externalip: '%s' + Não conseguiu resolver endereço -externalip: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - Quantia inválida para -paytxfee=<amount>: '%s' - - - - Error: could not start node - - - - - Sending... - + Quantia inválida para -paytxfee=<amount>: '%s' - Invalid amount - Quantia inválida + Quantia inválida - Insufficient funds - Fundos insuficientes + Fundos insuficientes - Loading block index... - Carregar índice de blocos... + 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 - - - - Unable to bind to %s on this computer. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + Adicione um nó ao qual se ligar e tentar manter a ligação aberta - Loading wallet... - Carregar carteira... + Carregar carteira... - Cannot downgrade wallet - Impossível mudar a carteira para uma versão anterior - - - - Cannot initialize keypool - + Impossível mudar a carteira para uma versão anterior - Cannot write default address - Impossível escrever endereço por defeito + Impossível escrever endereço por defeito - Rescanning... - Reexaminando... + Reexaminando... - Done loading - Carregamento completo + Carregamento completo - To use the %s option - Para usar a opção %s + Para usar a opção %s - Error - Erro + 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. - Deverá definir rpcpassword=<password> no ficheiro de configuração: + Deverá definir rpcpassword=<password> no ficheiro de configuração: %s 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/bitbean_ro_RO.qm b/src/qt/locale/bitbean_ro_RO.qm new file mode 100644 index 0000000..07930d4 Binary files /dev/null and b/src/qt/locale/bitbean_ro_RO.qm differ diff --git a/src/qt/locale/bitbean_ro_RO.ts b/src/qt/locale/bitbean_ro_RO.ts new file mode 100644 index 0000000..ffed4dc --- /dev/null +++ b/src/qt/locale/bitbean_ro_RO.ts @@ -0,0 +1,4916 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + Despre BitBean + + + + <b>BitBean</b> version + Versiune <b>BitBean</b> + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +Acesta este un software experimental. + +Distribuit sub licența MIT/X11, vezi fișierul însoțitor COPYING sau http://www.opensource.org/licenses/mit-license.php. + +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. + + + + AddressBookPage + + + Address Book + Agendă + + + + Double-click to edit address or label + Dublu-click pentru a edita adresa sau eticheta + + + + Create a new address + Creează o adresă nouă + + + + Copy the currently selected address to the system clipboard + Copiază adresa selectată în clipboard + + + + &New Address + Adresă nouă + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + Acestea sunt adresele BitBean pentru a primi plăți. Poate doriți sa dați o adresa noua fiecarui expeditor pentru a putea ține evidența la cine efectuează plăti. + + + + &Copy Address + &Copiază adresa + + + + Show &QR Code + Arată cod &QR + + + + Sign a message to prove you own a BitBean address + Semnează un mesaj pentru a dovedi că dețineti o adresă BitBean + + + + Sign &Message + Semnează &Mesajul + + + + Delete the currently selected address from the list + Sterge adresele curent selectate din lista + + + + Verify a message to ensure it was signed with a specified BitBean address + Verifică un mesaj pentru a vă asigura că a fost semnat cu o anumită adresă BitBean + + + + &Verify Message + &Verifică mesajul + + + + &Delete + Ște&rge + + + + Copy &Label + Copiază &eticheta + + + + &Edit + &Editează + + + + Export Address Book Data + Exportă datele din Agendă + + + + Comma separated file (*.csv) + Valori separate prin virgulă (*.csv) + + + + Error exporting + Eroare la exportare + + + + Could not write to file %1. + Nu s-a putut scrie în fișier %1. + + + + AddressTableModel + + + Label + Etichetă + + + + Address + Adresă + + + + (no label) + (fără etichetă) + + + + 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 + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Servește pentru a dezactiva sendmoneyl atunci când sistemul de operare este compromis. Nu oferă nicio garanție reală. + + + + For staking only + Doar pentru staking + + + + 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 COINS</b>! + Atentie: Daca encriptezi portofelul si iti uiti parola, <b>VEI PIERDE TOATA MONEDELE</b>! + + + + Are you sure you wish to encrypt your wallet? + Sunteţi sigur că doriţi să criptaţi portofelul electronic? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + 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 + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + BitBean se va inchide pentru a termina procesul de encriptie. Amintiți-vă, criptarea portofelul dumneavoastră nu poate proteja pe deplin monedele dvs. de a fi furate de infectarea cu malware a computerului. + + + + + + + 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ă. + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + Cantitate: + + + + Bytes: + Octeţi: + + + + Amount: + + + + + 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 + + + + + Label + Etichetă + + + + Address + + + + + 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 + + + + 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 + + + + high + mare + + + + medium-high + marime medie + + + + medium + mediu + + + + low-medium + mediu-scazut + + + + low + scazut + + + + lowest + cel mai scazut + + + + DUST + DUST + + + + yes + da + + + + no + nu + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Aceasta eticheta se inroseste daca marimea tranzactiei este mai mare de 10000 bytes. + +Acest lucru inseamna ca este nevoie de o taxa de cel putin %1 pe kb + +Poate varia +/- 1 Byte pe imput. + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Tranzacțiile cu prioritate mai mare ajunge mult mai probabil într-un bloc + +Aceasta eticheta se inroseste daca prioritatea este mai mica decat "medium" + +Acest lucru inseamna ca este necesar un comision cel putin de %1 pe kB + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Aceasta eticheta se inroseste daca oricare din contacte primeste o suma mai mica decat %1. + +Acest lucru inseamna ca un comision de cel putin %2 este necesar. + +Sume mai mici decat 0.546 ori minimul comisionului de relay sunt afisate ca DUST + + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Această eticheta se înroseste dacă schimbul este mai mic de %1. + +Acest lucru înseamnă că o taxă de cel puțin %2 este necesară + + + + + (no label) + (fără etichetă) + + + + change from %1 (%2) + schimbă la %1(%2) + + + + (change) + (schimb) + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + A apărut o eroare fatală. BitBean nu mai poate continua în condiții de siguranță și va iesi. + + + + BitBean + BitBean + + + + Vault + + + + + &Overview + &Imagine de ansamblu + + + + Show general overview of wallet + Arată o stare generală de ansamblu a portofelului + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Arată lista de adrese pentru primire plăți + + + + &Transactions + &Tranzacții + + + + Browse transaction history + Răsfoiește istoricul tranzacțiilor + + + + &Address Book + Agendă + + + + Edit the list of stored addresses and labels + Editează lista de adrese si etichete stocate + + + + E&xit + &Ieșire + + + + Quit application + Închide aplicația + + + + &About BitBean + Despre BitBean + + + + Show information about BitBean + Arată informații despre BitBean + + + + About &Qt + Despre &Qt + + + + Show information about Qt + Arată informații despre Qt + + + + &Options... + &Setări... + + + + Modify configuration options for BitBean + Modifică opțiuni de configurare pentru BitBean + + + + &Show / Hide + Arata/Ascunde + + + + &Encrypt Wallet... + Criptează portofelul electronic... + + + + Encrypt or decrypt wallet + Criptează sau decriptează portofelul + + + + &Backup Wallet... + &Fă o copie de siguranță a portofelului... + + + + Backup wallet to another location + Creează o copie de rezervă a portofelului într-o locație diferită + + + + &Change Passphrase... + S&chimbă parola... + + + + Change the passphrase used for wallet encryption + Schimbă fraza de acces folosită pentru criptarea portofelului + + + + &Unlock Wallet... + &Deblochează portofelul + + + + Unlock wallet + Deblochează portofelul + + + + &Lock Wallet + Blochează portofelul + + + + Lock wallet + Blochează portofelul + + + + Sign &message... + Semnează &mesaj... + + + + &Verify message... + &Verifică mesajul... + + + + &Export... + &Exportă + + + + Export the data in the current tab to a file + Exportă datele din tab-ul curent într-un fișier + + + + &Debug window + Fereastră &debug + + + + Open debugging and diagnostic console + Deschide consola de debug și diagnosticare + + + + &File + &Fișier + + + + &Settings + &Setări + + + + &Help + A&jutor + + + + Tabs toolbar + Bara de file + + + + Actions toolbar + Bara de instrumente Actiuni + + + + + [testnet] + [testnet] + + + + + BitBean client + Clientul BitBean + + + + %n active connection(s) to BitBean network + + %n conexiune activă la reteaua BitBean + %n conexiuni active la reteaua BitBean + %n conexiuni active la reteaua BitBean + + + + + Synchronizing with network... + Se sincronizează cu rețeaua... + + + + ~%n block(s) remaining + + ~%n bloc rămas + ~%n blocuri rămase + ~%n blocuri rămase + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Descărcat %1 din %2 blocuri din istoricul tranzacțiilor(%3% terminat). + + + + Downloaded %1 blocks of transaction history. + Descărcat %1 blocuri din istoricul tranzacțiilor. + + + + %n second(s) ago + + %n secundă în urmă + %n secunde în urmă + %n secunde în urmă + + + + + %n minute(s) ago + + %n minut în urmă + %n minute în urmă + %n minute în urmă + + + + + %n hour(s) ago + + %n oră în urmă + %n ore în urmă + %n ore în urmă + + + + + %n day(s) ago + + %n zi în urmă + %n zile în urmă + %n zile în urmă + + + + + Up to date + Actualizat + + + + Catching up... + Se actualizează... + + + + Last received block was generated %1. + Ultimul bloc primit a fost generat %1. + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Această tranzactie este peste limita admisa. Puteți sa trimiteți pentru o taxa de 1%, care este pentru nodurile care proceseaza tranzactia si ajuta la sprijinirea retelei. Vrei să plătești taxa? + + + + Confirm transaction fee + Confirmă comisinoul tranzacției + + + + Sent transaction + Tranzacție expediată + + + + Incoming transaction + Tranzacție recepționată + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1 +Suma: %2 +Tipul: %3 +Adresa: %4 + + + + + + URI handling + Manipulare URI + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI nu poate fi parsatt! Cauza poate fi o adresa BitBean invalidă sau parametrii URI malformați. + + + + 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> + + + + 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 the new location. + Eroare la încercarea de a salva datele portofelului în noua locaţie. + + + + %n second(s) + + %n secundă + %n secunde + %n secunde + + + + + %n minute(s) + + %n minut + %n minute + %n minute + + + + + %n hour(s) + + %n oră + %n ore + %n ore + + + + + %n day(s) + + %n zi + %n zile + %n zile + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Staking. <br>Greutatea este %1<br>Greutatea retelei este %2<br>Timp estimat pentru a castiga recompensa este %3 + + + + Not staking because wallet is locked + Nu este in modul stake deoarece portofelul este blocat + + + + Not staking because wallet is offline + Nu este in modul stake deoarece portofelul este offline + + + + Not staking because wallet is syncing + Nu este in modul stake deoarece portofelul se sincronizeaza + + + + Not staking because you don't have mature beans + + + + + Not staking + Not staking + + + + BitcoinGUI + + Sign &message... + Semnează &mesaj... + + + Synchronizing with network... + Se sincronizează cu rețeaua... + + + &Overview + &Imagine de ansamblu + + + 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 + + + &Address Book + Agendă + + + Edit the list of stored addresses and labels + Editează lista de adrese si etichete stocate + + + &Receive coins + Primește monede + + + Show the list of addresses for receiving payments + Arată lista de adrese pentru primire plăți + + + &Send coins + &Trimite monede + + + E&xit + &Ieșire + + + Quit application + Închide aplicația + + + Show information about BitBean + Arată informații despre BitBean + + + 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... + + + ~%n block(s) remaining + + ~%n bloc rămas + ~%n blocuri rămase + ~%n blocuri rămase + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Descărcat %1 din %2 blocuri din istoricul tranzacțiilor(%3% terminat). + + + &Export... + &Exportă + + + Send coins to a BitBean address + Trimite monede către o adresă BitBean + + + Modify configuration options for BitBean + Modifică opțiuni de configurare pentru BitBean + + + Export the data in the current tab to a file + Exportă datele din tab-ul curent într-un fișier + + + Encrypt or decrypt wallet + Criptează sau decriptează portofelul + + + 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... + + + BitBean + BitBean + + + Wallet + Portofelul + + + &About BitBean + Despre BitBean + + + &Show / Hide + Arata/Ascunde + + + Unlock wallet + Deblochează portofelul + + + &Lock Wallet + Blochează portofelul + + + Lock wallet + Blochează portofelul + + + &File + &Fișier + + + &Settings + &Setări + + + &Help + A&jutor + + + Tabs toolbar + Bara de file + + + Actions toolbar + Bara de instrumente Actiuni + + + [testnet] + [testnet] + + + BitBean client + Clientul BitBean + + + %n active connection(s) to BitBean network + + %n conexiune activă la reteaua BitBean + %n conexiuni active la reteaua BitBean + %n conexiuni active la reteaua BitBean + + + + Downloaded %1 blocks of transaction history. + Descărcat %1 blocuri din istoricul tranzacțiilor. + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Staking. <br>Greutatea este %1<br>Greutatea retelei este %2<br>Timp estimat pentru a castiga recompensa este %3 + + + Not staking because wallet is locked + Nu este in modul stake deoarece portofelul este blocat + + + Not staking because wallet is offline + Nu este in modul stake deoarece portofelul este offline + + + Not staking because wallet is syncing + Nu este in modul stake deoarece portofelul se sincronizeaza + + + Not staking because you don't have mature coins + Nu este in modul stake deoarece nu sunt destule monede maturate + + + %n second(s) ago + + %n secundă în urmă + %n secunde în urmă + %n secunde în urmă + + + + &Unlock Wallet... + &Deblochează portofelul + + + %n minute(s) ago + + %n minut în urmă + %n minute în urmă + %n minute în urmă + + + + %n hour(s) ago + + %n oră în urmă + %n ore în urmă + %n ore în urmă + + + + %n day(s) ago + + %n zi în urmă + %n zile în urmă + %n zile în urmă + + + + Up to date + Actualizat + + + Catching up... + Se actualizează... + + + Last received block was generated %1. + Ultimul bloc primit a fost generat %1. + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Această tranzactie este peste limita admisa. Puteți sa trimiteți pentru o taxa de 1%, care este pentru nodurile care proceseaza tranzactia si ajuta la sprijinirea retelei. Vrei să plătești taxa? + + + Confirm transaction fee + Confirmă comisinoul tranzacției + + + Sent transaction + Tranzacție expediată + + + Incoming transaction + Tranzacție recepționată + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Data: %1 +Suma: %2 +Tipul: %3 +Adresa: %4 + + + + URI handling + Manipulare URI + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI nu poate fi parsatt! Cauza poate fi o adresa BitBean invalidă sau parametrii URI malformați. + + + 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> + + + 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 the new location. + Eroare la încercarea de a salva datele portofelului în noua locaţie. + + + %n second(s) + + %n secundă + %n secunde + %n secunde + + + + %n minute(s) + + %n minut + %n minute + %n minute + + + + %n hour(s) + + %n oră + %n ore + %n ore + + + + %n day(s) + + %n zi + %n zile + %n zile + + + + Not staking + Not staking + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + A apărut o eroare fatală. BitBean nu mai poate continua în condiții de siguranță și va iesi. + + + + ClientModel + + + Network Alert + Alertă rețea + + + + CoinControlDialog + + Coin Control + Controlează moneda + + + Quantity: + Cantitate: + + + Bytes: + Octeţi: + + + Amount: + Sumă: + + + Priority: + Prioritate: + + + Fee: + Taxa: + + + Low Output: + Ieşire minimă: + + + no + nu + + + After Fee: + După taxe: + + + Change: + Schimb: + + + (un)select all + (de)selectaţi tot + + + Tree mode + Modul arborescent + + + List mode + Modul lista + + + Amount + Sumă + + + Label + Etichetă + + + 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 + + + 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 + + + high + mare + + + medium-high + marime medie + + + medium + mediu + + + low-medium + mediu-scazut + + + low + scazut + + + lowest + cel mai scazut + + + DUST + DUST + + + yes + da + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Aceasta eticheta se inroseste daca marimea tranzactiei este mai mare de 10000 bytes. + +Acest lucru inseamna ca este nevoie de o taxa de cel putin %1 pe kb + +Poate varia +/- 1 Byte pe imput. + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Tranzacțiile cu prioritate mai mare ajunge mult mai probabil într-un bloc + +Aceasta eticheta se inroseste daca prioritatea este mai mica decat "medium" + +Acest lucru inseamna ca este necesar un comision cel putin de %1 pe kB + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Aceasta eticheta se inroseste daca oricare din contacte primeste o suma mai mica decat %1. + +Acest lucru inseamna ca un comision de cel putin %2 este necesar. + +Sume mai mici decat 0.546 ori minimul comisionului de relay sunt afisate ca DUST + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Această eticheta se înroseste dacă schimbul este mai mic de %1. + +Acest lucru înseamnă că o taxă de cel puțin %2 este necesară + + + (no label) + (fără etichetă) + + + change from %1 (%2) + schimbă la %1(%2) + + + (change) + (schimb) + + + + EditAddressDialog + + + Edit Address + Editează adresa + + + + &Label + &Etichetă + + + + The label associated with this address book entry + Eticheta asociată cu această intrare în agendă + + + + &Address + &Adresă + + + + The address associated with this address book entry. This can only be modified for sending addresses. + Adresa asociată cu această intrare în agendă. Acest lucru poate fi modificat numai pentru adresele de trimitere. + + + + 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 BitBean address. + Adresa introdusă "%1" nu este o adresă BitBean validă + + + + Could not unlock wallet. + Portofelul nu a putut fi deblocat. + + + + New key generation failed. + Generarea noii chei a eșuat. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + version + versiune + + + + Usage: + Utilizare: + + + + command-line options + Optiuni linie de comanda + + + + UI options + Setări UI + + + + Set language, for example "de_DE" (default: system locale) + Setează limba, de exemplu: "de_DE" (inițial: setare locală) + + + + Start minimized + Pornește miniaturizat + + + + Show splash screen on startup (default: 1) + Afișează ecran splash la pornire (implicit: 1) + + + + 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. Fee 5.00 recommended. + Comision de tranzacție opțional pe kB, care vă ajută ca tranzacțiile sa fie procesate rapid. Majoritatea tranzactiilor sunt de 1 kB. Comision de 0.01 recomandat + + + + Pay transaction &fee + Plăteşte comision pentru tranzacţie &f + + + Reserved amount does not participate in staking and is therefore spendable at any time. + Suma rezervată nu participă la maturare și, prin urmare, se poate cheltui în orice moment. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + Rezervă + + + + Automatically start BitBean after logging in to the system. + Pornește BitBean imdiat după logarea în sistem + + + + &Start BitBean on system login + $Pornește BitBean la logarea în sistem + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + Detașați bloc și baze de date de adrese la închidere. Acest lucru înseamnă că pot fi mutate într-u alt director de date, dar incetineste închiderea. Portofelul este întotdeauna detașat. + + + + &Detach databases at shutdown + &Detasaza baza de date la inchidere + + + + &Network + &Retea + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + Deschide automat portul pentru cientul BitBean pe router. Aces lucru este posibil doara daca routerul suporta UPnP si este activat + + + + Map port using &UPnP + Mapeaza portul folosind &UPnP + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + Conecteaza la reteaua BitBean prinr-un proxy SOCKS(ex. cand te conectezi prin Tor) + + + + &Connect through SOCKS proxy: + Conectează-te printr-un proxy socks + + + + Proxy &IP: + Proxy &IP: + + + + IP address of the proxy (e.g. 127.0.0.1) + Adresa IP a proxy-ului(ex. 127.0.0.1) + + + + &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 BitBean. + Limba interfeței utilizator poate fi setat aici. Această setare va avea efect după repornirea BitBean. + + + + &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 beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + 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 bitcoin. + + + + Whether to show BitBean addresses in the transaction list or not. + Dacă să arate adrese BitBean din 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!) + Afiseaza &caracteristiclei de control ale monedei(numai experti!) + + + + &OK + & OK + + + + &Cancel + & Renunta + + + + &Apply + &Aplica + + + + default + Initial + + + + + Warning + Avertizare + + + + + This setting will take effect after restarting BitBean. + Aceasta setare va avea efect dupa repornirea BitBean. + + + + The supplied proxy address is invalid. + Adresa bitcoin pe care a-ti specificat-o este invalida + + + + OverviewPage + + + Form + Form + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + Informatia afisata poate fi depasita. Portofel se sincronizează automat cu rețeaua BitBean după ce se stabilește o conexiune, dar acest proces nu s-a finalizat încă. + + + Stake: + Stake: + + + + Unconfirmed: + Neconfirmat: + + + Wallet + Portofel + + + + Spendable: + Cheltuibil: + + + + Your current spendable balance + Balanța ta curentă de cheltuieli + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + Nematurizat: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + 0 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + 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> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Total al tranzacțiilor care nu au fost confirmate încă și nu contează față de balanța curentă + + + Total of coins that was staked, and do not yet count toward the current balance + Totalul de monede care au fost in stake si nu sunt numarate in balanta curenta + + + + + out of sync + Nu este sincronizat + + + + QRCodeDialog + + + QR Code Dialog + Dialog cod QR + + + + Request Payment + Cerere de plată + + + + Amount: + Cantitate: + + + + Label: + Etichetă + + + + Message: + Mesaj: + + + + &Save As... + &Salvează ca... + + + + Error encoding URI into QR Code. + Eroare la codarea URl-ului în cod QR. + + + + The entered amount is invalid, please check. + Suma introdusă nu este validă, vă rugăm să verificați. + + + + Resulting URI too long, try to reduce the text for label / message. + URI rezultat este prea lung, încearcă să reduci textul pentru etichetă / mesaj. + + + + Save QR Code + Salvează codul QR + + + + PNG Images (*.png) + Imagini PNG(*png) + + + + RPCConsole + + + Client name + Nume client + + + + + + + + + + + + + N/A + N/A + + + + Client version + Versiune client + + + + &Information + &Informație + + + + Using OpenSSL version + Foloseste versiunea OpenSSL + + + + Startup time + Durata pornirii + + + + Network + Rețea + + + + Number of connections + Numărul de conexiuni + + + + On testnet + Pe testnet + + + + 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 + + + + Command-line options + Optiuni linii de comandă + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + Afișa mesajul de ajutor BitBean-Qt pentru a obține o listă cu posibile opțiuni de linie de comandă BitBean. + + + + &Show + &Arată + + + + &Console + &Consolă + + + + Build date + Construit la data + + + + BitBean - Debug window + BitBean - fereastră depanare + + + + BitBean Core + BitBean Core + + + + Debug log file + Loguri debug + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + Deschideti fisierul de depanare BitBean din folderul curent. Acest lucru poate dura cateva secunde pentru fisiere de log mari. + + + + Clear console + Curăță consola + + + + Welcome to the BitBean RPC console. + Bine ati venit la consola BitBean 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 + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + Intrări + + + + automatically selected + Selectie automatică + + + + Insufficient funds! + Fonduri insuficiente! + + + + Quantity: + Cantitate: + + + + + 0 + 0 + + + + Bytes: + Octeţi: + + + + Amount: + + + + + + + + 0.00 BC + 123.456 BC {0.00 ?} + + + + Priority: + Prioritate: + + + + medium + mediu + + + + Fee: + Taxa: + + + + Low Output: + Ieşire minimă: + + + + no + nu + + + + After Fee: + După taxe: + + + + Change + Schimbă: + + + + custom change address + personalizează schimbarea adresei + + + + Send to multiple recipients at once + Trimite simultan către mai mulți destinatari + + + + Add &Recipient + &Adaugă destinatar + + + + Remove all transaction fields + Scoateți toate câmpuirile de tranzacții + + + + Clear &All + + + + + Balance: + Balanță: + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + Confirmă operațiunea de trimitere + + + + S&end + &S Trimite + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Introduceți o adresă BitBean(ex:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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 + + + + <b>%1</b> to %2 (%3) + <b>%1</b> to %2 (%3) + + + + Confirm send beans + + + + + Are you sure you want to send %1? + Sunteți sigur că doriți să trimiteți %1? + + + + and + și + + + + 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. + + + + Error: Transaction creation failed. + Eroare: crearea tranzacției a eșuat. + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + Atenție: Adresă BitBean invalidă + + + + (no label) + (fără etichetă) + + + + WARNING: unknown change address + ATENTIE: adresa schimb necunoscuta + + + + SendBeansEntry + + + Form + + + + + A&mount: + Su&mă: + + + + Pay &To: + Plătește că&tre: + + + + + 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ă: + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adresa catre care trimiteti plata(ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + Alegeti adresa din agenda + + + + Alt+A + Alt+A + + + + Paste address from clipboard + + + + + Alt+P + Alt+P + + + + Remove this recipient + Scoateti acest destinatar + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Introduceți o adresă BitBean(ex:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + SendCoinsDialog + + Send Coins + Trimite monede + + + Coin Control Features + Caracteristici control ale monedei + + + Inputs... + Intrări + + + automatically selected + Selectie automatică + + + Insufficient funds! + Fonduri insuficiente! + + + Quantity: + Cantitate: + + + 0 + 0 + + + Bytes: + Octeţi: + + + Amount: + Sumă: + + + 0.00 BC + 123.456 BC {0.00 ?} + + + Priority: + Prioritate: + + + medium + mediu + + + Fee: + Taxa: + + + Low Output: + Ieşire minimă: + + + no + nu + + + After Fee: + După taxe: + + + Change + Schimbă: + + + custom change address + personalizează schimbarea adresei + + + Send to multiple recipients at once + Trimite simultan către mai mulți destinatari + + + Add &Recipient + &Adaugă destinatar + + + Remove all transaction fields + Scoateți toate câmpuirile de tranzacții + + + Clear &All + Șterge &tot + + + Balance: + Balanță: + + + 123.456 BC + 123.456 BC + + + Confirm the send action + Confirmă operațiunea de trimitere + + + S&end + &S Trimite + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Introduceți o adresă BitBean(ex:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + 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 + + + <b>%1</b> to %2 (%3) + <b>%1</b> to %2 (%3) + + + Confirm send coins + Confirmă trimiterea de monede + + + Are you sure you want to send %1? + Sunteți sigur că doriți să trimiteți %1? + + + and + și + + + 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. + + + Error: Transaction creation failed. + Eroare: crearea tranzacției a eșuat. + + + 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: tranzacția a fost respinsă. Acest lucru s-ar putea întâmpla în cazul în care unele dintre monedele din portofel au fost deja cheltuite, cum si cum ați utilizat o copie a wallet.dat și monedele au fost cheltuite în copie dar nu au fost marcate ca și cheltuite aici. + + + WARNING: Invalid BitBean address + Atenție: Adresă BitBean invalidă + + + (no label) + (fără etichetă) + + + WARNING: unknown change address + ATENTIE: adresa schimb necunoscuta + + + + SendCoinsEntry + + Form + Formular + + + A&mount: + Su&mă: + + + Pay &To: + Plătește că&tre: + + + 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ă: + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adresa catre care trimiteti plata(ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + Alegeti adresa din agenda + + + Alt+A + Alt+A + + + Paste address from clipboard + Lipește adresa din clipboard + + + Alt+P + Alt+P + + + Remove this recipient + Scoateti acest destinatar + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Introduceți o adresă BitBean(ex:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adresa cu care semnati mesajul(ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + Alegeti o adresa din agenda + + + + + 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. + + + + Copy the current signature to the system clipboard + Copiaza semnatura curenta in clipboard-ul sistemului + + + + Sign the message to prove you own this BitBean address + Semnează un mesaj pentru a dovedi că dețineti o adresă BitBean + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adresa cu care a fost semnat mesajul(ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + Verifică un mesaj pentru a vă asigura că a fost semnat cu o anumită adresă BitBean + + + + Reset all verify message fields + Reseteaza toate spatiile mesajelor semnate. + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Introduceți o adresă BitBean(ex:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + Click "Semneaza msajul" pentru a genera semnatura + + + + Enter BitBean signature + Introduceti semnatura BitBean + + + + + 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 + + + + TransactionDesc + + + Open until %1 + Deschis până la %1 + + + + Open for %n block(s) + + Deschde pentru încă %1 bloc + Deschde pentru încă %1 blocuri + Deschde pentru încă %1 blocuri + + + + + conflicted + conflictual + + + + %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 bloc + se maturizează în încă %n blocuri + se 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 + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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. + Monedele generate trebuie să se maturizeze 510 blocuri înainte de a fi cheltuite. Când ați generat acest bloc, a fost trimis la rețea pentru a fi adăugat la lanțul de blocuri. În cazul în care nu reușește să intre în lanț, starea sa se ​​va schimba in "nu a fost acceptat", și nu va putea fi cheltuit. Acest lucru se poate întâmpla din când în când, dacă un alt nod generează un bloc cu câteva secunde inaintea blocului 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ă + + + + unknown + necunoscut + + + + 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 + + + + TransactionTableModel + + + Date + Data + + + + Type + Tipul + + + + Address + Adresa + + + + Amount + Cantitate + + + + Open until %1 + Deschis până la %1 + + + + Confirmed (%1 confirmations) + Confirmat (%1 confirmări) + + + + Open for %n more block(s) + + Deschis pentru încă %1 bloc + Deschis pentru încă %1 blocuri + Deschis pentru încă %1 de blocuri + + + + + Offline + Deconectat + + + + Unconfirmed + Neconfirmat + + + + Confirming (%1 of %2 recommended confirmations) + Confirmare (%1 dintre %2 confirmări recomandate) + + + + Conflicted + Conflictual + + + + Immature (%1 confirmations, will be available after %2) + Nematurate(%1 confirmari, vor fi valabile dupa %2) + + + + 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 + + + + Received with + Recepționat cu + + + + Received from + Primit de la + + + + Sent to + Trimis către + + + + Payment to yourself + Plată către tine + + + + SPROUT + + + + 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. + + + + 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 Data + Exporta datele trazactiei + + + + 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 + + + + Error exporting + Eroare la exportare + + + + Could not write to file %1. + Nu s-a putut scrie în fișier %1. + + + + Range: + Interval: + + + + to + către + + + + WalletModel + + + Sending... + Se trimite... + + + + bitbean-core + + + To use the %s option + Pentru a folosi opțiunea %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, trebuie să configurați o parolă rpc în fișierul de configurare: %s +Este recomandat să folosiți următoarea parolă generată aleator: rpcuser=BitBeanrpc +rpcpassword=%s +(nu trebuie să țineți minte această parolă) +Username-ul și parola NU TREBUIE să fie aceleași. +Dacă fișierul nu există, creați-l cu drepturi de citire doar de către deținător. +Este deasemenea recomandat să setați alertnotify pentru a fi notificat de probleme; +de exemplu: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + Error + Eroare + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Trebuie sa setezi rpcpassword=<password> în fișierul de configurare:⏎ +%s⏎ +Dacă fișierul nu există, creează-l cu permisiuni de citire doar de către proprietar. + + + + BitBean version + Versiune BitBean + + + + Usage: + + + + + Send command to -server or BitBeand + Trimite comanda catre server sau BitBeand + + + + List commands + Listă de comenzi + + + + Get help for a command + Ajutor pentru o comandă + + + + BitBean + BitBean + + + + Options: + Setări: + + + + This help message + Acest mesaj de ajutor + + + + Specify configuration file (default: BitBean.conf) + Specifica fisier de configurare(implicit: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + Speficica fisier pid(implicit: BitBean.pid) + + + + Specify data directory + Specifică dosarul de date + + + + Specify wallet file (within data directory) + Specifică fișierul wallet (în dosarul de date) + + + + Set database cache size in megabytes (default: 25) + Setează mărimea cache a bazei de date în megabiți (implicit: 25) + + + + Set database disk log size in megabytes (default: 100) + Setează mărimea cache a bazei de date în megabiți (implicit: 100) + + + + Specify connection timeout in milliseconds (default: 5000) + Specifică intervalul maxim de conectare în milisecunde (implicit: 5000) + + + + Connect through socks proxy + Conectează-te printr-un proxy socks + + + + Select the version of socks proxy to use (4-5, default: 5) + Selectati versiunea de proxy socks(4-5, implicit: 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + Utilizati proxy pentru a ajunge la serviciile tor (implicit: la fel ca proxy) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Permite căutări DNS pentru -addnode, -seednode și -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Ascultă pentru conectări pe <port> (implicit: 15714 sau testnet: 25714) + + + + Maintain at most <n> connections to peers (default: 125) + Menține cel mult <n> conexiuni cu partenerii (implicit: 125) + + + + 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ă + + + + Connect only to the specified node(s) + Conecteaza-te doar la nod(urile) specifice + + + + 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ă + + + + 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) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Descopera propria ta adresa IP (intial: 1) + + + + Find peers using internet relay chat (default: 0) + Gaseste noduri fosoling irc (implicit: 1) {0)?} + + + + 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) + + + + Bind to given address. Use [host]:port notation for IPv6 + Leaga la o adresa data. Utilizeaza notatie [host]:port pt IPv6 + + + + Find peers using DNS lookup (default: 1) + Gaseste peers folosind cautare DNS(implicit: 1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Sincronizează timp cu alte noduri. Dezactivează daca timpul de pe sistemul dumneavoastră este precis ex: sincronizare cu NTP (implicit: 1) + + + + Sync checkpoints policy (default: strict) + Sincronizeaza politica checkpoint(implicit: strict) + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Foloseste UPnP pentru a vedea porturile (initial: 1 cand listezi) + + + + Use UPnP to map the listening port (default: 0) + Foloseste UPnP pentru a vedea porturile (initial: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + Detaseaza bloc si baza de date de adrese. Creste timpul de inchidere(implicit:0) + + + + Fee per KB to add to transactions you send + Comision pe kB de adaugat la tranzactiile pe care le trimiti + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Când creați tranzacții, ignorați intrări cu valori mai mici decât aceasta (implicit: 0,01) + + + + Accept command line and JSON-RPC commands + Se acceptă comenzi din linia de comandă și comenzi JSON-RPC + + + + 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 + + + + Output extra debugging information. Implies all other -debug* options + Extra informatii despre depanare. Implica toate optiunile -debug* + + + + Output extra network debugging information + Extra informatii despre depanare retea. + + + + Prepend debug output with timestamp + Ataseaza output depanare cu log de timp + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Micsorati fisierul debug.log la inceperea clientului (implicit: 1 cand nu -debug) + + + + Send trace/debug info to console instead of debug.log file + Trimite informațiile trace/debug la consolă în locul fișierului debug.log + + + + Send trace/debug info to debugger + Trimite informațiile trace/debug la consolă + + + + Username for JSON-RPC connections + Utilizator pentru conexiunile JSON-RPC + + + + Password for JSON-RPC connections + Parola pentru conexiunile JSON-RPC + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Ascultă pentru conexiuni JSON-RPC pe <port> (implicit:15715 sau testnet: 25715) + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + Necesita confirmari pentru schimbare (implicit: 0) + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Enforseaza tranzactiile script sa foloseasca operatori canonici PUSH(implicit: 1) + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Execută o comandă când o alerta relevantâ este primitâ(%s in cmd este înlocuit de mesaj) + + + + 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ă + + + + Attempt to recover private keys from a corrupt wallet.dat + Încearcă recuperarea cheilor private dintr-un wallet.dat corupt + + + + How many blocks to check at startup (default: 2500, 0 = all) + Câte block-uri se verifică la initializare (implicit: 2500, 0 = toate) + + + + How thorough the block verification is (0-6, default: 1) + Cat de temeinica sa fie verificarea blocurilor( 0-6, implicit: 1) + + + + Imports blocks from external blk000?.dat file + Importă blocuri dintr-un fișier extern blk000?.dat + + + + Block creation options: + Optiuni creare block + + + + Set minimum block size in bytes (default: 0) + Setează mărimea minimă a blocului în baiți (implicit: 0) + + + + Set maximum block size in bytes (default: 250000) + Setează mărimea maxima a blocului în bytes (implicit: 250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Setati valoarea maxima a prioritate mare/taxa scazuta in bytes(implicit: 27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Cifruri acceptabile (implicit: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Invalid amount for -paytxfee=<amount>: '%s' + Suma nevalidă pentru -paytxfee=<amount>: '%s' + + + + 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. + + + + Invalid amount for -mininput=<amount>: '%s' + Suma invalida pentru -mininput=<amount>: '%s' + + + + Wallet %s resides outside data directory %s. + Portofelul %s este in afara directorului %s + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Nu se poate obtine un lock pe directorul de date &s. Testoin probabil ruleaza deja. + + + + Verifying database integrity... + Se verifica integritatea bazei de date... + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Eroare la inițializarea mediu de baze de date %s! Pentru a recupera, SALVATI ACEL DIRECTORr, apoi scoateți totul din el, cu excepția 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. + 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. + + + + wallet.dat corrupt, salvage failed + wallet.dat corupt, recuperare eșuată + + + + Unknown -socks proxy version requested: %i + S-a cerut o versiune necunoscută de proxy -socks: %i + + + + Unknown network specified in -onlynet: '%s' + Rețeaua specificată în -onlynet este necunoscută: '%s' + + + + Invalid -proxy address: '%s' + Adresa -proxy nevalidă: '%s' + + + + Invalid -tor address: '%s' + Adresa -tor invalida: '%s' + + + + Cannot resolve -bind address: '%s' + Nu se poate rezolva adresa -bind: '%s' + + + + 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. + + + + Cannot resolve -externalip address: '%s' + Nu se poate rezolva adresa -externalip: '%s' + + + + Invalid amount for -reservebalance=<amount> + Suma invalida pentru -reservebalance=<amount> + + + + Unable to sign checkpoint, wrong checkpointkey? + + În imposibilitatea de a semna checkpoint-ul, checkpointkey greșit? + + + + + Loading block index... + Încarc indice bloc... + + + + Error loading blkindex.dat + Eroare la încărcarea blkindex.dat + + + + Loading wallet... + Încarc portofel... + + + + Error loading wallet.dat: Wallet corrupted + Eroare la încărcarea wallet.dat: Portofel corupt + + + + 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. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Eroare la încărcarea wallet.dat: Portofelul necesita o versiune mai noua de BitBean + + + + Wallet needed to be rewritten: restart BitBean to complete + A fost nevoie de rescrierea portofelului: restartați BitBean pentru a finaliza + + + + Error loading wallet.dat + Eroare la încărcarea wallet.dat + + + + Cannot downgrade wallet + Nu se poate retrograda portofelul + + + + Cannot initialize keypool + Nu se poate initializa keypool + + + + Cannot write default address + Nu se poate scrie adresa implicită + + + + Rescanning... + Rescanez... + + + + Importing blockchain data file. + Se importa fisierul blockchain + + + + Importing bootstrap blockchain data file. + Se importa fisierul bootstrap blockchain + + + + Loading addresses... + Încarc adrese... + + + + Error: could not start node + Eroare: nodul nu a putut fi pornit + + + + Done loading + Încărcare terminată + + + + Unable to bind to %s on this computer. BitBean is probably already running. + Imposibil de conectat %s pe acest computer. Cel mai probabil BitBean ruleaza + + + + 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) + + + + Error: Wallet locked, unable to create transaction + Eroare: portofel blocat, tranzactia nu s-a creat + + + + Error: Wallet unlocked for staking only, unable to create transaction. + Eroare: portofel blocat doar pentru staking, tranzactia nu s-a creat. + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Eroare: Această tranzacție necesită un comision de tranzacție de cel puțin %s din cauza valorii sale, complexitate, sau utilizarea de fonduri recent primite + + + + Error: Transaction creation failed + Eroare: crearea tranzacției a eșuat. + + + + Sending... + Se trimite... + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Sumă nevalidă + + + + Insufficient funds + Fonduri insuficiente + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Atentie: Va rugam verificati ca timpul si data calculatorului sunt corete. Daca timpul este gresit BitBean nu va functiona corect. + + + + Warning: This version is obsolete, upgrade required! + Atenție: această versiune este depășită, este necesară actualizarea! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + ATENTIONARE: s-a detectat o violare a checkpoint-ului sincronizat, dar s-a ignorat! + + + + Warning: Disk space is low! + Avertisment: spațiul pe disc este scăzut! + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + ATENTIONARE: checkpoint invalid! Trazatiile afisate pot fi incorecte! Posibil să aveți nevoie să faceți upgrade, sau să notificati dezvoltatorii. + + + + bitcoin-core + + BitBean version + Versiune BitBean + + + Usage: + Uz: + + + Send command to -server or BitBeand + Trimite comanda catre server sau BitBeand + + + List commands + Listă de comenzi + + + Get help for a command + Ajutor pentru o comandă + + + Options: + Setări: + + + Specify configuration file (default: BitBean.conf) + Specifica fisier de configurare(implicit: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + Speficica fisier pid(implicit: BitBean.pid) + + + Specify wallet file (within data directory) + Specifică fișierul wallet (în dosarul de date) + + + 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) + + + Set database disk log size in megabytes (default: 100) + Setează mărimea cache a bazei de date în megabiți (implicit: 100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Ascultă pentru conectări pe <port> (implicit: 15714 sau testnet: 25714) + + + 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ă + + + Bind to given address. Use [host]:port notation for IPv6 + Leaga la o adresa data. Utilizeaza notatie [host]:port pt IPv6 + + + Stake your coins to support network and gain reward (default: 1) + Pune monedele in modul stake pentru a ajuta reteaua si a castiva bonusuri(implicit: 1) + + + 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 + + + Detach block and address databases. Increases shutdown time (default: 0) + Detaseaza bloc si baza de date de adrese. Creste timpul de inchidere(implicit:0) + + + 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: tranzacția a fost respinsă. Acest lucru s-ar putea întâmpla în cazul în care unele dintre monedele din portofel au fost deja cheltuite, cum si cum ați utilizat o copie a wallet.dat și monedele au fost cheltuite în copie dar nu au fost marcate ca și cheltuite aici. + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Eroare: Această tranzacție necesită un comision de tranzacție de cel puțin %s din cauza valorii sale, complexitate, sau utilizarea de fonduri recent primite + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Ascultă pentru conexiuni JSON-RPC pe <port> (implicit:15715 sau testnet: 25715) + + + Accept command line and JSON-RPC commands + Se acceptă comenzi din linia de comandă și comenzi JSON-RPC + + + Error: Transaction creation failed + Eroare: crearea tranzacției a eșuat. + + + Error: Wallet locked, unable to create transaction + Eroare: portofel blocat, tranzactia nu s-a creat + + + Importing blockchain data file. + Se importa fisierul blockchain + + + Importing bootstrap blockchain data file. + Se importa fisierul bootstrap blockchain + + + 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) + + + 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 + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Eroare la inițializarea mediu de baze de date %s! Pentru a recupera, SALVATI ACEL DIRECTORr, apoi scoateți totul din el, cu excepția wallet.dat. + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Setati valoarea maxima a prioritate mare/taxa scazuta in bytes(implicit: 27000) + + + 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 BitBean will not work properly. + Atentie: Va rugam verificati ca timpul si data calculatorului sunt corete. Daca timpul este gresit BitBean nu va functiona corect. + + + 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. + + + Attempt to recover private keys from a corrupt wallet.dat + Încearcă recuperarea cheilor private dintr-un wallet.dat corupt + + + Block creation options: + Optiuni creare block + + + Connect only to the specified node(s) + Conecteaza-te doar la nod(urile) specifice + + + Discover own IP address (default: 1 when listening and no -externalip) + Descopera propria ta adresa IP (intial: 1) + + + 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. + + + Find peers using DNS lookup (default: 1) + Gaseste peers folosind cautare DNS(implicit: 1) + + + Sync checkpoints policy (default: strict) + Sincronizeaza politica checkpoint(implicit: strict) + + + Invalid -tor address: '%s' + Adresa -tor invalida: '%s' + + + Invalid amount for -reservebalance=<amount> + Suma invalida pentru -reservebalance=<amount> + + + 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) + Efectuează conexiuni doar către nodurile din rețeaua <net> (IPv4, IPv6 sau Tor) + + + Output extra debugging information. Implies all other -debug* options + Extra informatii despre depanare. Implica toate optiunile -debug* + + + Output extra network debugging information + Extra informatii despre depanare retea. + + + Prepend debug output with timestamp + Ataseaza output depanare cu log de timp + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Optiuni SSl (vezi Bitcoin wiki pentru intructiunile de instalare) + + + Select the version of socks proxy to use (4-5, default: 5) + Selectati versiunea de proxy socks(4-5, implicit: 5) + + + Send trace/debug info to console instead of debug.log file + Trimite informațiile trace/debug la consolă în locul fișierului debug.log + + + Send trace/debug info to debugger + Trimite informațiile trace/debug la consolă + + + Set maximum block size in bytes (default: 250000) + Setează mărimea maxima a blocului în bytes (implicit: 250000) + + + Set minimum block size in bytes (default: 0) + Setează mărimea minimă a blocului în baiți (implicit: 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) + + + Specify connection timeout in milliseconds (default: 5000) + Specifică intervalul maxim de conectare în milisecunde (implicit: 5000) + + + Unable to sign checkpoint, wrong checkpointkey? + + În imposibilitatea de a semna checkpoint-ul, checkpointkey greșit? + + + + 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) + + + Use proxy to reach tor hidden services (default: same as -proxy) + Utilizati proxy pentru a ajunge la serviciile tor (implicit: la fel ca proxy) + + + Username for JSON-RPC connections + Utilizator pentru conexiunile JSON-RPC + + + Verifying database integrity... + Se verifica integritatea bazei de date... + + + WARNING: syncronized checkpoint violation detected, but skipped! + ATENTIONARE: s-a detectat o violare a checkpoint-ului sincronizat, dar s-a ignorat! + + + Warning: Disk space is low! + Avertisment: spațiul pe disc este scăzut! + + + Warning: This version is obsolete, upgrade required! + Atenție: această versiune este depășită, este necesară actualizarea! + + + wallet.dat corrupt, salvage failed + wallet.dat corupt, recuperare eșuată + + + Password for JSON-RPC connections + Parola pentru conexiunile JSON-RPC + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, trebuie să configurați o parolă rpc în fișierul de configurare: %s +Este recomandat să folosiți următoarea parolă generată aleator: rpcuser=BitBeanrpc +rpcpassword=%s +(nu trebuie să țineți minte această parolă) +Username-ul și parola NU TREBUIE să fie aceleași. +Dacă fișierul nu există, creați-l cu drepturi de citire doar de către deținător. +Este deasemenea recomandat să setați alertnotify pentru a fi notificat de probleme; +de exemplu: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + Find peers using internet relay chat (default: 0) + Gaseste noduri fosoling irc (implicit: 1) {0)?} + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Sincronizează timp cu alte noduri. Dezactivează daca timpul de pe sistemul dumneavoastră este precis ex: sincronizare cu NTP (implicit: 1) + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Când creați tranzacții, ignorați intrări cu valori mai mici decât aceasta (implicit: 0,01) + + + 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) + + + 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) + + + Require a confirmations for change (default: 0) + Necesita confirmari pentru schimbare (implicit: 0) + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Enforseaza tranzactiile script sa foloseasca operatori canonici PUSH(implicit: 1) + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Execută o comandă când o alerta relevantâ este primitâ(%s in cmd este înlocuit de mesaj) + + + 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ă + + + How many blocks to check at startup (default: 2500, 0 = all) + Câte block-uri se verifică la initializare (implicit: 2500, 0 = toate) + + + How thorough the block verification is (0-6, default: 1) + Cat de temeinica sa fie verificarea blocurilor( 0-6, implicit: 1) + + + Imports blocks from external blk000?.dat file + Importă blocuri dintr-un fișier extern blk000?.dat + + + 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) + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Cifruri acceptabile (implicit: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + Error: Wallet unlocked for staking only, unable to create transaction. + Eroare: portofel blocat doar pentru staking, tranzactia nu s-a creat. + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + ATENTIONARE: checkpoint invalid! Trazatiile afisate pot fi incorecte! Posibil să aveți nevoie să faceți upgrade, sau să notificati dezvoltatorii. + + + This help message + Acest mesaj de ajutor + + + Wallet %s resides outside data directory %s. + Portofelul %s este in afara directorului %s + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Nu se poate obtine un lock pe directorul de date &s. Testoin probabil ruleaza deja. + + + BitBean + BitBean + + + 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) + + + Connect through socks proxy + Conectează-te printr-un proxy socks + + + Allow DNS lookups for -addnode, -seednode and -connect + Permite căutări DNS pentru -addnode, -seednode și -connect + + + Loading addresses... + Încarc adrese... + + + Error loading blkindex.dat + Eroare la încărcarea blkindex.dat + + + Error loading wallet.dat: Wallet corrupted + Eroare la încărcarea wallet.dat: Portofel corupt + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Eroare la încărcarea wallet.dat: Portofelul necesita o versiune mai noua de BitBean + + + Wallet needed to be rewritten: restart BitBean to complete + A fost nevoie de rescrierea portofelului: restartați BitBean pentru a finaliza + + + 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' + + + Error: could not start node + Eroare: nodul nu a putut fi pornit + + + Sending... + Se trimite... + + + 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. BitBean is probably already running. + Imposibil de conectat %s pe acest computer. Cel mai probabil BitBean ruleaza + + + Fee per KB to add to transactions you send + Comision pe kB de adaugat la tranzactiile pe care le trimiti + + + Invalid amount for -mininput=<amount>: '%s' + Suma invalida pentru -mininput=<amount>: '%s' + + + Loading wallet... + Încarc portofel... + + + Cannot downgrade wallet + Nu se poate retrograda portofelul + + + Cannot initialize keypool + Nu se poate initializa keypool + + + 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. + Trebuie sa setezi rpcpassword=<password> în fișierul de configurare:⏎ +%s⏎ +Dacă fișierul nu există, creează-l cu permisiuni de citire doar de către proprietar. + + + diff --git a/src/qt/locale/bitbean_ru.qm b/src/qt/locale/bitbean_ru.qm new file mode 100644 index 0000000..02d58bd Binary files /dev/null and b/src/qt/locale/bitbean_ru.qm differ diff --git a/src/qt/locale/bitbean_ru.ts b/src/qt/locale/bitbean_ru.ts new file mode 100644 index 0000000..12618cf --- /dev/null +++ b/src/qt/locale/bitbean_ru.ts @@ -0,0 +1,4732 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + О BitBean + + + + <b>BitBean</b> version + <b>BitBean</b> версия + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + Все права защищены © 2009-2014 Разработчики Bitcoin +Все права защищены © 2012-2014 Разработчики NovaCoin +Все права защищены © 2014 Разработчики BitBean + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +Это экспериментальная программа. + +Распространяется на правах лицензии MIT/X11, см. файл license.txt или http://www.opensource.org/licenses/mit-license.php. + +Этот продукт включает ПО, разработанное OpenSSL Project для использования в OpenSSL Toolkit (http://www.openssl.org/) и криптографическое ПО, написанное Eric Young (eay@cryptsoft.com) и ПО для работы с UPnP, написанное Thomas Bernard. + + + + AddressBookPage + + + Address Book + Адресная книга + + + + Double-click to edit address or label + Для того, чтобы изменить адрес или метку давжды кликните по изменяемому объекту + + + + Create a new address + Создать новый адрес + + + + Copy the currently selected address to the system clipboard + Копировать текущий выделенный адрес в буфер обмена + + + + &New Address + &Новый адрес + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + Это Ваши адреса для получения платежей. Вы можете дать разные адреса отправителям, чтобы отслеживать, кто именно вам платит. + + + + &Copy Address + &Копировать адрес + + + + Show &QR Code + Показать &QR код + + + + Sign a message to prove you own a BitBean address + Подписать сообщение, чтобы доказать владение адресом BitBean + + + + Sign &Message + &Подписать сообщение + + + + Delete the currently selected address from the list + Удалить выбранный адрес из списка + + + + Verify a message to ensure it was signed with a specified BitBean address + Проверить сообщение, чтобы убедиться, что оно было подписано указанным адресом BitBean + + + + &Verify Message + &Проверить сообщение + + + + &Delete + &Удалить + + + + Copy &Label + Копировать &метку + + + + &Edit + &Правка + + + + Export Address Book Data + Экспортировать адресную книгу + + + + Comma separated file (*.csv) + Текст, разделённый запятыми (*.csv) + + + + Error exporting + Ошибка экспорта + + + + Could not write to file %1. + Невозможно записать в файл %1. + + + + AddressTableModel + + + Label + Метка + + + + Address + Адрес + + + + (no label) + [нет метки] + + + + AskPassphraseDialog + + + Passphrase Dialog + Диалог ввода пароля + + + + Enter passphrase + Введите пароль + + + + New passphrase + Новый пароль + + + + Repeat new passphrase + Повторите новый пароль + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Служит для предотвращения тривиальной отправки монет, если ваша система скомпрометирована. Не предоставляет реальной безопасности. + + + + For staking only + Только для участия в доле + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Введите новый пароль для бумажника. <br/> Пожалуйста, используйте фразы из <b>10 или более случайных символов,</b> или <b>восьми и более слов.</b> + + + + Encrypt wallet + Зашифровать бумажник + + + + This operation needs your wallet passphrase to unlock the wallet. + Для выполнения операции требуется пароль вашего бумажника. + + + + Unlock wallet + Разблокировать бумажник + + + + This operation needs your wallet passphrase to decrypt the wallet. + Для выполнения операции требуется пароль вашего бумажника. + + + + Decrypt wallet + Расшифровать бумажник + + + + Change passphrase + Сменить пароль + + + + Enter the old and new passphrase to the wallet. + Введите старый и новый пароль для бумажника. + + + + Confirm wallet encryption + Подтвердите шифрование бумажника + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! + Внимание: если вы зашифруете бумажник и потеряете пароль, вы <b>ПОТЕРЯЕТЕ ВСЕ ВАШИ МОНЕТЫ</b>! + + + + Are you sure you wish to encrypt your wallet? + Вы уверены, что хотите зашифровать ваш бумажник? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + ВАЖНО: все предыдущие резервные копии вашего кошелька должны быть заменены новым зашифрованным файлом. В целях безопасности предыдущие резервные копии нешифрованного кошелька станут бесполезны, как только вы начнёте использовать новый шифрованный кошелёк. + + + + + Warning: The Caps Lock key is on! + Внимание: Caps Lock включен! + + + + + Wallet encrypted + Бумажник зашифрован + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins 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. + Пароль бумажника успешно изменён. + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + Количество: + + + + Bytes: + Размер: + + + + Amount: + + + + + Priority: + Приоритет: + + + + Fee: + Комиссия: + + + + Low Output: + Мелкие входы: + + + + After Fee: + С комиссией: + + + + Change: + Сдача: + + + + (un)select all + Выбрать все + + + + Tree mode + Дерево + + + + List mode + Список + + + + Amount + + + + + Label + Метка + + + + Address + Адрес + + + + Date + Дата + + + + Confirmations + Подтверждения + + + + Confirmed + Подтверждено + + + + Priority + Приоритет + + + + Copy address + Копировать адрес + + + + Copy label + Копировать метку + + + + + Copy amount + + + + + Copy transaction ID + Скопировать ID транзакции + + + + Copy quantity + Копировать количество + + + + Copy fee + Копировать комиссию + + + + Copy after fee + Копировать с комиссией + + + + Copy bytes + + + + + Copy priority + Копировать приоритет + + + + Copy low output + + + + + Copy change + Копировать сдачу + + + + highest + наивысший + + + + high + высокий + + + + medium-high + выше среднего + + + + medium + средний + + + + low-medium + ниже среднего + + + + low + низкий + + + + lowest + наименьший + + + + DUST + + + + + yes + да + + + + no + нет + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 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. + + This means a fee of at least %2 is required. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + (сдача) + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Произошла неисправимая ошибка. BitBean не может безопасно продолжать работу и будет закрыт. + + + + BitBean + BitBean + + + + Vault + + + + + &Overview + О&бзор + + + + Show general overview of wallet + Показать общий обзор действий с бумажником + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Показать список адресов для получения платежей + + + + &Transactions + &Транзакции + + + + Browse transaction history + Показать историю транзакций + + + + &Address Book + &Адресная книга + + + + Edit the list of stored addresses and labels + Изменить список сохранённых адресов и меток к ним + + + + E&xit + В&ыход + + + + Quit application + Закрыть приложение + + + + &About BitBean + &О BitBean + + + + Show information about BitBean + Показать информацию о BitBean'е + + + + About &Qt + О &Qt + + + + Show information about Qt + Показать информацию о Qt + + + + &Options... + Оп&ции... + + + + Modify configuration options for BitBean + Изменить параметры конфигурации BitBean + + + + &Show / Hide + &Показать / Скрыть + + + + &Encrypt Wallet... + &Зашифровать бумажник + + + + Encrypt or decrypt wallet + Зашифровать или расшифровать бумажник + + + + &Backup Wallet... + &Сделать резервную копию бумажника + + + + Backup wallet to another location + Сделать резервную копию бумажника в другом месте + + + + &Change Passphrase... + &Изменить пароль + + + + Change the passphrase used for wallet encryption + Изменить пароль шифрования бумажника + + + + &Unlock Wallet... + &Разблокировать бумажник + + + + Unlock wallet + Разблокировать бумажник + + + + &Lock Wallet + &Заблокировать бумажник + + + + Lock wallet + Заблокировать бумажник + + + + Sign &message... + &Подписать сообщение + + + + &Verify message... + &Проверить сообщение... + + + + &Export... + &Экспорт... + + + + Export the data in the current tab to a file + Экспортировать данные из вкладки в файл + + + + &Debug window + &Окно отладки + + + + Open debugging and diagnostic console + Открыть консоль отладки и диагностики + + + + &File + &Файл + + + + &Settings + &Настройки + + + + &Help + &Помощь + + + + Tabs toolbar + Панель вкладок + + + + Actions toolbar + Панель действий + + + + + [testnet] + [тестовая сеть] + + + + + BitBean client + BitBean клиент + + + + %n active connection(s) to BitBean network + + %n активное соединение с сетью + %n активных соединений с сетью + %n активных соединений с сетью + + + + + Synchronizing with network... + Синхронизация с сетью... + + + + ~%n block(s) remaining + + остался ~%n блок + осталось ~%n блоков + осталось ~%n блоков + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Загружено %1 из %2 блоков истории операций (%3% завершено). + + + + Downloaded %1 blocks of transaction history. + Загружено %1 блоков истории транзакций. + + + + %n second(s) ago + + %n секунду назад + %n секунды назад + %n секунд назад + + + + + %n minute(s) ago + + %n минуту назад + %n минуты назад + %n минут назад + + + + + %n hour(s) ago + + %n час назад + %n часа назад + %n часов назад + + + + + %n day(s) ago + + %n день назад + %n дня назад + %n дней назад + + + + + Up to date + Синхронизировано + + + + Catching up... + Синхронизируется... + + + + Last received block was generated %1. + Последний полученный блок был сгенерирован %1. + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Данная транзакция превышает предельно допустимый размер. Но Вы можете всё равно совершить её, добавив комиссию в %1, которая отправится тем узлам, которые обработают Вашу транзакцию, и поможет поддержать сеть. Вы хотите добавить комиссию? + + + + Confirm transaction fee + Подтвердите комиссию + + + + Sent transaction + Исходящая транзакция + + + + Incoming transaction + Входящая транзакция + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Дата: %1 +Количество: %2 +Тип: %3 +Адрес: %4 + + + + + + URI handling + Обработка URI + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + Не удалось обработать URI! Это может быть связано с неверным адресом BitBean или неправильными параметрами URI. + + + + 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> + + + + Backup Wallet + Сделать резервную копию бумажника + + + + Wallet Data (*.dat) + Данные бумажника (*.dat) + + + + Backup Failed + Резервное копирование не удалось + + + + There was an error trying to save the wallet data to the new location. + При попытке сохранения данных бумажника в новое место произошла ошибка. + + + + %n second(s) + + %n секунда + %n секунды + %n секунд + + + + + %n minute(s) + + %n минута + %n минуты + %n минут + + + + + %n hour(s) + + %n час + %n часа + %n часов + + + + + %n day(s) + + %n день + %n дня + %n дней + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Участвуем в доле.<br>Ваш вес %1<br>Вес сети %2<br>Ожидаемое время получения награды %3 + + + + Not staking because wallet is locked + Не участвуем в доле, так как кошелёк заблокирован + + + + Not staking because wallet is offline + Не участвуем в доле, так как кошелёк оффлайн + + + + Not staking because wallet is syncing + Не участвуем в доле, так как кошелёк синхронизируется + + + + Not staking because you don't have mature beans + + + + + Not staking + Не участвуем в доле + + + + BitcoinGUI + + Sign &message... + &Подписать сообщение + + + Synchronizing with network... + Синхронизация с сетью... + + + &Overview + О&бзор + + + Show general overview of wallet + Показать общий обзор действий с бумажником + + + &Transactions + &Транзакции + + + Browse transaction history + Показать историю транзакций + + + &Address Book + &Адресная книга + + + Edit the list of stored addresses and labels + Изменить список сохранённых адресов и меток к ним + + + &Receive coins + &Получение монет + + + Show the list of addresses for receiving payments + Показать список адресов для получения платежей + + + &Send coins + Отп&равка монет + + + E&xit + В&ыход + + + Quit application + Закрыть приложение + + + Show information about BitBean + Показать информацию о BitBean'е + + + About &Qt + О &Qt + + + Show information about Qt + Показать информацию о Qt + + + &Options... + Оп&ции... + + + &Encrypt Wallet... + &Зашифровать бумажник + + + &Backup Wallet... + &Сделать резервную копию бумажника + + + &Change Passphrase... + &Изменить пароль + + + ~%n block(s) remaining + + остался ~%n блок + осталось ~%n блоков + осталось ~%n блоков + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Загружено %1 из %2 блоков истории операций (%3% завершено). + + + &Export... + &Экспорт... + + + Send coins to a BitBean address + Отправить монеты на указанный адрес BitBean + + + Modify configuration options for BitBean + Изменить параметры конфигурации BitBean + + + Export the data in the current tab to a file + Экспортировать данные из вкладки в файл + + + Encrypt or decrypt wallet + Зашифровать или расшифровать бумажник + + + Backup wallet to another location + Сделать резервную копию бумажника в другом месте + + + Change the passphrase used for wallet encryption + Изменить пароль шифрования бумажника + + + &Debug window + &Окно отладки + + + Open debugging and diagnostic console + Открыть консоль отладки и диагностики + + + &Verify message... + &Проверить сообщение... + + + BitBean + BitBean + + + Wallet + Бумажник + + + &About BitBean + &О BitBean + + + &Show / Hide + &Показать / Скрыть + + + Unlock wallet + Разблокировать бумажник + + + &Lock Wallet + &Заблокировать бумажник + + + Lock wallet + Заблокировать бумажник + + + &File + &Файл + + + &Settings + &Настройки + + + &Help + &Помощь + + + Tabs toolbar + Панель вкладок + + + Actions toolbar + Панель действий + + + [testnet] + [тестовая сеть] + + + BitBean client + BitBean клиент + + + %n active connection(s) to BitBean network + + %n активное соединение с сетью + %n активных соединений с сетью + %n активных соединений с сетью + + + + Downloaded %1 blocks of transaction history. + Загружено %1 блоков истории транзакций. + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Участвуем в доле.<br>Ваш вес %1<br>Вес сети %2<br>Ожидаемое время получения награды %3 + + + Not staking because wallet is locked + Не участвуем в доле, так как кошелёк заблокирован + + + Not staking because wallet is offline + Не участвуем в доле, так как кошелёк оффлайн + + + Not staking because wallet is syncing + Не участвуем в доле, так как кошелёк синхронизируется + + + Not staking because you don't have mature coins + Не участвуем в доле, так как нет зрелых монет + + + %n second(s) ago + + %n секунду назад + %n секунды назад + %n секунд назад + + + + &Unlock Wallet... + &Разблокировать бумажник + + + %n minute(s) ago + + %n минуту назад + %n минуты назад + %n минут назад + + + + %n hour(s) ago + + %n час назад + %n часа назад + %n часов назад + + + + %n day(s) ago + + %n день назад + %n дня назад + %n дней назад + + + + Up to date + Синхронизировано + + + Catching up... + Синхронизируется... + + + Last received block was generated %1. + Последний полученный блок был сгенерирован %1. + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Данная транзакция превышает предельно допустимый размер. Но Вы можете всё равно совершить её, добавив комиссию в %1, которая отправится тем узлам, которые обработают Вашу транзакцию, и поможет поддержать сеть. Вы хотите добавить комиссию? + + + Confirm transaction fee + Подтвердите комиссию + + + Sent transaction + Исходящая транзакция + + + Incoming transaction + Входящая транзакция + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Дата: %1 +Количество: %2 +Тип: %3 +Адрес: %4 + + + + URI handling + Обработка URI + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + Не удалось обработать URI! Это может быть связано с неверным адресом BitBean или неправильными параметрами URI. + + + 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> + + + Backup Wallet + Сделать резервную копию бумажника + + + Wallet Data (*.dat) + Данные бумажника (*.dat) + + + Backup Failed + Резервное копирование не удалось + + + There was an error trying to save the wallet data to the new location. + При попытке сохранения данных бумажника в новое место произошла ошибка. + + + %n second(s) + + %n секунда + %n секунды + %n секунд + + + + %n minute(s) + + %n минута + %n минуты + %n минут + + + + %n hour(s) + + %n час + %n часа + %n часов + + + + %n day(s) + + %n день + %n дня + %n дней + + + + Not staking + Не участвуем в доле + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Произошла неисправимая ошибка. BitBean не может безопасно продолжать работу и будет закрыт. + + + + ClientModel + + + Network Alert + Сетевая Тревога + + + + CoinControlDialog + + Coin Control + Выбор входов + + + Quantity: + Количество: + + + Bytes: + Размер: + + + Amount: + Сумма: + + + Priority: + Приоритет: + + + Fee: + Комиссия: + + + Low Output: + Мелкие входы: + + + no + нет + + + After Fee: + С комиссией: + + + Change: + Сдача: + + + (un)select all + Выбрать все + + + Tree mode + Дерево + + + List mode + Список + + + Amount + Сумма + + + Label + Метка + + + Address + Адрес + + + Date + Дата + + + Confirmations + Подтверждения + + + Confirmed + Подтверждено + + + Priority + Приоритет + + + Copy address + Копировать адрес + + + Copy label + Копировать метку + + + Copy amount + Копировать сумму + + + Copy transaction ID + Скопировать ID транзакции + + + Copy quantity + Копировать количество + + + Copy fee + Копировать комиссию + + + Copy after fee + Копировать с комиссией + + + Copy bytes + Копировать объем + + + Copy priority + Копировать приоритет + + + Copy change + Копировать сдачу + + + highest + наивысший + + + high + высокий + + + medium-high + выше среднего + + + medium + средний + + + low-medium + ниже среднего + + + low + низкий + + + lowest + наименьший + + + yes + да + + + (no label) + (нет метки) + + + (change) + (сдача) + + + + EditAddressDialog + + + Edit Address + Изменить адрес + + + + &Label + &Метка + + + + The label associated with this address book entry + Метка, связанная с данной записью + + + + &Address + &Адрес + + + + The address associated with this address book entry. This can only be modified for sending addresses. + Адрес, связанный с данной записью. + + + + New receiving address + Новый адрес для получения + + + + New sending address + Новый адрес для отправки + + + + Edit receiving address + Изменение адреса для получения + + + + Edit sending address + Изменение адреса для отправки + + + + The entered address "%1" is already in the address book. + Введённый адрес «%1» уже находится в адресной книге. + + + + The entered address "%1" is not a valid BitBean address. + Введённый адрес "%1" не является правильным BitBean-адресом. + + + + Could not unlock wallet. + Не удается разблокировать бумажник. + + + + New key generation failed. + Генерация нового ключа не удалась. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + version + версия + + + + Usage: + Использование: + + + + command-line options + параметры командной строки + + + + UI options + Опции интерфейса + + + + Set language, for example "de_DE" (default: system locale) + Выберите язык, например "de_DE" (по умолчанию: как в системе) + + + + Start minimized + Запускать свёрнутым + + + + Show splash screen on startup (default: 1) + Показывать сплэш при запуске (по умолчанию: 1) + + + + OptionsDialog + + + Options + Опции + + + + &Main + &Главная + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. + Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработана быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. + + + + Pay transaction &fee + Заплатить ко&миссию + + + Reserved amount does not participate in staking and is therefore spendable at any time. + Зарезервированная сумма не участвует в доле, и поэтому может быть потрачена в любое время. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + Зарезервировать + + + + Automatically start BitBean after logging in to the system. + Автоматически запускать BitBean после входа в систему + + + + &Start BitBean on system login + &Запускать BitBean при входе в систему + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + Отключить базы данных блоков и адресов при выходе. Это означает, что их можно будет переместить в другой каталог данных, но завершение работы будет медленнее. Бумажник всегда отключается. + + + + &Detach databases at shutdown + &Отключать базы данных при выходе + + + + &Network + &Сеть + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + Автоматически открыть порт для BitBean-клиента на роутере. Работает только если Ваш роутер поддерживает UPnP, и данная функция включена. + + + + Map port using &UPnP + Пробросить порт через &UPnP + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + Подключаться к сети BitBean через прокси SOCKS (например, при подключении через Tor). + + + + &Connect through SOCKS proxy: + &Подключаться через SOCKS прокси: + + + + Proxy &IP: + &IP Прокси: + + + + IP address of the proxy (e.g. 127.0.0.1) + IP-адрес прокси (например 127.0.0.1) + + + + &Port: + По&рт: + + + + Port of the proxy (e.g. 9050) + Порт прокси-сервера (например, 9050) + + + + SOCKS &Version: + &Версия SOCKS: + + + + SOCKS version of the proxy (e.g. 5) + Версия SOCKS-прокси (например, 5) + + + + &Window + &Окно + + + + Show only a tray icon after minimizing the window. + Показывать только иконку в системном лотке после сворачивания окна. + + + + &Minimize to the tray instead of the taskbar + &Cворачивать в системный лоток вместо панели задач + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. + Сворачивать вместо закрытия. Если данная опция будет выбрана — приложение закроется только после выбора соответствующего пункта в меню. + + + + M&inimize on close + С&ворачивать при закрытии + + + + &Display + О&тображение + + + + User Interface &language: + &Язык интерфейса: + + + + The user interface language can be set here. This setting will take effect after restarting BitBean. + Здесь можно выбрать язык интерфейса. Настройки вступят в силу после перезапуска BitBean. + + + + &Unit to show amounts in: + &Отображать суммы в единицах: + + + + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Выберите единицу измерения монет при отображении и отправке. + + + + Whether to show BitBean addresses in the transaction list or not. + Показывать ли адреса BitBean в списке транзакций. + + + + &Display addresses in transaction list + &Показывать адреса в списке транзакций + + + Whether to show coin control features or not. + Выключает и включает отображение панели выбора входов. + + + Display coin &control features (experts only!) + Управление &входами (только для продвинутых пользователей!) + + + + &OK + О&К + + + + &Cancel + &Отмена + + + + &Apply + &Применить + + + + default + по умолчанию + + + + + Warning + Внимание + + + + + This setting will take effect after restarting BitBean. + Эта настройка вступит в силу после перезапуска BitBean + + + + The supplied proxy address is invalid. + Адрес прокси неверен. + + + + OverviewPage + + + Form + Форма + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + Отображаемая информация может быть устаревшей. Ваш бумажник автоматически синхронизируется с сетью BitBean после подключения, но этот процесс пока не завершён. + + + Stake: + Доля: + + + + Unconfirmed: + Не подтверждено: + + + Wallet + Бумажник + + + + Spendable: + Доступно: + + + + Your current spendable balance + Баланс, доступный в настоящее время + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + Незрелые: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + Баланс добытых монет, который ещё не созрел + + + + Total: + Итого: + + + Your current total balance + Ваш суммарный баланс + + + <b>Recent transactions</b> + <b>Последние транзакции</b> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Общая сумма всех транзакций, которые до сих пор не подтверждены, и до сих пор не учитываются в текущем балансе + + + Total of coins that was staked, and do not yet count toward the current balance + Общая сумма всех монет, используемых для Proof-of-Stake, и не учитывающихся на балансе + + + + + out of sync + не синхронизировано + + + + QRCodeDialog + + + QR Code Dialog + Диалог QR-кода + + + + Request Payment + Запросить платёж + + + + Amount: + Количество: + + + + Label: + Метка: + + + + Message: + Сообщение: + + + + &Save As... + &Сохранить как... + + + + Error encoding URI into QR Code. + Ошибка кодирования URI в QR-код + + + + The entered amount is invalid, please check. + Введено неверное количество, проверьте ещё раз. + + + + Resulting URI too long, try to reduce the text for label / message. + Получившийся URI слишком длинный, попробуйте сократить текст метки / сообщения. + + + + Save QR Code + Сохранить QR-код + + + + PNG Images (*.png) + PNG Изображения (*.png) + + + + RPCConsole + + + Client name + Имя клиента + + + + + + + + + + + + + N/A + Н/Д + + + + Client version + Версия клиента + + + + &Information + &Информация + + + + Using OpenSSL version + Используется версия OpenSSL + + + + Startup time + Время запуска + + + + Network + Сеть + + + + Number of connections + Число подключений + + + + On testnet + В тестовой сети + + + + Block chain + Цепь блоков + + + + Current number of blocks + Текущее число блоков + + + + Estimated total blocks + Расчётное число блоков + + + + Last block time + Время последнего блока + + + + &Open + &Открыть + + + + Command-line options + Параметры командной строки + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + Показать помощь по BitBean-Qt, чтобы получить список доступных параметров командной строки. + + + + &Show + &Показать + + + + &Console + Консоль + + + + Build date + Дата сборки + + + + BitBean - Debug window + BitBean - Окно отладки + + + + BitBean Core + Ядро BitBean + + + + Debug log file + Отладочный лог-файл + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + Открыть отладочный лог-файл BitBean из текущего каталога данных. Это может занять несколько секунд для больших лог-файлов. + + + + Clear console + Очистить консоль + + + + Welcome to the BitBean RPC console. + Добро пожаловать в RPC-консоль BitBean. + + + + 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> для просмотра доступных команд. + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + Входы... + + + + automatically selected + автоматический выбор + + + + Insufficient funds! + Недостаточно средств! + + + + Quantity: + Количество: + + + + + 0 + + + + + Bytes: + Размер: + + + + Amount: + + + + + + + + 0.00 BC + 123.456 BC {0.00 ?} + + + + Priority: + Приоритет: + + + + medium + средний + + + + Fee: + Комиссия: + + + + Low Output: + Мелкие входы: + + + + no + нет + + + + After Fee: + С комиссией: + + + + Change + + + + + custom change address + адрес для сдачи + + + + Send to multiple recipients at once + Отправить нескольким получателям одновременно + + + + Add &Recipient + &Добавить получателя + + + + Remove all transaction fields + Удалить все поля транзакции + + + + Clear &All + Очистить &всё + + + + Balance: + Баланс: + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + Подтвердить отправку + + + + S&end + &Отправить + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Copy quantity + Копировать количество + + + + Copy amount + + + + + Copy fee + Копировать комиссию + + + + Copy after fee + Копировать с комиссией + + + + Copy bytes + + + + + Copy priority + Копировать приоритет + + + + Copy low output + + + + + Copy change + Копировать сдачу + + + + <b>%1</b> to %2 (%3) + <b>%1</b> адресату %2 (%3) + + + + Confirm send beans + + + + + Are you sure you want to send %1? + Вы уверены, что хотите отправить %1? + + + + and + и + + + + 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. + Обнаружен дублирующийся адрес. Отправка на один и тот же адрес возможна только один раз за одну операцию отправки + + + + Error: Transaction creation failed. + Ошибка: не удалось создать транзакцию. + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + + + + + (no label) + + + + + WARNING: unknown change address + ПРЕДУПРЕЖДЕНИЕ: неизвестный адрес для сдачи + + + + SendBeansEntry + + + Form + Форма + + + + A&mount: + Ко&личество: + + + + Pay &To: + Полу&чатель: + + + + + Enter a label for this address to add it to your address book + Введите метку для данного адреса (для добавления в адресную книгу) + + + + &Label: + &Метка: + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Адрес получателя платежа (например 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + Выберите адрес из адресной книги + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Вставить адрес из буфера обмена + + + + Alt+P + Alt+P + + + + Remove this recipient + Удалить этого получателя + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Send Coins + Отправка + + + Coin Control Features + Выбор входов + + + Inputs... + Входы... + + + automatically selected + автоматический выбор + + + Insufficient funds! + Недостаточно средств! + + + Quantity: + Количество: + + + Amount: + Сумма: + + + Priority: + Приоритет: + + + medium + средний + + + Fee: + Комиссия: + + + no + нет + + + custom change address + адрес для сдачи + + + Send to multiple recipients at once + Отправить нескольким получателям одновременно + + + Add &Recipient + &Добавить получателя + + + Remove all transaction fields + Удалить все поля транзакции + + + Clear &All + Очистить &всё + + + Balance: + Баланс: + + + 123.456 BC + 123.456 BC + + + Confirm the send action + Подтвердить отправку + + + S&end + &Отправить + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Введите BitBean-адрес (например 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Copy quantity + Копировать количество + + + Copy amount + Копировать сумму + + + Copy fee + Копировать комиссию + + + Copy bytes + Копировать количество байтов + + + Copy priority + Копировать приоритет + + + Copy change + Копировать сдачу + + + <b>%1</b> to %2 (%3) + <b>%1</b> адресату %2 (%3) + + + Confirm send coins + Подтвердите отправку монет + + + Are you sure you want to send %1? + Вы уверены, что хотите отправить %1? + + + and + и + + + 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. + Обнаружен дублирующийся адрес. Отправка на один и тот же адрес возможна только один раз за одну операцию отправки + + + Error: Transaction creation failed. + Ошибка: не удалось создать транзакцию. + + + 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, а монеты были потрачены из другой копии, но не были отмечены как потраченные в этой. + + + (no label) + (нет метки) + + + WARNING: unknown change address + ПРЕДУПРЕЖДЕНИЕ: неизвестный адрес для сдачи + + + + SendCoinsEntry + + Form + Форма + + + A&mount: + Ко&личество: + + + Pay &To: + Полу&чатель: + + + Enter a label for this address to add it to your address book + Введите метку для данного адреса (для добавления в адресную книгу) + + + &Label: + &Метка: + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Адрес получателя платежа (например 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + Выберите адрес из адресной книги + + + Alt+A + Alt+A + + + Paste address from clipboard + Вставить адрес из буфера обмена + + + Alt+P + Alt+P + + + Remove this recipient + Удалить этого получателя + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Введите BitBean-адрес (например 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Адрес, которым вы хотите подписать сообщение (напр. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + Выберите адрес из адресной книги + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Вставить адрес из буфера обмена + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Введите сообщение для подписи + + + + Copy the current signature to the system clipboard + Скопировать текущую подпись в системный буфер обмена + + + + Sign the message to prove you own this BitBean address + Подписать сообщение, чтобы доказать владение адресом BitBean + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Адрес, которым было подписано сообщение (напр. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + Проверить сообщение, чтобы убедиться, что оно было подписано указанным адресом BitBean + + + + Reset all verify message fields + Сбросить все поля проверки сообщения + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Введите адрес BitBean (напр. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + Нажмите "Подписать сообщение" для создания подписи + + + + Enter BitBean signature + Введите подпись BitBean + + + + + 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. + Сообщение проверено. + + + + TransactionDesc + + + Open until %1 + Открыто до %1 + + + + Open for %n block(s) + + Открыто для %n блока + Открыто для %n блоков + Открыто для %n блоков + + + + + 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 транзакции + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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. + Сгенерированные монеты должны подождать 510 блоков, прежде чем они могут быть потрачены. Когда Вы сгенерировали этот блок, он был отправлен в сеть для добавления в цепочку блоков. Если данная процедура не удастся, статус изменится на «не подтверждено», и монеты будут недействительны. Это иногда происходит в случае, если другой узел сгенерирует блок на несколько секунд раньше вас. + + + + Debug information + Отладочная информация + + + + Transaction + Транзакция + + + + Inputs + Входы + + + + Amount + Количество + + + + true + истина + + + + false + ложь + + + + , has not been successfully broadcast yet + , ещё не было успешно разослано + + + + unknown + неизвестно + + + + TransactionDescDialog + + + Transaction details + Детали транзакции + + + + This pane shows a detailed description of the transaction + Данный диалог показывает детализированную статистику по выбранной транзакции + + + + TransactionTableModel + + + Date + Дата + + + + Type + Тип + + + + Address + Адрес + + + + Amount + Количество + + + + Open until %1 + Открыто до %1 + + + + Confirmed (%1 confirmations) + Подтверждено (%1 подтверждений) + + + + Open for %n more block(s) + + Открыто для ещё %n блока + Открыто для ещё %n блоков + Открыто для ещё %n блоков + + + + + Offline + Оффлайн + + + + Unconfirmed + Не подтверждено + + + + Confirming (%1 of %2 recommended confirmations) + Подтверждается (%1 из %2 рекомендованных подтверждений) + + + + Conflicted + Конфликт + + + + Immature (%1 confirmations, will be available after %2) + Незрелые (%1 подтверждений, будут доступны после %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Этот блок не был получен другими узлами и, возможно, не будет принят! + + + + Generated but not accepted + Сгенерировано, но не принято + + + + Received with + Получено + + + + Received from + Получено от + + + + Sent to + Отправлено + + + + Payment to yourself + Отправлено себе + + + + SPROUT + + + + 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. + Сумма, добавленная, или снятая с баланса. + + + + 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 Data + Экспортировать данные транзакций + + + + Comma separated file (*.csv) + Текст, разделённый запятыми (*.csv) + + + + Confirmed + Подтверждено + + + + Date + Дата + + + + Type + Тип + + + + Label + Метка + + + + Address + Адрес + + + + Amount + Количество + + + + ID + ID + + + + Error exporting + Ошибка экспорта + + + + Could not write to file %1. + Невозможно записать в файл %1. + + + + Range: + Промежуток от: + + + + to + до + + + + WalletModel + + + Sending... + Отправка.... + + + + bitbean-core + + + To use the %s option + Чтобы использовать опцию %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Ошибка + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + Произошла ошибка при открытии на прослушивание IPv6 RCP-порта %u, возвращаемся к IPv4: %s + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + Произошла ошибка при открытии RPC-порта %u для прослушивания на IPv4: %s + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Вы должны установить rpcpassword=<password> в конфигурационном файле: +%s +Если файл не существует, создайте его и установите права доступа только для владельца. + + + + BitBean version + Версия + + + + Usage: + Использование: + + + + Send command to -server or BitBeand + Отправить команду на -server или BitBeand + + + + List commands + Список команд + + + + + Get help for a command + Получить помощь по команде + + + + BitBean + BitBean + + + + Options: + Опции: + + + + This help message + Эта справка + + + + Specify configuration file (default: BitBean.conf) + Указать конфигурационный файл (по умолчанию: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + Указать pid-файл (по умолчанию: BitBeand.pid) + + + + Specify data directory + Укажите каталог данных + + + + Specify wallet file (within data directory) + Указать файл кошелька (в пределах DATA директории) + + + + Set database cache size in megabytes (default: 25) + Установить размер кэша базы данных в мегабайтах (по умолчанию: 25) + + + + Set database disk log size in megabytes (default: 100) + Установить размер лога базы данных в мегабайтах (по умолчанию: 100) + + + + Specify connection timeout in milliseconds (default: 5000) + Таймаут соединения в миллисекундах (по умолчанию: 5000) + + + + Connect through socks proxy + Подключаться через socks прокси + + + + Select the version of socks proxy to use (4-5, default: 5) + Выберите версию SOCKS-прокси (4-5, по умолчанию: 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + Использовать прокси для скрытых сервисов (по умолчанию: тот же, что и в -proxy) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Разрешить поиск в DNS для -addnode, -seednode и -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Принимать входящие подключения на <port> (по умолчанию: 15714 или 25714 в тестовой сети) + + + + Maintain at most <n> connections to peers (default: 125) + Поддерживать не более <n> подключений к узлам (по умолчанию: 125) + + + + Add a node to connect to and attempt to keep the connection open + Добавить узел для подключения и пытаться поддерживать соединение открытым + + + + Connect only to the specified node(s) + Подключаться только к указанному узлу(ам) + + + + Connect to a node to retrieve peer addresses, and disconnect + Подключиться к узлу, чтобы получить список адресов других участников и отключиться + + + + Specify your own public address + Укажите ваш собственный публичный адрес + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Подключаться только к узлам из сети <net> (IPv4, IPv6 или Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Определить свой IP (по умолчанию: 1 при прослушивании и если не используется -externalip) + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Принимать подключения извне (по умолчанию: 1, если не используется -proxy или -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + Привязаться (bind) к указанному адресу. Используйте запись вида [хост]:порт для IPv6 + + + + Find peers using DNS lookup (default: 1) + Искать узлы с помощью DNS (по умолчанию: 1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + Политика синхронизированных меток (по умолчанию: strict) + + + + Threshold for disconnecting misbehaving peers (default: 100) + Порог для отключения неправильно ведущих себя узлов (по умолчанию: 100) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Число секунд блокирования неправильно ведущих себя узлов (по умолчанию: 86400) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Использовать UPnP для проброса порта (по умолчанию: 1, если используется прослушивание) + + + + Use UPnP to map the listening port (default: 0) + Использовать UPnP для проброса порта (по умолчанию: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + Отключить базы данных блоков и адресов. Увеличивает время завершения работы (по умолчанию: 0) + + + + Fee per KB to add to transactions you send + Комиссия на килобайт, добавляемая к вашим транзакциям + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + Принимать командную строку и команды JSON-RPC + + + + Run in the background as a daemon and accept commands + Запускаться в фоне как демон и принимать команды + + + + Use the test network + Использовать тестовую сеть + + + + Output extra debugging information. Implies all other -debug* options + Выводить больше отладочной информации. Включает все остальные опции -debug* + + + + Output extra network debugging information + Выводить дополнительную сетевую отладочную информацию + + + + Prepend debug output with timestamp + Дописывать отметки времени к отладочному выводу + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Сжимать файл debug.log при запуске клиента (по умолчанию: 1, если нет -debug) + + + + Send trace/debug info to console instead of debug.log file + Выводить информацию трассировки/отладки на консоль вместо файла debug.log + + + + Send trace/debug info to debugger + Отправлять информацию трассировки/отладки в отладчик + + + + Username for JSON-RPC connections + Имя для подключений JSON-RPC + + + + Password for JSON-RPC connections + Пароль для подключений JSON-RPC + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Прослушивать подключения JSON-RPC на <порту> (по умолчанию: 15715 или для testnet: 25715) + + + + 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 в команде заменяется на хэш блока) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Выполнить команду, когда получена новая транзакция (%s в команде заменяется на ID транзакции) + + + + Require a confirmations for change (default: 0) + Требовать подтверждения для сдачи (по умолчанию: 0) + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + + + + + Upgrade wallet to latest format + Обновить бумажник до последнего формата + + + + Set key pool size to <n> (default: 100) + Установить размер запаса ключей в <n> (по умолчанию: 100) + + + + Rescan the block chain for missing wallet transactions + Перепроверить цепь блоков на предмет отсутствующих в бумажнике транзакций + + + + Attempt to recover private keys from a corrupt wallet.dat + Попытка восстановления ключей из поврежденного wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) + Сколько блоков проверять при запуске (по умолчанию: 2500, 0 = все) + + + + How thorough the block verification is (0-6, default: 1) + Насколько тщательно проверять блоки (0-6, по умолчанию: 1) + + + + Imports blocks from external blk000?.dat file + Импортировать блоки из внешнего файла blk000?.dat + + + + Block creation options: + Параметры создания блоков: + + + + Set minimum block size in bytes (default: 0) + Минимальный размер блока в байтах (по умолчанию: 0) + + + + Set maximum block size in bytes (default: 250000) + Максимальный размер блока в байтах (по умолчанию: 250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Максимальный размер высокоприоритетных/низкокомиссионных транзакций в байтах (по умолчанию: 27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Разрешённые алгоритмы (по умолчанию: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Invalid amount for -paytxfee=<amount>: '%s' + Неверное количество в параметре -paytxfee=<кол-во>: '%s' + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Внимание: установлено очень большое значение -paytxfee. Это комиссия, которую вы заплатите при проведении транзакции. + + + + Invalid amount for -mininput=<amount>: '%s' + + + + + Wallet %s resides outside data directory %s. + Кошелек %s находится вне рабочей директории %s. + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Невозможно установить блокировку на рабочую директорию %s. Возможно, бумажник уже запущен. + + + + Verifying database integrity... + Проверка целостности базы данных... + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Ошибка инициализации окружения БД %s! Для восстановления СДЕЛАЙТЕ РЕЗЕРВНУЮ КОПИЮ этой директории, затем удалите из нее все, кроме 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;, если ваши транзакции или баланс отображаются неправильно, следует восстановить его из данной копии. + + + + wallet.dat corrupt, salvage failed + wallet.dat поврежден, восстановление не удалось + + + + Unknown -socks proxy version requested: %i + В параметре -socks запрошена неизвестная версия: %i + + + + Unknown network specified in -onlynet: '%s' + В параметре -onlynet указана неизвестная сеть: '%s' + + + + Invalid -proxy address: '%s' + Неверный адрес -proxy: '%s' + + + + Invalid -tor address: '%s' + Неверный адрес -tor: '%s' + + + + Cannot resolve -bind address: '%s' + Не удаётся разрешить адрес в параметре -bind: '%s' + + + + Failed to listen on any port. Use -listen=0 if you want this. + Не удалось начать прослушивание на порту. Используйте -listen=0 если вас это устраивает. + + + + Cannot resolve -externalip address: '%s' + Не удаётся разрешить адрес в параметре -externalip: '%s' + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + Загрузка индекса блоков... + + + + Error loading blkindex.dat + Ошибка чтения blkindex.dat + + + + Loading wallet... + Загрузка бумажника... + + + + Error loading wallet.dat: Wallet corrupted + Ошибка загрузки wallet.dat: Бумажник поврежден + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Внимание: ошибка чтения wallet.dat! Все ключи восстановлены, но записи в адресной книге и истории транзакций могут быть некорректными. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Ошибка загрузки wallet.dat: бумажник требует более новую версию BitBean + + + + Wallet needed to be rewritten: restart BitBean to complete + Необходимо перезаписать бумажник, перезапустите BitBean для завершения операции + + + + Error loading wallet.dat + Ошибка при загрузке wallet.dat + + + + Cannot downgrade wallet + Не удаётся понизить версию бумажника + + + + Cannot initialize keypool + Не удаётся инициализировать массив ключей + + + + Cannot write default address + Не удаётся записать адрес по умолчанию + + + + Rescanning... + Сканирование... + + + + Importing blockchain data file. + Импортируется файл цепи блоков. + + + + Importing bootstrap blockchain data file. + Импортируется bootstrap-файл цепи блоков. + + + + Loading addresses... + Загрузка адресов... + + + + Error: could not start node + Ошибка: не удалось запустить узел + + + + Done loading + Загрузка завершена + + + + Unable to bind to %s on this computer. BitBean is probably already running. + Невозможно привязаться к %s на этом компьютере. Возможно, BitBean уже работает. + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + Невозможно привязаться к %s на этом компьютере (bind вернул ошибку %d, %s) + + + + Error: Wallet locked, unable to create transaction + Ошибка: бумажник заблокирован, невозможно создать транзакцию + + + + Error: Wallet unlocked for staking only, unable to create transaction. + + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Ошибка: эта транзакция требует комиссию в размере как минимум %s из-за её объёма, сложности или использования недавно полученных средств + + + + Error: Transaction creation failed + Ошибка: Создание транзакции не удалось + + + + Sending... + + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Неверное количество + + + + Insufficient funds + Недостаточно монет + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Внимание: убедитесь, что дата и время на Вашем компьютере выставлены верно. Если Ваши часы идут неправильно, BitBean будет работать некорректно. + + + + Warning: This version is obsolete, upgrade required! + Внимание: эта версия устарела, требуется обновление! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + + + + + Warning: Disk space is low! + Внимание: мало места на диске! + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + + bitcoin-core + + BitBean version + Версия + + + Usage: + Использование: + + + Send command to -server or BitBeand + Отправить команду на -server или BitBeand + + + List commands + Список команд + + + + Get help for a command + Получить помощь по команде + + + Options: + Опции: + + + Specify configuration file (default: BitBean.conf) + Указать конфигурационный файл (по умолчанию: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + Указать pid-файл (по умолчанию: BitBeand.pid) + + + Specify wallet file (within data directory) + Указать файл кошелька (в пределах DATA директории) + + + Specify data directory + Укажите каталог данных + + + Set database cache size in megabytes (default: 25) + Установить размер кэша базы данных в мегабайтах (по умолчанию: 25) + + + Set database disk log size in megabytes (default: 100) + Установить размер лога базы данных в мегабайтах (по умолчанию: 100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Принимать входящие подключения на <port> (по умолчанию: 15714 или 25714 в тестовой сети) + + + 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 + Укажите ваш собственный публичный адрес + + + Bind to given address. Use [host]:port notation for IPv6 + Привязаться (bind) к указанному адресу. Используйте запись вида [хост]:порт для IPv6 + + + 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 + + + Detach block and address databases. Increases shutdown time (default: 0) + Отключить базы данных блоков и адресов. Увеличивает время завершения работы (по умолчанию: 0) + + + 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 из-за её объёма, сложности или использования недавно полученных средств + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Прослушивать подключения JSON-RPC на <порту> (по умолчанию: 15715 или для testnet: 25715) + + + Accept command line and JSON-RPC commands + Принимать командную строку и команды JSON-RPC + + + Error: Transaction creation failed + Ошибка: Создание транзакции не удалось + + + Error: Wallet locked, unable to create transaction + Ошибка: бумажник заблокирован, невозможно создать транзакцию + + + Importing blockchain data file. + Импортируется файл цепи блоков. + + + Importing bootstrap blockchain data file. + Импортируется bootstrap-файл цепи блоков. + + + 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) + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + Произошла ошибка при открытии на прослушивание IPv6 RCP-порта %u, возвращаемся к IPv4: %s + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Ошибка инициализации окружения БД %s! Для восстановления СДЕЛАЙТЕ РЕЗЕРВНУЮ КОПИЮ этой директории, затем удалите из нее все, кроме wallet.dat. + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Максимальный размер высокоприоритетных/низкокомиссионных транзакций в байтах (по умолчанию: 27000) + + + 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 BitBean will not work properly. + Внимание: убедитесь, что дата и время на Вашем компьютере выставлены верно. Если Ваши часы идут неправильно, BitBean будет работать некорректно. + + + 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;, если ваши транзакции или баланс отображаются неправильно, следует восстановить его из данной копии. + + + Attempt to recover private keys from a corrupt wallet.dat + Попытка восстановления ключей из поврежденного wallet.dat + + + Block creation options: + Параметры создания блоков: + + + Connect only to the specified node(s) + Подключаться только к указанному узлу(ам) + + + Discover own IP address (default: 1 when listening and no -externalip) + Определить свой IP (по умолчанию: 1 при прослушивании и если не используется -externalip) + + + Failed to listen on any port. Use -listen=0 if you want this. + Не удалось начать прослушивание на порту. Используйте -listen=0 если вас это устраивает. + + + Find peers using DNS lookup (default: 1) + Искать узлы с помощью DNS (по умолчанию: 1) + + + Sync checkpoints policy (default: strict) + Политика синхронизированных меток (по умолчанию: strict) + + + Invalid -tor address: '%s' + Неверный адрес -tor: '%s' + + + 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) + Подключаться только к узлам из сети <net> (IPv4, IPv6 или Tor) + + + Output extra debugging information. Implies all other -debug* options + Выводить больше отладочной информации. Включает все остальные опции -debug* + + + Output extra network debugging information + Выводить дополнительную сетевую отладочную информацию + + + Prepend debug output with timestamp + Дописывать отметки времени к отладочному выводу + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + +Параметры SSL: (см. Bitcoin Wiki для инструкций по настройке SSL) + + + Select the version of socks proxy to use (4-5, default: 5) + Выберите версию SOCKS-прокси (4-5, по умолчанию: 5) + + + Send trace/debug info to console instead of debug.log file + Выводить информацию трассировки/отладки на консоль вместо файла debug.log + + + Send trace/debug info to debugger + Отправлять информацию трассировки/отладки в отладчик + + + Set maximum block size in bytes (default: 250000) + Максимальный размер блока в байтах (по умолчанию: 250000) + + + Set minimum block size in bytes (default: 0) + Минимальный размер блока в байтах (по умолчанию: 0) + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Сжимать файл debug.log при запуске клиента (по умолчанию: 1, если нет -debug) + + + Specify connection timeout in milliseconds (default: 5000) + Таймаут соединения в миллисекундах (по умолчанию: 5000) + + + Use UPnP to map the listening port (default: 0) + Использовать UPnP для проброса порта (по умолчанию: 0) + + + Use UPnP to map the listening port (default: 1 when listening) + Использовать UPnP для проброса порта (по умолчанию: 1, если используется прослушивание) + + + Use proxy to reach tor hidden services (default: same as -proxy) + Использовать прокси для скрытых сервисов (по умолчанию: тот же, что и в -proxy) + + + Username for JSON-RPC connections + Имя для подключений JSON-RPC + + + Verifying database integrity... + Проверка целостности базы данных... + + + Warning: Disk space is low! + Внимание: мало места на диске! + + + Warning: This version is obsolete, upgrade required! + Внимание: эта версия устарела, требуется обновление! + + + 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 в команде заменяется на хэш блока) + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Выполнить команду, когда получена новая транзакция (%s в команде заменяется на ID транзакции) + + + Require a confirmations for change (default: 0) + Требовать подтверждения для сдачи (по умолчанию: 0) + + + Upgrade wallet to latest format + Обновить бумажник до последнего формата + + + Set key pool size to <n> (default: 100) + Установить размер запаса ключей в <n> (по умолчанию: 100) + + + Rescan the block chain for missing wallet transactions + Перепроверить цепь блоков на предмет отсутствующих в бумажнике транзакций + + + How many blocks to check at startup (default: 2500, 0 = all) + Сколько блоков проверять при запуске (по умолчанию: 2500, 0 = все) + + + How thorough the block verification is (0-6, default: 1) + Насколько тщательно проверять блоки (0-6, по умолчанию: 1) + + + Imports blocks from external blk000?.dat file + Импортировать блоки из внешнего файла blk000?.dat + + + 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) + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Разрешённые алгоритмы (по умолчанию: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + This help message + Эта справка + + + Wallet %s resides outside data directory %s. + Кошелек %s находится вне рабочей директории %s. + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Невозможно установить блокировку на рабочую директорию %s. Возможно, бумажник уже запущен. + + + BitBean + BitBean + + + Unable to bind to %s on this computer (bind returned error %d, %s) + Невозможно привязаться к %s на этом компьютере (bind вернул ошибку %d, %s) + + + Connect through socks proxy + Подключаться через socks прокси + + + Allow DNS lookups for -addnode, -seednode and -connect + Разрешить поиск в DNS для -addnode, -seednode и -connect + + + Loading addresses... + Загрузка адресов... + + + Error loading blkindex.dat + Ошибка чтения blkindex.dat + + + Error loading wallet.dat: Wallet corrupted + Ошибка загрузки wallet.dat: Бумажник поврежден + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Ошибка загрузки wallet.dat: бумажник требует более новую версию BitBean + + + Wallet needed to be rewritten: restart BitBean to complete + Необходимо перезаписать бумажник, перезапустите BitBean для завершения операции + + + 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' + + + Error: could not start node + Ошибка: не удалось запустить узел + + + Sending... + Отправка... + + + 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. BitBean is probably already running. + Невозможно привязаться к %s на этом компьютере. Возможно, BitBean уже работает. + + + Fee per KB to add to transactions you send + Комиссия на килобайт, добавляемая к вашим транзакциям + + + Loading wallet... + Загрузка бумажника... + + + Cannot downgrade wallet + Не удаётся понизить версию бумажника + + + Cannot initialize keypool + Не удаётся инициализировать массив ключей + + + 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. + Вы должны установить rpcpassword=<password> в конфигурационном файле: +%s +Если файл не существует, создайте его и установите права доступа только для владельца. + + + diff --git a/src/qt/locale/bitcoin_sah.qm b/src/qt/locale/bitbean_sah.qm similarity index 100% rename from src/qt/locale/bitcoin_sah.qm rename to src/qt/locale/bitbean_sah.qm diff --git a/src/qt/locale/bitcoin_sah.ts b/src/qt/locale/bitbean_sah.ts similarity index 61% rename from src/qt/locale/bitcoin_sah.ts rename to src/qt/locale/bitbean_sah.ts index 4ea3e7a..70a22be 100644 --- a/src/qt/locale/bitcoin_sah.ts +++ b/src/qt/locale/bitbean_sah.ts @@ -1,135 +1,138 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + Double-click to edit address or label Аадырыскын уларытаргар иккитэ баттаа - + Create a new address - + - + Copy the currently selected address to the system clipboard - + - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete - + Copy &Label - + &Edit - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. - + @@ -137,1314 +140,1398 @@ This product includes software developed by the OpenSSL Project for use in the O Label - + Address - + (no label) - + AskPassphraseDialog - + Passphrase Dialog - + - + Enter passphrase - + - + New passphrase - + - + Repeat new passphrase - + - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + 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 COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + Wallet encrypted - - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins 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. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - + + Bean Control + - - &Overview - + + Quantity: + - - Show general overview of wallet - + + Bytes: + - - &Transactions - + + Amount: + - - Browse transaction history - + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - + + Tree mode + - - Quit application - + + List mode + - - Show information about BitBean - + + Amount + - - About &Qt - + + Label + - - Show information about Qt - + + Address + - - &Options... - + + Date + - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - + Confirmed + - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - + + DUST + - - &Settings - + + yes + - - &Help - + + no + - - Tabs toolbar - + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + - - - %n second(s) ago - + + + Show general overview of wallet + - - &Unlock Wallet... - + + &Send Beans + - - - %n minute(s) ago - - - - - %n hour(s) ago - - - - - %n day(s) ago - + + + Send Beans to a BitBean address + - - Up to date - + + &Receive Beans + - - Catching up... - + + Show the list of addresses for receiving payments + - - Last received block was generated %1. - + + &Transactions + - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + + Browse transaction history + - Confirm transaction fee - + &Address Book + - - Sent transaction - + + Edit the list of stored addresses and labels + - - Incoming transaction - + + E&xit + - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - + Quit application + - - - URI handling - + + &About BitBean + - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + + Show information about BitBean + - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + + About &Qt + - - Wallet is <b>encrypted</b> and currently <b>locked</b> - + + Show information about Qt + - - Backup Wallet - + + &Options... + - - Wallet Data (*.dat) - + + Modify configuration options for BitBean + - - Backup Failed - + + &Show / Hide + - - There was an error trying to save the wallet data to the new location. - - - - - %n second(s) - - - - - %n minute(s) - - - - - %n hour(s) - - - - - %n day(s) - + + &Encrypt Wallet... + - - Not staking - + + Encrypt or decrypt wallet + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + &Backup Wallet... + - - - ClientModel - - Network Alert - + + Backup wallet to another location + - - - CoinControlDialog - - Coin Control - + + &Change Passphrase... + - - Quantity: - + + Change the passphrase used for wallet encryption + - - Bytes: - + + &Unlock Wallet... + - - Amount: - + + Unlock wallet + - - Priority: - + + &Lock Wallet + - - Fee: - + + Lock wallet + - - Low Output: - + + Sign &message... + - - no - + + &Verify message... + - - After Fee: - + + &Export... + - - Change: - + + Export the data in the current tab to a file + - - (un)select all - + + &Debug window + - - Tree mode - + + Open debugging and diagnostic console + - - List mode - + + &File + - - Amount - + + &Settings + - - Label - + + &Help + - - Address - + + Tabs toolbar + - - Date - + + Actions toolbar + - - Confirmations - + + + [testnet] + - - Confirmed - + + + BitBean client + - - - Priority - + + + %n active connection(s) to BitBean network + + + - - Copy address - + + Synchronizing with network... + - - - Copy label - + + + ~%n block(s) remaining + + + - - - Copy amount - + + Downloaded %1 of %2 blocks of transaction history (%3% done). + - - Copy transaction ID - + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + %n minute(s) ago + + + + + + + %n hour(s) ago + + + + + + + %n day(s) ago + + + - - Copy quantity - + + Up to date + - - Copy fee - + + Catching up... + - - Copy after fee - + + Last received block was generated %1. + - - Copy bytes - + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + - - Copy priority - + + Confirm transaction fee + - - Copy low output - + + Sent transaction + - Copy change - + Incoming transaction + - - highest - + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + - - high - + + + URI handling + - - medium-high - + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + - - medium - + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + - - low-medium - + + Wallet is <b>encrypted</b> and currently <b>locked</b> + - - low - + + Backup Wallet + - - lowest - + + Wallet Data (*.dat) + - - DUST - + + Backup Failed + - yes - + There was an error trying to save the wallet data to the new location. + + + + + %n second(s) + + + + + + + %n minute(s) + + + + + + + %n hour(s) + + + + + + + %n day(s) + + + - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + + Not staking because wallet is locked + - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + + Not staking because wallet is offline + - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + + Not staking because wallet is syncing + - - - (no label) - + + Not staking because you don't have mature beans + - - change from %1 (%2) - + + Not staking + + + + ClientModel - - (change) - + + Network Alert + EditAddressDialog - + Edit Address - + &Label - + The label associated with this address book entry - + &Address - + The address associated with this address book entry. This can only be modified for sending addresses. - + New receiving address - + New sending address - + Edit receiving address - + Edit sending address - + The entered address "%1" is already in the address book. - + The entered address "%1" is not a valid BitBean address. - + Could not unlock wallet. - + New key generation failed. - + GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options - + - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - + &Cancel - + &Apply - + default - + + + + + + Warning + + + + + + This setting will take effect after restarting BitBean. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + + + + + Unconfirmed: + + + + + Spendable: + + + + + Your current spendable balance + + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + - - - Warning - + + Immature: + - - - This setting will take effect after restarting BitBean. - + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - The supplied proxy address is invalid. - + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - - OverviewPage - - Form - + + BitBean Network + - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Stalk Height: + - - Stake: - + + Sprouting Difficulty: + - - Unconfirmed: - + + Bean Weight: + - - Wallet - + + Connections: + - - Spendable: - + + Total Beans: + - - Your current spendable balance - + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + - - Immature: - + + + + + + 0 + - - Mined balance that has not yet matured - + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + - - Total: - + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + - - Your current total balance - + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + - - <b>Recent transactions</b> - + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + Total: + - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1458,188 +1545,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - + @@ -1647,386 +1734,386 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - + Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - + 123.456 BC - + Confirm the send action - + S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - + Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - + WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + - + A&mount: - + Pay &To: - + - + Enter a label for this address to add it to your address book - + &Label: - + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2034,59 +2121,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2094,81 +2181,85 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - + Open for %n block(s) - + + + conflicted - + %1/offline - + %1/unconfirmed - + %1 confirmations - + Status - + , broadcast through %n node(s) - + + + Date - + Source - + Generated - + From - + To - + own address - + label - + @@ -2177,17 +2268,19 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + not accepted - + @@ -2195,90 +2288,90 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + unknown - + TransactionDescDialog - + Transaction details - + This pane shows a detailed description of the transaction - + @@ -2286,127 +2379,129 @@ This label turns red, if the priority is smaller than "medium". Date - + Type - + Address - + Amount - + Open until %1 - + Confirmed (%1 confirmations) - + Open for %n more block(s) - + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + This block was not received by any other nodes and will probably not be accepted! - + Generated but not accepted - + Received with - + Received from - + Sent to - + Payment to yourself - + - Mined - + SPROUT + (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. - + @@ -2415,167 +2510,167 @@ This label turns red, if the priority is smaller than "medium". 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 Data - + Comma separated file (*.csv) - + Confirmed - + Date - + Type - + Label - + Address - + Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to - + @@ -2583,693 +2678,693 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core - - BitBean version - + + To use the %s option + - Usage: - + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - + + Error + - List commands - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - + + BitBean version + - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - + Usage: + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send command to -server or BitBeand + - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - + List commands + - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - - - - - Threshold for disconnecting misbehaving peers (default: 100) - + Get help for a command + - 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 - - - - - Detach block and address databases. Increases shutdown time (default: 0) - - - - - 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 - - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - - - - - Accept command line and JSON-RPC commands - + BitBean + - - Error: Transaction creation failed - + + Options: + - - Error: Wallet locked, unable to create transaction - + + This help message + - - Importing blockchain data file. - + + Specify configuration file (default: BitBean.conf) + - Importing bootstrap blockchain data file. - + Specify pid file (default: BitBeand.pid) + - - Run in the background as a daemon and accept commands - + + Specify data directory + - Use the test network - + Specify wallet file (within data directory) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Set database cache size in megabytes (default: 25) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Set database disk log size in megabytes (default: 100) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Specify connection timeout in milliseconds (default: 5000) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Connect through socks proxy + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Select the version of socks proxy to use (4-5, default: 5) + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Use proxy to reach tor hidden services (default: same as -proxy) + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Allow DNS lookups for -addnode, -seednode and -connect + - - 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. - + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Maintain at most <n> connections to peers (default: 125) + - - Block creation options: - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node(s) - - - - - Discover own IP address (default: 1 when listening and no -externalip) - - - - - Failed to listen on any port. Use -listen=0 if you want this. - - - - - Find peers using DNS lookup (default: 1) - + - - Sync checkpoints policy (default: strict) - + + Connect to a node to retrieve peer addresses, and disconnect + - - Invalid -tor address: '%s' - + + Specify your own public address + - - Invalid amount for -reservebalance=<amount> - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Discover own IP address (default: 1 when listening and no -externalip) + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Find peers using internet relay chat (default: 0) + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Output extra debugging information. Implies all other -debug* options - + + Bind to given address. Use [host]:port notation for IPv6 + - Output extra network debugging information - + Find peers using DNS lookup (default: 1) + - Prepend debug output with timestamp - + Stake your beans to support network and gain reward (default: 1) + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Select the version of socks proxy to use (4-5, default: 5) - + + Sync checkpoints policy (default: strict) + - - Send trace/debug info to console instead of debug.log file - + + Threshold for disconnecting misbehaving peers (default: 100) + - Send trace/debug info to debugger - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Set maximum block size in bytes (default: 250000) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Set minimum block size in bytes (default: 0) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Use UPnP to map the listening port (default: 1 when listening) + - - Specify connection timeout in milliseconds (default: 5000) - + + Use UPnP to map the listening port (default: 0) + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Use UPnP to map the listening port (default: 0) - + + Fee per KB to add to transactions you send + - - Use UPnP to map the listening port (default: 1 when listening) - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Accept command line and JSON-RPC commands + - - Username for JSON-RPC connections - + + Run in the background as a daemon and accept commands + - - Verifying database integrity... - + + Use the test network + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Output extra debugging information. Implies all other -debug* options + - Warning: Disk space is low! - + Output extra network debugging information + - - Warning: This version is obsolete, upgrade required! - + + Prepend debug output with timestamp + - - wallet.dat corrupt, salvage failed - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Password for JSON-RPC connections - + + Send trace/debug info to console instead of debug.log file + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Send trace/debug info to debugger + - - Find peers using internet relay chat (default: 0) - + + Username for JSON-RPC connections + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Password for JSON-RPC connections + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - + 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) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Require a confirmations for change (default: 0) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Upgrade wallet to latest format - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + - + + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) - + How thorough the block verification is (0-6, default: 1) - + Imports blocks from external blk000?.dat file - + - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Invalid amount for -paytxfee=<amount>: '%s' + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - This help message - + + Invalid amount for -mininput=<amount>: '%s' + - + Wallet %s resides outside data directory %s. - + Cannot obtain a lock on data directory %s. BitBean is probably already running. - + - - BitBean - + + Verifying database integrity... + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect through socks proxy - + + 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. + - - Allow DNS lookups for -addnode, -seednode and -connect - + + wallet.dat corrupt, salvage failed + - - Loading addresses... - + + Unknown -socks proxy version requested: %i + - + + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Cannot resolve -externalip address: '%s' + + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - + Wallet needed to be rewritten: restart BitBean to complete - + Error loading wallet.dat - + - - Invalid -proxy address: '%s' - + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - + + Cannot write default address + - - Cannot resolve -bind address: '%s' - + + Rescanning... + - - Cannot resolve -externalip address: '%s' - + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - + + Importing bootstrap blockchain data file. + - - Error: could not start node - + + Loading addresses... + - - Sending... - + + Error: could not start node + - - Invalid amount - + + Done loading + - Insufficient funds - + Unable to bind to %s on this computer. BitBean is probably already running. + - - Loading block index... - + + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Add a node to connect to and attempt to keep the connection open - + + Error: Wallet locked, unable to create transaction + - - Unable to bind to %s on this computer. BitBean is probably already running. - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Fee per KB to add to transactions you send - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: Transaction creation failed + - - Loading wallet... - + + Sending... + - - Cannot downgrade wallet - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Cannot initialize keypool - + + Invalid amount + - Cannot write default address - + Insufficient funds + - Rescanning... - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Done loading - + + Warning: This version is obsolete, upgrade required! + - - To use the %s option - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Error - + + Warning: Disk space is low! + - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_sk.qm b/src/qt/locale/bitbean_sk.qm new file mode 100644 index 0000000..5f8f905 Binary files /dev/null and b/src/qt/locale/bitbean_sk.qm differ diff --git a/src/qt/locale/bitbean_sk.ts b/src/qt/locale/bitbean_sk.ts new file mode 100644 index 0000000..36a9aa1 --- /dev/null +++ b/src/qt/locale/bitbean_sk.ts @@ -0,0 +1,4916 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + O BTestcoine + + + + <b>BitBean</b> version + verzia <b>BitBeanu</b> + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +Toto je experimentálny softvér. + +Distribuovaný pod softvérovou licenciou MIT/X11, viď priložený súbor COPYING alebo http://www.opensource.org/licenses/mit-license.php. + +Tento produkt obsahuje softvér vyvinutý projektom OpenSSL Project pre použitie v sade OpenSSL Toolkit (http://www.openssl.org/) a šifrovací softvér, ktorý napísal Eric Young (eay@cryptsoft.com) a UPnP softvér ktorý napísaný Thomas Bernard. + + + + AddressBookPage + + + Address Book + Adresár + + + + Double-click to edit address or label + Dvojklikom editovať adresu alebo popis + + + + Create a new address + Vytvoriť novú adresu + + + + Copy the currently selected address to the system clipboard + Kopírovať práve zvolenú adresu do systémovej schránky + + + + &New Address + &Nová adresa + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + Toto sú vaše BitBean adresy pre príjem platieb. Možno budete chcieť dať inú každému odosielateľovi, aby ste mohli sledovať, kto Vám platí. + + + + &Copy Address + &Kopírovať adresu + + + + Show &QR Code + Ukáž &QR kód + + + + Sign a message to prove you own a BitBean address + Podpísať správu ako dôkaz, že vlastníte túto BitBean adresu + + + + Sign &Message + Podpísať &správu + + + + Delete the currently selected address from the list + Vymazať aktuálne vybranú adresu zo zoznamu + + + + Verify a message to ensure it was signed with a specified BitBean address + Overte správu, aby ste zabezpečili, že bola podpísaná s určitou BitBean adresou + + + + &Verify Message + &Overte správu + + + + &Delete + &Zmazať + + + + Copy &Label + Kopírovať &Popis + + + + &Edit + &Upraviť + + + + Export Address Book Data + Exportovať dáta z adresára + + + + Comma separated file (*.csv) + Čiarkou oddelený súbor (*.csv) + + + + Error exporting + Chyba pri exporte + + + + Could not write to file %1. + Nie je možné zapísať do súboru %1. + + + + AddressTableModel + + + Label + Popis + + + + Address + Adresa + + + + (no label) + (bez popisu) + + + + AskPassphraseDialog + + + Passphrase Dialog + Dialóg hesla + + + + Enter passphrase + Zadajte heslo + + + + New passphrase + Nové heslo + + + + Repeat new passphrase + Zopakujte nové heslo + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Slúži na vypnutie trivial sendmoney keď je ohrozený OS účet. Neposkytuje žiadnu skutočnú istotu. + + + + For staking only + Len pre stávkovanie + + + + 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 a viac náhodných znakov</b>, alebo <b>8 a 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 odomknúť. + + + + 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 zašifrovanie peňaženky + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! + Upozornenie: Ak zašifrujete vašu peňaženku a stratíte prístupové heslo, potom <b>prídete o všetky svoje MINCE</b>! + + + + Are you sure you wish to encrypt your wallet? + Ste si istí, že si želáte zašifrovať peňaženku? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + DÔLEŽITÉ: Všetky predchádzajúce zálohy vašej peňaženky, ktoré ste vykonali by mali byť nahradené novo vytvorenou, zašifrovanou peňaženkou. Z bezpečnostných dôvodov bude predchádzajúca záloha nezašifrovanej peňaženky k ničomu, akonáhle začnete používať novú, zašifrovanú peňaženku. + + + + + Warning: The Caps Lock key is on! + Upozornenie: Máte zapnutý Caps Lock! + + + + + Wallet encrypted + Peňaženka zašifrovaná + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + BitBean sa teraz zavrie aby dokončil proces zašifrovania. Nezabudnite, že zašifrovanie vašej peňaženky nemôže plne chrániť vaše mince pred krádežou malwarom napadnutím vašeho počítača. + + + + + + + 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é. + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + Množstvo: + + + + Bytes: + + + + + Amount: + + + + + Priority: + Priorita: + + + + Fee: + Poplatok: + + + + Low Output: + Nízky výstup: + + + + After Fee: + + + + + Change: + Zmena: + + + + (un)select all + (ne)označiť všetko + + + + Tree mode + Stromový režim + + + + List mode + Zoznamový režim + + + + Amount + + + + + Label + + + + + 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 + + + + 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 + Kopírovať nízky výstup + + + + Copy change + Kopírovať zmenu + + + + highest + najvyššie + + + + high + vysoké + + + + medium-high + stredne vysoké + + + + medium + + + + + low-medium + stredne nízke + + + + low + nízke + + + + lowest + najnižšie + + + + DUST + PRACH + + + + yes + áno + + + + no + nie + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Tento popis sčervená, v prípade, že veľkosť transakcie je väčšia ako 10000 bajtov. + + To znamená, že je potrebný poplatok vo výške najmenej %1 za kb. + +Môže sa líšiť +/- 1 bajt za vstup. + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Transakcie s vyššou prioritou sa dostanú s väčšou pravdepodobnosťou do bloku. + +Tento popis sčervenie, ak je priorita menšia ako "stredná". + +To znamená, že je nutný poplatok vo výške aspoň %1 za kb. + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Tento popis sčervenie, ak príjemca dostane sumu menšiu ako %1. + +To znamená, že je potrebný poplatok aspoň %2. + +Sumy nižšie ako 0,546 násobok minimálneho poplatku sú zobrazené ako PRACH. + + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Tento popis sčervenie, ak je zmena menšia než %1. + +To znamená, že je potrebný poplatok aspoň %2. + + + + + (no label) + (bez popisu) + + + + change from %1 (%2) + zmena od %1 (%2) + + + + (change) + (zmena) + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Došlo k závažnej chybe. BitBean už nemôže pokračovať bezpečne a bude ukončený. + + + + BitBean + BitBean + + + + Vault + + + + + &Overview + &Prehľad + + + + Show general overview of wallet + Zobraziť celkový prehľad o peňaženke + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Zobraziť zoznam adries pre príjem platieb + + + + &Transactions + &Transakcie + + + + Browse transaction history + Prechádzať históriu transakcií + + + + &Address Book + &Adresár + + + + Edit the list of stored addresses and labels + Úprava zoznamu uložených adries a popisov + + + + E&xit + &Ukončiť + + + + Quit application + Ukončiť program + + + + &About BitBean + &O BitBean + + + + Show information about BitBean + Zobraziť informácie o BitBean + + + + About &Qt + O &Qt + + + + Show information about Qt + Zobrazit informácie o Qt + + + + &Options... + &Možnosti... + + + + Modify configuration options for BitBean + Upraviť možnosti konfigurácie pre BitBean + + + + &Show / Hide + Zobraziť / skryť + + + + &Encrypt Wallet... + &Zašifrovať peňaženku... + + + + Encrypt or decrypt wallet + Zašifrovať alebo dešifrovať peňaženku + + + + &Backup Wallet... + &Zálohovať peňaženku... + + + + Backup wallet to another location + Zálohovať peňaženku na iné miesto + + + + &Change Passphrase... + &Zmena hesla... + + + + Change the passphrase used for wallet encryption + Zmeniť heslo použité na šifrovanie peňaženky + + + + &Unlock Wallet... + &Odomknúť peňaženku... + + + + Unlock wallet + Odomknúť peňaženku + + + + &Lock Wallet + &Zamknúť peňaženku + + + + Lock wallet + Zamknúť peňaženku + + + + Sign &message... + Podpísať &správu... + + + + &Verify message... + Overiť správu + + + + &Export... + &Export... + + + + Export the data in the current tab to a file + Exportovať dáta v aktuálnej karte do súboru + + + + &Debug window + &Ladiace okno + + + + Open debugging and diagnostic console + Otvor konzolu pre ladenie a diagnostiku + + + + &File + &Súbor + + + + &Settings + &Nastavenia + + + + &Help + &Pomoc + + + + Tabs toolbar + Lišta záložiek + + + + Actions toolbar + Lišta činností + + + + + [testnet] + [testovacia sieť] + + + + + BitBean client + BitBean klient + + + + %n active connection(s) to BitBean network + + %n aktívne spojenie s BitBean sieťov + %n aktívnych spojení s BitBean sieťov + %n aktívnych spojení s BitBean sieťou + + + + + Synchronizing with network... + Synchronizácia so sieťou... + + + + ~%n block(s) remaining + + ~%n blok zostáva + ~%n blokov zostáva + Zostáva ~%n blokov + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Stiahnutých %1 z %2 blokov transakčnej histórie (%3% hotových). + + + + Downloaded %1 blocks of transaction history. + Stiahnutých %1 blokov z transakčnej histórie. + + + + %n second(s) ago + + pred %n sekundou + pred %n sekundami + pred %n sekundami + + + + + %n minute(s) ago + + pred %n minutou + pred %n minutami + pred %n minutami + + + + + %n hour(s) ago + + pred %n hodinou + pred %n hodinami + pred %n hodinami + + + + + %n day(s) ago + + pred %n dňom + pred %n dňami + pred %n dňami + + + + + Up to date + Aktualizovaný + + + + Catching up... + Sťahujem... + + + + Last received block was generated %1. + Posledný prijatý blok bol vytvorený %1. + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Táto transakcia je nad veľkostný limit. Stále ju môžete poslať za poplatok %1, ktorý ide uzlom spracujúcim vaše transakcie, čím pomáhate podporovať sieť. Chcete zaplatiť poplatok? + + + + Confirm transaction fee + Potvrďte transakčný poplatok + + + + Sent transaction + Odoslané transakcie + + + + Incoming transaction + Prijaté transakcie + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Dátum: %1 +Suma: %2 +Typ: %3 +Adresa: %4 + + + + + URI handling + URI manipulácia + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI nemožno analyzovať! Toto môže byť spôsobené neplatnou BitBean adresu alebo chybnými URI parametrami. + + + + 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> + + + + Backup Wallet + Zálohovanie peňaženky + + + + Wallet Data (*.dat) + Dáta peňaženky (*.dat) + + + + Backup Failed + Zálohovanie zlyhalo + + + + There was an error trying to save the wallet data to the new location. + Došlo k chybe pri pokuse o uloženie dát peňaženky do nového umiestnenia. + + + + %n second(s) + + %n sekunda + %n sekúnd + %n sekúnd + + + + + %n minute(s) + + %n minúta + %n minút + %n minút + + + + + %n hour(s) + + %n hodina + %n hodiny + %n hodín + + + + + %n day(s) + + %n deň + %n dni + %n dní + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Stávkovanie.<br>Vaša váha je %1<br>Váha siete je %2<br>Odhadovaný čas pre získanie odmeny je %3 + + + + Not staking because wallet is locked + Nestávkujem pretože peňaženka je zamknutá + + + + Not staking because wallet is offline + Nestávkujem pretože peňaženka je offline + + + + Not staking because wallet is syncing + Nestávkujem pretože peňaženka sa synchronizuje + + + + Not staking because you don't have mature beans + + + + + Not staking + Nestávkuje sa + + + + BitcoinGUI + + Sign &message... + Podpísať &správu... + + + Synchronizing with network... + Synchronizácia so sieťou... + + + &Overview + &Prehľad + + + Show general overview of wallet + Zobraziť celkový prehľad o peňaženke + + + &Transactions + &Transakcie + + + Browse transaction history + Prechádzať históriu transakcií + + + &Address Book + &Adresár + + + Edit the list of stored addresses and labels + Úprava zoznamu uložených adries a popisov + + + &Receive coins + &Prijať mince + + + Show the list of addresses for receiving payments + Zobraziť zoznam adries pre príjem platieb + + + &Send coins + &Poslať mince + + + E&xit + &Ukončiť + + + Quit application + Ukončiť program + + + Show information about BitBean + Zobraziť informácie o BitBean + + + 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... + &Zálohovať peňaženku... + + + &Change Passphrase... + &Zmena hesla... + + + ~%n block(s) remaining + + ~%n blok zostáva + ~%n blokov zostáva + Zostáva ~%n blokov + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Stiahnutých %1 z %2 blokov transakčnej histórie (%3% hotových). + + + &Export... + &Export... + + + Send coins to a BitBean address + Poslať mince na BitBean adresu + + + Modify configuration options for BitBean + Upraviť možnosti konfigurácie pre BitBean + + + Export the data in the current tab to a file + Exportovať dáta v aktuálnej karte do súboru + + + Encrypt or decrypt wallet + Zašifrovať alebo dešifrovať peňaženku + + + 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 + &Ladiace okno + + + Open debugging and diagnostic console + Otvor konzolu pre ladenie a diagnostiku + + + &Verify message... + Overiť správu + + + BitBean + BitBean + + + Wallet + Peňaženka + + + &About BitBean + &O BitBean + + + &Show / Hide + Zobraziť / skryť + + + Unlock wallet + Odomknúť peňaženku + + + &Lock Wallet + &Zamknúť peňaženku + + + Lock wallet + Zamknúť peňaženku + + + &File + &Súbor + + + &Settings + &Nastavenia + + + &Help + &Pomoc + + + Tabs toolbar + Lišta záložiek + + + Actions toolbar + Lišta činností + + + [testnet] + [testovacia sieť] + + + BitBean client + BitBean klient + + + %n active connection(s) to BitBean network + + %n aktívne spojenie s BitBean sieťov + %n aktívnych spojení s BitBean sieťov + %n aktívnych spojení s BitBean sieťou + + + + Downloaded %1 blocks of transaction history. + Stiahnutých %1 blokov z transakčnej histórie. + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Stávkovanie.<br>Vaša váha je %1<br>Váha siete je %2<br>Odhadovaný čas pre získanie odmeny je %3 + + + Not staking because wallet is locked + Nestávkujem pretože peňaženka je zamknutá + + + Not staking because wallet is offline + Nestávkujem pretože peňaženka je offline + + + Not staking because wallet is syncing + Nestávkujem pretože peňaženka sa synchronizuje + + + Not staking because you don't have mature coins + Nestávkujem pretože nemáte odležané mince + + + %n second(s) ago + + pred %n sekundou + pred %n sekundami + pred %n sekundami + + + + &Unlock Wallet... + &Odomknúť peňaženku... + + + %n minute(s) ago + + pred %n minutou + pred %n minutami + pred %n minutami + + + + %n hour(s) ago + + pred %n hodinou + pred %n hodinami + pred %n hodinami + + + + %n day(s) ago + + pred %n dňom + pred %n dňami + pred %n dňami + + + + Up to date + Aktualizovaný + + + Catching up... + Sťahujem... + + + Last received block was generated %1. + Posledný prijatý blok bol vytvorený %1. + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Táto transakcia je nad veľkostný limit. Stále ju môžete poslať za poplatok %1, ktorý ide uzlom spracujúcim vaše transakcie, čím pomáhate podporovať sieť. Chcete zaplatiť poplatok? + + + Confirm transaction fee + Potvrďte transakčný poplatok + + + Sent transaction + Odoslané transakcie + + + Incoming transaction + Prijaté transakcie + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Dátum: %1 +Suma: %2 +Typ: %3 +Adresa: %4 + + + URI handling + URI manipulácia + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI nemožno analyzovať! Toto môže byť spôsobené neplatnou BitBean adresu alebo chybnými URI parametrami. + + + 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> + + + Backup Wallet + Zálohovanie peňaženky + + + Wallet Data (*.dat) + Dáta peňaženky (*.dat) + + + Backup Failed + Zálohovanie zlyhalo + + + There was an error trying to save the wallet data to the new location. + Došlo k chybe pri pokuse o uloženie dát peňaženky do nového umiestnenia. + + + %n second(s) + + %n sekunda + %n sekúnd + %n sekúnd + + + + %n minute(s) + + %n minúta + %n minút + %n minút + + + + %n hour(s) + + %n hodina + %n hodiny + %n hodín + + + + %n day(s) + + %n deň + %n dni + %n dní + + + + Not staking + Nestávkuje sa + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Došlo k závažnej chybe. BitBean už nemôže pokračovať bezpečne a bude ukončený. + + + + ClientModel + + + Network Alert + Výstraha siete + + + + CoinControlDialog + + Coin Control + Kontrola mincí + + + Quantity: + Množstvo: + + + Bytes: + Bajty: + + + Amount: + Suma: + + + Priority: + Priorita: + + + Fee: + Poplatok: + + + Low Output: + Nízky výstup: + + + no + nie + + + After Fee: + Po poplatku: + + + Change: + Zmena: + + + (un)select all + (ne)označiť všetko + + + Tree mode + Stromový režim + + + List mode + Zoznamový režim + + + Amount + Suma + + + Label + Menovka + + + 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 + + + Copy quantity + Kopírovať množstvo + + + Copy fee + Kopírovať poplatok + + + Copy after fee + Kopírovať po poplatku + + + Copy bytes + Kopírovať bajty + + + Copy priority + Kopírovať prioritu + + + Copy low output + Kopírovať nízky výstup + + + Copy change + Kopírovať zmenu + + + highest + najvyššie + + + high + vysoké + + + medium-high + stredne vysoké + + + medium + stredné + + + low-medium + stredne nízke + + + low + nízke + + + lowest + najnižšie + + + DUST + PRACH + + + yes + áno + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Tento popis sčervená, v prípade, že veľkosť transakcie je väčšia ako 10000 bajtov. + + To znamená, že je potrebný poplatok vo výške najmenej %1 za kb. + +Môže sa líšiť +/- 1 bajt za vstup. + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Transakcie s vyššou prioritou sa dostanú s väčšou pravdepodobnosťou do bloku. + +Tento popis sčervenie, ak je priorita menšia ako "stredná". + +To znamená, že je nutný poplatok vo výške aspoň %1 za kb. + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Tento popis sčervenie, ak príjemca dostane sumu menšiu ako %1. + +To znamená, že je potrebný poplatok aspoň %2. + +Sumy nižšie ako 0,546 násobok minimálneho poplatku sú zobrazené ako PRACH. + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Tento popis sčervenie, ak je zmena menšia než %1. + +To znamená, že je potrebný poplatok aspoň %2. + + + (no label) + (bez popisu) + + + change from %1 (%2) + zmena od %1 (%2) + + + (change) + (zmena) + + + + EditAddressDialog + + + Edit Address + Upraviť adresu + + + + &Label + &Popis + + + + The label associated with this address book entry + Popis spojený s touto položkou v adresáry + + + + &Address + &Adresa + + + + The address associated with this address book entry. This can only be modified for sending addresses. + Adresa spojená s položkou v tomto adresári. Toto môže byť zmenené iba pre odosielané adresy. + + + + New receiving address + Nová adresa pre prijímanie + + + + New sending address + Nová adresa pre odoslanie + + + + Edit receiving address + Upraviť adresu pre prijímanie + + + + Edit sending address + Upraviť adresu pre odosielanie + + + + The entered address "%1" is already in the address book. + Zadaná adresa "%1" sa už nachádza v adresári. + + + + The entered address "%1" is not a valid BitBean address. + Zadaná adresa "%1" nie je platnou BitBean adresou. + + + + Could not unlock wallet. + Nepodarilo sa odomknúť peňaženku. + + + + New key generation failed. + Generovanie nového kľúča zlyhalo. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + version + verzia + + + + Usage: + Použitie: + + + + command-line options + možnosti príkazového riadka + + + + UI options + Možnosti používateľského rozhrania + + + + Set language, for example "de_DE" (default: system locale) + Nastavenie jazyka, napr "de_DE" (predvolené: miestne nastavenie systému) + + + + Start minimized + Spustiť minimalizované + + + + Show splash screen on startup (default: 1) + Zobraziť úvodnú obrazovku pri štarte (predvolené: 1) + + + + 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. Fee 5.00 recommended. + Voliteľný transakčný poplatok za kB, ktorý pomáha zaistiť, že vaše transakcie sú spracované rýchlo. Väčšina transakcií je 1 kB. Poplatok 0.01 je odporúčaný. + + + + Pay transaction &fee + Zaplatiť transakčné &poplatky + + + Reserved amount does not participate in staking and is therefore spendable at any time. + Rezervované množstvo sa nepodieľa na stávkovaní a preto je použiteľné kedykoľvek. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + Rezerva + + + + Automatically start BitBean after logging in to the system. + Automaticky spustiť BitBean po prihlásení sa do systému. + + + + &Start BitBean on system login + &Spustiť BitBean pri prihlásení do systému + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + Odpojiť blok a databázy z adresami pri vypnutí počítača. To znamená, že môžu byť presunuté do iného adresára dát, ale to spomaľuje vypnutie. Peňaženka je vždy odpojená. + + + + &Detach databases at shutdown + &Odpojiť databázy pri vypnutí + + + + &Network + Sieť + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + Automaticky otvoriť port klienta BitBean na routeri. To funguje iba vtedy, ak váš router podporuje UPnP a je povolené. + + + + Map port using &UPnP + Mapovať port pomocou &UPnP + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + Pripojenie k sieti BitBean cez SOCKS proxy server (napr. pri pripojení cez Tor). + + + + &Connect through SOCKS proxy: + &Pripojenie cez SOCKS proxy server: + + + + Proxy &IP: + Proxy &IP: + + + + IP address of the proxy (e.g. 127.0.0.1) + IP adresa proxy servera (napr. 127.0.0.1) + + + + &Port: + &Port: + + + + Port of the proxy (e.g. 9050) + Port proxy (napr. 9050) + + + + SOCKS &Version: + Verzia SOCKS: + + + + SOCKS version of the proxy (e.g. 5) + SOCKS verzia proxy (napr. 5) + + + + &Window + Okno + + + + Show only a tray icon after minimizing the window. + Zobraziť len ikonu na lište po minimalizovaní okna. + + + + &Minimize to the tray instead of the taskbar + Minimalizovať na lištu namiesto panelu úloh + + + + 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. + Minimalizovať namiesto ukončenia aplikácie keď sa zatvorí okno. Keď je zvolená táto možnosť, aplikácia sa zatvorí len po zvolení Ukončiť v menu. + + + + M&inimize on close + M&inimalizovať pri zatvorení + + + + &Display + &Displej + + + + User Interface &language: + Jazyk používateľského rozhrania: + + + + The user interface language can be set here. This setting will take effect after restarting BitBean. + Tu môžete nastaviť jazyk používateľského rozhrania. Toto nastavenie sa prejaví až po reštartovaní BitBean. + + + + &Unit to show amounts in: + &Zobrazovať hodnoty v jednotkách: + + + + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Vyberte si predvolené delenie jednotiek zobrazované v rozhraní a pri odosielaní mincí. + + + + Whether to show BitBean addresses in the transaction list or not. + Či chcete zobraziť BitBean adresy v zozname transakcií alebo nie. + + + + &Display addresses in transaction list + &Zobraziť adresy v zozname transakcií + + + Whether to show coin control features or not. + Či sa majú zobraziť coin control features alebo nie. + + + Display coin &control features (experts only!) + Zobraziť coin &control features (len pre odborníkov!) + + + + &OK + &OK + + + + &Cancel + Zrušiť + + + + &Apply + &Použiť + + + + default + predvolené + + + + + Warning + Upozornenie + + + + + This setting will take effect after restarting BitBean. + Toto nastavenie sa prejaví až po reštartovaní BitBean. + + + + The supplied proxy address is invalid. + Zadaná proxy adresa je neplatná. + + + + OverviewPage + + + Form + Forma + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + Zobrazené informácie môžu byť zastaralé. Vaša peňaženka sa automaticky synchronizuje so sieťou BitBean po nadviazaní spojenia, ale tento proces nie je ešte dokončený. + + + Stake: + V stávke: + + + + Unconfirmed: + Nepotvrdené: + + + Wallet + Peňaženka + + + + Spendable: + Použiteľné: + + + + Your current spendable balance + Váš aktuálny použiteľný zostatok + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + Nezrelé: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + 0 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + Vyťažený zostatok, ktorý nebol ešte dozretý + + + + Total: + Celkovo: + + + Your current total balance + Váš súčasný celkový zostatok + + + <b>Recent transactions</b> + <b>Nedávne transakcie</b> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Súčet transakcií, ktoré neboli ešte potvrdené, a ešte nezapočítané do aktuálneho zostatku + + + Total of coins that was staked, and do not yet count toward the current balance + Súčet mincí, ktoré sú v stávke a ešte neboli započítané do aktuálneho zostatku + + + + + out of sync + nezosynchronizované + + + + QRCodeDialog + + + QR Code Dialog + QR Code Dialóg + + + + Request Payment + Vyžiadať Platbu + + + + Amount: + Čiastka: + + + + Label: + Popis: + + + + Message: + Správa: + + + + &Save As... + &Uložiť ako... + + + + Error encoding URI into QR Code. + Chyba kódovania URI do QR Code. + + + + The entered amount is invalid, please check. + Zadaná suma je neplatná, prosím skontrolujte. + + + + Resulting URI too long, try to reduce the text for label / message. + Výsledná URI príliš dlhá, skúste skrátiť text popisu / správy. + + + + Save QR Code + Uložiť QR Code + + + + PNG Images (*.png) + PNG Obrázky (*.png) + + + + RPCConsole + + + Client name + Meno klienta + + + + + + + + + + + + + N/A + nie je k dispozícii + + + + Client version + Verzia klienta + + + + &Information + &Informácie + + + + Using OpenSSL version + Používa OpenSSL verziu + + + + Startup time + Čas spustenia + + + + Network + Sieť + + + + Number of connections + Počet pripojení + + + + On testnet + Na testovacej sieti + + + + 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ť + + + + Command-line options + Možnosti príkazového riadka + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + Zobraziť BitBean-Qt nápovedu k získaniu zoznamu pre možnosti príkazového riadku BitBean. + + + + &Show + &Zobraziť + + + + &Console + &Konzola + + + + Build date + Dátum zostavenia + + + + BitBean - Debug window + BitBean - Ladiace okno + + + + BitBean Core + Jadro BitBean + + + + Debug log file + Súbor denníka ladenia + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + Otvorte BTestcoin súbor denníku ladenia z aktuálneho adresára dát. To môže trvať niekoľko sekúnd pre veľké súbory denníka. + + + + Clear console + Vymazať konzolu + + + + Welcome to the BitBean RPC console. + Vitajte v konzole BTestcoin RPC. + + + + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + Použite šípky hore a dole pre navigáciu históriou, a <b> Ctrl-L </ b> pre vymazanie obrazovky. + + + + Type <b>help</b> for an overview of available commands. + Zadajte <b>help</b> pre prehľad dostupných príkazov. + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + Vstupy... + + + + automatically selected + automaticky vybrané + + + + Insufficient funds! + Nedostatok prostriedkov! + + + + Quantity: + Množstvo: + + + + + 0 + 0 + + + + Bytes: + + + + + Amount: + + + + + + + + 0.00 BC + 123.456 BC {0.00 ?} + + + + Priority: + Priorita: + + + + medium + + + + + Fee: + Poplatok: + + + + Low Output: + Nízky výstup: + + + + no + nie + + + + After Fee: + + + + + Change + Zmeniť + + + + custom change address + vlastná zmena adresy + + + + Send to multiple recipients at once + Poslať viacerým príjemcom naraz + + + + Add &Recipient + &Pridať príjemcu + + + + Remove all transaction fields + Odstráňte všetky transakčné polia + + + + Clear &All + Zmazať &všetko + + + + Balance: + Zostatok: + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + Potvrďte odoslanie + + + + S&end + &Odoslať + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Zadajte BitBean adresu (napr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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 + Kopírovať nízky výstup + + + + Copy change + Kopírovať zmenu + + + + <b>%1</b> to %2 (%3) + <b>%1</b> do %2 (%3) + + + + Confirm send beans + + + + + Are you sure you want to send %1? + Ste si istý, že chcete poslať %1? + + + + and + a + + + + The recipient address is not valid, please recheck. + Adresa príjemcu je neplatná, overte ju prosím. + + + + 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. + Celková suma prevyšuje Váš zostatok ak sú započítané aj transakčné poplatky %1. + + + + Duplicate address found, can only send to each address once per send operation. + Objavený duplikát adresy, na každú adresu je možné poslať len raz v jednej odchádzajúcej transakcii. + + + + Error: Transaction creation failed. + Chyba: Vytvorenie transakcie zlyhalo. + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + UPOZORNENIE: Neplatná BitBean adresa + + + + (no label) + (bez popisu) + + + + WARNING: unknown change address + UPOZORNENIE: Neznáma zmena adresy + + + + SendBeansEntry + + + Form + + + + + A&mount: + Su&ma: + + + + Pay &To: + Zapla&tiť: + + + + + 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: + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adresa pre poslanie platby (napr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + Vybrať adresu z adresára + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Vložiť adresu zo schránky + + + + Alt+P + Alt+P + + + + Remove this recipient + Odstrániť tohto príjemcu + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Zadajte BitBean adresu (napr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + SendCoinsDialog + + Send Coins + Poslať mince + + + Coin Control Features + Coin Control Features + + + Inputs... + Vstupy... + + + automatically selected + automaticky vybrané + + + Insufficient funds! + Nedostatok prostriedkov! + + + Quantity: + Množstvo: + + + 0 + 0 + + + Bytes: + Bajtov: + + + Amount: + Suma: + + + 0.00 BC + 123.456 BC {0.00 ?} + + + Priority: + Priorita: + + + medium + stredne + + + Fee: + Poplatok: + + + Low Output: + Nízky výstup: + + + no + nie + + + After Fee: + Po poplatkoch: + + + Change + Zmeniť + + + custom change address + vlastná zmena adresy + + + Send to multiple recipients at once + Poslať viacerým príjemcom naraz + + + Add &Recipient + &Pridať príjemcu + + + Remove all transaction fields + Odstráňte všetky transakčné polia + + + Clear &All + Zmazať &všetko + + + Balance: + Zostatok: + + + 123.456 BC + 123.456 BC + + + Confirm the send action + Potvrďte odoslanie + + + S&end + &Odoslať + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Zadajte BitBean adresu (napr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Copy quantity + Kopírovať množstvo + + + Copy amount + Kopírovať sumu + + + Copy fee + Kopírovať poplatok + + + Copy after fee + Kopírovať po poplatkoch + + + Copy bytes + Kopírovať bajty + + + Copy priority + Kopírovať prioritu + + + Copy low output + Kopírovať nízky výstup + + + Copy change + Kopírovať zmenu + + + <b>%1</b> to %2 (%3) + <b>%1</b> do %2 (%3) + + + Confirm send coins + Potvrdiť odoslanie mincí + + + Are you sure you want to send %1? + Ste si istý, že chcete poslať %1? + + + and + a + + + The recipient address is not valid, please recheck. + Adresa príjemcu je neplatná, overte ju prosím. + + + 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. + Celková suma prevyšuje Váš zostatok ak sú započítané aj transakčné poplatky %1. + + + Duplicate address found, can only send to each address once per send operation. + Objavený duplikát adresy, na každú adresu je možné poslať len raz v jednej odchádzajúcej transakcii. + + + Error: Transaction creation failed. + Chyba: Vytvorenie transakcie zlyhalo. + + + 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: Transakcia bola zamietnutá. To môže nastať, ak niektoré z mincí vo vašej peňaženke sa už použili, ako napríklad, ak ste použili kópiu wallet.dat a mince boli použité v kópii, ale neboli označené tu ako použité. + + + WARNING: Invalid BitBean address + UPOZORNENIE: Neplatná BitBean adresa + + + (no label) + (bez popisu) + + + WARNING: unknown change address + UPOZORNENIE: Neznáma zmena adresy + + + + SendCoinsEntry + + Form + Formulár + + + A&mount: + Su&ma: + + + Pay &To: + Zapla&tiť: + + + 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: + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adresa pre poslanie platby (napr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + Vybrať adresu z adresára + + + Alt+A + Alt+A + + + Paste address from clipboard + Vložiť adresu zo schránky + + + Alt+P + Alt+P + + + Remove this recipient + Odstrániť tohto príjemcu + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Zadajte BitBean adresu (napr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Podpisy - Prihlásiť sa / Overiť správu + + + + + &Sign Message + &Podpísať správu + + + + You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + Môžete podpísať správy svojimi adresami a dokázať tak, že ich 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. Podpisujete iba plne detailné vyhlásenia s ktorými súhlasíte. + + + + The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adresa na podpísanie správy (napr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + Vyberte adresu z adresára + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Vložiť adresu zo schránky + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Sem vložte správu ktorú chcete podpísať + + + + Copy the current signature to the system clipboard + Skopírujte aktuálny podpis do schránky + + + + Sign the message to prove you own this BitBean address + Podpísať správu ako dôkaz, že vlastníte túto BitBean adresu + + + + Reset all sign message fields + Obnoviť všetky polia podpísania správy + + + + + Clear &All + Zmazať &všetko + + + + + &Verify Message + Overiť správu... + + + + Enter the signing address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. + Zadajte podpisovú adresu správy (uistite sa že presne kopírujete konce riadkov, medzier, tabulátorov, atď.) a podpis nižšie pre overenie správy. Dávajte pozor, aby ste nedali viac do podpisu, než to, čo je v podpísanej správe samotnej, aby ste sa vyhli oklamaniu útokom typu man-in-the-middle. + + + + The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adresa správy bola podpísaná (napr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + Overte správu, aby ste sa ubezpečili, že bola podpísaná s danou BitBean adresou + + + + Reset all verify message fields + Obnoviť všetky polia pre overenie správy + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Zadajte BitBean adresu (napr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + Kliknite "Podpísať správu" pre získanie podpisu + + + + Enter BitBean signature + Zadajte BitBean podpis + + + + + 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. + Zadaná adresa sa nevzťahuje na kľúč. + + + + Wallet unlock was cancelled. + Odomknutie peňaženky bolo zrušené. + + + + Private key for the entered address is not available. + Súkromný kľúč k zadanej adrese nie je k dispozícii. + + + + Message signing failed. + Podpísanie správy zlyhalo. + + + + Message signed. + Správa podpísaná. + + + + The signature could not be decoded. + Podpis nie je možné dekódovať. + + + + + Please check the signature and try again. + Prosím skontrolujte podpis a skúste znova. + + + + The signature did not match the message digest. + Podpis nezodpovedá súhrnu správy. + + + + Message verification failed. + Overenie správy zlyhalo. + + + + Message verified. + Správa overená. + + + + TransactionDesc + + + Open until %1 + Otvorené do %1 + + + + Open for %n block(s) + + Otvoriť pre %n blok + Otvoriť pre %n blokov + Otvoriť pre %n blokov + + + + + conflicted + v rozpore + + + + %1/offline + %1/offline + + + + %1/unconfirmed + %1/nepotvrdené + + + + %1 confirmations + %1 potvrdení + + + + Status + Stav + + + + , broadcast through %n node(s) + + , vysielanie cez %n uzol + , vysielanie cez %n uzlov + , vysielanie cez %n uzlov + + + + + 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) + + dozreje o ďalší %n blok + dozreje o ďalších %n blokov + dozreje o ďalších %n blokov + + + + + not accepted + neprijaté + + + + + + + Debit + Debet + + + + Transaction fee + Transakčný poplatok + + + + Net amount + Čiastka netto + + + + Message + Správa + + + + Comment + Komentár + + + + Transaction ID + ID transakcie + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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. + Generované mince musia zrieť 510 blokov pred tým, než môžu byť použité. Keď sa vygeneroval tento blok, bol vysielaný do siete, kde má byť pridaný do reťazca blokov. Ak sa nepodarí dostať ho do reťazca blokov, jeho stav sa zmení na "Neprijatý", a nebude použiteľný. Toto sa môže občas stať, ak iný uzol generuje blok v priebehu niekoľkých sekúnd pred Vami. + + + + 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á + + + + unknown + neznámy + + + + TransactionDescDialog + + + Transaction details + Detaily transakcie + + + + This pane shows a detailed description of the transaction + Táto časť obrazovky zobrazuje detailný popis transakcie + + + + TransactionTableModel + + + Date + Dátum + + + + Type + Typ + + + + Address + Adresa + + + + Amount + Hodnota + + + + Open until %1 + Otvorené do %1 + + + + Confirmed (%1 confirmations) + Potvrdené (%1 potvrdení) + + + + Open for %n more block(s) + + Otvoriť pre %n ďalší blok + Otvoriť pre %n ďalšie bloky + Otvoriť pre %n ďalšie bloky + + + + + Offline + Offline + + + + Unconfirmed + Nepotvrdené + + + + Confirming (%1 of %2 recommended confirmations) + Potvrdzujem (%1 z %2 doporučených potvrdení) + + + + Conflicted + V rozpore + + + + Immature (%1 confirmations, will be available after %2) + Nezrelé (%1 potvrdení, bude k dispozícii po %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Ten blok nebol prijatý žiadnym iným uzlom a pravdepodobne nebude akceptovaný! + + + + Generated but not accepted + Vypočítané ale neakceptované + + + + Received with + Prijaté s + + + + Received from + Prijaté od: + + + + Sent to + Odoslané na + + + + Payment to yourself + Platba sebe samému + + + + SPROUT + + + + Mined + Vyťažené + + + + (n/a) + (n/a) + + + + Transaction status. Hover over this field to show number of confirmations. + Status transakcie. Presuňte myš nad toto pole a zobrazí sa počet potvrdení. + + + + Date and time that the transaction was received. + Dátum a čas prijatia transakcie. + + + + Type of transaction. + Typ transakcie. + + + + Destination address of transaction. + Cieľová adresa transakcie. + + + + Amount removed from or added to balance. + Suma pridaná alebo odobraná k zostatku. + + + + TransactionView + + + + All + Všetko + + + + Today + Dnes + + + + This week + Tento týždeň + + + + This month + Tento mesiac + + + + Last month + Minulý mesiac + + + + This year + Tento rok + + + + Range... + Rozsah... + + + + Received with + Prijaté s + + + + Sent to + Odoslané na + + + + To yourself + Samému sebe + + + + Mined + Vyťažené + + + + 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 Data + Export transakčných údajov + + + + Comma separated file (*.csv) + Čiarkou oddelovaný súbor (*.csv) + + + + Confirmed + Potvrdené + + + + Date + Dátum + + + + Type + Typ + + + + Label + Popis + + + + Address + Adresa + + + + Amount + Suma + + + + ID + ID + + + + Error exporting + Chyba pri exporte + + + + Could not write to file %1. + Nemožno zapisovať do súboru %1. + + + + Range: + Rozsah: + + + + to + do + + + + WalletModel + + + Sending... + Posielam... + + + + bitbean-core + + + To use the %s option + Použiť %s možnosť. + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, musíte nastaviť rpcpassword v konfiguračnom súbore: + %s +Je odporúčané použiť nasledujúce náhodné heslo: +rpcuser=BitBeanrpc +rpcpassword=%s +(Nemusíte si pamätať toto heslo) +Užívateľské meno a heslo nesmú byť rovnaké. +Ak súbor neexistuje, vytvorte ho s oprávneniami súborov vlastníkov iba na čítatanie. +Odporúča sa tiež nastaviť alertnotify, takže budete upozornení na problémy; +napríklad: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + Error + Chyba + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + Pri nastavovaní portu RPC %u pre počúvanie na IPv6, spadne späť do IPv4 došlo k chybe: %s + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + Pri nastavovaní portu RPC %u pre počúvanie na IPv4 došlo k chybe: %s + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Musíš nastaviť rpcpassword=<heslo> v konfiguračnom súbore: +%s +Ak súbor neexistuje, vytvorte ho s oprávnením pre čítanie len vlastníkom (owner-readable-only) + + + + BitBean version + BitBean verzia + + + + Usage: + Použitie: + + + + Send command to -server or BitBeand + Pošli príkaz na -server alebo BitBeand + + + + List commands + Zoznam príkazov + + + + Get help for a command + Získať pomoc pre príkaz + + + + BitBean + BitBean + + + + Options: + Možnosti: + + + + This help message + Táto pomocná správa + + + + Specify configuration file (default: BitBean.conf) + Zadajte konfiguračný súbor (predvolené: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + Zadajte pid súbor (predvolené: BitBeand.pid) + + + + Specify data directory + Zadajte priečinok s dátami + + + + Specify wallet file (within data directory) + Zadajte súbor peňaženky (v rámci dátového adresára) + + + + Set database cache size in megabytes (default: 25) + Nastaviť veľkosť vyrovnávajúcej pamäte pre databázu v megabytoch (predvolené: 25) + + + + Set database disk log size in megabytes (default: 100) + Nastaviť veľkosť databázového denníka na disku v MB (predvolené: 100) + + + + Specify connection timeout in milliseconds (default: 5000) + Určiť aut spojenia v milisekundách (predvolené: 5000) + + + + Connect through socks proxy + Pripojenie cez SOCKS proxy + + + + Select the version of socks proxy to use (4-5, default: 5) + Vyberte verziu SOCKS proxy pre používanie (4-5, predvolené: 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + Použiť proxy server k získaniu Tor skrytých služieb (predvolené: rovnaká ako -proxy) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Povoliť vyhľadávanie DNS pre pridanie nódy a spojenie + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Počúvať pripojenia na <port> (predvolené: 15714 alebo testovacia sieť: 25714) + + + + Maintain at most <n> connections to peers (default: 125) + Udržiavať maximálne <n> spojení (predvolené: 125) + + + + 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 + + + + Connect only to the specified node(s) + Pripojiť sa len k určenému uzlu(om) + + + + Connect to a node to retrieve peer addresses, and disconnect + Pre načítanie peer adresy sa pripojte k uzlu, a odpojte + + + + Specify your own public address + Určite vašu vlastnú verejnú adresu + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Pripojiť len k uzlom siete <net> (IPv4, IPv6 alebo Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Objavte vlastnú IP adresa (predvolené: 1 pri počúvaní a nie -externalip) + + + + Find peers using internet relay chat (default: 0) + Nájsť peerov pomocou Internet Relay Chat (predvolené: 1) {0)?} + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Prijímať pripojenie z vonka (predvolené: 1, ak nie -proxy alebo -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + Spojiť do danej adresy. Použite [host]:port zápis pre IPv6 + + + + Find peers using DNS lookup (default: 1) + Nájsť peerov pomocou vyhľadávania DNS (predvolené: 1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Synchronizácia času s ostatnými uzlami. Zakázať ak čas na vašom systéme je presný, napr synchronizáciu s NTP (predvolené: 1) + + + + Sync checkpoints policy (default: strict) + Sync checkpoints policy (predvolené: strict) + + + + 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) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Maximum pre-pripojenie prijímacej vyrovnávacej pamäti, <n>*1000 bajtov (predvolené: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Maximum pre-pripojenie posielacej vyrovnávacej pamäti, <n>*1000 bajtov (predvolené: 1000) + + + + 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) + + + + Use UPnP to map the listening port (default: 0) + Skúsiť použiť UPnP pre mapovanie počúvajúceho portu (default: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + Odpojiť blok a databázy adries. Zvyšuje vypínací čas (predvolené: 0) + + + + Fee per KB to add to transactions you send + Poplatok za KB pridať do transakcií, ktoré odosielate + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Pri vytváraní transakcií, ignorovať vstupy s hodnotou nižšou než táto (predvolené: 0.01) + + + + Accept command line and JSON-RPC commands + Prijímať príkazy z príkazového riadku a JSON-RPC + + + + 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ť + + + + Output extra debugging information. Implies all other -debug* options + Výstupné ďalšie informácie o ladení. Znamená všetky -debug* možnosti + + + + Output extra network debugging information + Výstupné ďalšie sieťové informácie o ladení + + + + Prepend debug output with timestamp + Pred debug výstup s časovou pečiatkou + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Stlačiť debug.log súbor na spustenie klienta (predvolené: 1, keď nie -debug) + + + + Send trace/debug info to console instead of debug.log file + Odoslať trace/debug informácie na konzolu namiesto debug.info žurnálu + + + + Send trace/debug info to debugger + Poslať stopy/ladiace informácie do debuggera + + + + Username for JSON-RPC connections + Užívateľské meno pre JSON-RPC spojenia + + + + Password for JSON-RPC connections + Heslo pre JSON-rPC spojenia + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Počúvajte pre JSON-RPC spojenie na <port> (predvolené: 15715 alebo testovaciasieť: 25715) + + + + 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) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Spustiť príkaz ak sa zmení transakcia v peňaženke (%s v cmd sa nahrádza TxID) + + + + Require a confirmations for change (default: 0) + Požadovať potvrdenie pre zmenu (predvolené: 0) + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Presadzovať transakčné skripty k používaniu kanonických PUSH operátorov (predvolené: 1) + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Spustiť príkaz, keď je prijaté príslušné upozornenie (%s v cmd je nahradený správou) + + + + 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 + + + + Attempt to recover private keys from a corrupt wallet.dat + Pokus obnoviť súkromné kľúče z poškodeného wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) + Koľko blokov na kontrolu pri štarte (predvolené: 2500, 0 = všetky) + + + + How thorough the block verification is (0-6, default: 1) + Ako dôkladné overenie bloku je (0-6, predvolené: 1) + + + + Imports blocks from external blk000?.dat file + Importovať bloky z externého blk000?.dat súbora + + + + Block creation options: + Voľby vytvorenia bloku: + + + + Set minimum block size in bytes (default: 0) + Nastavte minimálnu veľkosť bloku v bajtoch (predvolené: 0) + + + + Set maximum block size in bytes (default: 250000) + Nastavte maximálnu veľkosť bloku v bajtoch (predvolené: 250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Nastavte maximálnu veľkosť high-priority/low-fee transakcií v bajtoch (predvolené: 27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Akceptovateľné ciphers (predvolené: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Invalid amount for -paytxfee=<amount>: '%s' + Neplatná suma pre -paytxfee=<amount>: '%s' + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Upozornenie: -paytxfee je nastavené veľmi vysoko. Toto sú transakčné poplatky ktoré zaplatíte ak odošlete transakciu. + + + + Invalid amount for -mininput=<amount>: '%s' + Neplatná suma pre -mininput=<amount>: '%s' + + + + Wallet %s resides outside data directory %s. + Peňaženka %s bydlisko mimo dátový adresár %s. + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Nemožno získať zámok na dátový adresár %s. BitBean už pravdepodobne beží. + + + + Verifying database integrity... + Overenie integrity databázy ... + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Chyba pri inicializácii databázy prostredie %s! Ak chcete obnoviť, ZÁLOHUJTE TENTO ADRESÁR, potom všetko z neho odstránte okrem 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. + Upozornenie: wallet.dat poškodený, údaje zachránené! Pôvodný wallet.dat bol uložený ako wallet.{timestamp}.bak v %s; ak váš zostatok alebo transakcie nie sú správne, mali by ste obnoviť zo zálohy. + + + + wallet.dat corrupt, salvage failed + wallet.dat je poškodený, záchrana zlyhala + + + + Unknown -socks proxy version requested: %i + Neznáma požadovaná SOCKS proxy verzia:% i + + + + Unknown network specified in -onlynet: '%s' + Neznámy siete je uvedené v -onlynet: '%s' + + + + Invalid -proxy address: '%s' + Neplatná adresa proxy: '%s' + + + + Invalid -tor address: '%s' + Neplatná -tor adresa: '%s' + + + + Cannot resolve -bind address: '%s' + Nemožno rozložiť -bind adresu: '%s' + + + + Failed to listen on any port. Use -listen=0 if you want this. + Nepodarilo sa počúvať žiadnom porte. Použite -listen=0 ak to chcete. + + + + Cannot resolve -externalip address: '%s' + Nemožno rozložiť -externalip adresu: '%s' + + + + Invalid amount for -reservebalance=<amount> + Neplatná suma pre -reservebalance=<množstvo> + + + + Unable to sign checkpoint, wrong checkpointkey? + + Nemožno podpísať kontrolný bod, zlý checkpointkey? + + + + + Loading block index... + Načítavanie zoznamu blokov... + + + + Error loading blkindex.dat + Chyba pri načítaní blkindex.dat + + + + Loading wallet... + Načítavam peňaženku... + + + + Error loading wallet.dat: Wallet corrupted + Chyba načítania wallet.dat: Peňaženka je poškodená + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Upozornenie: Chyba pri čítaní wallet.dat! Všetky kľúče načítané správne, ale transakčné dáta alebo položky adresára môže chýbať alebo byť nesprávne. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Chyba pri načítaní wallet.dat: Peňaženka vyžaduje novšiu verziu BitBean + + + + Wallet needed to be rewritten: restart BitBean to complete + Peňaženka potrebuje byť prepísaná: reštartujte BitBean k dokončeniu + + + + Error loading wallet.dat + Chyba načítania wallet.dat + + + + Cannot downgrade wallet + Nie je možné prejsť na nižšiu verziu peňaženky + + + + Cannot initialize keypool + Nemožno inicializovať keypool + + + + Cannot write default address + Nie je možné zapísať predvolenú adresu. + + + + Rescanning... + Nové prehľadávanie... + + + + Importing blockchain data file. + Importovanie dátového súboru reťazca blokov. + + + + Importing bootstrap blockchain data file. + Import zavádzacej časti blockchain dátového súbora. + + + + Loading addresses... + Načítavanie adries... + + + + Error: could not start node + Chyba: nemožno spustiť uzol + + + + Done loading + Dokončené načítavanie + + + + Unable to bind to %s on this computer. BitBean is probably already running. + Nemôžem sa pripojiť na %s na tomto počítači. BitBean je pravdepodobne už beží. + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + Nemôžem sa pripojiť k %s na tomto počítači (bind vrátil chybu %d, %s) + + + + Error: Wallet locked, unable to create transaction + Chyba: Peňaženka je zamknutá, nie je možné vytvoriť transakciu + + + + Error: Wallet unlocked for staking only, unable to create transaction. + Chyba: Peňaženka odomknuté len pre stávkovanie, nemožné vytvoriť transakciu. + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Chyba: Táto operácia vyžaduje transakčný poplatok vo výške aspoň %s, pretože jeho množstvo, zložitosť, alebo použitím nedávno prijatých finančných prostriedkov + + + + Error: Transaction creation failed + Chyba: Vytvorenie transakcie zlyhalo + + + + Sending... + Posielam... + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Neplatná suma + + + + Insufficient funds + Nedostatok prostriedkov + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Upozornenie: Skontrolujte, že dátum a čas počítača sú správne! Ak je Váš čas nesprávny BitBean nebude pracovať správne. + + + + Warning: This version is obsolete, upgrade required! + Upozornenie: Táto verzia je zastaraná, vyžaduje sa aktualizácia! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + UPOZORNENIE: detekovaný synchronizovaný porušený checkpoint, ale preskočený! + + + + Warning: Disk space is low! + Upozornenie: Nedostatok miesta na disku! + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + UPOZORNENIE: Neplatný checkpoint nájdený! Uvedené transakcie nemusia byť správne! Možno budete musieť upgradovať, alebo upozorniť vývojárov. + + + + bitcoin-core + + BitBean version + BitBean verzia + + + Usage: + Použitie: + + + Send command to -server or BitBeand + Pošli príkaz na -server alebo BitBeand + + + List commands + Zoznam príkazov + + + Get help for a command + Získať pomoc pre príkaz + + + Options: + Možnosti: + + + Specify configuration file (default: BitBean.conf) + Zadajte konfiguračný súbor (predvolené: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + Zadajte pid súbor (predvolené: BitBeand.pid) + + + Specify wallet file (within data directory) + Zadajte súbor peňaženky (v rámci dátového adresára) + + + Specify data directory + Zadajte priečinok s dátami + + + Set database cache size in megabytes (default: 25) + Nastaviť veľkosť vyrovnávajúcej pamäte pre databázu v megabytoch (predvolené: 25) + + + Set database disk log size in megabytes (default: 100) + Nastaviť veľkosť databázového denníka na disku v MB (predvolené: 100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Počúvať pripojenia na <port> (predvolené: 15714 alebo testovacia sieť: 25714) + + + 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 + Pre načítanie peer adresy sa pripojte k uzlu, a odpojte + + + Specify your own public address + Určite vašu vlastnú verejnú adresu + + + Bind to given address. Use [host]:port notation for IPv6 + Spojiť do danej adresy. Použite [host]:port zápis pre IPv6 + + + Stake your coins to support network and gain reward (default: 1) + Nechajte stávkovať vaše mince pre podporu siete a získajte odmenu (predvolené: 1) + + + 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 + Pri nastavovaní portu RPC %u pre počúvanie na IPv4 došlo k chybe: %s + + + Detach block and address databases. Increases shutdown time (default: 0) + Odpojiť blok a databázy adries. Zvyšuje vypínací čas (predvolené: 0) + + + 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: Transakcia bola zamietnutá. To môže nastať, ak niektoré z mincí vo vašej peňaženke sa už použili, ako napríklad, ak ste použili kópiu wallet.dat a mince boli použité v kópii, ale neboli označené ako použité tu. + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Chyba: Táto operácia vyžaduje transakčný poplatok vo výške aspoň %s, pretože jeho množstvo, zložitosť, alebo použitím nedávno prijatých finančných prostriedkov + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Počúvajte pre JSON-RPC spojenie na <port> (predvolené: 15715 alebo testovaciasieť: 25715) + + + Accept command line and JSON-RPC commands + Prijímať príkazy z príkazového riadku a JSON-RPC + + + Error: Transaction creation failed + Chyba: Vytvorenie transakcie zlyhalo + + + Error: Wallet locked, unable to create transaction + Chyba: Peňaženka je zamknutá, nie je možné vytvoriť transakciu + + + Importing blockchain data file. + Importovanie dátového súboru reťazca blokov. + + + Importing bootstrap blockchain data file. + Import zavádzacej časti blockchain dátového súbora. + + + 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) + Prijímať pripojenie z vonka (predvolené: 1, ak nie -proxy alebo -connect) + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + Pri nastavovaní portu RPC %u pre počúvanie na IPv6, spadne späť do IPv4 došlo k chybe: %s + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Chyba pri inicializácii databázy prostredie %s! Ak chcete obnoviť, ZÁLOHUJTE TENTO ADRESÁR, potom všetko z neho odstránte okrem wallet.dat. + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Nastavte maximálnu veľkosť high-priority/low-fee transakcií v bajtoch (predvolené: 27000) + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Upozornenie: -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 BitBean will not work properly. + Upozornenie: Skontrolujte, že dátum a čas počítača sú správne! Ak je Váš čas nesprávny BitBean nebude pracovať správne. + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Upozornenie: Chyba pri čítaní wallet.dat! Všetky kľúče načítané správne, ale transakčné dáta alebo položky adresára môže chýbať alebo byť nesprávne. + + + 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. + Upozornenie: wallet.dat poškodený, údaje zachránené! Pôvodný wallet.dat bol uložený ako wallet.{timestamp}.bak v %s; ak váš zostatok alebo transakcie nie sú správne, mali by ste obnoviť zo zálohy. + + + Attempt to recover private keys from a corrupt wallet.dat + Pokus obnoviť súkromné kľúče z poškodeného wallet.dat + + + Block creation options: + Voľby vytvorenia bloku: + + + Connect only to the specified node(s) + Pripojiť sa len k určenému uzlu(om) + + + Discover own IP address (default: 1 when listening and no -externalip) + Objavte vlastnú IP adresa (predvolené: 1 pri počúvaní a nie -externalip) + + + Failed to listen on any port. Use -listen=0 if you want this. + Nepodarilo sa počúvať žiadnom porte. Použite -listen=0 ak to chcete. + + + Find peers using DNS lookup (default: 1) + Nájsť peerov pomocou vyhľadávania DNS (predvolené: 1) + + + Sync checkpoints policy (default: strict) + Sync checkpoints policy (predvolené: strict) + + + Invalid -tor address: '%s' + Neplatná -tor adresa: '%s' + + + Invalid amount for -reservebalance=<amount> + Neplatná suma pre -reservebalance=<množstvo> + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Maximum pre-pripojenie prijímacej vyrovnávacej pamäti, <n>*1000 bajtov (predvolené: 5000) + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Maximum pre-pripojenie posielacej vyrovnávacej pamäti, <n>*1000 bajtov (predvolené: 1000) + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Pripojiť len k uzlom siete <net> (IPv4, IPv6 alebo Tor) + + + Output extra debugging information. Implies all other -debug* options + Výstupné ďalšie informácie o ladení. Znamená všetky -debug* možnosti + + + Output extra network debugging information + Výstupné ďalšie sieťové informácie o ladení + + + Prepend debug output with timestamp + Pred debug výstup s časovou pečiatkou + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL možnosť: (pozrite Bitcoin Wiki pre návod na nastavenie SSL) + + + Select the version of socks proxy to use (4-5, default: 5) + Vyberte verziu SOCKS proxy pre používanie (4-5, predvolené: 5) + + + Send trace/debug info to console instead of debug.log file + Odoslať trace/debug informácie na konzolu namiesto debug.info žurnálu + + + Send trace/debug info to debugger + Poslať stopy/ladiace informácie do debuggera + + + Set maximum block size in bytes (default: 250000) + Nastavte maximálnu veľkosť bloku v bajtoch (predvolené: 250000) + + + Set minimum block size in bytes (default: 0) + Nastavte minimálnu veľkosť bloku v bajtoch (predvolené: 0) + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Stlačiť debug.log súbor na spustenie klienta (predvolené: 1, keď nie -debug) + + + Specify connection timeout in milliseconds (default: 5000) + Určiť aut spojenia v milisekundách (predvolené: 5000) + + + Unable to sign checkpoint, wrong checkpointkey? + + Nemožno podpísať kontrolný bod, zlý checkpointkey? + + + + 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) + + + Use proxy to reach tor hidden services (default: same as -proxy) + Použiť proxy server k získaniu Tor skrytých služieb (predvolené: rovnaká ako -proxy) + + + Username for JSON-RPC connections + Užívateľské meno pre JSON-RPC spojenia + + + Verifying database integrity... + Overenie integrity databázy ... + + + WARNING: syncronized checkpoint violation detected, but skipped! + UPOZORNENIE: detekovaný synchronizovaný porušený checkpoint, ale preskočený! + + + Warning: Disk space is low! + Upozornenie: Nedostatok miesta na disku! + + + Warning: This version is obsolete, upgrade required! + Upozornenie: Táto verzia je zastaraná, vyžaduje sa aktualizácia! + + + wallet.dat corrupt, salvage failed + wallet.dat je poškodený, záchrana zlyhala + + + Password for JSON-RPC connections + Heslo pre JSON-rPC spojenia + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, musíte nastaviť rpcpassword v konfiguračnom súbore: + %s +Je odporúčané použiť nasledujúce náhodné heslo: +rpcuser=BitBeanrpc +rpcpassword=%s +(Nemusíte si pamätať toto heslo) +Užívateľské meno a heslo nesmú byť rovnaké. +Ak súbor neexistuje, vytvorte ho s oprávneniami súborov vlastníkov iba na čítatanie. +Odporúča sa tiež nastaviť alertnotify, takže budete upozornení na problémy; +napríklad: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + Find peers using internet relay chat (default: 0) + Nájsť peerov pomocou Internet Relay Chat (predvolené: 1) {0)?} + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Synchronizácia času s ostatnými uzlami. Zakázať ak čas na vašom systéme je presný, napr synchronizáciu s NTP (predvolené: 1) + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Pri vytváraní transakcií, ignorovať vstupy s hodnotou nižšou než táto (predvolené: 0.01) + + + 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) + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Spustiť príkaz ak sa zmení transakcia v peňaženke (%s v cmd sa nahrádza TxID) + + + Require a confirmations for change (default: 0) + Požadovať potvrdenie pre zmenu (predvolené: 0) + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Presadzovať transakčné skripty k používaniu kanonických PUSH operátorov (predvolené: 1) + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Spustiť príkaz, keď je prijaté príslušné upozornenie (%s v cmd je nahradený správou) + + + 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 + + + How many blocks to check at startup (default: 2500, 0 = all) + Koľko blokov na kontrolu pri štarte (predvolené: 2500, 0 = všetky) + + + How thorough the block verification is (0-6, default: 1) + Ako dôkladné overenie bloku je (0-6, predvolené: 1) + + + Imports blocks from external blk000?.dat file + Importovať bloky z externého blk000?.dat súbora + + + 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) + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Akceptovateľné ciphers (predvolené: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + Error: Wallet unlocked for staking only, unable to create transaction. + Chyba: Peňaženka odomknuté len pre stávkovanie, nemožné vytvoriť transakciu. + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + UPOZORNENIE: Neplatný checkpoint nájdený! Uvedené transakcie nemusia byť správne! Možno budete musieť upgradovať, alebo upozorniť vývojárov. + + + This help message + Táto pomocná správa + + + Wallet %s resides outside data directory %s. + Peňaženka %s bydlisko mimo dátový adresár %s. + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Nemožno získať zámok na dátový adresár %s. BitBean už pravdepodobne beží. + + + BitBean + BitBean + + + Unable to bind to %s on this computer (bind returned error %d, %s) + Nemôžem sa pripojiť k %s na tomto počítači (bind vrátil chybu %d, %s) + + + Connect through socks proxy + Pripojenie cez SOCKS proxy + + + 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 blkindex.dat + Chyba pri načítaní blkindex.dat + + + 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 BitBean + Chyba pri načítaní wallet.dat: Peňaženka vyžaduje novšiu verziu BitBean + + + Wallet needed to be rewritten: restart BitBean to complete + Peňaženka potrebuje byť prepísaná: reštartujte BitBean k dokončeniu + + + Error loading wallet.dat + Chyba načítania wallet.dat + + + Invalid -proxy address: '%s' + Neplatná adresa proxy: '%s' + + + Unknown network specified in -onlynet: '%s' + Neznámy siete je uvedené v -onlynet: '%s' + + + Unknown -socks proxy version requested: %i + Neznáma požadovaná SOCKS proxy verzia:% i + + + Cannot resolve -bind address: '%s' + Nemožno rozložiť -bind adresu: '%s' + + + Cannot resolve -externalip address: '%s' + Nemožno rozložiť -externalip adresu: '%s' + + + Invalid amount for -paytxfee=<amount>: '%s' + Neplatná suma pre -paytxfee=<amount>: '%s' + + + Error: could not start node + Chyba: nemožno spustiť uzol + + + Sending... + Posielam... + + + 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. BitBean is probably already running. + Nemôžem sa pripojiť na %s na tomto počítači. BitBean je pravdepodobne už beží. + + + Fee per KB to add to transactions you send + Poplatok za KB pridať do transakcií, ktoré odosielate + + + Invalid amount for -mininput=<amount>: '%s' + Neplatná suma pre -mininput=<amount>: '%s' + + + Loading wallet... + Načítavam peňaženku... + + + Cannot downgrade wallet + Nie je možné prejsť na nižšiu verziu peňaženky + + + Cannot initialize keypool + Nemožno inicializovať keypool + + + 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. + Musíš nastaviť rpcpassword=<heslo> v konfiguračnom súbore: +%s +Ak súbor neexistuje, vytvorte ho s oprávnením pre čítanie len vlastníkom (owner-readable-only) + + + diff --git a/src/qt/locale/bitbean_sl_SI.qm b/src/qt/locale/bitbean_sl_SI.qm new file mode 100644 index 0000000..12021cc Binary files /dev/null and b/src/qt/locale/bitbean_sl_SI.qm differ diff --git a/src/qt/locale/bitbean_sl_SI.ts b/src/qt/locale/bitbean_sl_SI.ts new file mode 100644 index 0000000..1f4d17a --- /dev/null +++ b/src/qt/locale/bitbean_sl_SI.ts @@ -0,0 +1,4932 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + O BitBean + + + + <b>BitBean</b> version + <b>BitBean</b> verzija + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + +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. + +To je poizkusen softver. + +Distribuiran pod MIT/X11 softversko licenco, glej priloženo datoteko COPYING ali http://www.opensource.org/licenses/mit-license.php. + +Ta proizvod vključuje softver razvit s strani projekta OpenSSL za uporabo v OpenSSL Toolkit (http://www.openssl.org/) in kriptografski softver, ki ga je napisal Eric Young (eay@cryptsoft.com), ter UPnP softver, ki ga je napisal Thomas Bernard. + + + + AddressBookPage + + + Address Book + Imenik + + + + Double-click to edit address or label + Dvakrat kliknite za urejanje naslovov ali oznak + + + + Create a new address + Ustvari nov naslov + + + + Copy the currently selected address to the system clipboard + Kopiraj trenutno izbrani naslov v odložišče + + + + &New Address + &Nov naslov + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + To so vaši BitBean naslovi za prejemanje plačil. Priporočeno je da vsakemu pošiljatelju namenite drugega in tako dobite večji pregled nad svojimi nakazili. + + + + &Copy Address + &Kopiraj naslov + + + + Show &QR Code + Prikaži &QR kodo + + + + Sign a message to prove you own a BitBean address + Podpišite sporočilo, kot dokazilo lastništva BitBean naslova + + + + Sign &Message + Podpiši &sporočilo + + + + Delete the currently selected address from the list + Izbriši izbran naslov iz seznama + + + + Verify a message to ensure it was signed with a specified BitBean address + Potrdi sporočilo, da zagotovite, da je bilo podpisano z izbranim BitBean naslovom + + + + &Verify Message + &Potrdi sporočilo + + + + &Delete + &Izbriši + + + + Copy &Label + Kopiraj &oznako + + + + &Edit + &Uredi + + + + Export Address Book Data + Izvozi podatke imenika + + + + Comma separated file (*.csv) + Datoteka s podatki, ločenimi z vejico (*.csv) + + + + Error exporting + Napaka pri izvozu datoteke + + + + Could not write to file %1. + Napaka pri pisanju na datoteko %1. + + + + AddressTableModel + + + Label + Oznaka + + + + Address + Naslov + + + + (no label) + (ni oznake) + + + + AskPassphraseDialog + + + Passphrase Dialog + Poziv gesla + + + + Enter passphrase + Vnesite geslo + + + + New passphrase + Novo geslo + + + + Repeat new passphrase + Ponovite novo geslo + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Služi kot onemogočenje pošiljanja prostega denarja, v primerih okužbe operacijskega sistema. Ne ponuja prave zaščite. + + + + For staking only + Samo za staking. + + + + 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 COINS</b>! + Opozorilo: Če šifrirate svojo denarnico in izgubite svoje geslo, boste <b> IZGUBILI VSE SVOJE KOVANCE</b>! + + + + Are you sure you wish to encrypt your wallet? + Ali ste prepričani, da želite šifrirati vašo denarnico? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + POMEMBNO: Vsaka predhodna varnostna kopija datoteke denarnice mora biti nadomeščena z novo datoteko šifrirane denarnice. Zaradi varnostnih razlogov bodo namreč prejšnje varnostne kopije datoteke nešifrirane denarnice postale neuporabne takoj ko boste pričeli uporabljati novo, šifrirano denarnico. + + + + + Warning: The Caps Lock key is on! + Opozorilo: imate prižgan Cap Lock + + + + + Wallet encrypted + Denarnica šifrirana + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + BitBean se bo sedaj zaprl, da dokonča proces šifriranje. Pomnite, da tudi šifriranje vaše denarnice ne more v celoti zaščititi vaših kovancev pred krajo z zlonamernimi programi in računalniškimi virusi, če ti okužijo vaš računalnik. + + + + + + + Wallet encryption failed + Šifriranje denarnice je spodletelo + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Šifriranje denarnice spodletelo je 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 je spodletelo + + + + Wallet passphrase was successfully changed. + Geslo denarnice je bilo uspešno spremenjeno. + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + Količina: + + + + Bytes: + Biti: + + + + Amount: + + + + + Priority: + Prednostno mesto: + + + + Fee: + Provizija: + + + + Low Output: + Nizek output: + + + + After Fee: + Po proviziji: + + + + Change: + Sprememba: + + + + (un)select all + od/obkljukaj vse + + + + Tree mode + Drevo + + + + List mode + Seznam + + + + Amount + Količina + + + + Label + Oznaka + + + + 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 + + + + Copy quantity + Kopiraj količino + + + + Copy fee + Kopiraj provizijo + + + + Copy after fee + Kopiraj po proviziji + + + + Copy bytes + Kopiraj bite + + + + Copy priority + Kopiraj prednostno mesto + + + + Copy low output + + + + + Copy change + Kopiraj spremembo + + + + highest + najvišja + + + + high + visoka + + + + medium-high + srednje visoka + + + + medium + srednje + + + + low-medium + srednje nizka + + + + low + nizka + + + + lowest + najnižja + + + + DUST + PRAH + + + + yes + da + + + + no + ne + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Ta oznakla se obarva rdeče, če je transakcija večja od 10000 bajtov. + + To pomeni, da je zahtevana provizija vsaj %1 na kb. + + Lahko variira +/- 1 Bajt na vnos. + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Transakcije z višjo prioriteto imajo višjo verjetnost, da so vključene v blok. + +Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". + + To pomeni, da je zahtevana provizija vsaj %1 na kb. + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Ta oznaka se obarva rdeče, če prejemnik dobi količino manjšo od %1. + + To pomeni, da je potrebna vsaj %2 provizija. + + Zneski pod 0.546 krat minimalna transakcijska provizija so prikazani kot PRAH. + + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Ta oznakla se obarva rdeče, če je sprememba manjša od %1. + + To pomeni, da je zahtevana provizija vsaj %2. + + + + + (no label) + (ni oznake) + + + + change from %1 (%2) + spremeni iz %1 (%2) + + + + (change) + (spremeni) + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Prišlo je do usodne napake. Program BitBean se ne more več varno nadaljevati in se bo zato zaprl. + + + + BitBean + BitBean + + + + Vault + + + + + &Overview + &Pregled + + + + Show general overview of wallet + Pokaži splošen pregled denarnice + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Prikaži seznam naslovov za prejemanje plačil. + + + + &Transactions + &Transakcije + + + + Browse transaction history + Brskaj po zgodovini transakcij + + + + &Address Book + &Imenik + + + + Edit the list of stored addresses and labels + Uredi seznam shranjenih naslovov in oznak + + + + E&xit + I&zhod + + + + Quit application + Izhod iz aplikacije + + + + &About BitBean + &O BitBean + + + + Show information about BitBean + Pokaži informacije o BitBean + + + + About &Qt + O &Qt + + + + Show information about Qt + Prikaži informacije o Qt + + + + &Options... + &Možnosti ... + + + + Modify configuration options for BitBean + Spremeni nastavitve za BTestcoin + + + + &Show / Hide + &Prikaži / Skrij + + + + &Encrypt Wallet... + &Šifriraj denarnico ... + + + + Encrypt or decrypt wallet + Šifriraj ali dešifriraj denarnico + + + + &Backup Wallet... + &Ustvari varnostno kopijo denarnice ... + + + + Backup wallet to another location + Napravi varnostno kopijo denarnice na drugo lokacijo + + + + &Change Passphrase... + &Spremeni geslo ... + + + + Change the passphrase used for wallet encryption + Spremeni šifrirno geslo denarnice + + + + &Unlock Wallet... + &Odkleni denarnico... + + + + Unlock wallet + Odkleni denarnico + + + + &Lock Wallet + &Zakleni denarnico + + + + Lock wallet + Zakleni denarnico + + + + Sign &message... + Podpiši &sporočilo ... + + + + &Verify message... + %Potrdi sporočilo ... + + + + &Export... + &Izvozi... + + + + Export the data in the current tab to a file + Izvozi podatke v izbranem zavihku v datoteko + + + + &Debug window + &Razhroščevalno okno + + + + Open debugging and diagnostic console + Odpri razhroščevalno in diagnostično konzolo + + + + &File + &Datoteka + + + + &Settings + &Nastavitve + + + + &Help + &Pomoč + + + + Tabs toolbar + Orodna vrstica zavihkov + + + + Actions toolbar + Orodna vrsticai + + + + + [testnet] + [testnet] + + + + + BitBean client + BitBean program + + + + %n active connection(s) to BitBean network + + %n aktivne povezave na BitBean omrežje + %n aktivnih povezav na BitBean omrežje + %n aktivnih povezav na BitBean omrežje + %n aktivnih povezav na BitBean omrežje + + + + + Synchronizing with network... + Sinhroniziranje z omrežjem ... + + + + ~%n block(s) remaining + + Ostaja ~%n bloka + Ostaja ~%n blokov + Ostaja ~%n blokov + Ostaja ~%n blokov + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Prenešen %1 od %2 blokov transakcijske zgodovine (%3% opravljeno). + + + + Downloaded %1 blocks of transaction history. + Prenešenih %1 blokov transakcijske zgodovine. + + + + %n second(s) ago + + pred %n sekundo + pred %n sekundama + pred %n sekundami + pred %n sekundami + + + + + %n minute(s) ago + + Pred %n minuto + Pred %n minutama + Pred %n minutami + Pred %n minutami + + + + + %n hour(s) ago + + Pred %n uro. + Pred %n urama. + Pred %n urami. + Pred %n urami. + + + + + %n day(s) ago + + Pred %n dnevom. + Pred %n dnevoma. + Pred %n dnevi. + Pred %n dnevi. + + + + + Up to date + Posodobljeno + + + + Catching up... + Pridobivanje ... + + + + Last received block was generated %1. + Zadnji prejeti blok je bil ustvarjen %1. + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Ta transakcija je prekoračila limit. Še vedno jo lahko pošljete za plačilo %1 transakcije, ki je plačano vsem delom omrežja kot deležnina in pomaga zagotavljati njegovo varnost. Ali želite plačati provizijo? + + + + Confirm transaction fee + Potrdi transakcijsko provizijo + + + + Sent transaction + Odlivi + + + + Incoming transaction + Prilivi + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum: %1 +Količina: %2 +Vrsta: %3 +Naslov: %4 + + + + + + URI handling + Rokovanje z URI + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI ne more biti razčlenjen! To se lahko zgodi zaradi neveljavnega BitBean naslova ali slabih parametrov URI. + + + + 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> + + + + Backup Wallet + Napravi varnostno kopijo denarnice + + + + Wallet Data (*.dat) + Datoteka denarnice (*.dat) + + + + Backup Failed + Ustvarjanje varnostne kopije je spodeltelo + + + + There was an error trying to save the wallet data to the new location. + Prišlo je do napake ob poskušanju shranjevanja datoteke denarnice na novo lokacijo. + + + + %n second(s) + + %n sekundo + %n sekundama + %n sekund + %n sekund + + + + + %n minute(s) + + %n minuto + %n minutama + %n minut + %n minut + + + + + %n hour(s) + + %n ura + %n uri + %n ure + %n ura + + + + + %n day(s) + + %n dan + %n dneva + %n dnevi + %n dni + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Deležeje [Staking].<br>Teža vašega deleženja je %1<br>Teža celotne mreže deleženja je %2<br>Pričakovan čas do prejema nagrade %3 + + + + Not staking because wallet is locked + Ne deležite ker je denarnica zakljenjena + + + + Not staking because wallet is offline + Ne deležite ker denarnica ni povezana + + + + Not staking because wallet is syncing + Ne deležite ker se denarnica sinhronizira z omrežjem + + + + Not staking because you don't have mature beans + + + + + Not staking + Ne deležite + + + + BitcoinGUI + + Sign &message... + Podpiši &sporočilo ... + + + Synchronizing with network... + Sinhroniziranje z omrežjem ... + + + &Overview + &Pregled + + + Show general overview of wallet + Pokaži splošen pregled denarnice + + + &Transactions + &Transakcije + + + Browse transaction history + Brskaj po zgodovini transakcij + + + &Address Book + &Imenik + + + Edit the list of stored addresses and labels + Uredi seznam shranjenih naslovov in oznak + + + &Receive coins + &Prejmi kovance + + + Show the list of addresses for receiving payments + Prikaži seznam naslovov za prejemanje plačil. + + + &Send coins + &Pošlji kovance + + + E&xit + I&zhod + + + Quit application + Izhod iz aplikacije + + + Show information about BitBean + Pokaži informacije o BitBean + + + About &Qt + O &Qt + + + Show information about Qt + Prikaži informacije o Qt + + + &Options... + &Možnosti ... + + + &Encrypt Wallet... + &Šifriraj denarnico ... + + + &Backup Wallet... + &Ustvari varnostno kopijo denarnice ... + + + &Change Passphrase... + &Spremeni geslo ... + + + ~%n block(s) remaining + + Ostaja ~%n bloka + Ostaja ~%n blokov + Ostaja ~%n blokov + Ostaja ~%n blokov + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Prenešen %1 od %2 blokov transakcijske zgodovine (%3% opravljeno). + + + &Export... + &Izvozi... + + + Send coins to a BitBean address + Pošlji kovance na BitBean naslov + + + Modify configuration options for BitBean + Spremeni nastavitve za BTestcoin + + + Export the data in the current tab to a file + Izvozi podatke v izbranem zavihku v datoteko + + + Encrypt or decrypt wallet + Šifriraj ali dešifriraj denarnico + + + 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... + %Potrdi sporočilo ... + + + BitBean + BitBean + + + Wallet + Denarnica + + + &About BitBean + &O BitBean + + + &Show / Hide + &Prikaži / Skrij + + + Unlock wallet + Odkleni denarnico + + + &Lock Wallet + &Zakleni denarnico + + + Lock wallet + Zakleni denarnico + + + &File + &Datoteka + + + &Settings + &Nastavitve + + + &Help + &Pomoč + + + Tabs toolbar + Orodna vrstica zavihkov + + + Actions toolbar + Orodna vrsticai + + + [testnet] + [testnet] + + + BitBean client + BitBean program + + + %n active connection(s) to BitBean network + + %n aktivne povezave na BitBean omrežje + %n aktivnih povezav na BitBean omrežje + %n aktivnih povezav na BitBean omrežje + %n aktivnih povezav na BitBean omrežje + + + + Downloaded %1 blocks of transaction history. + Prenešenih %1 blokov transakcijske zgodovine. + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Deležeje [Staking].<br>Teža vašega deleženja je %1<br>Teža celotne mreže deleženja je %2<br>Pričakovan čas do prejema nagrade %3 + + + Not staking because wallet is locked + Ne deležite ker je denarnica zakljenjena + + + Not staking because wallet is offline + Ne deležite ker denarnica ni povezana + + + Not staking because wallet is syncing + Ne deležite ker se denarnica sinhronizira z omrežjem + + + Not staking because you don't have mature coins + Ne deležite ker nimate zrelih kovancev. + + + %n second(s) ago + + pred %n sekundo + pred %n sekundama + pred %n sekundami + pred %n sekundami + + + + &Unlock Wallet... + &Odkleni denarnico... + + + %n minute(s) ago + + Pred %n minuto + Pred %n minutama + Pred %n minutami + Pred %n minutami + + + + %n hour(s) ago + + Pred %n uro. + Pred %n urama. + Pred %n urami. + Pred %n urami. + + + + %n day(s) ago + + Pred %n dnevom. + Pred %n dnevoma. + Pred %n dnevi. + Pred %n dnevi. + + + + Up to date + Posodobljeno + + + Catching up... + Pridobivanje ... + + + Last received block was generated %1. + Zadnji prejeti blok je bil ustvarjen %1. + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Ta transakcija je prekoračila limit. Še vedno jo lahko pošljete za plačilo %1 transakcije, ki je plačano vsem delom omrežja kot deležnina in pomaga zagotavljati njegovo varnost. Ali želite plačati provizijo? + + + Confirm transaction fee + Potrdi transakcijsko provizijo + + + Sent transaction + Odlivi + + + Incoming transaction + Prilivi + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum: %1 +Količina: %2 +Vrsta: %3 +Naslov: %4 + + + + URI handling + Rokovanje z URI + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI ne more biti razčlenjen! To se lahko zgodi zaradi neveljavnega BitBean naslova ali slabih parametrov URI. + + + 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> + + + Backup Wallet + Napravi varnostno kopijo denarnice + + + Wallet Data (*.dat) + Datoteka denarnice (*.dat) + + + Backup Failed + Ustvarjanje varnostne kopije je spodeltelo + + + There was an error trying to save the wallet data to the new location. + Prišlo je do napake ob poskušanju shranjevanja datoteke denarnice na novo lokacijo. + + + %n second(s) + + %n sekundo + %n sekundama + %n sekund + %n sekund + + + + %n minute(s) + + %n minuto + %n minutama + %n minut + %n minut + + + + %n hour(s) + + %n ura + %n uri + %n ure + %n ura + + + + %n day(s) + + %n dan + %n dneva + %n dnevi + %n dni + + + + Not staking + Ne deležite + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Prišlo je do usodne napake. Program BitBean se ne more več varno nadaljevati in se bo zato zaprl. + + + + ClientModel + + + Network Alert + Omrežno Opozorilo + + + + CoinControlDialog + + Coin Control + Kontrola kovancev + + + Quantity: + Količina: + + + Bytes: + Biti: + + + Amount: + Količina: + + + Priority: + Prednostno mesto: + + + Fee: + Provizija: + + + Low Output: + Nizek output: + + + no + ne + + + After Fee: + Po proviziji: + + + Change: + Sprememba: + + + (un)select all + od/obkljukaj vse + + + Tree mode + Drevo + + + List mode + Seznam + + + Amount + Količina + + + Label + Oznaka + + + 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 + + + Copy quantity + Kopiraj količino + + + Copy fee + Kopiraj provizijo + + + Copy after fee + Kopiraj po proviziji + + + Copy bytes + Kopiraj bite + + + Copy priority + Kopiraj prednostno mesto + + + Copy low output + Kopiraj nizek output: + + + Copy change + Kopiraj spremembo + + + highest + najvišja + + + high + visoka + + + medium-high + srednje visoka + + + medium + srednje + + + low-medium + srednje nizka + + + low + nizka + + + lowest + najnižja + + + DUST + PRAH + + + yes + da + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Ta oznakla se obarva rdeče, če je transakcija večja od 10000 bajtov. + + To pomeni, da je zahtevana provizija vsaj %1 na kb. + + Lahko variira +/- 1 Bajt na vnos. + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Transakcije z višjo prioriteto imajo višjo verjetnost, da so vključene v blok. + +Ta oznaka se obarva rdeče, če je prioriteta manjša kot "srednja". + + To pomeni, da je zahtevana provizija vsaj %1 na kb. + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Ta oznaka se obarva rdeče, če prejemnik dobi količino manjšo od %1. + + To pomeni, da je potrebna vsaj %2 provizija. + + Zneski pod 0.546 krat minimalna transakcijska provizija so prikazani kot PRAH. + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Ta oznakla se obarva rdeče, če je sprememba manjša od %1. + + To pomeni, da je zahtevana provizija vsaj %2. + + + (no label) + (ni oznake) + + + change from %1 (%2) + spremeni iz %1 (%2) + + + (change) + (spremeni) + + + + EditAddressDialog + + + Edit Address + Uredi naslov + + + + &Label + &Oznaka + + + + The label associated with this address book entry + Oznaka povezana s tem vnosom v imeniku + + + + &Address + &Naslov + + + + The address associated with this address book entry. This can only be modified for sending addresses. + Naslov povezan s tem vnosom v imeniku. Spremenite ga lahko le za naslove odlivov. + + + + 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 BitBean address. + Vneseni naslov "%1" ni veljaven BitBean naslov. + + + + Could not unlock wallet. + Denarnice ni bilo mogoče odkleniti. + + + + New key generation failed. + Ustvarjanje novega ključa je spodletelo. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + 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 + + + + Show splash screen on startup (default: 1) + Prikaži splash screen ob zagonu (default: 1) + + + + 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. Fee 5.00 recommended. + Izbirne transakcijske provizije za kB, ki pomagajo pri tem, da so vaše transakcije procesirane hitreje. Večina transakcij je velikih 1 kB. Priporočena je provizija 0.01. + + + + Pay transaction &fee + Nakazilo plačila & provizija + + + Reserved amount does not participate in staking and is therefore spendable at any time. + Rezervirana količina ne deleži in je tako na voljo za potrošnjo. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + Rezerva + + + + Automatically start BitBean after logging in to the system. + Avtomatično zaženi BitBean ob zagonu sistema. + + + + &Start BitBean on system login + &Zaženi BitBean ob prijavi v sistem + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + Loči podatkovne baze blokov in naslovov ob zaustavitvi. To pomeni da jih lahko prenesete na drugo lokacijo, a upočasni zaustavitev. Denarnica je vedno ločena. + + + + &Detach databases at shutdown + &Loči podatkovne baze ob zaustavitvi + + + + &Network + &Omrežje + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + Avtomatično odpri vrata na routerju za BitBean program. To deluje le če vaš router podpira UPnP in je ta omogočen. + + + + Map port using &UPnP + Začrtaj vrata z &UPnP + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + Poveži se na BitBean omrežje skozi SOCKS proxy (npr. ko se povezujete prek Tora) + + + + &Connect through SOCKS proxy: + &Poveži se skozi SOCKS proxy: + + + + Proxy &IP: + Proxy &IP: + + + + IP address of the proxy (e.g. 127.0.0.1) + IP naslov proxy strežnika (npr. 127.0.0.1) + + + + &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 proxya (npr.: 5) + + + + &Window + &Okno + + + + Show only a tray icon after minimizing the window. + Ob pomanjšanju okna prikaži le ikono v odlagališču. + + + + &Minimize to the tray instead of the taskbar + &Pomanjšaj v odlagališče namesto v opravilno vrstico + + + + 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. + Pomanjšaj aplikacijo, ko je okno zaprto. Ko je omogočena ta možnost lahko aplikacijo zaprete le tako, da izberete Izhod v meniju. + + + + M&inimize on close + P&omanjšaj ko zapreš + + + + &Display + &Prikaz + + + + User Interface &language: + Uporabniški vmesnik &jezik: + + + + The user interface language can be set here. This setting will take effect after restarting BitBean. + Tu lahko nastavite jezik uporabniškega vmesnika. Nastavitve bodo pričele delovati ob ponovnem zagonu BitBean aplikacije. + + + + &Unit to show amounts in: + &Enota prikaza količin: + + + + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Izberite privzeto delitev enot, ki naj bodo prikazane v vmesniku ob pošiljanju kovancev. + + + + Whether to show BitBean addresses in the transaction list or not. + Izbira prikaza BitBean naslovov v seznamu transakcij. + + + + &Display addresses in transaction list + &Prikaz naslovov v seznamu transakcij + + + Whether to show coin control features or not. + Izbira prikaza lastnosti kontrole kovancev. + + + Display coin &control features (experts only!) + Prikaži lastnosti &kontrole kovancev (samo za strokovnjake!) + + + + &OK + &Potrdi + + + + &Cancel + &Prekini + + + + &Apply + &Uporabi + + + + default + privzeto + + + + + Warning + Opozorilo + + + + + This setting will take effect after restarting BitBean. + Ta nastavitev bo pričela delovati ob ponovnem zagonu BitBean aplikacije + + + + The supplied proxy address is invalid. + Podan naslov proxy strežnika je neveljaven. + + + + OverviewPage + + + Form + Oblika + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + Prikazane informacije so morda zastarele. Vaša denarnica se avtomatično sinhronizira z BitBean omrežjem, ko je vzpostavljena povezava, toda ta proces še ni bil zaključen. + + + Stake: + Deleženje: + + + + Unconfirmed: + Nepotrjeni: + + + Wallet + Denarnica + + + + Spendable: + Razpoložljivi: + + + + Your current spendable balance + Vaše trenutno razpoložljivo stanje + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + Nezreli: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + 0 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + Z deleženjem pridobljeni kovanci, ki še niso dozoreli. + + + + Total: + Skupaj: + + + Your current total balance + Vaše trenutno skupno stanje + + + <b>Recent transactions</b> + <b>Pogoste transakcije</> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Znesek transakcij, ki še niso bile potrjene in se še ne upoštevajo v trenutnem stanju na računu. + + + Total of coins that was staked, and do not yet count toward the current balance + Znesek kovancev, ki so bili v deleženju in se še ne upoštevajo v trenutnem stanju na računu. + + + + + out of sync + nesinhronizirano + + + + QRCodeDialog + + + QR Code Dialog + QR koda + + + + Request Payment + Zahtevaj plačilo + + + + Amount: + Znesek: + + + + Label: + Oznaka: + + + + Message: + Sporočilo: + + + + &Save As... + &Shrani kot... + + + + Error encoding URI into QR Code. + Napaka pri šifriranju URI v QR kodo. + + + + The entered amount is invalid, please check. + Vnesen znesek je neveljaven, prosimo preverite vnos. + + + + Resulting URI too long, try to reduce the text for label / message. + URI predolg, skušajte zmanjšati besedilo oznake/sporočila. + + + + Save QR Code + Shrani QR kodo + + + + PNG Images (*.png) + PNG slike (*.png) + + + + RPCConsole + + + Client name + Ime odjemalca + + + + + + + + + + + + + N/A + Neznano + + + + Client version + Različica odjemalca + + + + &Information + &Informacije + + + + Using OpenSSL version + OpenSSL različica v rabi + + + + Startup time + Čas zagona + + + + Network + Omrežje + + + + Number of connections + Število povezav + + + + On testnet + Na testnet + + + + Block chain + veriga blokov + + + + Current number of blocks + Trenutno število blokov + + + + Estimated total blocks + Ocena vseh blokov + + + + Last block time + Čas zadnjega bloka + + + + &Open + &Odpri + + + + Command-line options + Možnosti ukazne vrstice. + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + Prikaži BitBean-Qt sporočilo za pomoč , ki prikaže vse možnosti ukazne vrstice BitBean aplikacije + + + + &Show + &Prikaži + + + + &Console + &Konzola + + + + Build date + Datum izgradnje + + + + BitBean - Debug window + BitBean - okno za odpravljanje napak + + + + BitBean Core + BitBean jedro + + + + Debug log file + Razhroščevalna dnevniška datoteka + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + Odpri BitBean datoteko zapisov odpravljanja napak iz trenutnega direktorija podatkov. Če so datoteke zapisov velike, to lahko traja nekaj sekund. + + + + Clear console + Počisti konzolo + + + + Welcome to the BitBean RPC console. + Dobrodošli v BitBean RPC konzoli. + + + + Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + Za navigiranje po zgodovini uporabite puščici gor in dol, in <b>Ctrl-L</b> za izpraznjenje zaslona. + + + + Type <b>help</b> for an overview of available commands. + Vtipkaj <b>pomoč</b> za vpogled v razpožljive ukaze. + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + Vnosi... + + + + automatically selected + samodejno izbran + + + + Insufficient funds! + Premalo sredstev! + + + + Quantity: + Količina: + + + + + 0 + 0 + + + + Bytes: + Biti: + + + + Amount: + + + + + + + + 0.00 BC + 123.456 BC {0.00 ?} + + + + Priority: + Prednostno mesto: + + + + medium + srednje + + + + Fee: + Provizija: + + + + Low Output: + Nizek output: + + + + no + ne + + + + After Fee: + Po proviziji: + + + + Change + Sprememba + + + + custom change address + izbira spremembe naslova + + + + Send to multiple recipients at once + Pošlji več prejemnikom hkrati + + + + Add &Recipient + Dodaj &prejemnika + + + + Remove all transaction fields + Odstrani vsa polja transakcij + + + + Clear &All + + + + + Balance: + Dobroimetje: + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + Potrdi odlivno dejanje + + + + S&end + P&ošlji + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Copy quantity + Kopiraj količino + + + + Copy amount + Kopiraj količino + + + + Copy fee + Kopiraj provizijo + + + + Copy after fee + Kopiraj po proviziji + + + + Copy bytes + Kopiraj bite + + + + Copy priority + Kopiraj prednostno mesto + + + + Copy low output + + + + + Copy change + Kopiraj spremembo + + + + <b>%1</b> to %2 (%3) + <b>%1</b> to %2 (%3) + + + + Confirm send beans + + + + + Are you sure you want to send %1? + Ali ste prepričani, da želite poslati %1? + + + + and + in + + + + The recipient address is not valid, please recheck. + Prejemnikov naslov ni veljaven, prosimo če ga ponovno preverite. + + + + 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. + Seštevek presega vaše stanje na računu ko je vključen %1 provizije na transakcijo. + + + + 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. + + + + Error: Transaction creation failed. + Napaka: Ustvarjanje transakcije spodletelo + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + OPOZORILO: Neveljaven BitBean naslov + + + + (no label) + (ni oznake) + + + + WARNING: unknown change address + OPOZORILO: neznana sprememba naslova + + + + SendBeansEntry + + + Form + Oblika + + + + A&mount: + K&oličina: + + + + Pay &To: + Prejemnik &plačila: + + + + + 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: + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Naslov kamor želite poslati plačilo (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + Izberite naslov iz imenika + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Prilepi naslov iz odložišča + + + + Alt+P + Alt+P + + + + Remove this recipient + Odstrani tega prejemnika + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Send Coins + Pošlji kovance + + + Coin Control Features + Funkcije kontrole kovancev + + + Inputs... + Vnosi... + + + automatically selected + samodejno izbran + + + Insufficient funds! + Premalo sredstev! + + + Quantity: + Količina: + + + 0 + 0 + + + Bytes: + Biti: + + + Amount: + Znesek: + + + 0.00 BC + 123.456 BC {0.00 ?} + + + Priority: + Prednostno mesto: + + + medium + srednje + + + Fee: + Provizija: + + + Low Output: + Nizek output: + + + no + ne + + + After Fee: + Po proviziji: + + + Change + Sprememba + + + custom change address + izbira spremembe naslova + + + Send to multiple recipients at once + Pošlji več prejemnikom hkrati + + + Add &Recipient + Dodaj &prejemnika + + + Remove all transaction fields + Odstrani vsa polja transakcij + + + Clear &All + Počisti &vse + + + Balance: + Dobroimetje: + + + 123.456 BC + 123.456 BC + + + Confirm the send action + Potrdi odlivno dejanje + + + S&end + P&ošlji + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Vnesite BitBean naslov (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Copy quantity + Kopiraj količino + + + Copy amount + Kopiraj količino + + + Copy fee + Kopiraj provizijo + + + Copy after fee + Kopiraj po proviziji + + + Copy bytes + Kopiraj bite + + + Copy priority + Kopiraj prednostno mesto + + + Copy low output + Kopiraj nizek output + + + Copy change + Kopiraj spremembo + + + <b>%1</b> to %2 (%3) + <b>%1</b> to %2 (%3) + + + Confirm send coins + Potrdi odliv kovancev + + + Are you sure you want to send %1? + Ali ste prepričani, da želite poslati %1? + + + and + in + + + The recipient address is not valid, please recheck. + Prejemnikov naslov ni veljaven, prosimo če ga ponovno preverite. + + + 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. + Seštevek presega vaše stanje na računu ko je vključen %1 provizije na transakcijo. + + + 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. + + + Error: Transaction creation failed. + Napaka: Ustvarjanje transakcije spodletelo + + + 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 je bila zavrnjena. To se je lahko zgodilo, če so bili kovanci v vaši denarnici že zapravljeni, na primer če ste uporabili kopijo wallet.dat in so bili kovanci zapravljeni v kopiji, a tu še niso bili označeni kot zapravljeni. + + + WARNING: Invalid BitBean address + OPOZORILO: Neveljaven BitBean naslov + + + (no label) + (ni oznake) + + + WARNING: unknown change address + OPOZORILO: neznana sprememba naslova + + + + SendCoinsEntry + + Form + Oblika + + + A&mount: + K&oličina: + + + Pay &To: + Prejemnik &plačila: + + + 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: + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Naslov kamor želite poslati plačilo (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + Izberite naslov iz imenika + + + Alt+A + Alt+A + + + Paste address from clipboard + Prilepi naslov iz odložišča + + + Alt+P + Alt+P + + + Remove this recipient + Odstrani tega prejemnika + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Vnesite BitBean naslov (npr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Podpisi - Podpiši/potrdi 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. + Sporočila lahko podpišete s svojim naslovom, da dokažete lastništvo. Bodite previdni, saj vas lahko phishing napadi skušajo pretentati v to, da jim prepišete svojo identiteto. Podpisujte le jasne in razločne izjave, s katerimi se strinjate. + + + + The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Naslov s katerim želite podpisati sporočilo (npr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + Izberite naslov iz imenika + + + + + 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 + Vnesite sporočilo, ki ga želite podpisati + + + + Copy the current signature to the system clipboard + Kopiraj trenutno izbrani naslov v odložišče + + + + Sign the message to prove you own this BitBean address + Podpišite sporočilo, kot dokazilo lastništva BitBean naslova + + + + Reset all sign message fields + Ponastavite vse polja sporočila s podpisom + + + + + Clear &All + Počisti &vse + + + + + &Verify Message + &Potrdi 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. + Vnesite naslov za podpis, sporočilo (poskribte da točno skopirate presledke med vrsticami, črkami, itd.) in podpis spodaj, da potrdite sporočilo Da se ognete napadom posrednika, bodite pozorni, da ne boste v podpisu ugledali več, kot je v podpisanemu sporočilu samem. + + + + The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Naslov s katerim je bilo podpisano sporočilo (npr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + Potrdite sporočilo, da zagotovite, da je bilo podpisano z izbranim BitBean naslovom + + + + Reset all verify message fields + Ponastavite vse polja sporočila potrditve + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Vnesite BitBean naslov (npr. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + Kliknite "Podpiši sporočilo" za ustvaritev podpisa + + + + Enter BitBean signature + Vnesite BitBean podpis + + + + + 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. + Vnešen naslov se ne nanaša na ključ. + + + + 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. + Podpis se ni ujemal s povzetkom sporočila. + + + + Message verification failed. + Pregledovanje sporočila spodletelo. + + + + Message verified. + Sporočilo pregledano. + + + + TransactionDesc + + + Open until %1 + Odpri enoto %1 + + + + Open for %n block(s) + + Odprt za %n blok + Odprt za %n bloka + Odprt za %n blokov + Odprt za %n blokov + + + + + conflicted + sporen + + + + %1/offline + %1/offline + + + + %1/unconfirmed + %1/nepotrjeno + + + + %1 confirmations + %1 potrdil + + + + Status + Stanje + + + + , broadcast through %n node(s) + + , predvajanje skozi %n vozlišče + , predvajanje skozi %n vozlišči + , predvajanje skozi %n vozlišč + , predvajanje skozi %n vozlišč + + + + + Date + Datum + + + + Source + Izvor + + + + Generated + Generirano + + + + + From + Pošiljatelj + + + + + + To + Prejemnik + + + + + own address + lasten naslov + + + + label + oznaka + + + + + + + + Credit + Kredit + + + + matures in %n more block(s) + + dozori čez %n blok + dozori čez %n bloka + dozori čez %n blokov + dozori čez %n blokov + + + + + 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 + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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. + Ustvarjeni kovanci morajo zoreti 510 blokov preden so lahko potrošeni. Ko ustvarite ta blok, je predvajan po mreži in nanizan v verigo blokov. Če mu priključitev na verigo spodleti, se bo njegovo stanje spremenilo v "ni sprejet" in ne bo razpoložljiv. To se lahko občasno zgodi, če drugo vozlišče ustvari blok par sekund pred vami. + + + + Debug information + Razhroščevalna informacija + + + + Transaction + Transakcija + + + + Inputs + Vnosi + + + + Amount + Količina + + + + true + pravilno + + + + false + nepravilno + + + + , has not been successfully broadcast yet + , še ni bil uspešno predvajan + + + + unknown + neznano + + + + TransactionDescDialog + + + Transaction details + Podrobnosti transakcije + + + + This pane shows a detailed description of the transaction + To podokno prikazuje podroben opis transakcije + + + + TransactionTableModel + + + Date + Datum + + + + Type + Vrsta + + + + Address + Naslov + + + + Amount + Količina + + + + Open until %1 + Odpri enoto %1 + + + + Confirmed (%1 confirmations) + Potrjeno (%1 potrdil) + + + + Open for %n more block(s) + + Odprt še %n blok + Odprt še %n bloka + Odprt še %n blokov + Odprt še %n blokov + + + + + Offline + Nepovezan + + + + Unconfirmed + Nepotrjeno + + + + Confirming (%1 of %2 recommended confirmations) + Potrjuje (%1 od %2 priporočenih potrditev) + + + + Conflicted + Sporen + + + + Immature (%1 confirmations, will be available after %2) + Nezrel (%1 potrditev, na voljo bo po %2) + + + + 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 + + + + Received with + Prejeto z + + + + Received from + Prejeto od + + + + Sent to + Poslano + + + + Payment to yourself + Izplačilo sebi + + + + SPROUT + + + + 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. + + + + 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 Data + Izvozi podatke transakcij + + + + 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 + + + + Error exporting + Napaka pri izvažanju podatkov + + + + Could not write to file %1. + Napaka pri pisanju na datoteko %1. + + + + Range: + Območje: + + + + to + za + + + + WalletModel + + + Sending... + Pošiljanje... + + + + bitbean-core + + + To use the %s option + Za uporabo %s opcije + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, nastaviti morate rpcgeslo v konfiguracijski datoteki: + %s +Priporočeno je, da uporabite naslednje naključno geslo: +rpcuser=BitBeanrpc +rpcpassword=%s +(tega gesla si vam ni potrebno zapomniti) +Uporabniško ime in geslo NE SMETA biti ista. +Če datoteka ne obstaja, jo ustvarite z lastniškimi dovoljenji za datoteke. +Prav tako je priporočeno, da nastavite alernotify, tkako da vas opozori na probleme; +na primer: alertnotify=echo %%s | mail -s "BitBean Alarm" admin@foo.com + + + + + Error + Napaka + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + Prišlo je do napake pri nastavljanju RPC porta %u za vhodne povezave na IPv6: %s + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + Prišlo je do napake pri nastavljanju RPC porta %u za vhodne povezave na IPv4: %s + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Nastaviti morate rpcpassword=<password> v konfiguracijski datoteki: +%s +Če datoteka ne obstaja, jo ustvarite z lastniškimi dovoljenji za datoteke. + + + + BitBean version + BitBean različica + + + + Usage: + Uporaba: + + + + Send command to -server or BitBeand + Pošlji ukaz na -server ali Testoind + + + + List commands + Prikaži ukaze + + + + Get help for a command + Prikaži pomoč za ukaz + + + + BitBean + BitBean + + + + Options: + Možnosti: + + + + This help message + To sporočilo pomoči + + + + Specify configuration file (default: BitBean.conf) + Določi konfiguracijsko datoteko (privzeto: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + Določi pid datoteko (privzeto: BitBean.pid) + + + + Specify data directory + Določi podatkovni imenik + + + + Specify wallet file (within data directory) + Določi datoteko denarnice (znotraj imenika s podatki) + + + + Set database cache size in megabytes (default: 25) + Nastavi pomnilnik podatkovne zbirke v megabajtih (privzeto: 25) + + + + Set database disk log size in megabytes (default: 100) + Nastavi velikost zapisa podatkovne baze na disku v megabajtih (privzeto: 100) + + + + Specify connection timeout in milliseconds (default: 5000) + Določi čas pavze povezovanja v milisekundah (privzeto: 5000) + + + + Connect through socks proxy + Poveži se skozi socks proxy + + + + Select the version of socks proxy to use (4-5, default: 5) + Izberi verzijo socks proxya za uporabo (4-5, privzeto: 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + Uporabi proxy za povezavo s skritimi storitvami tora (privzeto: isto kot -proxy) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Omogoči DNS povezave za -addnode, -seednode in -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Sprejmi povezave na <port> (privzeta vrata: 15714 ali testnet: 25714) + + + + Maintain at most <n> connections to peers (default: 125) + Obdrži maksimalno število <n> povezav (privzeto: 125) + + + + 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 + + + + Connect only to the specified node(s) + Poveži se samo na določena vozlišče(a) + + + + Connect to a node to retrieve peer addresses, and disconnect + Poveži se na vozlišče da pridobiš naslove soležnikov in prekini povezavo + + + + Specify your own public address + Določite vaš lasten javni naslov + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Poveži se samo z vozlišči v omrežju <net> (IPv4, IPv6 in Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Odkrij svoj IP naslov (privzeto: 1 ob poslušanju, ko ni aktiviran -externalip) + + + + Find peers using internet relay chat (default: 0) + Najdi soležnike prek irca (privzeto: 0) + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Sprejmi zunanje povezave (privzeto: 1 če ni nastavljen -proxy ali -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + Naveži na dani naslov. Uporabi [host]:port ukaz za IPv6 + + + + Find peers using DNS lookup (default: 1) + Najdi soležnike z uporabno DNS vpogleda (privzeto: 1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Sinhroniziraj čas z drugimi vozlišči. Onemogoči, če je čas na vašem sistemu točno nastavljen, npr. sinhroniziranje z NTP (privzeto: 1) + + + + Sync checkpoints policy (default: strict) + Sinhronizacija načina točk preverjanja (privzeto: strogo) + + + + 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) + Število sekund preden se ponovno povežejo neodzivni soležniki (privzeto: 86400) + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Največji sprejemni medpomnilnik glede na povezavo, <n>*1000 bytov (privzeto: 5000) + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Največji oddajni medpomnilnik glede na povezavo, <n>*1000 bytov (privzeto: 1000) + + + + Use UPnP to map the listening port (default: 1 when listening) + Uporabi UPnP za mapiranje vrat poslušanja (privzeto: 1 med poslušanjem) + + + + Use UPnP to map the listening port (default: 0) + Uporabi UPnP za mapiranje vrat poslušanja (privzeto: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + Loči podatkovne baze blokov in naslovov. Podaljša čas zaustavitve (privzeto: 0) + + + + Fee per KB to add to transactions you send + Provizija na KB ki jo morate dodati transakcijam, ki jih pošiljate + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Ob ustvarjanju transakcij, prezri vnose z manjšo vrednostjo kot (privzeto: 0.01) + + + + Accept command line and JSON-RPC commands + Sprejmi ukaze iz ukazne vrstice in JSON-RPC + + + + Run in the background as a daemon and accept commands + Teci v ozadju in sprejemaj ukaze + + + + Use the test network + Uporabi testno omrežje + + + + Output extra debugging information. Implies all other -debug* options + Output dodatnih informacij razhroščevanja. Obsega vse druge -debug* možnosti. + + + + Output extra network debugging information + Output dodatnih informacij razhroščevanja omrežja. + + + + Prepend debug output with timestamp + Opremi output rahroščevanja s časovnim žigom. + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Skrči debug.log datoteko ob zagonu aplikacije (privzeto: 1 ko ni aktiviran -debug) + + + + 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 + + + + Send trace/debug info to debugger + Pošlji sledilne/razhroščevalne informacije v razhroščevalnik + + + + Username for JSON-RPC connections + Uporabniško ime za JSON-RPC povezave + + + + Password for JSON-RPC connections + Geslo za JSON-RPC povezave + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Sprejmi povezave na <port> (privzeta vrata: 15714 ali testnet: 25714) + + + + 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) + Izvrši ukaz, ko se najboljši blok spremeni (%s je v cmd programu nadomeščen z zgoščenimi bloki). + + + + 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) + + + + Require a confirmations for change (default: 0) + Zahtevaj potrditve za spremembo (default: 0) + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Zahtevaj da transakcijske skripte uporabljajo operatorje canonical PUSH (privzeto: 1) + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Izvrši ukaz, ko je prejet relevanten alarm (%s je v cmd programu nadomeščen s sporočilom) + + + + 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 + + + + Attempt to recover private keys from a corrupt wallet.dat + Poizkusi rešiti zasebni ključ iz pokvarjene wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) + Koliko blokov naj preveri ob zagonu aplikacije (privzeto: 2500, 0 = vse) + + + + How thorough the block verification is (0-6, default: 1) + Kako temeljito naj bo preverjanje blokov (0-6, privzeto: 1) + + + + Imports blocks from external blk000?.dat file + Uvozi bloke iz zunanje blk000?.dat datoteke + + + + Block creation options: + Možnosti ustvarjanja blokov: + + + + Set minimum block size in bytes (default: 0) + Nastavi najmanjšo velikost bloka v bajtih (privzeto: 0) + + + + Set maximum block size in bytes (default: 250000) + Nastavi največjo velikost bloka v bajtih (privzeto: 250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Nastavi maksimalno velikost visoke-prioritete/nizke-provizije transakcij v bajtih (privzeto: 27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Dovoljeni kodirniki (privzeti: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Invalid amount for -paytxfee=<amount>: '%s' + Neveljavni znesek za -paytxfee=<amount>: '%s' + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Opozorilo: -paytxfee je nastavljen zelo visoko! To je transakcijska provizija, ki jo boste plačali ob pošiljanju transakcije. + + + + Invalid amount for -mininput=<amount>: '%s' + Neveljavni znesek za -miniput=<amount>: '%s' + + + + Wallet %s resides outside data directory %s. + Denarnica %s se nahaja zunaj datotečnega imenika %s. + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Ni bilo mogoče najti podatkovnega imenika %s. Aplikacija BitBean je verjetno že zagnana. + + + + Verifying database integrity... + Potrdite neoporečnost baze podatkov... + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Napaka pri zagonu podatkovne baze okolja %s! Za popravilo, NAPRAVITE VARNOSTNO KOPIJO IMENIKA, in iz njega odstranite vse razen datoteke 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. + Opozorilo: wallet.dat je pokvarjena, podatki rešeni! Originalna wallet.dat je bila shranjena kot denarnica. {timestamp}.bak v %s; če imate napačno prikazano stanje na računu ali v transakcijah prenovite datoteko z varnostno kopijo. + + + + wallet.dat corrupt, salvage failed + wallet.dat poškodovana, neuspešna obnova + + + + Unknown -socks proxy version requested: %i + Zahtevana neznana -socks proxy različica: %i + + + + Unknown network specified in -onlynet: '%s' + Neznano omrežje določeno v -onlynet: '%s' + + + + Invalid -proxy address: '%s' + Neveljaven -proxy naslov: '%s' + + + + Invalid -tor address: '%s' + Neveljaven -tor naslov: '%s' + + + + Cannot resolve -bind address: '%s' + Ni mogoče določiti -bind naslova: '%s' + + + + Failed to listen on any port. Use -listen=0 if you want this. + Poslušanje za vrata je spodletelo. Če želite lahko uporabite ukaz -listen=0. + + + + Cannot resolve -externalip address: '%s' + Ni mogoče določiti -externalip naslova: '%s' + + + + Invalid amount for -reservebalance=<amount> + Neveljavni znesek za -reservebalance=<amount> + + + + Unable to sign checkpoint, wrong checkpointkey? + + Ni bilo mogoče vpisati točke preverjanja, napačen ključ za točko preverjanja? + + + + + Loading block index... + Nalaganje indeksa blokov ... + + + + Error loading blkindex.dat + Napaka pri nalaganju blkindex.dat + + + + Loading wallet... + Nalaganje denarnice ... + + + + Error loading wallet.dat: Wallet corrupted + Napaka pri nalaganju wallet.dat: denarnica pokvarjena + + + + 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. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Napaka pri nalaganju wallet.dat: denarnica zahteva novejšo verzijo BitBean + + + + Wallet needed to be rewritten: restart BitBean to complete + Denarnica mora biti prepisana: ponovno odprite BitBean za dokončanje + + + + Error loading wallet.dat + Napaka pri nalaganju wallet.dat + + + + Cannot downgrade wallet + Ne morem + + + + Cannot initialize keypool + Ni mogoče zagnati keypoola + + + + Cannot write default address + Ni mogoče zapisati privzetega naslova + + + + Rescanning... + Ponovno pregledovanje ... + + + + Importing blockchain data file. + Uvažanje blockchain podatkovne datoteke. + + + + Importing bootstrap blockchain data file. + Uvažanje podatkovne datoteke verige blokov. + + + + Loading addresses... + Nalaganje naslovov ... + + + + Error: could not start node + Napaka: ni mogoče zagnati vozlišča + + + + Done loading + Nalaganje končano + + + + Unable to bind to %s on this computer. BitBean is probably already running. + Navezava v %s na tem računalniku ni mogoča BitBean aplikacija je verjetno že zagnana. + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + Na tem računalniku je bilo nemogoče vezati na %s (bind returned error %d, %s) + + + + Error: Wallet locked, unable to create transaction + Napaka: Zaklenjena denarnica, ni mogoče opraviti transakcije + + + + Error: Wallet unlocked for staking only, unable to create transaction. + + + + + 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 zahteva transakcijsko provizijo vsaj %s zaradi svoje količine, kompleksnosti ali uporabo sredstev, ki ste jih prejeli pred kratkim. + + + + Error: Transaction creation failed + Napaka: Ustvarjanje transakcije spodletelo + + + + Sending... + Pošiljanje... + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Neveljavna količina + + + + Insufficient funds + Premalo sredstev + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Opozorilo: Prosimo preverite svoj datum in čas svojega računalnika! Če je vaša ura nastavljena napačno BitBean ne bo deloval. + + + + Warning: This version is obsolete, upgrade required! + Opozorilo: ta različica je zastarela, potrebna je nadgradnja! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + OPOZORILO: zaznana je bila kršitev s sinhronizirami točkami preverjanja, a je bila izpuščena. + + + + Warning: Disk space is low! + Opozorilo: Malo prostora na disku! + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + OPOZORILO: Najdene so bile neveljavne točke preverjanja! Prikazane transakcije so morda napačne! Poiščite novo različico aplikacije ali pa obvestite razvijalce. + + + + bitcoin-core + + BitBean version + BitBean različica + + + Usage: + Uporaba: + + + Send command to -server or BitBeand + Pošlji ukaz na -server ali Testoind + + + List commands + Prikaži ukaze + + + Get help for a command + Prikaži pomoč za ukaz + + + Options: + Možnosti: + + + Specify configuration file (default: BitBean.conf) + Določi konfiguracijsko datoteko (privzeto: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + Določi pid datoteko (privzeto: BitBean.pid) + + + Specify wallet file (within data directory) + Določi datoteko denarnice (znotraj imenika s podatki) + + + Specify data directory + Določi podatkovni imenik + + + Set database cache size in megabytes (default: 25) + Nastavi pomnilnik podatkovne zbirke v megabajtih (privzeto: 25) + + + Set database disk log size in megabytes (default: 100) + Nastavi velikost zapisa podatkovne baze na disku v megabajtih (privzeto: 100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Sprejmi povezave na <port> (privzeta vrata: 15714 ali testnet: 25714) + + + 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 + Poveži se na vozlišče da pridobiš naslove soležnikov in prekini povezavo + + + Specify your own public address + Določite vaš lasten javni naslov + + + Bind to given address. Use [host]:port notation for IPv6 + Naveži na dani naslov. Uporabi [host]:port ukaz za IPv6 + + + Stake your coins to support network and gain reward (default: 1) + Deleži svoje kovance za podporo omrežja in pridobi nagrado (default: 1) + + + 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) + Število sekund preden se ponovno povežejo neodzivni soležniki (privzeto: 86400) + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + Prišlo je do napake pri nastavljanju RPC porta %u za vhodne povezave na IPv4: %s + + + Detach block and address databases. Increases shutdown time (default: 0) + Loči podatkovne baze blokov in naslovov. Podaljša čas zaustavitve (privzeto: 0) + + + 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 je bila zavrnjena. To se je lahko zgodilo, če so bili kovanci v vaši denarnici že zapravljeni, na primer če ste uporabili kopijo wallet.dat in so bili kovanci zapravljeni v kopiji, a tu še niso bili označeni kot zapravljeni. + + + 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 zahteva transakcijsko provizijo vsaj %s zaradi svoje količine, kompleksnosti ali uporabo sredstev, ki ste jih prejeli pred kratkim. + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Sprejmi povezave na <port> (privzeta vrata: 15714 ali testnet: 25714) + + + Accept command line and JSON-RPC commands + Sprejmi ukaze iz ukazne vrstice in JSON-RPC + + + Error: Transaction creation failed + Napaka: Ustvarjanje transakcije spodletelo + + + Error: Wallet locked, unable to create transaction + Napaka: Zaklenjena denarnica, ni mogoče opraviti transakcije + + + Importing blockchain data file. + Uvažanje blockchain podatkovne datoteke. + + + Importing bootstrap blockchain data file. + Uvažanje podatkovne datoteke verige blokov. + + + 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) + Sprejmi zunanje povezave (privzeto: 1 če ni nastavljen -proxy ali -connect) + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + Prišlo je do napake pri nastavljanju RPC porta %u za vhodne povezave na IPv6: %s + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Napaka pri zagonu podatkovne baze okolja %s! Za popravilo, NAPRAVITE VARNOSTNO KOPIJO IMENIKA, in iz njega odstranite vse razen datoteke wallet.dat + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Nastavi maksimalno velikost visoke-prioritete/nizke-provizije transakcij v bajtih (privzeto: 27000) + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Opozorilo: -paytxfee je nastavljen zelo visoko! To je transakcijska provizija, ki jo boste plačali ob pošiljanju transakcije. + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Opozorilo: Prosimo preverite svoj datum in čas svojega računalnika! Če je vaša ura nastavljena napačno BitBean ne bo deloval. + + + 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. + Opozorilo: wallet.dat je pokvarjena, podatki rešeni! Originalna wallet.dat je bila shranjena kot denarnica. {timestamp}.bak v %s; če imate napačno prikazano stanje na računu ali v transakcijah prenovite datoteko z varnostno kopijo. + + + Attempt to recover private keys from a corrupt wallet.dat + Poizkusi rešiti zasebni ključ iz pokvarjene wallet.dat + + + Block creation options: + Možnosti ustvarjanja blokov: + + + Connect only to the specified node(s) + Poveži se samo na določena vozlišče(a) + + + Discover own IP address (default: 1 when listening and no -externalip) + Odkrij svoj IP naslov (privzeto: 1 ob poslušanju, ko ni aktiviran -externalip) + + + Failed to listen on any port. Use -listen=0 if you want this. + Poslušanje za vrata je spodletelo. Če želite lahko uporabite ukaz -listen=0. + + + Find peers using DNS lookup (default: 1) + Najdi soležnike z uporabno DNS vpogleda (privzeto: 1) + + + Sync checkpoints policy (default: strict) + Sinhronizacija načina točk preverjanja (privzeto: strogo) + + + Invalid -tor address: '%s' + Neveljaven -tor naslov: '%s' + + + Invalid amount for -reservebalance=<amount> + Neveljavni znesek za -reservebalance=<amount> + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Največji sprejemni medpomnilnik glede na povezavo, <n>*1000 bytov (privzeto: 5000) + + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Največji oddajni medpomnilnik glede na povezavo, <n>*1000 bytov (privzeto: 1000) + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Poveži se samo z vozlišči v omrežju <net> (IPv4, IPv6 in Tor) + + + Output extra debugging information. Implies all other -debug* options + Output dodatnih informacij razhroščevanja. Obsega vse druge -debug* možnosti. + + + Output extra network debugging information + Output dodatnih informacij razhroščevanja omrežja. + + + Prepend debug output with timestamp + Opremi output rahroščevanja s časovnim žigom. + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL možnosti: (glejte Bitcoin Wiki za navodla, kako nastaviti SSL) + + + Select the version of socks proxy to use (4-5, default: 5) + Izberi verzijo socks proxya za uporabo (4-5, privzeto: 5) + + + 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 + + + Send trace/debug info to debugger + Pošlji sledilne/razhroščevalne informacije v razhroščevalnik + + + Set maximum block size in bytes (default: 250000) + Nastavi največjo velikost bloka v bajtih (privzeto: 250000) + + + Set minimum block size in bytes (default: 0) + Nastavi najmanjšo velikost bloka v bajtih (privzeto: 0) + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Skrči debug.log datoteko ob zagonu aplikacije (privzeto: 1 ko ni aktiviran -debug) + + + Specify connection timeout in milliseconds (default: 5000) + Določi čas pavze povezovanja v milisekundah (privzeto: 5000) + + + Unable to sign checkpoint, wrong checkpointkey? + + Ni bilo mogoče vpisati točke preverjanja, napačen ključ za točko preverjanja? + + + + Use UPnP to map the listening port (default: 0) + Uporabi UPnP za mapiranje vrat poslušanja (privzeto: 0) + + + Use UPnP to map the listening port (default: 1 when listening) + Uporabi UPnP za mapiranje vrat poslušanja (privzeto: 1 med poslušanjem) + + + Use proxy to reach tor hidden services (default: same as -proxy) + Uporabi proxy za povezavo s skritimi storitvami tora (privzeto: isto kot -proxy) + + + Username for JSON-RPC connections + Uporabniško ime za JSON-RPC povezave + + + Verifying database integrity... + Potrdite neoporečnost baze podatkov... + + + WARNING: syncronized checkpoint violation detected, but skipped! + OPOZORILO: zaznana je bila kršitev s sinhronizirami točkami preverjanja, a je bila izpuščena. + + + Warning: Disk space is low! + Opozorilo: Malo prostora na disku! + + + Warning: This version is obsolete, upgrade required! + Opozorilo: ta različica je zastarela, potrebna je nadgradnja! + + + wallet.dat corrupt, salvage failed + wallet.dat poškodovana, neuspešna obnova + + + Password for JSON-RPC connections + Geslo za JSON-RPC povezave + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, nastaviti morate rpcgeslo v konfiguracijski datoteki: + %s +Priporočeno je, da uporabite naslednje naključno geslo: +rpcuser=BitBeanrpc +rpcpassword=%s +(tega gesla si vam ni potrebno zapomniti) +Uporabniško ime in geslo NE SMETA biti ista. +Če datoteka ne obstaja, jo ustvarite z lastniškimi dovoljenji za datoteke. +Prav tako je priporočeno, da nastavite alernotify, tkako da vas opozori na probleme; +na primer: alertnotify=echo %%s | mail -s "BitBean Alarm" admin@foo.com + + + + Find peers using internet relay chat (default: 0) + Najdi soležnike prek irca (privzeto: 0) + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Sinhroniziraj čas z drugimi vozlišči. Onemogoči, če je čas na vašem sistemu točno nastavljen, npr. sinhroniziranje z NTP (privzeto: 1) + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + Ob ustvarjanju transakcij, prezri vnose z manjšo vrednostjo kot (privzeto: 0.01) + + + 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) + Izvrši ukaz, ko se najboljši blok spremeni (%s je v cmd programu nadomeščen z zgoščenimi bloki). + + + 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) + + + Require a confirmations for change (default: 0) + Zahtevaj potrditve za spremembo (default: 0) + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Zahtevaj da transakcijske skripte uporabljajo operatorje canonical PUSH (privzeto: 1) + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Izvrši ukaz, ko je prejet relevanten alarm (%s je v cmd programu nadomeščen s sporočilom) + + + 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 + + + How many blocks to check at startup (default: 2500, 0 = all) + Koliko blokov naj preveri ob zagonu aplikacije (privzeto: 2500, 0 = vse) + + + How thorough the block verification is (0-6, default: 1) + Kako temeljito naj bo preverjanje blokov (0-6, privzeto: 1) + + + Imports blocks from external blk000?.dat file + Uvozi bloke iz zunanje blk000?.dat datoteke + + + 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) + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Dovoljeni kodirniki (privzeti: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + OPOZORILO: Najdene so bile neveljavne točke preverjanja! Prikazane transakcije so morda napačne! Poiščite novo različico aplikacije ali pa obvestite razvijalce. + + + This help message + To sporočilo pomoči + + + Wallet %s resides outside data directory %s. + Denarnica %s se nahaja zunaj datotečnega imenika %s. + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Ni bilo mogoče najti podatkovnega imenika %s. Aplikacija BitBean je verjetno že zagnana. + + + BitBean + BitBean + + + Unable to bind to %s on this computer (bind returned error %d, %s) + Na tem računalniku je bilo nemogoče vezati na %s (bind returned error %d, %s) + + + Connect through socks proxy + Poveži se skozi socks proxy + + + Allow DNS lookups for -addnode, -seednode and -connect + Omogoči DNS povezave za -addnode, -seednode in -connect + + + Loading addresses... + Nalaganje naslovov ... + + + Error loading blkindex.dat + Napaka pri nalaganju blkindex.dat + + + Error loading wallet.dat: Wallet corrupted + Napaka pri nalaganju wallet.dat: denarnica pokvarjena + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Napaka pri nalaganju wallet.dat: denarnica zahteva novejšo verzijo BitBean + + + Wallet needed to be rewritten: restart BitBean to complete + Denarnica mora biti prepisana: ponovno odprite BitBean za dokončanje + + + Error loading wallet.dat + Napaka pri nalaganju wallet.dat + + + Invalid -proxy address: '%s' + Neveljaven -proxy naslov: '%s' + + + Unknown network specified in -onlynet: '%s' + Neznano omrežje določeno v -onlynet: '%s' + + + Unknown -socks proxy version requested: %i + Zahtevana neznana -socks proxy različica: %i + + + Cannot resolve -bind address: '%s' + Ni mogoče določiti -bind naslova: '%s' + + + Cannot resolve -externalip address: '%s' + Ni mogoče določiti -externalip naslova: '%s' + + + Invalid amount for -paytxfee=<amount>: '%s' + Neveljavni znesek za -paytxfee=<amount>: '%s' + + + Error: could not start node + Napaka: ni mogoče zagnati vozlišča + + + Sending... + Pošiljanje... + + + 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 + + + Unable to bind to %s on this computer. BitBean is probably already running. + Navezava v %s na tem računalniku ni mogoča BitBean aplikacija je verjetno že zagnana. + + + Fee per KB to add to transactions you send + Provizija na KB ki jo morate dodati transakcijam, ki jih pošiljate + + + Invalid amount for -mininput=<amount>: '%s' + Neveljavni znesek za -miniput=<amount>: '%s' + + + Loading wallet... + Nalaganje denarnice ... + + + Cannot downgrade wallet + Ne morem + + + Cannot initialize keypool + Ni mogoče zagnati keypoola + + + Cannot write default address + Ni mogoče zapisati privzetega naslova + + + Rescanning... + Ponovno pregledovanje ... + + + Done loading + Nalaganje končano + + + To use the %s option + Za uporabo %s opcije + + + 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. + Nastaviti morate rpcpassword=<password> v konfiguracijski datoteki: +%s +Če datoteka ne obstaja, jo ustvarite z lastniškimi dovoljenji za datoteke. + + + diff --git a/src/qt/locale/bitcoin_sq.qm b/src/qt/locale/bitbean_sq.qm similarity index 56% rename from src/qt/locale/bitcoin_sq.qm rename to src/qt/locale/bitbean_sq.qm index a16f1bf..7c0109e 100644 Binary files a/src/qt/locale/bitcoin_sq.qm and b/src/qt/locale/bitbean_sq.qm differ diff --git a/src/qt/locale/bitcoin_sq.ts b/src/qt/locale/bitbean_sq.ts similarity index 60% rename from src/qt/locale/bitcoin_sq.ts rename to src/qt/locale/bitbean_sq.ts index 1f2f9e5..776bdb0 100644 --- a/src/qt/locale/bitcoin_sq.ts +++ b/src/qt/locale/bitbean_sq.ts @@ -1,120 +1,123 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + 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 - + Copy the currently selected address to the system clipboard Kopjo adresën e zgjedhur në memorjen e sistemit - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete &Fshi Copy &Label - + &Edit - + Export Address Book Data - + @@ -124,12 +127,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -153,34 +156,34 @@ 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 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -229,24 +232,29 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + @@ -255,12 +263,7 @@ This product includes software developed by the OpenSSL Project for use in the O Portofoli u enkriptua - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -298,337 +301,589 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet passphrase was successfully changed. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - Duke u sinkronizuar me rrjetin... + + Bean Control + - - &Overview - &Përmbledhje + + Quantity: + - - Show general overview of wallet - Trego një përmbledhje te përgjithshme të portofolit + + Bytes: + - - &Transactions - &Transaksionet + + Amount: + - - Browse transaction history - Shfleto historinë e transaksioneve + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - + + Tree mode + - - Quit application - Mbyllni aplikacionin + + List mode + - - Show information about BitBean - + + Amount + Sasia - - About &Qt - + + Label + Etiketë - - Show information about Qt - + + Address + Adresë - - &Options... - &Opsione + + Date + Data - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - + Confirmed + - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - Ndrysho frazkalimin e përdorur per enkriptimin e portofolit + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Skedar + + DUST + - - &Settings - &Konfigurimet + + yes + - - &Help - &Ndihmë + + no + - - Tabs toolbar - Shiriti i mjeteve + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testo rrjetin] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - - - - - %n active connection(s) to BitBean network - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - + + + (no label) + (pa etiketë) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + change from %1 (%2) + - - Not staking because wallet is locked - + + (change) + + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - + + Vault + - - - %n second(s) ago - + + + &Overview + &Përmbledhje - - &Unlock Wallet... - + + Show general overview of wallet + Trego një përmbledhje te përgjithshme të portofolit - - - %n minute(s) ago - + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Transaksionet + + + + Browse transaction history + Shfleto historinë e transaksioneve + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + + + + + Quit application + Mbyllni aplikacionin + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + &Opsione + + + + Modify configuration options for BitBean + + + + + &Show / Hide + + + + + &Encrypt Wallet... + + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + + + + + Backup wallet to another location + + + + + &Change Passphrase... + + + + + Change the passphrase used for wallet encryption + Ndrysho frazkalimin e përdorur per enkriptimin e portofolit + + + + &Unlock Wallet... + + + + + Unlock wallet + ç'kyç portofolin. + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + + + + + &Verify message... + + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + + + + + Open debugging and diagnostic console + + + + + &File + &Skedar + + + + &Settings + &Konfigurimet + + + + &Help + &Ndihmë + + + + Tabs toolbar + Shiriti i mjeteve + + + + Actions toolbar + + + + + + [testnet] + [testo rrjetin] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + Synchronizing with network... + Duke u sinkronizuar me rrjetin... + + + + ~%n block(s) remaining + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + %n minute(s) ago + + + + %n hour(s) ago - + + + + %n day(s) ago - + + + + Up to date - I azhornuar + I azhornuar Catching up... - Duke u azhornuar... + Duke u azhornuar... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Dërgo transaksionin + Dërgo transaksionin Incoming transaction - Transaksion në ardhje + Transaksion në ardhje @@ -637,347 +892,223 @@ Amount: %2 Type: %3 Address: %4 - + URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Portofoli po <b> enkriptohet</b> dhe është <b> i ç'kyçur</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> + Portofoli po <b> enkriptohet</b> dhe është <b> i kyçur</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + %n minute(s) - + + + + %n hour(s) - + + + + %n day(s) - - - - - Not staking - - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - - - - - ClientModel - - - Network Alert - - - - - CoinControlDialog - - - Coin Control - - - - - Quantity: - - - - - Bytes: - - - - - Amount: - - - - - Priority: - - - - - Fee: - - - - - Low Output: - - - - - no - - - - - After Fee: - - - - - Change: - - - - - (un)select all - + + + + - - Tree mode - - - - - List mode - - - - - Amount - Sasia - - - - Label - - - - - Address - Adresë + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - Date - Data + + Not staking because wallet is locked + - - Confirmations - + + Not staking because wallet is offline + - - Confirmed - + + Not staking because wallet is syncing + - - Priority - + + Not staking because you don't have mature beans + - - Copy address - + + Not staking + + + + BitcoinGUI - - Copy label - + Synchronizing with network... + Duke u sinkronizuar me rrjetin... - - - Copy amount - + &Overview + &Përmbledhje - - Copy transaction ID - + Show general overview of wallet + Trego një përmbledhje te përgjithshme të portofolit - - Copy quantity - + &Transactions + &Transaksionet - - Copy fee - + Browse transaction history + Shfleto historinë e transaksioneve - - Copy after fee - + Quit application + Mbyllni aplikacionin - - Copy bytes - + &Options... + &Opsione - - Copy priority - + Change the passphrase used for wallet encryption + Ndrysho frazkalimin e përdorur per enkriptimin e portofolit - - Copy low output - + &File + &Skedar - - Copy change - + &Settings + &Konfigurimet - - highest - + &Help + &Ndihmë - - high - + Tabs toolbar + Shiriti i mjeteve - - medium-high - + [testnet] + [testo rrjetin] - - medium - + Up to date + I azhornuar - - low-medium - + Catching up... + Duke u azhornuar... - - low - + Sent transaction + Dërgo transaksionin - - lowest - + Incoming transaction + Transaksion në ardhje - - DUST - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Portofoli po <b> enkriptohet</b> dhe është <b> i ç'kyçur</b> - - yes - + Wallet is <b>encrypted</b> and currently <b>locked</b> + Portofoli po <b> enkriptohet</b> dhe është <b> i kyçur</b> + + + ClientModel - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + + Network Alert + + + + CoinControlDialog - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Amount + Sasia - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Address + Adresë - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Date + Data - - (no label) - (pa etiketë) - - - - change from %1 (%2) - - - - - (change) - + (pa etiketë) EditAddressDialog - + Edit Address Ndrysho Adresën @@ -989,7 +1120,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -999,7 +1130,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1029,7 +1160,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1045,406 +1176,474 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Opsionet - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - + &Cancel - + &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + The supplied proxy address is invalid. - + OverviewPage - + Form Formilarë - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - - - - - Wallet - + - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: - + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + - Mined balance that has not yet matured - + Bean Stalk Height: + - - Total: - + + Sprouting Difficulty: + - - Your current total balance - + + Bean Weight: + - - <b>Recent transactions</b> - <b>Transaksionet e fundit</b> + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + Total: + + + + <b>Recent transactions</b> + <b>Transaksionet e fundit</b> - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1458,188 +1657,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Dërgo Monedha + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - + @@ -1647,296 +1846,358 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Dërgo marrësve të ndryshëm njëkohësisht + Dërgo marrësve të ndryshëm njëkohësisht Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - Balanca: + Balanca: 123.456 BC - + Confirm the send action - Konfirmo veprimin e dërgimit + Konfirmo veprimin e dërgimit S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - + Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - konfirmo dërgimin e monedhave + Confirm send beans + Are you sure you want to send %1? - + and - + 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. + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (pa etiketë) + (pa etiketë) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Formilarë - + A&mount: - Sh&uma: + Sh&uma: Pay &To: - Paguaj &drejt: + Paguaj &drejt: - + 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 + Krijoni një etiketë për këtë adresë që t'ja shtoni librit të adresave &Label: - &Etiketë: + &Etiketë: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Ngjit nga memorja e sistemit + Ngjit nga memorja e sistemit Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + Dërgo Monedha + + + Send to multiple recipients at once + Dërgo marrësve të ndryshëm njëkohësisht + + + Balance: + Balanca: + + + Confirm the send action + Konfirmo veprimin e dërgimit + + + Confirm send coins + konfirmo dërgimin e monedhave + + + The amount to pay must be larger than 0. + Shuma e paguar duhet të jetë më e madhe se 0. + + + (no label) + (pa etiketë) + + + + SendCoinsEntry + + A&mount: + Sh&uma: + + + Pay &To: + Paguaj &drejt: + + + 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ë: + + + Alt+A + Alt+A + + + Paste address from clipboard + Ngjit nga memorja e sistemit + + + Alt+P + Alt+P 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1957,76 +2218,76 @@ This label turns red, if the priority is smaller than "medium". Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2034,59 +2295,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2099,17 +2360,20 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + conflicted - + %1/offline - + @@ -2124,12 +2388,15 @@ This label turns red, if the priority is smaller than "medium". Status - + , broadcast through %n node(s) - + + + + @@ -2139,36 +2406,36 @@ This label turns red, if the priority is smaller than "medium". Source - + Generated - + From - + To - + own address - + label - + @@ -2177,17 +2444,20 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + + not accepted - + @@ -2195,52 +2465,52 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + @@ -2250,12 +2520,12 @@ This label turns red, if the priority is smaller than "medium". true - + false - + @@ -2271,7 +2541,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Detajet e transaksionit @@ -2316,32 +2586,35 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2361,7 +2634,7 @@ This label turns red, if the priority is smaller than "medium". Received from - + @@ -2375,8 +2648,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - Minuar + Minuar @@ -2386,27 +2663,27 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2415,37 +2692,37 @@ This label turns red, if the priority is smaller than "medium". All - + Today - + This week - + This month - + Last month - + This year - + Range... - + @@ -2460,7 +2737,7 @@ This label turns red, if the priority is smaller than "medium". To yourself - + @@ -2470,52 +2747,52 @@ This label turns red, if the priority is smaller than "medium". 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 Data - + @@ -2525,7 +2802,7 @@ This label turns red, if the priority is smaller than "medium". Confirmed - + @@ -2555,27 +2832,27 @@ This label turns red, if the priority is smaller than "medium". ID - + Error exporting - + Could not write to file %1. - + Range: - + to - + @@ -2583,693 +2860,693 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core - - BitBean version - + + To use the %s option + - Usage: - + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - + + Error + - List commands - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - + + BitBean version + - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - + Usage: + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send command to -server or BitBeand + - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - + List commands + - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - - - - - Threshold for disconnecting misbehaving peers (default: 100) - + Get help for a command + - 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 - - - - - Detach block and address databases. Increases shutdown time (default: 0) - - - - - 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 - - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - - - - - Accept command line and JSON-RPC commands - + BitBean + - - Error: Transaction creation failed - + + Options: + - - Error: Wallet locked, unable to create transaction - + + This help message + - - Importing blockchain data file. - + + Specify configuration file (default: BitBean.conf) + - Importing bootstrap blockchain data file. - + Specify pid file (default: BitBeand.pid) + - - Run in the background as a daemon and accept commands - + + Specify data directory + - Use the test network - + Specify wallet file (within data directory) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Set database cache size in megabytes (default: 25) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Set database disk log size in megabytes (default: 100) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Specify connection timeout in milliseconds (default: 5000) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Connect through socks proxy + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Select the version of socks proxy to use (4-5, default: 5) + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Use proxy to reach tor hidden services (default: same as -proxy) + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Allow DNS lookups for -addnode, -seednode and -connect + - - 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. - + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Maintain at most <n> connections to peers (default: 125) + - - Block creation options: - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node(s) - - - - - Discover own IP address (default: 1 when listening and no -externalip) - - - - - Failed to listen on any port. Use -listen=0 if you want this. - - - - - Find peers using DNS lookup (default: 1) - + - - Sync checkpoints policy (default: strict) - + + Connect to a node to retrieve peer addresses, and disconnect + - - Invalid -tor address: '%s' - + + Specify your own public address + - - Invalid amount for -reservebalance=<amount> - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Discover own IP address (default: 1 when listening and no -externalip) + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Find peers using internet relay chat (default: 0) + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Output extra debugging information. Implies all other -debug* options - + + Bind to given address. Use [host]:port notation for IPv6 + - Output extra network debugging information - + Find peers using DNS lookup (default: 1) + - Prepend debug output with timestamp - + Stake your beans to support network and gain reward (default: 1) + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Select the version of socks proxy to use (4-5, default: 5) - + + Sync checkpoints policy (default: strict) + - - Send trace/debug info to console instead of debug.log file - + + Threshold for disconnecting misbehaving peers (default: 100) + - Send trace/debug info to debugger - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Set maximum block size in bytes (default: 250000) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Set minimum block size in bytes (default: 0) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Use UPnP to map the listening port (default: 1 when listening) + - - Specify connection timeout in milliseconds (default: 5000) - + + Use UPnP to map the listening port (default: 0) + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Use UPnP to map the listening port (default: 0) - + + Fee per KB to add to transactions you send + - - Use UPnP to map the listening port (default: 1 when listening) - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Accept command line and JSON-RPC commands + - - Username for JSON-RPC connections - + + Run in the background as a daemon and accept commands + - - Verifying database integrity... - + + Use the test network + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Output extra debugging information. Implies all other -debug* options + - Warning: Disk space is low! - + Output extra network debugging information + - - Warning: This version is obsolete, upgrade required! - + + Prepend debug output with timestamp + - - wallet.dat corrupt, salvage failed - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Password for JSON-RPC connections - + + Send trace/debug info to console instead of debug.log file + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Send trace/debug info to debugger + - - Find peers using internet relay chat (default: 0) - + + Username for JSON-RPC connections + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Password for JSON-RPC connections + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - + 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) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Require a confirmations for change (default: 0) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Upgrade wallet to latest format - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + - + + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) - + How thorough the block verification is (0-6, default: 1) - + Imports blocks from external blk000?.dat file - + - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Invalid amount for -paytxfee=<amount>: '%s' + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - This help message - + + Invalid amount for -mininput=<amount>: '%s' + - + Wallet %s resides outside data directory %s. - + Cannot obtain a lock on data directory %s. BitBean is probably already running. - + - - BitBean - + + Verifying database integrity... + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect through socks proxy - + + 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. + - - Allow DNS lookups for -addnode, -seednode and -connect - + + wallet.dat corrupt, salvage failed + - - Loading addresses... - + + Unknown -socks proxy version requested: %i + - + + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Cannot resolve -externalip address: '%s' + + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - + Wallet needed to be rewritten: restart BitBean to complete - + Error loading wallet.dat - + - - Invalid -proxy address: '%s' - + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - + + Cannot write default address + - - Cannot resolve -bind address: '%s' - + + Rescanning... + - - Cannot resolve -externalip address: '%s' - + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - + + Importing bootstrap blockchain data file. + - - Error: could not start node - + + Loading addresses... + - - Sending... - + + Error: could not start node + - - Invalid amount - + + Done loading + - Insufficient funds - + Unable to bind to %s on this computer. BitBean is probably already running. + - - Loading block index... - + + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Add a node to connect to and attempt to keep the connection open - + + Error: Wallet locked, unable to create transaction + - - Unable to bind to %s on this computer. BitBean is probably already running. - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Fee per KB to add to transactions you send - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: Transaction creation failed + - - Loading wallet... - + + Sending... + - - Cannot downgrade wallet - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Cannot initialize keypool - + + Invalid amount + - Cannot write default address - + Insufficient funds + - Rescanning... - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Done loading - + + Warning: This version is obsolete, upgrade required! + - - To use the %s option - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Error - + + Warning: Disk space is low! + - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_sr.qm b/src/qt/locale/bitbean_sr.qm similarity index 50% rename from src/qt/locale/bitcoin_sr.qm rename to src/qt/locale/bitbean_sr.qm index 8af3981..2266bdc 100644 Binary files a/src/qt/locale/bitcoin_sr.qm and b/src/qt/locale/bitbean_sr.qm differ diff --git a/src/qt/locale/bitcoin_sr.ts b/src/qt/locale/bitbean_sr.ts similarity index 58% rename from src/qt/locale/bitcoin_sr.ts rename to src/qt/locale/bitbean_sr.ts index 57381c5..4028ccb 100644 --- a/src/qt/locale/bitcoin_sr.ts +++ b/src/qt/locale/bitbean_sr.ts @@ -1,95 +1,98 @@ - + + + +UTF-8 AboutDialog - + About BitBean О BitBean-u - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book Адресар - + Double-click to edit address or label Кликните два пута да промените адресу и/или етикету - + Create a new address Прави нову адресу - + Copy the currently selected address to the system clipboard Копира изабрану адресу на системски клипборд - + &New Address &Нова адреса - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &Прекопирај адресу - + Show &QR Code Прикажи &QR код - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list Уклони обележену адресу из листе - + Verify a message to ensure it was signed with a specified BitBean address - + @@ -97,7 +100,7 @@ This product includes software developed by the OpenSSL Project for use in the O &Потврди поруку - + &Delete &Избриши @@ -114,7 +117,7 @@ This product includes software developed by the OpenSSL Project for use in the O Export Address Book Data - + @@ -124,12 +127,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -153,34 +156,34 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog - + - + Enter passphrase Унесите лозинку - + New passphrase Нова лозинка - + Repeat new passphrase Поновите нову лозинку - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -229,24 +232,29 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + Да ли сте сигурни да желите да се новчаник шифује? - Are you sure you wish to encrypt your wallet? - Да ли сте сигурни да желите да се новчаник шифује? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + @@ -255,12 +263,7 @@ This product includes software developed by the OpenSSL Project for use in the O Новчаник је шифрован - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -302,333 +305,591 @@ This product includes software developed by the OpenSSL Project for use in the O - BitcoinGUI + BeanControlDialog - - Sign &message... - - - - - Synchronizing with network... - Синхронизација са мрежом у току... + + Bean Control + - - &Overview - &Општи преглед + + Quantity: + - - Show general overview of wallet - Погледајте општи преглед новчаника + + Bytes: + - - &Transactions - &Трансакције + + Amount: + Iznos: - - Browse transaction history - Претражите историјат трансакција + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - I&zlaz + + Tree mode + - - Quit application - Напустите програм + + List mode + - - Show information about BitBean - + + Amount + iznos - - About &Qt - О &Qt-у + + Label + Етикета - - Show information about Qt - Прегледајте информације о Qt-у + + Address + Адреса - - &Options... - П&оставке... + + Date + datum - - &Encrypt Wallet... - &Шифровање новчаника... + + Confirmations + - &Backup Wallet... - &Backup новчаника + Confirmed + Potvrdjen - - &Change Passphrase... - Промени &лозинку... - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + kopiraj adresu - - &Export... - + + Copy label + kopiraj naziv - - Send coins to a BitBean address - + + + Copy amount + kopiraj iznos - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - Мењање лозинке којом се шифрује новчаник + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - новчаник + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Фајл + + DUST + - - &Settings - &Подешавања + + yes + - - &Help - П&омоћ + + no + - - Tabs toolbar - Трака са картицама + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (без етикете) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + &Општи преглед - - - %n second(s) ago - + + + Show general overview of wallet + Погледајте општи преглед новчаника - - &Unlock Wallet... - + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + &Трансакције + + + + Browse transaction history + Претражите историјат трансакција + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + I&zlaz + + + + Quit application + Напустите програм + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + О &Qt-у + + + + Show information about Qt + Прегледајте информације о Qt-у + + + + &Options... + П&оставке... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + + + + + &Encrypt Wallet... + &Шифровање новчаника... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &Backup новчаника + + + + Backup wallet to another location + + + + + &Change Passphrase... + Промени &лозинку... + + + + Change the passphrase used for wallet encryption + Мењање лозинке којом се шифрује новчаник + + + + &Unlock Wallet... + + + + + Unlock wallet + Откључавање новчаника + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + + + + + &Verify message... + + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + + + + + Open debugging and diagnostic console + + + + + &File + &Фајл + + + + &Settings + &Подешавања + + + + &Help + П&омоћ + + + + Tabs toolbar + Трака са картицама + + + + Actions toolbar + + + + + + [testnet] + [testnet] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + + Synchronizing with network... + Синхронизација са мрежом у току... + + + + ~%n block(s) remaining + + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + - + + %n second(s) ago + + + + + + + + %n minute(s) ago - + + + + + %n hour(s) ago - + + + + + %n day(s) ago - + + + + + Up to date - Ажурно + Ажурно Catching up... - Ажурирање у току... + Ажурирање у току... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Послана трансакција + Послана трансакција Incoming transaction - Придошла трансакција + Придошла трансакција @@ -637,347 +898,283 @@ Amount: %2 Type: %3 Address: %4 - Datum: %1⏎ Iznos: %2⏎ Tip: %3⏎ Adresa: %4⏎ + Datum: %1⏎ Iznos: %2⏎ Tip: %3⏎ Adresa: %4⏎ URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Новчаник јс <b>шифрован</b> и тренутно <b>откључан</b> + Новчаник јс <b>шифрован</b> и тренутно <b>откључан</b> Wallet is <b>encrypted</b> and currently <b>locked</b> - Новчаник јс <b>шифрован</b> и тренутно <b>закључан</b> + Новчаник јс <b>шифрован</b> и тренутно <b>закључан</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + + %n minute(s) - + + + + + %n hour(s) - + + + + + %n day(s) - - - - - Not staking - + + + + + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - - - - - ClientModel - - - Network Alert - - - - - CoinControlDialog - - - Coin Control - - - - - Quantity: - - - - - Bytes: - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - Amount: - Iznos: + + Not staking because wallet is locked + - - Priority: - + + Not staking because wallet is offline + - - Fee: - + + Not staking because wallet is syncing + - - Low Output: - + + Not staking because you don't have mature beans + - - no - + + Not staking + + + + BitcoinGUI - - After Fee: - + Synchronizing with network... + Синхронизација са мрежом у току... - - Change: - + &Overview + &Општи преглед - - (un)select all - + Show general overview of wallet + Погледајте општи преглед новчаника - - Tree mode - + &Transactions + &Трансакције - - List mode - + Browse transaction history + Претражите историјат трансакција - - Amount - iznos + E&xit + I&zlaz - - Label - + Quit application + Напустите програм - - Address - Адреса + About &Qt + О &Qt-у - - Date - datum + Show information about Qt + Прегледајте информације о Qt-у - - Confirmations - + &Options... + П&оставке... - - Confirmed - Potvrdjen + &Encrypt Wallet... + &Шифровање новчаника... - - Priority - + &Backup Wallet... + &Backup новчаника - - Copy address - kopiraj adresu + &Change Passphrase... + Промени &лозинку... - - Copy label - kopiraj naziv + Change the passphrase used for wallet encryption + Мењање лозинке којом се шифрује новчаник - - - Copy amount - kopiraj iznos + Wallet + новчаник - - Copy transaction ID - + &File + &Фајл - - Copy quantity - + &Settings + &Подешавања - - Copy fee - + &Help + П&омоћ - - Copy after fee - + Tabs toolbar + Трака са картицама - - Copy bytes - + [testnet] + [testnet] - - Copy priority - + Up to date + Ажурно - - Copy low output - + Catching up... + Ажурирање у току... - - Copy change - + Sent transaction + Послана трансакција - - highest - + Incoming transaction + Придошла трансакција - - high - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum: %1⏎ Iznos: %2⏎ Tip: %3⏎ Adresa: %4⏎ - - medium-high - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Новчаник јс <b>шифрован</b> и тренутно <b>откључан</b> - - medium - + Wallet is <b>encrypted</b> and currently <b>locked</b> + Новчаник јс <b>шифрован</b> и тренутно <b>закључан</b> + + + ClientModel - - low-medium - + + Network Alert + + + + CoinControlDialog - - low - + Amount: + Iznos: - - lowest - + Amount + iznos - - DUST - + Address + Адреса - - yes - + Date + datum - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Confirmed + Potvrdjen - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Copy address + kopiraj adresu - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Copy label + kopiraj naziv - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy amount + kopiraj iznos - - (no label) - (без етикете) - - - - change from %1 (%2) - - - - - (change) - + (без етикете) EditAddressDialog - + Edit Address Измени адресу @@ -989,7 +1186,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -999,27 +1196,27 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + New receiving address - + New sending address - + Edit receiving address - + Edit sending address - + @@ -1029,7 +1226,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1039,199 +1236,199 @@ This label turns red, if the priority is smaller than "medium". New key generation failed. - + GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Korišćenje: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Поставке - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + @@ -1240,211 +1437,283 @@ This label turns red, if the priority is smaller than "medium". - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK &OK &Cancel - + &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + The supplied proxy address is invalid. - + OverviewPage - + Form Форма - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - новчаник + новчаник - + Spendable: - + - + Your current spendable balance - + - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: - + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + - Mined balance that has not yet matured - + Bean Stalk Height: + - - Total: - + + Sprouting Difficulty: + - - Your current total balance - + + Bean Weight: + - - <b>Recent transactions</b> - <b>Недавне трансакције</b> + + Connections: + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + Total Beans: + - - Total of coins that was staked, and do not yet count toward the current balance - + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + - + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + + Total: + + + + <b>Recent transactions</b> + <b>Недавне трансакције</b> + + + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Iznos: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1458,188 +1727,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Слање новца + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - Iznos: + Iznos: @@ -1647,296 +1916,338 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - + Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - + 123.456 BC - + Confirm the send action - Потврди акцију слања + Потврди акцију слања S&end - &Пошаљи + &Пошаљи - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - kopiraj iznos + kopiraj iznos Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (без етикете) + (без етикете) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Форма - + A&mount: - + Pay &To: - + - + Enter a label for this address to add it to your address book - + &Label: - &Етикета + &Етикета The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+ + Paste address from clipboard - + Alt+P - Alt+П + Alt+П + + + + Remove this recipient + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Send Coins + Слање новца + + + Amount: + Iznos: + + + Confirm the send action + Потврди акцију слања + + + S&end + &Пошаљи + + + Copy amount + kopiraj iznos + + + (no label) + (без етикете) + + + + SendCoinsEntry + + &Label: + &Етикета - - Remove this recipient - + Alt+A + Alt+ - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Alt+P + Alt+П 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1947,7 +2258,7 @@ This label turns red, if the priority is smaller than "medium". Paste address from clipboard - + @@ -1957,76 +2268,76 @@ This label turns red, if the priority is smaller than "medium". Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2034,59 +2345,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2099,17 +2410,21 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + + conflicted - + %1/offline - + @@ -2124,12 +2439,16 @@ This label turns red, if the priority is smaller than "medium". Status - + , broadcast through %n node(s) - + + + + + @@ -2139,31 +2458,31 @@ This label turns red, if the priority is smaller than "medium". Source - + Generated - + From - + To - + own address - + @@ -2177,17 +2496,21 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + + + not accepted - + @@ -2195,52 +2518,52 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + @@ -2250,12 +2573,12 @@ This label turns red, if the priority is smaller than "medium". true - + false - + @@ -2271,7 +2594,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details detalji transakcije @@ -2316,32 +2639,36 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2375,8 +2702,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - Minirano + Minirano @@ -2500,7 +2831,7 @@ This label turns red, if the priority is smaller than "medium". Copy transaction ID - + @@ -2510,12 +2841,12 @@ This label turns red, if the priority is smaller than "medium". Show transaction details - + Export Transaction Data - + @@ -2555,17 +2886,17 @@ This label turns red, if the priority is smaller than "medium". ID - + Error exporting - + Could not write to file %1. - + @@ -2583,694 +2914,798 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core + + + To use the %s option + + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + + - + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + + + + BitBean version - + Usage: - Korišćenje: + Korišćenje: Send command to -server or BitBeand - + List commands - Listaj komande + Listaj komande Get help for a command - Zatraži pomoć za komande + Zatraži pomoć za komande - + + BitBean + + + + Options: - Opcije + Opcije - + + This help message + Ova poruka Pomoći + + + Specify configuration file (default: BitBean.conf) - + Specify pid file (default: BitBeand.pid) - + - - Specify wallet file (within data directory) - + + Specify data directory + Gde je konkretni data direktorijum - - Specify data directory - Gde je konkretni data direktorijum + + Specify wallet file (within data directory) + - + Set database cache size in megabytes (default: 25) - + Set database disk log size in megabytes (default: 100) - + - + + Specify connection timeout in milliseconds (default: 5000) + + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) - + Maintain at most <n> connections to peers (default: 125) - Održavaj najviše <n> konekcija po priključku (default: 125) + Održavaj najviše <n> konekcija po priključku (default: 125) - + + Add a node to connect to and attempt to keep the connection open + + + + + Connect only to the specified node(s) + + + + Connect to a node to retrieve peer addresses, and disconnect - + Specify your own public address - + - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + + + + + Discover own IP address (default: 1 when listening and no -externalip) + + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 - + - - Stake your coins to support network and gain reward (default: 1) - + + Find peers using DNS lookup (default: 1) + - + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + 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 - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Detach block and address databases. Increases shutdown time (default: 0) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + + + + + Use UPnP to map the listening port (default: 1 when listening) + - - 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. - + + Use UPnP to map the listening port (default: 0) + - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - + Accept command line and JSON-RPC commands - Prihvati komandnu liniju i JSON-RPC komande + Prihvati komandnu liniju i JSON-RPC komande - - Error: Transaction creation failed - + + Run in the background as a daemon and accept commands + Radi u pozadini kao daemon servis i prihvati komande - - Error: Wallet locked, unable to create transaction - + + Use the test network + Koristi testnu mrežu - - Importing blockchain data file. - + + Output extra debugging information. Implies all other -debug* options + - Importing bootstrap blockchain data file. - + Output extra network debugging information + - - Run in the background as a daemon and accept commands - Radi u pozadini kao daemon servis i prihvati komande + + Prepend debug output with timestamp + - Use the test network - Koristi testnu mrežu + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Send trace/debug info to console instead of debug.log file + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Send trace/debug info to debugger + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Username for JSON-RPC connections + Korisničko ime za JSON-RPC konekcije - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Password for JSON-RPC connections + Lozinka za JSON-RPC konekcije - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Allow JSON-RPC connections from specified IP address + Dozvoli JSON-RPC konekcije sa posebne IP adrese - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + 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) - - 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. - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + - - Block creation options: - + + Require a confirmations for change (default: 0) + - - Connect only to the specified node(s) - + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + - - Discover own IP address (default: 1 when listening and no -externalip) - + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + - - Failed to listen on any port. Use -listen=0 if you want this. - + + Upgrade wallet to latest format + - - Find peers using DNS lookup (default: 1) - + + Set key pool size to <n> (default: 100) + Odredi veličinu zaštićenih ključeva na <n> (default: 100) - - Sync checkpoints policy (default: strict) - + + Rescan the block chain for missing wallet transactions + Ponovo skeniraj lanac blokova za nedostajuće transakcije iz novčanika - - Invalid -tor address: '%s' - + + Attempt to recover private keys from a corrupt wallet.dat + - - Invalid amount for -reservebalance=<amount> - + + How many blocks to check at startup (default: 2500, 0 = all) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + How thorough the block verification is (0-6, default: 1) + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Imports blocks from external blk000?.dat file + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Output extra debugging information. Implies all other -debug* options - + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - Output extra network debugging information - + Use OpenSSL (https) for JSON-RPC connections + Koristi OpenSSL (https) za JSON-RPC konekcije - Prepend debug output with timestamp - + Server certificate file (default: server.cert) + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Server private key (default: server.pem) + privatni ključ za Server (podrazumevan: server.pem) - - Select the version of socks proxy to use (4-5, default: 5) - + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Send trace/debug info to console instead of debug.log file - + + Invalid amount for -paytxfee=<amount>: '%s' + - Send trace/debug info to debugger - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - Set maximum block size in bytes (default: 250000) - + + Invalid amount for -mininput=<amount>: '%s' + - - Set minimum block size in bytes (default: 0) - + + Wallet %s resides outside data directory %s. + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Specify connection timeout in milliseconds (default: 5000) - + + Verifying database integrity... + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Use UPnP to map the listening port (default: 0) - + + 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. + - - Use UPnP to map the listening port (default: 1 when listening) - + + wallet.dat corrupt, salvage failed + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Unknown -socks proxy version requested: %i + - - Username for JSON-RPC connections - Korisničko ime za JSON-RPC konekcije + + Unknown network specified in -onlynet: '%s' + - - Verifying database integrity... - + + Invalid -proxy address: '%s' + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Invalid -tor address: '%s' + - Warning: Disk space is low! - + Cannot resolve -bind address: '%s' + - - Warning: This version is obsolete, upgrade required! - + + Failed to listen on any port. Use -listen=0 if you want this. + - - wallet.dat corrupt, salvage failed - + + Cannot resolve -externalip address: '%s' + - - Password for JSON-RPC connections - Lozinka za JSON-RPC konekcije + + Invalid amount for -reservebalance=<amount> + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + Unable to sign checkpoint, wrong checkpointkey? - - - - - Find peers using internet relay chat (default: 0) - + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Loading block index... + Učitavam blok indeksa... - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Error loading blkindex.dat + - - Allow JSON-RPC connections from specified IP address - Dozvoli JSON-RPC konekcije sa posebne IP adrese + + Loading wallet... + Новчаник се учитава... - 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) + Error loading wallet.dat: Wallet corrupted + Грешка током учитавања wallet.dat: Новчаник је покварен - Execute command when the best block changes (%s in cmd is replaced by block hash) - + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Error loading wallet.dat: Wallet requires newer version of BitBean + - - Require a confirmations for change (default: 0) - + + Wallet needed to be rewritten: restart BitBean to complete + - Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Error loading wallet.dat + Грешка током учитавања wallet.dat - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + + Cannot downgrade wallet + - - Upgrade wallet to latest format - + + Cannot initialize keypool + - Set key pool size to <n> (default: 100) - Odredi veličinu zaštićenih ključeva na <n> (default: 100) + Cannot write default address + - Rescan the block chain for missing wallet transactions - Ponovo skeniraj lanac blokova za nedostajuće transakcije iz novčanika + Rescanning... + Ponovo skeniram... - - How many blocks to check at startup (default: 2500, 0 = all) - + + Importing blockchain data file. + - How thorough the block verification is (0-6, default: 1) - + Importing bootstrap blockchain data file. + - Imports blocks from external blk000?.dat file - + Loading addresses... + učitavam adrese.... - - Use OpenSSL (https) for JSON-RPC connections - Koristi OpenSSL (https) za JSON-RPC konekcije + + Error: could not start node + - Server certificate file (default: server.cert) - + Done loading + Završeno učitavanje - Server private key (default: server.pem) - privatni ključ za Server (podrazumevan: server.pem) + Unable to bind to %s on this computer. BitBean is probably already running. + + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + Error: Wallet locked, unable to create transaction + - + Error: Wallet unlocked for staking only, unable to create transaction. - + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - This help message - Ova poruka Pomoći + + Error: Transaction creation failed + - - Wallet %s resides outside data directory %s. - + + Sending... + - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - BitBean - + + Invalid amount + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Insufficient funds + - - Connect through socks proxy - + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - učitavam adrese.... - - - - Error loading blkindex.dat - + Warning: This version is obsolete, upgrade required! + - - Error loading wallet.dat: Wallet corrupted - Грешка током учитавања wallet.dat: Новчаник је покварен + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Error loading wallet.dat: Wallet requires newer version of BitBean - + + Warning: Disk space is low! + - Wallet needed to be rewritten: restart BitBean to complete - + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Error loading wallet.dat - Грешка током учитавања wallet.dat + Usage: + Korišćenje: - - Invalid -proxy address: '%s' - + List commands + Listaj komande - - Unknown network specified in -onlynet: '%s' - + Get help for a command + Zatraži pomoć za komande - - Unknown -socks proxy version requested: %i - + Options: + Opcije - - Cannot resolve -bind address: '%s' - + Specify data directory + Gde je konkretni data direktorijum - - Cannot resolve -externalip address: '%s' - + Maintain at most <n> connections to peers (default: 125) + Održavaj najviše <n> konekcija po priključku (default: 125) + - - Invalid amount for -paytxfee=<amount>: '%s' - + Accept command line and JSON-RPC commands + Prihvati komandnu liniju i JSON-RPC komande - - Error: could not start node - + Run in the background as a daemon and accept commands + Radi u pozadini kao daemon servis i prihvati komande - - Sending... - + Use the test network + Koristi testnu mrežu - - Invalid amount - + Username for JSON-RPC connections + Korisničko ime za JSON-RPC konekcije - - Insufficient funds - + Password for JSON-RPC connections + Lozinka za JSON-RPC konekcije - - Loading block index... - Učitavam blok indeksa... + Allow JSON-RPC connections from specified IP address + Dozvoli JSON-RPC konekcije sa posebne IP adrese - - Add a node to connect to and attempt to keep the connection open - + 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) - - Unable to bind to %s on this computer. BitBean is probably already running. - + Set key pool size to <n> (default: 100) + Odredi veličinu zaštićenih ključeva na <n> (default: 100) - - Fee per KB to add to transactions you send - + Rescan the block chain for missing wallet transactions + Ponovo skeniraj lanac blokova za nedostajuće transakcije iz novčanika - - Invalid amount for -mininput=<amount>: '%s' - + Use OpenSSL (https) for JSON-RPC connections + Koristi OpenSSL (https) za JSON-RPC konekcije - - Loading wallet... - Новчаник се учитава... + Server private key (default: server.pem) + privatni ključ za Server (podrazumevan: server.pem) - - Cannot downgrade wallet - + This help message + Ova poruka Pomoći - - Cannot initialize keypool - + Loading addresses... + učitavam adrese.... - - Cannot write default address - + Error loading wallet.dat: Wallet corrupted + Грешка током учитавања wallet.dat: Новчаник је покварен - - Rescanning... - Ponovo skeniram... + Error loading wallet.dat + Грешка током учитавања wallet.dat - - Done loading - Završeno učitavanje + Loading block index... + Učitavam blok indeksa... - - To use the %s option - + Loading wallet... + Новчаник се учитава... - - Error - + Rescanning... + Ponovo skeniram... - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + Done loading + Završeno učitavanje - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_sv.qm b/src/qt/locale/bitbean_sv.qm new file mode 100644 index 0000000..9173b78 Binary files /dev/null and b/src/qt/locale/bitbean_sv.qm differ diff --git a/src/qt/locale/bitbean_sv.ts b/src/qt/locale/bitbean_sv.ts new file mode 100644 index 0000000..47fbc43 --- /dev/null +++ b/src/qt/locale/bitbean_sv.ts @@ -0,0 +1,4897 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + Vad du behöver veta om BTestcoin + + + + <b>BitBean</b> version + <b>BitBean</b> version + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +Detta är experimentell mjukvara. + + +Distribuerad under mjukvarulicensen MIT/X11, se den medföljande filen COPYING eller http://www.opensource.org/licenses/mit-license.php. + +Denna 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. + + + + AddressBookPage + + + Address Book + Adressbok + + + + Double-click to edit address or label + Dubbel-klicka för att ändra adressen eller etiketten + + + + Create a new address + Skapa ny adress + + + + Copy the currently selected address to the system clipboard + Kopiera den markerade adressen till systemets Urklipp + + + + &New Address + Ny adress + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + Dessa är dina BitBean adesser för att mottaga betalningsförsändelser. Du kan även använda olika adresser för varje avsändare för att enkelt hålla koll på vem som har skickat en betalning. + + + + &Copy Address + &Kopiera adress + + + + Show &QR Code + Visa &QR kod + + + + Sign a message to prove you own a BitBean address + Signera ett meddelande för att bevisa att du äger BitBean adressen + + + + Sign &Message + Signera &Meddelande + + + + Delete the currently selected address from the list + Ta bort den valda adressen från listan + + + + Verify a message to ensure it was signed with a specified BitBean address + Verifiera ett meddelande för att försäkra dig över att det var signerat av en specifik BitBean adress + + + + &Verify Message + &Verifiera meddelande + + + + &Delete + &Radera + + + + Copy &Label + Kopiera &etikett + + + + &Edit + &Editera + + + + Export Address Book Data + Exportera adressboken + + + + Comma separated file (*.csv) + Kommaseparerad fil (*.csv) + + + + Error exporting + Exportera felmeddelanden + + + + Could not write to file %1. + Kunde inte skriva till fil %1 + + + + AddressTableModel + + + Label + Etikett + + + + Address + Adress + + + + (no label) + (Ingen etikett) + + + + AskPassphraseDialog + + + Passphrase Dialog + Lösenords Dialog + + + + Enter passphrase + Ange lösenord + + + + New passphrase + Nytt lösenord + + + + Repeat new passphrase + Upprepa nytt lösenord + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + Avaktiverar "sendmoney" om ditt operativsystem har blivit äventyrat. ger ingen verklig säkerhet. + + + + For staking only + Endast för "staking" + + + + 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 COINS</b>! + Varning: Om du krypterar plånboken och glömmer lösenordet, kommer du att <b>FÖRLORA ALLA COINS</b>! + + + + Are you sure you wish to encrypt your wallet? + Är du säker på att du vill kryptera din plånbok? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + 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 + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + BTestcoin plånboken kommer nu att stängas för att slutföra krypteringen: Kom ihåg att även en krypterad plånboks säkerhet kan äventyras genom keyloggers eller dylika malwares. + + + + + + + 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. + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + Antal: + + + + Bytes: + Bytes: + + + + Amount: + Belopp: + + + + Priority: + Prioritet: + + + + Fee: + Avgift: + + + + Low Output: + + + + + After Fee: + Efter avgift: + + + + Change: + Ändra: + + + + (un)select all + välj/avvälj alla + + + + Tree mode + Träd visning + + + + List mode + List visning + + + + Amount + Mängd + + + + Label + + + + + Address + Adress + + + + Date + Datum + + + + Confirmations + Bekräftelser + + + + Confirmed + Bekräftad + + + + Priority + Prioritet + + + + Copy address + Kopiera adress + + + + Copy label + Kopiera etikett + + + + + Copy amount + Kopiera belopp + + + + Copy transaction ID + Kopiera transaktions ID + + + + Copy quantity + Kopiera antal + + + + Copy fee + Kopiera avgift + + + + Copy after fee + Kopiera efter avgift + + + + Copy bytes + Kopiera bytes + + + + Copy priority + Kopiera prioritet + + + + Copy low output + + + + + Copy change + + + + + highest + högst + + + + high + hög + + + + medium-high + medium-hög + + + + medium + + + + + low-medium + låg-medium + + + + low + låg + + + + lowest + lägsta + + + + DUST + STOFT + + + + yes + ja + + + + no + nej + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Denna label blir röd, om storleken på transaktionen är över 10000 bytes. + + Detta betyder att en avgift på %1 per kb måste betalas. + + Kan variera +/- 1 Byte per ingång. + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Transaktioner med en högre prioritet har en större sannolikhet att bli adderat till ett block. + +Denna label blir röd, om prioriteten är lägre än "medium". + +Detta betyder att en avgift på minst %1 krävs. + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Denna label blir röd, om en mottagare får en mängd mindre än %1 + +Detta betyder att en avgift på minst %2 krävs. + +Mängder under 0,546 gånger minimiavgiften visas som DUST. + + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Denna label blir röd, om ändringen är mindre än %1. + +Detta betyder att en avgift på minst %2 krävs. + + + + + (no label) + (Ingen etikett) + + + + change from %1 (%2) + ändra från %1(%2) + + + + (change) + (ändra) + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Ett fatalt fel uppstod. BTestcoin kan inte fortsätta och stänger programmet. + + + + BitBean + BitBean + + + + Vault + + + + + &Overview + &Översikt + + + + Show general overview of wallet + Visa översiktsvy av plånbok + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Visa adresslista för att mottaga betalningar + + + + &Transactions + &Transaktioner + + + + Browse transaction history + Bläddra i transaktionshistorik + + + + &Address Book + &Adress bok + + + + Edit the list of stored addresses and labels + Editera listan över sparade adresser och deras namn + + + + E&xit + &Avsluta + + + + Quit application + Avsluta programmet + + + + &About BitBean + &Om BitBean + + + + Show information about BitBean + Visa information om BitBean + + + + About &Qt + Om &Qt + + + + Show information about Qt + Visa information om Qt + + + + &Options... + &Alternativ... + + + + Modify configuration options for BitBean + Modifiera konfigurations-alternativ för BitBean + + + + &Show / Hide + &Visa / Göm + + + + &Encrypt Wallet... + &Kryptera plånbok... + + + + Encrypt or decrypt wallet + Kryptera eller avkryptera plånbok + + + + &Backup Wallet... + &Säkerhetskopiera plånbok... + + + + Backup wallet to another location + Säkerhetskopiera plånboken till en annan plats + + + + &Change Passphrase... + &Byt Lösenord... + + + + Change the passphrase used for wallet encryption + Byt lösenord för kryptering av plånbok + + + + &Unlock Wallet... + Lås &Upp plånboken + + + + Unlock wallet + Lås upp plånbok + + + + &Lock Wallet + &Lås plånbok + + + + Lock wallet + Lås plånbok + + + + Sign &message... + Signera &meddelande... + + + + &Verify message... + &Verifiera meddelande... + + + + &Export... + &Exportera... + + + + Export the data in the current tab to a file + Exportera datan i tabben till en fil + + + + &Debug window + &Debug fönster + + + + Open debugging and diagnostic console + Öppna debug- och diagnostikkonsolen + + + + &File + &Arkiv + + + + &Settings + &Inställningar + + + + &Help + &Hjälp + + + + Tabs toolbar + Verktygsfält för Tabbar + + + + Actions toolbar + Verktygsfält för handlingar + + + + + [testnet] + [testnet] + + + + + BitBean client + BitBean klient + + + + %n active connection(s) to BitBean network + + %n aktiv anslutning till BitBean nätverket + %n aktiva anslutning till BitBean nätverket + + + + + Synchronizing with network... + Synkroniserar med nätverk... + + + + ~%n block(s) remaining + + ~%n block remaining + ~%n block kvar + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Laddat ner %1 av %2 block av transaktions-historiken (%3% klart) + + + + Downloaded %1 blocks of transaction history. + Laddade ner %1 block av transaktionshistoriken. + + + + %n second(s) ago + + %n sekund sen + %n sekunder sen + + + + + %n minute(s) ago + + %n minut sen + %n minuter sen + + + + + %n hour(s) ago + + %n timme sen + %n timmar sen + + + + + %n day(s) ago + + %n dag sen + %n dagar sen + + + + + Up to date + Uppdaterad + + + + Catching up... + Hämtar senaste... + + + + Last received block was generated %1. + Senaste mottagna block genererades %1. + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Denna transaktion är över gränsen. Du kan ändå skicka den med en %1 avgift, som går till noderna som processerar din transaktion och hjälper till med att upprätthålla nätverket. Vill du betala denna avgift? + + + + Confirm transaction fee + Bekräfta transaktionsavgiften + + + + Sent transaction + Transaktion skickad + + + + Incoming transaction + Inkommande transaktion + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum: %1 +Belopp: %2 +Typ: %3 +Adress: %4 + + + + + + URI handling + URI hantering + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI:n kan inte tolkas! Detta kan bero på en ogiltig BitBean adress eller felaktiga URI parametrar. + + + + 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> + + + + Backup Wallet + Säkerhetskopiera plånbok + + + + Wallet Data (*.dat) + Plånboksdata (*.dat) + + + + Backup Failed + Säkerhetskopieringen misslyckades + + + + There was an error trying to save the wallet data to the new location. + Ett fel uppstod vid sparandet av plånboken till den nya platsen. + + + + %n second(s) + + %n sekund + %n sekunder + + + + + %n minute(s) + + %n minut + %n minuter + + + + + %n hour(s) + + %n timme + %n timmar + + + + + %n day(s) + + %n dag + %n dagar + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Staking.<br>Din vikt är %1<br>Nätverkets vikt är %2<br>Uppskattad tid för att få belöning är %3 + + + + Not staking because wallet is locked + Ingen staking för att plånboken är låst + + + + Not staking because wallet is offline + Ingen staking för att plånboken är offline + + + + Not staking because wallet is syncing + Ingen staking för att plånboken synkroniseras + + + + Not staking because you don't have mature beans + + + + + Not staking + Ingen staking + + + + BitcoinGUI + + Sign &message... + Signera &meddelande... + + + Synchronizing with network... + Synkroniserar med nätverk... + + + &Overview + &Översikt + + + Show general overview of wallet + Visa översiktsvy av plånbok + + + &Transactions + &Transaktioner + + + Browse transaction history + Bläddra i transaktionshistorik + + + &Address Book + &Adress bok + + + Edit the list of stored addresses and labels + Editera listan över sparade adresser och deras namn + + + &Receive coins + &Ta emot coins + + + Show the list of addresses for receiving payments + Visa adresslista för att mottaga betalningar + + + &Send coins + &Skicka coins + + + E&xit + &Avsluta + + + Quit application + Avsluta programmet + + + Show information about BitBean + Visa information om BitBean + + + 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... + + + ~%n block(s) remaining + + ~%n block remaining + ~%n block kvar + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + Laddat ner %1 av %2 block av transaktions-historiken (%3% klart) + + + &Export... + &Exportera... + + + Send coins to a BitBean address + Skicka coins till en BitBean adress + + + Modify configuration options for BitBean + Modifiera konfigurations-alternativ för BitBean + + + Export the data in the current tab to a file + Exportera datan i tabben till en fil + + + Encrypt or decrypt wallet + Kryptera eller avkryptera plånbok + + + 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... + + + BitBean + BitBean + + + Wallet + Plånbok + + + &About BitBean + &Om BitBean + + + &Show / Hide + &Visa / Göm + + + Unlock wallet + Lås upp plånbok + + + &Lock Wallet + &Lås plånbok + + + Lock wallet + Lås plånbok + + + &File + &Arkiv + + + &Settings + &Inställningar + + + &Help + &Hjälp + + + Tabs toolbar + Verktygsfält för Tabbar + + + Actions toolbar + Verktygsfält för handlingar + + + [testnet] + [testnet] + + + BitBean client + BitBean klient + + + %n active connection(s) to BitBean network + + %n aktiv anslutning till BitBean nätverket + %n aktiva anslutning till BitBean nätverket + + + + Downloaded %1 blocks of transaction history. + Laddade ner %1 block av transaktionshistoriken. + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Staking.<br>Din vikt är %1<br>Nätverkets vikt är %2<br>Uppskattad tid för att få belöning är %3 + + + Not staking because wallet is locked + Ingen staking för att plånboken är låst + + + Not staking because wallet is offline + Ingen staking för att plånboken är offline + + + Not staking because wallet is syncing + Ingen staking för att plånboken synkroniseras + + + Not staking because you don't have mature coins + Ingen staking för att dina coins är ännu inte föråldrade + + + %n second(s) ago + + %n sekund sen + %n sekunder sen + + + + &Unlock Wallet... + Lås &Upp plånboken + + + %n minute(s) ago + + %n minut sen + %n minuter sen + + + + %n hour(s) ago + + %n timme sen + %n timmar sen + + + + %n day(s) ago + + %n dag sen + %n dagar sen + + + + Up to date + Uppdaterad + + + Catching up... + Hämtar senaste... + + + Last received block was generated %1. + Senaste mottagna block genererades %1. + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Denna transaktion är över gränsen. Du kan ändå skicka den med en %1 avgift, som går till noderna som processerar din transaktion och hjälper till med att upprätthålla nätverket. Vill du betala denna avgift? + + + Confirm transaction fee + Bekräfta transaktionsavgiften + + + Sent transaction + Transaktion skickad + + + Incoming transaction + Inkommande transaktion + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Datum: %1 +Belopp: %2 +Typ: %3 +Adress: %4 + + + + URI handling + URI hantering + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI:n kan inte tolkas! Detta kan bero på en ogiltig BitBean adress eller felaktiga URI parametrar. + + + 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> + + + Backup Wallet + Säkerhetskopiera plånbok + + + Wallet Data (*.dat) + Plånboksdata (*.dat) + + + Backup Failed + Säkerhetskopieringen misslyckades + + + There was an error trying to save the wallet data to the new location. + Ett fel uppstod vid sparandet av plånboken till den nya platsen. + + + %n second(s) + + %n sekund + %n sekunder + + + + %n minute(s) + + %n minut + %n minuter + + + + %n hour(s) + + %n timme + %n timmar + + + + %n day(s) + + %n dag + %n dagar + + + + Not staking + Ingen staking + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Ett fatalt fel uppstod. BTestcoin kan inte fortsätta och stänger programmet. + + + + ClientModel + + + Network Alert + Nätverkslarm + + + + CoinControlDialog + + Coin Control + Coin kontroll + + + Quantity: + Antal: + + + Bytes: + Bytes: + + + Amount: + Belopp: + + + Priority: + Prioritet: + + + Fee: + Avgift: + + + Low Output: + Låg utskrift: + + + no + nej + + + After Fee: + Efter avgift: + + + Change: + Ändra: + + + (un)select all + välj/avvälj alla + + + Tree mode + Träd visning + + + List mode + List visning + + + Amount + Mängd + + + Label + etikett + + + Address + Adress + + + Date + Datum + + + Confirmations + Bekräftelser + + + Confirmed + Bekräftad + + + Priority + Prioritet + + + Copy address + Kopiera adress + + + Copy label + Kopiera etikett + + + Copy amount + Kopiera belopp + + + Copy transaction ID + Kopiera transaktions ID + + + Copy quantity + Kopiera antal + + + Copy fee + Kopiera avgift + + + Copy after fee + Kopiera efter avgift + + + Copy bytes + Kopiera bytes + + + Copy priority + Kopiera prioritet + + + Copy low output + Kopiera låg utskrift + + + Copy change + Kopiera förändringarna + + + highest + högst + + + high + hög + + + medium-high + medium-hög + + + medium + medium + + + low-medium + låg-medium + + + low + låg + + + lowest + lägsta + + + DUST + STOFT + + + yes + ja + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + Denna label blir röd, om storleken på transaktionen är över 10000 bytes. + + Detta betyder att en avgift på %1 per kb måste betalas. + + Kan variera +/- 1 Byte per ingång. + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Transaktioner med en högre prioritet har en större sannolikhet att bli adderat till ett block. + +Denna label blir röd, om prioriteten är lägre än "medium". + +Detta betyder att en avgift på minst %1 krävs. + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Denna label blir röd, om en mottagare får en mängd mindre än %1 + +Detta betyder att en avgift på minst %2 krävs. + +Mängder under 0,546 gånger minimiavgiften visas som DUST. + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Denna label blir röd, om ändringen är mindre än %1. + +Detta betyder att en avgift på minst %2 krävs. + + + (no label) + (Ingen etikett) + + + change from %1 (%2) + ändra från %1(%2) + + + (change) + (ändra) + + + + EditAddressDialog + + + Edit Address + Redigera Adress + + + + &Label + &Etikett + + + + The label associated with this address book entry + Namnet som kopplats till denna BTestcoin-adress + + + + &Address + &Adress + + + + The address associated with this address book entry. This can only be modified for sending addresses. + Adressen är kopplad till detta inlägg i adressboken. Denna kan endast ändras för skickande adresser. + + + + 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 BitBean address. + Den inslagna adressen "%1" är inte en giltig BTestcoin adress. + + + + Could not unlock wallet. + Plånboken kunde inte låsas upp. + + + + New key generation failed. + Misslyckades med generering av ny nyckel. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + version + version + + + + Usage: + Användning: + + + + command-line options + Command-line alternativ + + + + UI options + UI alternativ + + + + Set language, for example "de_DE" (default: system locale) + Ställ in språk, t.ex. "de_DE" (förval: systemets språk) + + + + Start minimized + Starta som minimerad + + + + Show splash screen on startup (default: 1) + Visa startscreen vid start (förval: 1) + + + + 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. Fee 5.00 recommended. + Valfri transaktionsavgift per kB som försäkrar att transaktionen behandlas snabbt. De flesta transaktionerna är 1 kB. En avgift på 0,01 är rekommenderad. + + + + Pay transaction &fee + Betala överförings&avgift + + + Reserved amount does not participate in staking and is therefore spendable at any time. + Reserverad mängd deltar inte i stake-processen och kan därför spenderas när som helst. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + Reservera + + + + Automatically start BitBean after logging in to the system. + Starta BTestcoin automatiskt vid inloggning. + + + + &Start BitBean on system login + &Starta BTestcoin vid inloggning + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + Koppla ifrån block och adress-databaserna vid nedstängning. Detta betyder att det kan flyttas till en annan datamapp men saktar ner avstängningen. Plånboken är alltid frånkopplad. + + + + &Detach databases at shutdown + Koppla bort &databaserna vid nedkörning + + + + &Network + &Nätverk + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + Öppna automatiskt BitBean klientens port på routern. Detta fungerar endast om din router stödjer UPnP och det är aktiverat. + + + + Map port using &UPnP + Tilldela port med hjälp av &UPnP + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + Anslut till BitBean nätverket via en SOCKS proxy (t.ex. när du ansluter genom Tor). + + + + &Connect through SOCKS proxy: + &Anslut genom en SOCKS proxy: + + + + Proxy &IP: + Proxy-&IP: + + + + IP address of the proxy (e.g. 127.0.0.1) + Proxyns IP-adress (t.ex. 127.0.0.1) + + + + &Port: + &Port: + + + + Port of the proxy (e.g. 9050) + Proxyns port (t.ex. 9050) + + + + SOCKS &Version: + SOCKS &Version: + + + + SOCKS version of the proxy (e.g. 5) + SOCKS version av proxyn (t.ex. 5) + + + + &Window + &Fönster + + + + Show only a tray icon after minimizing the window. + Visa endast en systemfältsikon vid 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 BitBean. + Användargränssnittets språk kan ställas in här. Inställningen börjar gälla efter omstart av BitBean. + + + + &Unit to show amounts in: + &Måttenhet att visa belopp i: + + + + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + 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 BitBean addresses in the transaction list or not. + Om BitBean adresser skall visas i transaktionslistan eller inte. + + + + &Display addresses in transaction list + &Visa adresser i transaktionslistan + + + Whether to show coin control features or not. + Om coin kontrollinställningar skall visas eller inte. + + + Display coin &control features (experts only!) + Visa coin kontrollinställningar (endast avancerade användare!) + + + + &OK + &OK + + + + &Cancel + &Avbryt + + + + &Apply + &Verkställ + + + + default + standard + + + + + Warning + Varning + + + + + This setting will take effect after restarting BitBean. + Inställningen börjar gälla efter omstart av BitBean. + + + + The supplied proxy address is invalid. + Den medföljande proxy adressen är ogiltig. + + + + OverviewPage + + + Form + Formulär + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + Den visade informationen kan vara gammal. Din plånbok synkroniseras automatiskt med BitBean nätverket efter att en anslutning skapats, men denna process är inte klar än. + + + Stake: + Stake: + + + + Unconfirmed: + Obekräftat: + + + Wallet + Plånbok + + + + Spendable: + Spenderbart: + + + + Your current spendable balance + Ditt tillgängliga saldo + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + Omogen: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + 0 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + 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> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Totala antalet transaktioner inte har blivit bekräftade än och därför inte räknas mot det totala saldot + + + Total of coins that was staked, and do not yet count toward the current balance + Antal coins som var i stake-processen, och räknas ännu inte till nuvarande saldo + + + + + out of sync + osynkroniserad + + + + QRCodeDialog + + + QR Code Dialog + QR-Kod Dialog + + + + Request Payment + Begär Betalning + + + + Amount: + Belopp: + + + + Label: + Etikett: + + + + Message: + Meddelande: + + + + &Save As... + &Spara Som... + + + + Error encoding URI into QR Code. + Fel vid skapande av QR-kod från URI. + + + + The entered amount is invalid, please check. + Den angivna mängden är felaktig, var vänlig kontrollera. + + + + Resulting URI too long, try to reduce the text for label / message. + URI:n är för lång, försök minska texten för etikett / meddelande. + + + + Save QR Code + Spara QR-kod + + + + PNG Images (*.png) + PNG Bilder (*.png) + + + + RPCConsole + + + Client name + Klientnamn + + + + + + + + + + + + + N/A + ej tillgänglig + + + + Client version + Klient-version + + + + &Information + &Information + + + + Using OpenSSL version + Använder OpenSSL version + + + + Startup time + Uppstartstid + + + + Network + Nätverk + + + + Number of connections + Antalet anslutningar + + + + On testnet + På testnet + + + + Block chain + Blockkedja + + + + Current number of blocks + Aktuellt antal block + + + + Estimated total blocks + Beräknade totala block + + + + Last block time + Sista blocktid + + + + &Open + &Öppna + + + + Command-line options + Kommandoradsalternativ + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + Visa BitBean-Qt hjälp meddelandet för att få en lista över möjliga BitBean kommandoradsalternativ. + + + + &Show + &Visa + + + + &Console + &Konsol + + + + Build date + Kompileringsdatum + + + + BitBean - Debug window + BitBean - Felsökningsfönster + + + + BitBean Core + BitBean Core + + + + Debug log file + Debugloggfil + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + Öppna BitBean felsöknings-loggfilen från nuvarande data mapp. Detta kan kan ta ett par minuter för stora log filer. + + + + Clear console + Rensa konsollen + + + + Welcome to the BitBean RPC console. + Välkommen till BitBean RPC konsoll. + + + + 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. + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + Ingångar... + + + + automatically selected + automatiskt vald + + + + Insufficient funds! + Otillräckligt saldo! + + + + Quantity: + Antal: + + + + + 0 + 0 + + + + Bytes: + Bytes: + + + + Amount: + Belopp: + + + + + + + 0.00 BC + 123.456 BC {0.00 ?} + + + + Priority: + Prioritet: + + + + medium + + + + + Fee: + Avgift: + + + + Low Output: + + + + + no + nej + + + + After Fee: + Efter avgift: + + + + Change + Ändra + + + + custom change address + egen ändringsadress + + + + Send to multiple recipients at once + Skicka till flera mottagare samtidigt + + + + Add &Recipient + Lägg till &mottagare + + + + Remove all transaction fields + Ta bort alla transaktionsfält + + + + Clear &All + Rensa &alla + + + + Balance: + Balans: + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + Bekräfta sändordern + + + + S&end + &Skicka + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Fyll i en BitBean adress (t.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Copy quantity + Kopiera antal + + + + Copy amount + Kopiera belopp + + + + Copy fee + Kopiera avgift + + + + Copy after fee + Kopiera efter avgift + + + + Copy bytes + Kopiera bytes + + + + Copy priority + Kopiera prioritet + + + + Copy low output + + + + + Copy change + + + + + <b>%1</b> to %2 (%3) + <b>%1</b> till %2 (%3) + + + + Confirm send beans + + + + + Are you sure you want to send %1? + Är du säker att du vill skicka %1? + + + + and + och + + + + 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. + + + + Error: Transaction creation failed. + Fel: Transaktionen kunde inte skapas. + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + VARNING: Ogiltig BitBean adress + + + + (no label) + (Ingen etikett) + + + + WARNING: unknown change address + VARNING: okänd ändringsadress + + + + SendBeansEntry + + + Form + Formulär + + + + A&mount: + &Belopp: + + + + Pay &To: + Betala &Till: + + + + + 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: + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adressen att skicka betalningen till (t.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + Välj adress från adressbok + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Klistra in adress från Urklipp + + + + Alt+P + Alt+P + + + + Remove this recipient + Ta bort denna mottagare + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Fyll i en BitBean adress (t.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + SendCoinsDialog + + Send Coins + Skicka pengar + + + Coin Control Features + Coin kontrollinställningar + + + Inputs... + Ingångar... + + + automatically selected + automatiskt vald + + + Insufficient funds! + Otillräckligt saldo! + + + Quantity: + Antal: + + + 0 + 0 + + + Bytes: + Bytes: + + + Amount: + Belopp: + + + 0.00 BC + 123.456 BC {0.00 ?} + + + Priority: + Prioritet: + + + medium + mellan + + + Fee: + Avgift: + + + Low Output: + Låg utmatning: + + + no + nej + + + After Fee: + Efter avgift: + + + Change + Ändra + + + custom change address + egen ändringsadress + + + Send to multiple recipients at once + Skicka till flera mottagare samtidigt + + + Add &Recipient + Lägg till &mottagare + + + Remove all transaction fields + Ta bort alla transaktionsfält + + + Clear &All + Rensa &alla + + + Balance: + Balans: + + + 123.456 BC + 123.456 BC + + + Confirm the send action + Bekräfta sändordern + + + S&end + &Skicka + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Fyll i en BitBean adress (t.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Copy quantity + Kopiera antal + + + Copy amount + Kopiera belopp + + + Copy fee + Kopiera avgift + + + Copy after fee + Kopiera efter avgift + + + Copy bytes + Kopiera bytes + + + Copy priority + Kopiera prioritet + + + Copy low output + Kopiera låg utmatning + + + Copy change + Kopiera ändring + + + <b>%1</b> to %2 (%3) + <b>%1</b> till %2 (%3) + + + Confirm send coins + Bekräfta skickade mynt + + + Are you sure you want to send %1? + Är du säker att du vill skicka %1? + + + and + och + + + 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. + + + Error: Transaction creation failed. + Fel: Transaktionen kunde inte skapas. + + + 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 nekades. Detta kan hända om vissa av mynten i din plånbok redan är använda, t.ex om du använder en kopia av wallet.dat och mynten redan var använda i kopia men inte markerade som använda här. + + + WARNING: Invalid BitBean address + VARNING: Ogiltig BitBean adress + + + (no label) + (Ingen etikett) + + + WARNING: unknown change address + VARNING: okänd ändringsadress + + + + SendCoinsEntry + + Form + Formulär + + + A&mount: + &Belopp: + + + Pay &To: + Betala &Till: + + + 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: + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adressen att skicka betalningen till (t.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + Välj adress från adressbok + + + Alt+A + Alt+A + + + Paste address from clipboard + Klistra in adress från Urklipp + + + Alt+P + Alt+P + + + Remove this recipient + Ta bort denna mottagare + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Fyll i en BitBean adress (t.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adressen att signera meddelandet med (t.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + Välj en adress från adressboken + + + + + 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 + + + + Copy the current signature to the system clipboard + Kopiera signaturen till systemets Urklipp + + + + Sign the message to prove you own this BitBean address + Signera meddelandet för att verifiera att du äger denna BitBean adressen + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Adressen meddelandet var signerad med (t.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + Verifiera meddelandet för att vara säker på att det var signerat med den angivna BitBean adressen + + + + Reset all verify message fields + Rensa alla fält + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Fyll i en BitBean adress (t.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + Klicka "Signera Meddelande" för att få en signatur + + + + Enter BitBean signature + Fyll i BitBean 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. + + + + TransactionDesc + + + Open until %1 + Öppet till %1 + + + + Open for %n block(s) + + Öppen för %n block + Öppen för %n block + + + + + conflicted + konflikt + + + + %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 block + mognar om %n fler block + + + + + not accepted + inte accepterad + + + + + + + Debit + Belasta + + + + Transaction fee + Transaktionsavgift + + + + Net amount + Nettobelopp + + + + Message + Meddelande + + + + Comment + Kommentar + + + + Transaction ID + Transaktions-ID + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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. + Genererad mynt måste mogna i 510 block före de kan användas. När du genererade detta blocket sändes det ut till nätverket för att läggas till i blockkedjan. Om det inte kan läggas till i kedjan kommer dess status att ändras till "Ej accepterat" och det kommer inte gå att använda. Detta kan hända imellanåt om en annan klient genererar ett block inom ett par sekunder från ditt. + + + + 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 + + + + unknown + okänd + + + + TransactionDescDialog + + + Transaction details + Transaktionsdetaljer + + + + This pane shows a detailed description of the transaction + Den här panelen visar en detaljerad beskrivning av transaktionen + + + + TransactionTableModel + + + Date + Datum + + + + Type + Typ + + + + Address + Adress + + + + Amount + Mängd + + + + Open until %1 + Öppet till %1 + + + + Confirmed (%1 confirmations) + Bekräftad (%1 bekräftelser) + + + + Open for %n more block(s) + + Öppet för %n mer block + Öppet för %n mer block + + + + + Offline + Nerkopplad + + + + Unconfirmed + Obekräftad + + + + Confirming (%1 of %2 recommended confirmations) + Bekräftar (%1 av %2 rekommenderade bekräftelser) + + + + Conflicted + Konflikt + + + + Immature (%1 confirmations, will be available after %2) + Omogen (%1 bekräftningar, kommer bli tillgänglig efter %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Det här blocket togs inte emot av några andra noder och kommer antagligen inte att bli godkänt. + + + + Generated but not accepted + Genererad men inte accepterad + + + + Received with + Mottagen med + + + + Received from + Mottaget från + + + + Sent to + Skickad till + + + + Payment to yourself + Betalning till dig själv + + + + SPROUT + + + + 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. + + + + 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 Data + Exportera transaktionsdata + + + + Comma separated file (*.csv) + Kommaseparerad fil (*. csv) + + + + Confirmed + Bekräftad + + + + Date + Datum + + + + Type + Typ + + + + Label + Etikett + + + + Address + Adress + + + + Amount + Mängd + + + + ID + ID + + + + Error exporting + Fel vid exportering + + + + Could not write to file %1. + Kan inte skriva till fil %1. + + + + Range: + Intervall: + + + + to + till + + + + WalletModel + + + Sending... + Skickar... + + + + bitbean-core + + + To use the %s option + Att använda %s alternativet + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, du måste sätta rpcpassword i konfigurationsfilen: + %s +Det är rekommenderat att du använder följande slumpmässiga lösenord: +rpcuser=BitBeanrpc +rpcpassword=%s +(du behöver inte komma ihåg detta lösenord) +Användarnamnet och lösenordet FÅR INTE vara samma. +Om filen inte finns, skapa den med endast ägarrättigheter. +Det är också rekommenderat att sätta alertnotify så du blir notifierad om problem; +till exempel: alertnotify=echo %%s | mail -s "BitBean Varning" admin@foo.com + + + + + Error + Fel + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Du behöver välja ett rpclösensord i konfigurationsfilen: +%s +Om filen inte existerar, skapa den med filrättigheten endast läsbar för ägaren. + + + + BitBean version + BitBean version + + + + Usage: + Användning: + + + + Send command to -server or BitBeand + Skicka kommando till -server eller BitBeand + + + + List commands + Lista kommandon + + + + Get help for a command + Få hjälp med ett kommando + + + + BitBean + BitBean + + + + Options: + Inställningar: + + + + This help message + Det här hjälp medelandet + + + + Specify configuration file (default: BitBean.conf) + Ange konfigurationsfilen (standard: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + Ange pid filen (standard BitBeand.pid) + + + + Specify data directory + Ange katalog för data + + + + Specify wallet file (within data directory) + Ange plånboksfil (inom datakatalogen) + + + + Set database cache size in megabytes (default: 25) + Sätt databas cache storleken i megabyte (förvalt: 25) + + + + Set database disk log size in megabytes (default: 100) + Sätt databas logg storleken i MB (standard: 100) + + + + Specify connection timeout in milliseconds (default: 5000) + Ange timeout för uppkoppling i millisekunder (förvalt: 5000) + + + + Connect through socks proxy + Koppla genom en socks proxy + + + + Select the version of socks proxy to use (4-5, default: 5) + Välj version av socks proxy (4-5, förval 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + Använd proxy för att nå Tor gömda servicer (standard: samma som -proxy) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Tillåt DNS-sökningar för -addnode, -seednode och -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Lyssna efter anslutningar på <port> (standard: 15714 eller testnät: 25714) + + + + Maintain at most <n> connections to peers (default: 125) + Ha som mest <n> anslutningar till andra klienter (förvalt: 125) + + + + 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 + + + + Connect only to the specified node(s) + Koppla enbart upp till den/de specificerade noden/noder + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Anslut enbart till noder i nätverket <net> (IPv4, IPv6 eller Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Hitta egen IP-adress (förvalt: 1 under lyssning och utan -externalip) + + + + Find peers using internet relay chat (default: 0) + Hitta andra klienter genom internet relay chat (standard: 1) {0)?} + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Acceptera anslutningar utifrån (förvalt: 1 om ingen -proxy eller -connect) + + + + Bind to given address. Use [host]:port notation for IPv6 + Bind till angiven adress. Använd [host]:port för IPv6 + + + + Find peers using DNS lookup (default: 1) + Hitta andra klienter via DNS uppsökning (standard: 1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Synkronisera tiden med andra noder. Avaktivera om klockan i ditt sytem är exakt som t.ex. synkroniserad med NTP (förval: 1) + + + + Sync checkpoints policy (default: strict) + Synka kontrollpunkts policy (standard: strict) + + + + 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) + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 0) + Använd UPnP för att mappa den lyssnande porten (förvalt: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + Koppla ifrån block och adress databaser. Ökar nedstängningstid (standard: 0) + + + + Fee per KB to add to transactions you send + Avgift per KB som adderas till transaktionen du sänder + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + När transaktioner skapas, ignorera värden som är lägre än detta (standard: 0.01) + + + + Accept command line and JSON-RPC commands + Tillåt kommandon från kommandotolken och JSON-RPC-kommandon + + + + 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 + + + + Output extra debugging information. Implies all other -debug* options + Skriv ut extra debug information. Betyder alla andra -debug* alternativ + + + + Output extra network debugging information + Skriv ut extra nätverks debug information + + + + Prepend debug output with timestamp + Tidstämpla debug utskriften + + + + 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) + + + + Send trace/debug info to console instead of debug.log file + Skicka trace-/debuginformation till terminalen istället för till debug.log + + + + Send trace/debug info to debugger + Skicka trace/debug till debuggern + + + + Username for JSON-RPC connections + Användarnamn för JSON-RPC-anslutningar + + + + Password for JSON-RPC connections + Lösenord för JSON-RPC-anslutningar + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Lyssna efter JSON-RPC anslutningar på <port> (standard: 15715 eller testnät: 25715) + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + Kräv bekräftelse för ändring (förval: 0) + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Tvinga transaktionsskript att använda kanoniska PUSH operatörer (standard: 1) + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Kör kommando när en relevant alert är mottagen (%s i cmd är ersatt av meddelandet) + + + + 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 + + + + 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 + + + + How many blocks to check at startup (default: 2500, 0 = all) + Antal block som kollas vid start (standard: 2500, 0=alla) + + + + How thorough the block verification is (0-6, default: 1) + Hur genomförlig blockverifikationen är (0-6, standard: 1) + + + + Imports blocks from external blk000?.dat file + Importera block från en extern blk000?.dat fil + + + + Block creation options: + Block skapande inställningar: + + + + Set minimum block size in bytes (default: 0) + Sätt minsta blockstorlek i byte (förvalt: 0) + + + + Set maximum block size in bytes (default: 250000) + Sätt största blockstorlek i bytes (förvalt: 250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Ställ in max storlek för hög prioritet/lågavgifts transaktioner i bytes (förval: 27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Godtagbara chiffer (standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Invalid amount for -paytxfee=<amount>: '%s' + Ogiltigt belopp för -paytxfee=<belopp>:'%s' + + + + 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. + + + + Invalid amount for -mininput=<amount>: '%s' + Fel mängd för -mininput=<amount>: '%s' + + + + Wallet %s resides outside data directory %s. + Plånbok %s ligger utanför datamappen %s. + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Kan inte låsa datan i mappen %s. BTestcoin är kanske redan startad. + + + + Verifying database integrity... + Verifierar integriteten i databasen... + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Ett fel uppstod vid initialiseringen av databasen %s! För att återställa, SÄKERHETSKOPIERA MAPPEN, radera sedan allt från mappen förutom 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. + 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. + + + + wallet.dat corrupt, salvage failed + wallet.dat korrupt, räddning misslyckades + + + + Unknown -socks proxy version requested: %i + Okänd -socks proxy version begärd: %i + + + + Unknown network specified in -onlynet: '%s' + Okänt nätverk som anges i -onlynet: '%s' + + + + Invalid -proxy address: '%s' + Ogiltig -proxy adress: '%s' + + + + Invalid -tor address: '%s' + Fel -tor adress: '%s' + + + + Cannot resolve -bind address: '%s' + Kan inte matcha -bind adress: '%s' + + + + 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. + + + + Cannot resolve -externalip address: '%s' + Kan inte matcha -externalip adress: '%s' + + + + Invalid amount for -reservebalance=<amount> + Fel mängd för -reservebalance=<amount> + + + + Unable to sign checkpoint, wrong checkpointkey? + + Kan inte signera checkpoint, fel checkpointkey? + + + + + Loading block index... + Laddar blockindex... + + + + Error loading blkindex.dat + Fel vid laddande av blkindex.dat + + + + Loading wallet... + Laddar plånbok... + + + + Error loading wallet.dat: Wallet corrupted + Fel vid inläsningen av wallet.dat: Plånboken är skadad + + + + 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. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + Kunde inte ladda wallet.dat: En nyare version av BTestcoin krävs + + + + Wallet needed to be rewritten: restart BitBean to complete + Plånboken måste skrivas om: Starta om BTestcoin för att slutföra + + + + Error loading wallet.dat + Fel vid inläsning av plånboksfilen wallet.dat + + + + Cannot downgrade wallet + Kan inte nedgradera plånboken + + + + Cannot initialize keypool + Kan inte initialisera keypool + + + + Cannot write default address + Kan inte skriva standardadress + + + + Rescanning... + Söker igen... + + + + Importing blockchain data file. + Importerar blockchain data fil. + + + + Importing bootstrap blockchain data file. + Importerar bootstrap blockchain data fil. + + + + Loading addresses... + Laddar adresser... + + + + Error: could not start node + Fel: kunde inte starta noden + + + + Done loading + Klar med laddning + + + + Unable to bind to %s on this computer. BitBean is probably already running. + Kan inte binda till %s på denna dator. BTestcoin är sannolikt redan startad. + + + + 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) + + + + Error: Wallet locked, unable to create transaction + Fel: Plånboken låst, kan inte utföra transaktion + + + + Error: Wallet unlocked for staking only, unable to create transaction. + Fel: Plånboken öppnad endast för stake-process, kan inte skapa transaktion. + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Fel: Transaktionen kräver en transaktionsavgift på min %s på grund av dess storlek, komplexitet eller användning av nyligen mottagna kapital + + + + Error: Transaction creation failed + Fel: Skapandet av transaktion misslyckades + + + + Sending... + Skickar... + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Ogiltig mängd + + + + Insufficient funds + Otillräckligt med bitcoins + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Varning: Kolla att din dators tid och datum är rätt. BTestcoin kan inte fungera ordentligt om tiden i datorn är fel. + + + + Warning: This version is obsolete, upgrade required! + Varning: denna version är föråldrad, uppgradering krävs! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + VARNING: synkroniserad kontrollpunkts brott upptäckt, men hoppades över! + + + + Warning: Disk space is low! + Varning: Lågt skivutrymme + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + VARNING: Felaktig kontrollpunkt hittad! Visade transaktioner kan vara felaktiga! Du kan behöva uppgradera eller kontakta utvecklarna. + + + + bitcoin-core + + BitBean version + BitBean version + + + Usage: + Användning: + + + Send command to -server or BitBeand + Skicka kommando till -server eller BitBeand + + + List commands + Lista kommandon + + + Get help for a command + Få hjälp med ett kommando + + + Options: + Inställningar: + + + Specify configuration file (default: BitBean.conf) + Ange konfigurationsfilen (standard: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + Ange pid filen (standard BitBeand.pid) + + + Specify wallet file (within data directory) + Ange plånboksfil (inom datakatalogen) + + + 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) + + + Set database disk log size in megabytes (default: 100) + Sätt databas logg storleken i MB (standard: 100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + Lyssna efter anslutningar på <port> (standard: 15714 eller testnät: 25714) + + + 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 + + + Bind to given address. Use [host]:port notation for IPv6 + Bind till angiven adress. Använd [host]:port för IPv6 + + + Stake your coins to support network and gain reward (default: 1) + Använd dina coins för stake-processen, du upprätthåller då nätverket och får belöning (förval: 1) + + + 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 + + + Detach block and address databases. Increases shutdown time (default: 0) + Koppla ifrån block och adress databaser. Ökar nedstängningstid (standard: 0) + + + 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 nekades. Detta kan hända om vissa av mynten i din plånbok redan är använda, t.ex om du använder en kopia av wallet.dat och mynten redan var använda i kopia men inte markerade som använda 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: Transaktionen kräver en transaktionsavgift på min %s på grund av dess storlek, komplexitet eller användning av nyligen mottagna kapital + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + Lyssna efter JSON-RPC anslutningar på <port> (standard: 15715 eller testnät: 25715) + + + Accept command line and JSON-RPC commands + Tillåt kommandon från kommandotolken och JSON-RPC-kommandon + + + Error: Transaction creation failed + Fel: Skapandet av transaktion misslyckades + + + Error: Wallet locked, unable to create transaction + Fel: Plånboken låst, kan inte utföra transaktion + + + Importing blockchain data file. + Importerar blockchain data fil. + + + Importing bootstrap blockchain data file. + Importerar bootstrap blockchain data fil. + + + 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) + + + 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 + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Ett fel uppstod vid initialiseringen av databasen %s! För att återställa, SÄKERHETSKOPIERA MAPPEN, radera sedan allt från mappen förutom wallet.dat. + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Ställ in max storlek för hög prioritet/lågavgifts transaktioner i bytes (förval: 27000) + + + 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 BitBean will not work properly. + Varning: Kolla att din dators tid och datum är rätt. BTestcoin kan inte fungera ordentligt om tiden i datorn är fel. + + + 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. + + + 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 + + + Block creation options: + Block skapande inställningar: + + + Connect only to the specified node(s) + Koppla enbart upp till den/de specificerade noden/noder + + + Discover own IP address (default: 1 when listening and no -externalip) + Hitta egen IP-adress (förvalt: 1 under lyssning och utan -externalip) + + + 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. + + + Find peers using DNS lookup (default: 1) + Hitta andra klienter via DNS uppsökning (standard: 1) + + + Sync checkpoints policy (default: strict) + Synka kontrollpunkts policy (standard: strict) + + + Invalid -tor address: '%s' + Fel -tor adress: '%s' + + + Invalid amount for -reservebalance=<amount> + Fel mängd för -reservebalance=<amount> + + + 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) + Anslut enbart till noder i nätverket <net> (IPv4, IPv6 eller Tor) + + + Output extra debugging information. Implies all other -debug* options + Skriv ut extra debug information. Betyder alla andra -debug* alternativ + + + Output extra network debugging information + Skriv ut extra nätverks debug information + + + Prepend debug output with timestamp + Tidstämpla debug utskriften + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner) + + + Select the version of socks proxy to use (4-5, default: 5) + Välj version av socks proxy (4-5, förval 5) + + + Send trace/debug info to console instead of debug.log file + Skicka trace-/debuginformation till terminalen istället för till debug.log + + + Send trace/debug info to debugger + Skicka trace/debug till debuggern + + + Set maximum block size in bytes (default: 250000) + Sätt största blockstorlek i bytes (förvalt: 250000) + + + Set minimum block size in bytes (default: 0) + Sätt minsta blockstorlek i byte (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) + + + Specify connection timeout in milliseconds (default: 5000) + Ange timeout för uppkoppling i millisekunder (förvalt: 5000) + + + Unable to sign checkpoint, wrong checkpointkey? + + Kan inte signera checkpoint, fel checkpointkey? + + + + 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) + + + Use proxy to reach tor hidden services (default: same as -proxy) + Använd proxy för att nå Tor gömda servicer (standard: samma som -proxy) + + + Username for JSON-RPC connections + Användarnamn för JSON-RPC-anslutningar + + + Verifying database integrity... + Verifierar integriteten i databasen... + + + WARNING: syncronized checkpoint violation detected, but skipped! + VARNING: synkroniserad kontrollpunkts brott upptäckt, men hoppades över! + + + Warning: Disk space is low! + Varning: Lågt skivutrymme + + + Warning: This version is obsolete, upgrade required! + Varning: denna version är föråldrad, uppgradering krävs! + + + wallet.dat corrupt, salvage failed + wallet.dat korrupt, räddning misslyckades + + + Password for JSON-RPC connections + Lösenord för JSON-RPC-anslutningar + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, du måste sätta rpcpassword i konfigurationsfilen: + %s +Det är rekommenderat att du använder följande slumpmässiga lösenord: +rpcuser=BitBeanrpc +rpcpassword=%s +(du behöver inte komma ihåg detta lösenord) +Användarnamnet och lösenordet FÅR INTE vara samma. +Om filen inte finns, skapa den med endast ägarrättigheter. +Det är också rekommenderat att sätta alertnotify så du blir notifierad om problem; +till exempel: alertnotify=echo %%s | mail -s "BitBean Varning" admin@foo.com + + + + Find peers using internet relay chat (default: 0) + Hitta andra klienter genom internet relay chat (standard: 1) {0)?} + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Synkronisera tiden med andra noder. Avaktivera om klockan i ditt sytem är exakt som t.ex. synkroniserad med NTP (förval: 1) + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + När transaktioner skapas, ignorera värden som är lägre än detta (standard: 0.01) + + + 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) + + + 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) + + + Require a confirmations for change (default: 0) + Kräv bekräftelse för ändring (förval: 0) + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + Tvinga transaktionsskript att använda kanoniska PUSH operatörer (standard: 1) + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + Kör kommando när en relevant alert är mottagen (%s i cmd är ersatt av meddelandet) + + + 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 + + + How many blocks to check at startup (default: 2500, 0 = all) + Antal block som kollas vid start (standard: 2500, 0=alla) + + + How thorough the block verification is (0-6, default: 1) + Hur genomförlig blockverifikationen är (0-6, standard: 1) + + + Imports blocks from external blk000?.dat file + Importera block från en extern blk000?.dat fil + + + 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) + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + Godtagbara chiffer (standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + Error: Wallet unlocked for staking only, unable to create transaction. + Fel: Plånboken öppnad endast för stake-process, kan inte skapa transaktion. + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + VARNING: Felaktig kontrollpunkt hittad! Visade transaktioner kan vara felaktiga! Du kan behöva uppgradera eller kontakta utvecklarna. + + + This help message + Det här hjälp medelandet + + + Wallet %s resides outside data directory %s. + Plånbok %s ligger utanför datamappen %s. + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + Kan inte låsa datan i mappen %s. BTestcoin är kanske redan startad. + + + BitBean + BitBean + + + 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) + + + Connect through socks proxy + Koppla genom en socks proxy + + + 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 blkindex.dat + Fel vid laddande av blkindex.dat + + + 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 BitBean + Kunde inte ladda wallet.dat: En nyare version av BTestcoin krävs + + + Wallet needed to be rewritten: restart BitBean to complete + Plånboken måste skrivas om: Starta om BTestcoin för att slutföra + + + 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' + + + Error: could not start node + Fel: kunde inte starta noden + + + Sending... + Skickar... + + + Invalid amount + Ogiltig mängd + + + Insufficient funds + 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. BitBean is probably already running. + Kan inte binda till %s på denna dator. BTestcoin är sannolikt redan startad. + + + Fee per KB to add to transactions you send + Avgift per KB som adderas till transaktionen du sänder + + + Invalid amount for -mininput=<amount>: '%s' + Fel mängd för -mininput=<amount>: '%s' + + + Loading wallet... + Laddar plånbok... + + + Cannot downgrade wallet + Kan inte nedgradera plånboken + + + Cannot initialize keypool + Kan inte initialisera keypool + + + 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. + Du behöver välja ett rpclösensord i konfigurationsfilen: +%s +Om filen inte existerar, skapa den med filrättigheten endast läsbar för ägaren. + + + diff --git a/src/qt/locale/bitcoin_th_TH.qm b/src/qt/locale/bitbean_th_TH.qm similarity index 66% rename from src/qt/locale/bitcoin_th_TH.qm rename to src/qt/locale/bitbean_th_TH.qm index cd3e597..18ae5df 100644 Binary files a/src/qt/locale/bitcoin_th_TH.qm and b/src/qt/locale/bitbean_th_TH.qm differ diff --git a/src/qt/locale/bitcoin_th_TH.ts b/src/qt/locale/bitbean_th_TH.ts similarity index 62% rename from src/qt/locale/bitcoin_th_TH.ts rename to src/qt/locale/bitbean_th_TH.ts index e43b43f..29604a2 100644 --- a/src/qt/locale/bitcoin_th_TH.ts +++ b/src/qt/locale/bitbean_th_TH.ts @@ -1,135 +1,138 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + Double-click to edit address or label ดับเบิลคลิก เพื่อแก้ไขที่อยู่ หรือชื่อ - + Create a new address สร้างที่อยู่ใหม่ - + Copy the currently selected address to the system clipboard คัดลอกที่อยู่ที่ถูกเลือกไปยัง คลิปบอร์ดของระบบ - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete ลบ Copy &Label - + &Edit - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. - + @@ -153,39 +156,39 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog - + - + Enter passphrase ใส่รหัสผ่าน - + New passphrase รหัสผา่นใหม่ - + Repeat new passphrase กรุณากรอกรหัสผ่านใหม่อีกครั้งหนึ่ง - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + @@ -195,7 +198,7 @@ This product includes software developed by the OpenSSL Project for use in the O This operation needs your wallet passphrase to unlock the wallet. - + @@ -205,7 +208,7 @@ This product includes software developed by the OpenSSL Project for use in the O This operation needs your wallet passphrase to decrypt the wallet. - + @@ -229,24 +232,29 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + @@ -255,12 +263,7 @@ This product includes software developed by the OpenSSL Project for use in the O กระเป๋าสตางค์ถูกเข้ารหัสเรียบร้อยแล้ว - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -270,7 +273,7 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet encryption failed due to an internal error. Your wallet was not encrypted. - + @@ -281,1170 +284,1265 @@ This product includes software developed by the OpenSSL Project for use in the O Wallet unlock failed - + The passphrase entered for the wallet decryption was incorrect. - + Wallet decryption failed - + Wallet passphrase was successfully changed. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - + + Bean Control + - - &Overview - + + Quantity: + - - Show general overview of wallet - + + Bytes: + - - &Transactions - + + Amount: + - - Browse transaction history - + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - + + Tree mode + - - Quit application - + + List mode + - - Show information about BitBean - + + Amount + - - About &Qt - + + Label + ชื่อ - - Show information about Qt - + + Address + ที่อยู่ - - &Options... - + + Date + - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - + Confirmed + - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - + + DUST + - - &Settings - + + yes + - - &Help - + + no + - - Tabs toolbar - + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (ไม่มีชื่อ) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + - - - %n second(s) ago - + + + Show general overview of wallet + - - &Unlock Wallet... - + + &Send Beans + - - - %n minute(s) ago - - - - - %n hour(s) ago - - - - - %n day(s) ago - + + + Send Beans to a BitBean address + - - Up to date - + + &Receive Beans + - - Catching up... - + + Show the list of addresses for receiving payments + - - Last received block was generated %1. - + + &Transactions + - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + + Browse transaction history + - Confirm transaction fee - + &Address Book + - - Sent transaction - + + Edit the list of stored addresses and labels + - - Incoming transaction - + + E&xit + - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - + Quit application + - - - URI handling - + + &About BitBean + - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + + Show information about BitBean + - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + + About &Qt + - - Wallet is <b>encrypted</b> and currently <b>locked</b> - + + Show information about Qt + - - Backup Wallet - + + &Options... + - - Wallet Data (*.dat) - + + Modify configuration options for BitBean + - - Backup Failed - + + &Show / Hide + - - There was an error trying to save the wallet data to the new location. - - - - - %n second(s) - - - - - %n minute(s) - + + &Encrypt Wallet... + - - - %n hour(s) - + + + Encrypt or decrypt wallet + - - - %n day(s) - + + + &Backup Wallet... + - - Not staking - + + Backup wallet to another location + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + &Change Passphrase... + - - - ClientModel - - Network Alert - + + Change the passphrase used for wallet encryption + - - - CoinControlDialog - - Coin Control - + + &Unlock Wallet... + - - Quantity: - + + Unlock wallet + เปิดกระเป๋าสตางค์ - - Bytes: - + + &Lock Wallet + - - Amount: - + + Lock wallet + - - Priority: - + + Sign &message... + - - Fee: - + + &Verify message... + - - Low Output: - + + &Export... + - - no - + + Export the data in the current tab to a file + - - After Fee: - + + &Debug window + - - Change: - + + Open debugging and diagnostic console + - - (un)select all - + + &File + - - Tree mode - + + &Settings + - - List mode - + + &Help + - - Amount - + + Tabs toolbar + - - Label - + + Actions toolbar + - - Address - ที่อยู่ + + + [testnet] + - - Date - + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + - - Confirmations - + + Synchronizing with network... + + + + + ~%n block(s) remaining + + + - - Confirmed - + + Downloaded %1 of %2 blocks of transaction history (%3% done). + - - Priority - + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + %n minute(s) ago + + + + + + + %n hour(s) ago + + + + + + + %n day(s) ago + + + - - Copy address - + + Up to date + - - Copy label - + + Catching up... + - - - Copy amount - + + Last received block was generated %1. + - - Copy transaction ID - + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + - - Copy quantity - + + Confirm transaction fee + - - Copy fee - + + Sent transaction + - Copy after fee - + Incoming transaction + - Copy bytes - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + - - Copy priority - + + + URI handling + - - Copy low output - + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + - - Copy change - + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + - - highest - + + Wallet is <b>encrypted</b> and currently <b>locked</b> + - - high - + + Backup Wallet + - - medium-high - + + Wallet Data (*.dat) + - - medium - + + Backup Failed + + + There was an error trying to save the wallet data to the new location. + + + + + %n second(s) + + + + + - low-medium - + %n minute(s) + + + - - - low - + + + %n hour(s) + + + - - - lowest - + + + %n day(s) + + + - - DUST - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - yes - + + Not staking because wallet is locked + - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + + Not staking because wallet is offline + - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + + Not staking because wallet is syncing + - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + + Not staking because you don't have mature beans + - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + + Not staking + + + + ClientModel - - - (no label) - (ไม่มีชื่อ) + + Network Alert + + + + CoinControlDialog - - change from %1 (%2) - + Address + ที่อยู่ - - (change) - + (no label) + (ไม่มีชื่อ) EditAddressDialog - + Edit Address - + &Label - + The label associated with this address book entry - + &Address - + The address associated with this address book entry. This can only be modified for sending addresses. - + New receiving address - + New sending address - + Edit receiving address - + Edit sending address - + The entered address "%1" is already in the address book. - + The entered address "%1" is not a valid BitBean address. - + Could not unlock wallet. - + New key generation failed. - + GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options - + - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - + &Cancel - + &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + + + + + Unconfirmed: + + + + + Spendable: + + + + + Your current spendable balance + + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - The supplied proxy address is invalid. - + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - - OverviewPage - - Form - + + BitBean Network + - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Stalk Height: + - - Stake: - + + Sprouting Difficulty: + - - Unconfirmed: - + + Bean Weight: + - - Wallet - + + Connections: + - - Spendable: - + + Total Beans: + - - Your current spendable balance - + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + - - Immature: - + + + + + + 0 + - - Mined balance that has not yet matured - + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + - - Total: - + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + - - Your current total balance - + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + - - <b>Recent transactions</b> - + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + Total: + - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1458,188 +1556,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - + @@ -1647,386 +1745,393 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - + Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - + 123.456 BC - + Confirm the send action - + S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - + Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (ไม่มีชื่อ) + (ไม่มีชื่อ) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + - + A&mount: - + Pay &To: - + - + Enter a label for this address to add it to your address book - + &Label: - + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + (no label) + (ไม่มีชื่อ) 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2034,59 +2139,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2094,81 +2199,85 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - + Open for %n block(s) - + + + conflicted - + %1/offline - + %1/unconfirmed - + %1 confirmations - + Status - + , broadcast through %n node(s) - + + + Date - + Source - + Generated - + From - + To - + own address - + label - + @@ -2177,17 +2286,19 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + not accepted - + @@ -2195,90 +2306,90 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + unknown - + TransactionDescDialog - + Transaction details - + This pane shows a detailed description of the transaction - + @@ -2286,12 +2397,12 @@ This label turns red, if the priority is smaller than "medium". Date - + Type - + @@ -2301,112 +2412,114 @@ This label turns red, if the priority is smaller than "medium". Amount - + Open until %1 - + Confirmed (%1 confirmations) - + Open for %n more block(s) - + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + This block was not received by any other nodes and will probably not be accepted! - + Generated but not accepted - + Received with - + Received from - + Sent to - + Payment to yourself - + - Mined - + SPROUT + (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. - + @@ -2415,7 +2528,7 @@ This label turns red, if the priority is smaller than "medium". All - + @@ -2425,117 +2538,117 @@ This label turns red, if the priority is smaller than "medium". 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 Data - + Comma separated file (*.csv) - + Confirmed - + Date - + Type - + @@ -2550,32 +2663,32 @@ This label turns red, if the priority is smaller than "medium". Amount - + ID - + Error exporting - + Could not write to file %1. - + Range: - + to - + @@ -2583,693 +2696,693 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core - - BitBean version - + + To use the %s option + - Usage: - + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - + + Error + - List commands - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - + + BitBean version + - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - + Usage: + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send command to -server or BitBeand + - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - + List commands + - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - - - - - Threshold for disconnecting misbehaving peers (default: 100) - + Get help for a command + - 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 - - - - - Detach block and address databases. Increases shutdown time (default: 0) - - - - - 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 - - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - - - - - Accept command line and JSON-RPC commands - + BitBean + - - Error: Transaction creation failed - + + Options: + - - Error: Wallet locked, unable to create transaction - + + This help message + - - Importing blockchain data file. - + + Specify configuration file (default: BitBean.conf) + - Importing bootstrap blockchain data file. - + Specify pid file (default: BitBeand.pid) + - - Run in the background as a daemon and accept commands - + + Specify data directory + - Use the test network - + Specify wallet file (within data directory) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Set database cache size in megabytes (default: 25) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Set database disk log size in megabytes (default: 100) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Specify connection timeout in milliseconds (default: 5000) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Connect through socks proxy + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Select the version of socks proxy to use (4-5, default: 5) + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Use proxy to reach tor hidden services (default: same as -proxy) + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Allow DNS lookups for -addnode, -seednode and -connect + - - 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. - + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Maintain at most <n> connections to peers (default: 125) + - - Block creation options: - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node(s) - - - - - Discover own IP address (default: 1 when listening and no -externalip) - - - - - Failed to listen on any port. Use -listen=0 if you want this. - - - - - Find peers using DNS lookup (default: 1) - + - - Sync checkpoints policy (default: strict) - + + Connect to a node to retrieve peer addresses, and disconnect + - - Invalid -tor address: '%s' - + + Specify your own public address + - - Invalid amount for -reservebalance=<amount> - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Discover own IP address (default: 1 when listening and no -externalip) + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Find peers using internet relay chat (default: 0) + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Output extra debugging information. Implies all other -debug* options - + + Bind to given address. Use [host]:port notation for IPv6 + - Output extra network debugging information - + Find peers using DNS lookup (default: 1) + - Prepend debug output with timestamp - + Stake your beans to support network and gain reward (default: 1) + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Select the version of socks proxy to use (4-5, default: 5) - + + Sync checkpoints policy (default: strict) + - - Send trace/debug info to console instead of debug.log file - + + Threshold for disconnecting misbehaving peers (default: 100) + - Send trace/debug info to debugger - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Set maximum block size in bytes (default: 250000) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Set minimum block size in bytes (default: 0) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Use UPnP to map the listening port (default: 1 when listening) + - - Specify connection timeout in milliseconds (default: 5000) - + + Use UPnP to map the listening port (default: 0) + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Use UPnP to map the listening port (default: 0) - + + Fee per KB to add to transactions you send + - - Use UPnP to map the listening port (default: 1 when listening) - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Accept command line and JSON-RPC commands + - - Username for JSON-RPC connections - + + Run in the background as a daemon and accept commands + - - Verifying database integrity... - + + Use the test network + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Output extra debugging information. Implies all other -debug* options + - Warning: Disk space is low! - + Output extra network debugging information + - - Warning: This version is obsolete, upgrade required! - + + Prepend debug output with timestamp + - - wallet.dat corrupt, salvage failed - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Password for JSON-RPC connections - + + Send trace/debug info to console instead of debug.log file + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Send trace/debug info to debugger + - - Find peers using internet relay chat (default: 0) - + + Username for JSON-RPC connections + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Password for JSON-RPC connections + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - + 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) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Require a confirmations for change (default: 0) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Upgrade wallet to latest format - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + - + + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) - + How thorough the block verification is (0-6, default: 1) - + Imports blocks from external blk000?.dat file - + - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Invalid amount for -paytxfee=<amount>: '%s' + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - This help message - + + Invalid amount for -mininput=<amount>: '%s' + - + Wallet %s resides outside data directory %s. - + Cannot obtain a lock on data directory %s. BitBean is probably already running. - + - - BitBean - + + Verifying database integrity... + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect through socks proxy - + + 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. + - - Allow DNS lookups for -addnode, -seednode and -connect - + + wallet.dat corrupt, salvage failed + - - Loading addresses... - + + Unknown -socks proxy version requested: %i + - + + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Cannot resolve -externalip address: '%s' + + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - + Wallet needed to be rewritten: restart BitBean to complete - + Error loading wallet.dat - + - - Invalid -proxy address: '%s' - + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - + + Cannot write default address + - - Cannot resolve -bind address: '%s' - + + Rescanning... + - - Cannot resolve -externalip address: '%s' - + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - + + Importing bootstrap blockchain data file. + - - Error: could not start node - + + Loading addresses... + - - Sending... - + + Error: could not start node + - - Invalid amount - + + Done loading + - Insufficient funds - + Unable to bind to %s on this computer. BitBean is probably already running. + - - Loading block index... - + + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Add a node to connect to and attempt to keep the connection open - + + Error: Wallet locked, unable to create transaction + - - Unable to bind to %s on this computer. BitBean is probably already running. - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Fee per KB to add to transactions you send - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: Transaction creation failed + - - Loading wallet... - + + Sending... + - - Cannot downgrade wallet - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Cannot initialize keypool - + + Invalid amount + - Cannot write default address - + Insufficient funds + - Rescanning... - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Done loading - + + Warning: This version is obsolete, upgrade required! + - - To use the %s option - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Error - + + Warning: Disk space is low! + - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_tr.qm b/src/qt/locale/bitbean_tr.qm new file mode 100644 index 0000000..de3e48c Binary files /dev/null and b/src/qt/locale/bitbean_tr.qm differ diff --git a/src/qt/locale/bitbean_tr.ts b/src/qt/locale/bitbean_tr.ts new file mode 100644 index 0000000..cc02198 --- /dev/null +++ b/src/qt/locale/bitbean_tr.ts @@ -0,0 +1,4772 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + BitBean Hakkında + + + + <b>BitBean</b> version + <b>BitBean</b> versiyonu + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + + Bu, deneysel bir yazılımdır. + + MIT/X11 yazılım lisansı kapsamında yayınlanmıştır, beraberindeki COPYING dosyasına ya da http://www.opensource.org/licenses/mit-license.php sayfasına bakınız. + + Bu ürün, OpenSSL Araç Takımı'nda (http://www.openssl.org/) kullanılmak üzere OpenSSL projesi tarafından geliştirilen yazılımı, Eric Young (eay@cryptsoft.com) tarafından hazırlanmış kriptografik yazılımı ve Thomas Bernard tarafından yazılmış UPnP yazılımı içerir. + + + + AddressBookPage + + + Address Book + Adres Defteri + + + + 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 + + + + Copy the currently selected address to the system clipboard + Seçili adresi sistem panosuna kopyala + + + + &New Address + &Yeni Adres + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + Bunlar, ödeme almak için BitBean adreslerinizdir. Her bir göndericiye farklı birini verebilir, böylece size kimin ödeme yaptığını takip edebilirsiniz. + + + + &Copy Address + Adresi &Kopyala + + + + Show &QR Code + &QR Kodunu Göster + + + + Sign a message to prove you own a BitBean address + Bir BitBean adresine sahip olduğunu ispatlamak için bir mesaj imzala + + + + Sign &Message + &Mesaj İmzala + + + + Delete the currently selected address from the list + Seçili adresi listeden sil + + + + Verify a message to ensure it was signed with a specified BitBean address + Mesajın, belirli bir BitBean adresiyle imzalandığından emin olmak için onu doğrula + + + + &Verify Message + Mesajı &Doğrula + + + + &Delete + &Sil + + + + Copy &Label + &Etiketi Kopyala + + + + &Edit + &Düzenle + + + + Export Address Book Data + Adres Defteri Verisini Dışarı Aktar + + + + Comma separated file (*.csv) + Virgülle ayrılmış değerler dosyası (*.csv) + + + + Error exporting + Dışarı aktarım hatası + + + + Could not write to file %1. + %1 dosyasına yazılamadı. + + + + AddressTableModel + + + Label + Etiket + + + + Address + Adres + + + + (no label) + (boş etiket) + + + + AskPassphraseDialog + + + Passphrase Dialog + Parola Diyaloğu + + + + Enter passphrase + Parolayı giriniz + + + + New passphrase + Yeni parola + + + + Repeat new passphrase + Yeni parolayı tekrarlayınız + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + OS hesabı tehlike girdiğinde önemsiz para gönderme özelliğini devre dışı bırakmayı sağlar. Gerçek anlamda bir güvenlik sağlamaz. + + + + For staking only + Sadece pay almak için + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + Cüzdanınız için yeni parolayı giriniz.<br/>Lütfen <b>10 ya da daha fazla rastgele karakter</b> veya <b>sekiz ya da daha fazla kelime</b> içeren bir parola seçiniz. + + + + Encrypt wallet + Cüzdanı şifrele + + + + This operation needs your wallet passphrase to unlock the wallet. + Bu işlem cüzdan kilidini açmak için cüzdan parolanızı gerektirir. + + + + Unlock wallet + Cüzdan kilidini aç + + + + This operation needs your wallet passphrase to decrypt the wallet. + Bu işlem, cüzdan şifresini açmak için cüzdan parolasını gerektirir. + + + + Decrypt wallet + Cüzdan şifresini aç + + + + Change passphrase + Parolayı değiştir + + + + Enter the old and new passphrase to the wallet. + Cüzdan için eski ve yeni parolaları giriniz. + + + + Confirm wallet encryption + Cüzdan şifrelenmesini teyit eder + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! + Uyarı: Eğer cüzdanınızı şifreleyip parolanızı kaybederseniz, <b> TÜM COINLERİNİZİ KAYBEDECEKSİNİZ</b>! + + + + Are you sure you wish to encrypt your wallet? + Cüzdanınızı şifrelemek istediğinizden emin misiniz? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + ÖNEMLİ: Önceden yapmış olduğunuz cüzdan dosyası yedeklemelerinin yeni oluşturulan, şifrelenmiş cüzdan dosyası ile değiştirilmeleri gerekmektedir. Güvenlik nedenleriyle yeni, şifrelenmiş cüzdanı kullanmaya başladığınızda, şifrelenmemiş cüzdan dosyasının önceki yedekleri işe yaramaz hale gelecektir. + + + + + Warning: The Caps Lock key is on! + Uyarı: Caps Lock tuşu faal durumda! + + + + + Wallet encrypted + Cüzdan şifrelendi + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. + BitBean, şifreleme işlemini tamamlamak için şimdi kapatılacak. Cüzdanınızı şifrelemenin; coinlerinizin, bilgisayarınızı etkileyen zararlı yazılımlar tarafından çalınmasını bütünüyle engelleyemeyebileceğini 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 eşleşmiyor. + + + + 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. + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + + + + + Bytes: + Bayt: + + + + Amount: + + + + + Priority: + Öncelik: + + + + Fee: + Ücret: + + + + Low Output: + + + + + 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 + + + + + Label + Etiket + + + + Address + Adres + + + + Date + Tarih + + + + Confirmations + Onaylar + + + + Confirmed + + + + + Priority + Öncelik + + + + Copy address + Adresi kopyala + + + + Copy label + Etiketi kopyala + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy quantity + + + + + 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 + en yüksek + + + + high + yüksek + + + + medium-high + orta-yüksek + + + + medium + orta + + + + low-medium + düşük-orta + + + + low + düşük + + + + lowest + en düşük + + + + DUST + BOZUKLUK + + + + yes + evet + + + + no + hayır + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + İşlem büyüklüğü 10000 bayttan büyükse, bu etiket kırmızıya dönüşür. + + Bu, kb başına en az %1 ücret gerektiği anlamına gelir. + + Girdi başına +/- 1 Byte değişkenlik gösterebilir. + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Yüksek öncelikli işlemler, daha yüksek ihtimalle bir bloğa düşer. + +Öncelik "orta" seviyeden düşükse, bu etiket kırmızıya döner. + + Bu, kb başına en az %1 ücret gerektiği anlamına gelir. + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Eğer herhangi bir alıcı, %1'den daha küçük bir miktar alırsa, bu etiket kırmızıya dönüşür. + + Bu, en az %2 bir ücretin gerektiği anlamına gelir. + + Minimum aktarım ücretinin 0.546 katından düşük miktarlar, BOZUKLUK olarak gösterilir. + + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Eğer para üstü %1'den küçükse, bu etiket kırmızıya dönüşür. + + Bu, en az %2 bir ücretin gerektiği anlamına gelir. + + + + + (no label) + (boş etiket) + + + + change from %1 (%2) + %1 unsurundan para üstü (%2) + + + + (change) + (para üstü) + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Önemli bir hata oluştu. BitBean artık güvenli bir şekilde devam edemez ve şimdi kapatılacak. + + + + BitBean + BitBean + + + + Vault + + + + + &Overview + &Genel bakış + + + + Show general overview of wallet + Cüzdana genel bakışı göster + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + Ödeme almak için kullanılan adres listesini göster + + + + &Transactions + &İşlemler + + + + Browse transaction history + İşlem geçmişine göz at + + + + &Address Book + &Adres Defteri + + + + Edit the list of stored addresses and labels + Kayıtlı adresler ve etiketler listesini düzenle + + + + E&xit + &Çık + + + + Quit application + Uygulamadan çık + + + + &About BitBean + BitBean &Hakkında + + + + Show information about BitBean + BitBean hakkındaki bilgiyi göster + + + + About &Qt + &Qt hakkında + + + + Show information about Qt + Qt hakkındaki bilgiyi göster + + + + &Options... + &Seçenekler... + + + + Modify configuration options for BitBean + BitBean yapılandırma seçeneklerini değiştir + + + + &Show / Hide + &Göster / Gizle + + + + &Encrypt Wallet... + Cüzdanı &Şifrele... + + + + Encrypt or decrypt wallet + Cüzdanı şifrele veya cüzdanın şifresini aç + + + + &Backup Wallet... + Cüzdanı &Yedekle... + + + + Backup wallet to another location + Cüzdanı başka bir konuma yedekle + + + + &Change Passphrase... + Parolayı &Değiştir... + + + + Change the passphrase used for wallet encryption + Cüzdan şifrelemesi için kullanılan parolayı değiştir + + + + &Unlock Wallet... + Cüzdanı &Kilitle... + + + + Unlock wallet + + + + + &Lock Wallet + Cüzdanı &Kilitle + + + + Lock wallet + Cüzdanı kilitle + + + + Sign &message... + &Mesaj imzala... + + + + &Verify message... + Mesajı &doğrula... + + + + &Export... + &Dışarı aktar... + + + + Export the data in the current tab to a file + Mevcut sekmedeki veriyi bir dosyaya aktar + + + + &Debug window + &Hata ayıklama penceresi + + + + Open debugging and diagnostic console + Hata ayıklama ve teşhis penceresini aç + + + + &File + &Dosya + + + + &Settings + &Ayarlar + + + + &Help + &Yardım + + + + Tabs toolbar + Sekme araç çubuğu + + + + Actions toolbar + Eylem araç çubuğu + + + + + [testnet] + [testnet] + + + + + BitBean client + BitBean istemcisi + + + + %n active connection(s) to BitBean network + + BitBean ağına %n etkin bağlantı + + + + + Synchronizing with network... + Ağ ile senkronizasyon... + + + + ~%n block(s) remaining + + ~%n blok kaldı + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + İşlem geçmişindeki %2 bloğun %1'i indirildi (%3% tamamlandı). + + + + Downloaded %1 blocks of transaction history. + İşlem geçmişinin %1 bloğu indirildi. + + + + %n second(s) ago + + %n saniye önce + + + + + %n minute(s) ago + + %n dakika önce + + + + + %n hour(s) ago + + %n saat önce + + + + + %n day(s) ago + + %n gün önce + + + + + Up to date + Güncel + + + + Catching up... + Aralık kapatılıyor... + + + + Last received block was generated %1. + Son alınan blok, üretildi %1. + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Bu işlem, büyüklük sınırının üzerindedir. İşleminizi gerçekleştirecek devrelere gidecek ve ağı desteklemeye yardımcı olacak %1 ücretle coin gönderebilirsiniz. Ücreti ödemek istiyor musunuz? + + + + Confirm transaction fee + İşlem ücretini onayla + + + + Sent transaction + İşlem gerçekleştirildi + + + + Incoming transaction + Gelen işlem + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Tarih: %1 +Miktar: %2 +Tür: %3 +Adres: %4 + + + + + + URI handling + URI işleme + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI ayrıştırılamadı! Bu, geçersiz bir BitBean adresi veya hatalı URI parametreleri nedeniyle olabilir. + + + + 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> + + + + Backup Wallet + Cüzdanı Yedekle + + + + Wallet Data (*.dat) + Cüzdan Verisi (*.dat) + + + + Backup Failed + Yedekleme Başarısız Oldu + + + + There was an error trying to save the wallet data to the new location. + Cüzdan verisi, yeni bir konuma kaydedilmeye çalışılırken bir hata oluştu. + + + + %n second(s) + + %n saniye + + + + + %n minute(s) + + %n dakika + + + + + %n hour(s) + + %n saat + + + + + %n day(s) + + %n gün + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Pay alınıyor.<br>Sizin ağırlığınız %1<br>Ağın ağırlığı %2<br>Ödül almak için tahmini süre %3 + + + + Not staking because wallet is locked + Pay alınmıyor çünkü cüzdan kilitlidir + + + + Not staking because wallet is offline + Pay alınmıyor çünkü cüzdan çevrimdışıdır + + + + Not staking because wallet is syncing + Pay alınmıyor çünkü cüzdan senkronize ediliyor + + + + Not staking because you don't have mature beans + + + + + Not staking + Pay alınmıyor + + + + BitcoinGUI + + Sign &message... + &Mesaj imzala... + + + Synchronizing with network... + Ağ ile senkronizasyon... + + + &Overview + &Genel bakış + + + Show general overview of wallet + Cüzdana genel bakışı göster + + + &Transactions + &İşlemler + + + Browse transaction history + İşlem geçmişine göz at + + + &Address Book + &Adres Defteri + + + Edit the list of stored addresses and labels + Kayıtlı adresler ve etiketler listesini düzenle + + + &Receive coins + Coin &al + + + Show the list of addresses for receiving payments + Ödeme almak için kullanılan adres listesini göster + + + &Send coins + Coin &gönder + + + E&xit + &Çık + + + Quit application + Uygulamadan çık + + + Show information about BitBean + BitBean hakkındaki bilgiyi göster + + + About &Qt + &Qt hakkında + + + Show information about Qt + Qt hakkındaki bilgiyi göster + + + &Options... + &Seçenekler... + + + &Encrypt Wallet... + Cüzdanı &Şifrele... + + + &Backup Wallet... + Cüzdanı &Yedekle... + + + &Change Passphrase... + Parolayı &Değiştir... + + + ~%n block(s) remaining + + ~%n blok kaldı + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + İşlem geçmişindeki %2 bloğun %1'i indirildi (%3% tamamlandı). + + + &Export... + &Dışarı aktar... + + + Send coins to a BitBean address + Bir BitBean adresine coin gönder + + + Modify configuration options for BitBean + BitBean yapılandırma seçeneklerini değiştir + + + Export the data in the current tab to a file + Mevcut sekmedeki veriyi bir dosyaya aktar + + + Encrypt or decrypt wallet + Cüzdanı şifrele veya cüzdanın şifresini aç + + + Backup wallet to another location + Cüzdanı başka bir konuma 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ı &doğrula... + + + BitBean + BitBean + + + Wallet + Cüzdan + + + &About BitBean + BitBean &Hakkında + + + &Show / Hide + &Göster / Gizle + + + Unlock wallet + Cüzdanın kilidini aç + + + &Lock Wallet + Cüzdanı &Kilitle + + + Lock wallet + Cüzdanı kilitle + + + &File + &Dosya + + + &Settings + &Ayarlar + + + &Help + &Yardım + + + Tabs toolbar + Sekme araç çubuğu + + + Actions toolbar + Eylem araç çubuğu + + + [testnet] + [testnet] + + + BitBean client + BitBean istemcisi + + + %n active connection(s) to BitBean network + + BitBean ağına %n etkin bağlantı + + + + Downloaded %1 blocks of transaction history. + İşlem geçmişinin %1 bloğu indirildi. + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + Pay alınıyor.<br>Sizin ağırlığınız %1<br>Ağın ağırlığı %2<br>Ödül almak için tahmini süre %3 + + + Not staking because wallet is locked + Pay alınmıyor çünkü cüzdan kilitlidir + + + Not staking because wallet is offline + Pay alınmıyor çünkü cüzdan çevrimdışıdır + + + Not staking because wallet is syncing + Pay alınmıyor çünkü cüzdan senkronize ediliyor + + + Not staking because you don't have mature coins + Pay alınmıyor çünkü olgunlaşmış coininiz yoktur + + + %n second(s) ago + + %n saniye önce + + + + &Unlock Wallet... + Cüzdanı &Kilitle... + + + %n minute(s) ago + + %n dakika önce + + + + %n hour(s) ago + + %n saat önce + + + + %n day(s) ago + + %n gün önce + + + + Up to date + Güncel + + + Catching up... + Aralık kapatılıyor... + + + Last received block was generated %1. + Son alınan blok, üretildi %1. + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + Bu işlem, büyüklük sınırının üzerindedir. İşleminizi gerçekleştirecek devrelere gidecek ve ağı desteklemeye yardımcı olacak %1 ücretle coin gönderebilirsiniz. Ücreti ödemek istiyor musunuz? + + + Confirm transaction fee + İşlem ücretini onayla + + + Sent transaction + İşlem gerçekleştirildi + + + Incoming transaction + Gelen işlem + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Tarih: %1 +Miktar: %2 +Tür: %3 +Adres: %4 + + + + URI handling + URI işleme + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + URI ayrıştırılamadı! Bu, geçersiz bir BitBean adresi veya hatalı URI parametreleri nedeniyle olabilir. + + + 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> + + + Backup Wallet + Cüzdanı Yedekle + + + Wallet Data (*.dat) + Cüzdan Verisi (*.dat) + + + Backup Failed + Yedekleme Başarısız Oldu + + + There was an error trying to save the wallet data to the new location. + Cüzdan verisi, yeni bir konuma kaydedilmeye çalışılırken bir hata oluştu. + + + %n second(s) + + %n saniye + + + + %n minute(s) + + %n dakika + + + + %n hour(s) + + %n saat + + + + %n day(s) + + %n gün + + + + Not staking + Pay alınmıyor + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + Önemli bir hata oluştu. BitBean artık güvenli bir şekilde devam edemez ve şimdi kapatılacak. + + + + ClientModel + + + Network Alert + Ağ Uyarısı + + + + CoinControlDialog + + Coin Control + Coin Kontrolü + + + Quantity: + Adet: + + + Bytes: + Bayt: + + + Amount: + Miktar: + + + Priority: + Öncelik: + + + Fee: + Ücret: + + + Low Output: + Düşük Çıktı: + + + no + hayır + + + 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 + Miktar + + + Label + Etiket + + + Address + Adres + + + Date + Tarih + + + Confirmations + Onaylar + + + Confirmed + Onaylandı + + + Priority + Öncelik + + + Copy address + Adresi kopyala + + + Copy label + Etiketi kopyala + + + Copy amount + Miktarı kopyala + + + Copy transaction ID + İşlem Numarasını Kopyala + + + Copy quantity + Adedi 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 + en yüksek + + + high + yüksek + + + medium-high + orta-yüksek + + + medium + orta + + + low-medium + düşük-orta + + + low + düşük + + + lowest + en düşük + + + DUST + BOZUKLUK + + + yes + evet + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + İşlem büyüklüğü 10000 bayttan büyükse, bu etiket kırmızıya dönüşür. + + Bu, kb başına en az %1 ücret gerektiği anlamına gelir. + + Girdi başına +/- 1 Byte değişkenlik gösterebilir. + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + Yüksek öncelikli işlemler, daha yüksek ihtimalle bir bloğa düşer. + +Öncelik "orta" seviyeden düşükse, bu etiket kırmızıya döner. + + Bu, kb başına en az %1 ücret gerektiği anlamına gelir. + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + Eğer herhangi bir alıcı, %1'den daha küçük bir miktar alırsa, bu etiket kırmızıya dönüşür. + + Bu, en az %2 bir ücretin gerektiği anlamına gelir. + + Minimum aktarım ücretinin 0.546 katından düşük miktarlar, BOZUKLUK olarak gösterilir. + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + Eğer para üstü %1'den küçükse, bu etiket kırmızıya dönüşür. + + Bu, en az %2 bir ücretin gerektiği anlamına gelir. + + + (no label) + (boş etiket) + + + change from %1 (%2) + %1 unsurundan para üstü (%2) + + + (change) + (para üstü) + + + + EditAddressDialog + + + Edit Address + Adresi düzenle + + + + &Label + &Etiket + + + + The label associated with this address book entry + Bu adres defteri kaydıyla ilişkili etiket + + + + &Address + &Adres + + + + The address associated with this address book entry. This can only be modified for sending addresses. + Bu adres defteri kaydıyla ilişkili etiket. Bu, sadece gönderi adresleri için değiştirilebilir. + + + + New receiving address + Yeni alım adresi + + + + New sending address + Yeni gönderi adresi + + + + Edit receiving address + Alım adresini düzenle + + + + Edit sending address + Gönderi adresini düzenle + + + + The entered address "%1" is already in the address book. + Girilen "%1" adresi hâlihazırda adres defterinde mevcuttur. + + + + The entered address "%1" is not a valid BitBean address. + Girilen %1 adresi, geçerli bir BitBean 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. + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + BitBean-Qt + + + + version + versiyon + + + + Usage: + Kullanım: + + + + command-line options + komut satırı seçenekleri + + + + UI options + GA seçenekleri + + + + Set language, for example "de_DE" (default: system locale) + Dili ayarla, örneğin "de_DE" (varsayılan: sistem yerel ayarları) + + + + Start minimized + Simge durumunda başlat + + + + Show splash screen on startup (default: 1) + Başlangıçta açılış ekranını göster (varsayılan: 1) + + + + 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. Fee 5.00 recommended. + İşlemlerinizin hızlıca gerçekleştirilmesini sağlayan kB başına opsiyonel işlem ücreti. Birçok işlem 1 kB'tır. Tavsiye edilen ücret 0.01'dir. + + + + Pay transaction &fee + Muamele ücreti &öde + + + Reserved amount does not participate in staking and is therefore spendable at any time. + Ayrılan miktar, pay almaya katılamıyor ve bu yüzden herhangi bir anda harcanabilir. + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + Ayrılan + + + + Automatically start BitBean after logging in to the system. + Sisteme giriş yaptıktan sonra BitBean'i otomatik olarak başlat + + + + &Start BitBean on system login + Sisteme girişte BitBean'i &başlat + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + Kapanışta blok ve adres veritabanlarını birbirinden ayır. Bu, onların başka bir veri klasörüne taşınabileceği anlamına gelir ancak bu işlem kapanışı yavaşlatır. Cüzdan ise her zaman ayrılmıştır. + + + + &Detach databases at shutdown + Kapanışta veritabanlarını &ayır + + + + &Network + &Şebeke + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + Yönelticide BitBean istemci portunu otomatik olarak aç. Bu, sadece yönelticiniz UPnP'i desteklediğinde ve etkin olduğunda çalışır. + + + + Map port using &UPnP + Portları &UPnP kullanarak haritala + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + BitBean ağına bir SOCKS vekil sunucusu yoluyla bağlan (örn. Tor yoluyla bağlanıldığında) + + + + &Connect through SOCKS proxy: + SOCKS vekil sunucusu yoluyla &bağlan: + + + + Proxy &IP: + Vekil &İP: + + + + IP address of the proxy (e.g. 127.0.0.1) + Vekil sunucunun IP adresi (örn. 127.0.0.1) + + + + &Port: + &Port: + + + + Port of the proxy (e.g. 9050) + Vekil sunucunun portu (mesela 9050) + + + + SOCKS &Version: + SOCKS &sürümü: + + + + SOCKS version of the proxy (e.g. 5) + Vekil sunucunun SOCKS sürümü (mesela 5) + + + + &Window + &Pencere + + + + Show only a tray icon after minimizing the window. + Küçültüldükten sonra sadece çekmece ikonu göster. + + + + &Minimize to the tray instead of the taskbar + İşlem çubuğu yerine sistem çekmecesine &küçült + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. + Pencere kapatıldığında uygulamadan çıkmak yerine uygulamayı küçültür. Bu seçenek etkinleştirildiğinde, uygulama sadece menüden çıkış seçildiğinde kapanacaktır. + + + + M&inimize on close + Kapatma sırasında k&üçült + + + + &Display + &Görünüm + + + + User Interface &language: + Kullanıcı arayüzü &lisanı: + + + + The user interface language can be set here. This setting will take effect after restarting BitBean. + Kullanıcı arabirimi dili buradan ayarlanabilir. Ayar, BitBean yeniden başlatıldığında etkin olacaktır. + + + + &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 beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Bitcoin gönderildiğinde arayüzde gösterilecek varsayılan alt birimi seçiniz. + + + + Whether to show BitBean addresses in the transaction list or not. + BitBean adresinin işlem listesinde gösterilmesi veya gösterilmemesi + + + + &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!) + Coin &kontrol özelliklerini göster (sadece uzman kişiler!) + + + + &OK + &Tamam + + + + &Cancel + &İptal + + + + &Apply + &Uygula + + + + default + varsayılan + + + + + Warning + Uyarı + + + + + This setting will take effect after restarting BitBean. + Bu ayar, BitBean'i yeniden başlattıktan sonra etkin olacaktır. + + + + The supplied proxy address is invalid. + Girilen vekil sunucu adresi geçersizdir. + + + + OverviewPage + + + Form + Form + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + Görüntülenen bilginin tarihi geçmiş olabilir. Cüzdanınız, bağlantı kurulduktan sonra otomatik olarak BitBean ağı ile senkronize olur ancak bu süreç, henüz tamamlanmamıştır. + + + Stake: + Pay: + + + + Unconfirmed: + Doğrulanmamış: + + + Wallet + Cüzdan + + + + Spendable: + Harcanabilir: + + + + Your current spendable balance + Güncel harcanabilir bakiyeniz + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + Olgunlaşmamış: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + 0 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + 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> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + Henüz onaylanmamış ve mevcut bakiyede yer almayan işlemler toplamı + + + Total of coins that was staked, and do not yet count toward the current balance + Pay alınmış ve mevcut bakiyede yer almayan coin toplamı + + + + + out of sync + eşleşme dışı + + + + QRCodeDialog + + + QR Code Dialog + QR Kodu İletisi + + + + Request Payment + Ödeme Talep Et + + + + Amount: + Miktar: + + + + Label: + Etiket: + + + + Message: + Mesaj: + + + + &Save As... + &Farklı Kaydet... + + + + Error encoding URI into QR Code. + URI'nin QR koduna kodlanmasında hata oluştu. + + + + The entered amount is invalid, please check. + Girilen miktar geçersizdir, lütfen kontrol ediniz. + + + + Resulting URI too long, try to reduce the text for label / message. + Sonuç URI'si çok uzundur, etiket / mesaj için olan metni kısaltmaya çalışın. + + + + Save QR Code + QR Kodu'nu Kaydet + + + + PNG Images (*.png) + PNG İmgeleri (*.png) + + + + RPCConsole + + + Client name + İstemci ismi + + + + + + + + + + + + + N/A + Mevcut değil + + + + Client version + İstemci sürümü + + + + &Information + &Malumat + + + + Using OpenSSL version + Kullanılan OpenSSL sürümü + + + + Startup time + Başlama zamanı + + + + Network + Şebeke + + + + Number of connections + Bağlantı sayısı + + + + On testnet + Testnet üzerinde + + + + 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ç + + + + Command-line options + Komut satırı seçenekleri + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + Muhtemel BitBean komut satırı seçeneklerinin bir listesini getirmek için BitBean-Qt yardım mesajını göster + + + + &Show + &Göster + + + + &Console + &Konsol + + + + Build date + Derleme tarihi + + + + BitBean - Debug window + BitBean - Hata ayıklama penceresi + + + + BitBean Core + BitBean Core + + + + Debug log file + Hata ayıklama kütük dosyası + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + BitBean hata ayıklama günlük kütüğü dosyasını, mevcut veri klasöründen aç. Bu işlem, büyük günlük kütüğü dosyaları için birkaç saniye sürebilir. + + + + Clear console + Konsolu temizle + + + + Welcome to the BitBean RPC console. + BitBean 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. + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + Girdiler... + + + + automatically selected + otomatik seçilmiş + + + + Insufficient funds! + Yetersiz fon! + + + + Quantity: + + + + + + 0 + 0 + + + + Bytes: + Bayt: + + + + Amount: + + + + + + + + 0.00 BC + 123.456 BC {0.00 ?} + + + + Priority: + Öncelik: + + + + medium + orta + + + + Fee: + Ücret: + + + + Low Output: + + + + + no + hayır + + + + After Fee: + Ücretten sonra: + + + + Change + Değiştir + + + + custom change address + özel adres değişikliği + + + + Send to multiple recipients at once + Birçok alıcıya aynı anda gönder + + + + Add &Recipient + &Alıcı ekle + + + + Remove all transaction fields + Tüm işlem alanlarını kaldır + + + + Clear &All + Tümünü &temizle + + + + Balance: + Bakiye: + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + Yollama etkinliğini teyit ediniz + + + + S&end + G&önder + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Copy quantity + + + + + Copy amount + + + + + 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 + + + + <b>%1</b> to %2 (%3) + <b>%1</b> %2'ye (%3) + + + + Confirm send beans + + + + + Are you sure you want to send %1? + %1 göndermek istediğinizden emin misiniz? + + + + and + ve + + + + 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. + + + + Error: Transaction creation failed. + Hata: İşlem yaratma başarısız oldu. + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + UYARI: Geçersiz BitBean adresi + + + + (no label) + (boş etiket) + + + + WARNING: unknown change address + UYARI: bilinmeyen adres değişikliği + + + + SendBeansEntry + + + Form + Form + + + + A&mount: + Mebla&ğ: + + + + Pay &To: + &Şu adrese öde: + + + + + 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: + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Ödemenin gönderileceği adres (örn: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + Adres defterinden adres seç + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Panodan adres yapıştır + + + + Alt+P + Alt+P + + + + Remove this recipient + Bu alıcıyı kaldır + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Send Coins + Bitcoin yolla + + + Coin Control Features + Para kontrolü özellikleri + + + Inputs... + Girdiler... + + + automatically selected + otomatik seçilmiş + + + Insufficient funds! + Yetersiz fon! + + + Quantity: + Miktar: + + + 0 + 0 + + + Bytes: + Bayt: + + + Amount: + Meblağ: + + + 0.00 BC + 123.456 BC {0.00 ?} + + + Priority: + Öncelik: + + + medium + orta + + + Fee: + Ücret: + + + Low Output: + Düşük çıktı: + + + no + hayır + + + After Fee: + Ücretten sonra: + + + Change + Değiştir + + + custom change address + özel adres değişikliği + + + Send to multiple recipients at once + Birçok alıcıya aynı anda gönder + + + Add &Recipient + &Alıcı ekle + + + Remove all transaction fields + Tüm işlem alanlarını kaldır + + + Clear &All + Tümünü &temizle + + + Balance: + Bakiye: + + + 123.456 BC + 123.456 BC + + + Confirm the send action + Yollama etkinliğini teyit ediniz + + + S&end + G&önder + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Bir BitBean adresi gir (örn: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + 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 + + + <b>%1</b> to %2 (%3) + <b>%1</b> %2'ye (%3) + + + Confirm send coins + Gönderiyi teyit ediniz + + + Are you sure you want to send %1? + %1 göndermek istediğinizden emin misiniz? + + + and + ve + + + 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. + + + Error: Transaction creation failed. + Hata: İşlem yaratma başarısız oldu. + + + 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: İşlem reddedildi. Bu, örneğin wallet.dat dosyasının bir kopyasını kullandıysanız ve coinler, kopyada harcanmış ve burada harcanmış olarak işaretlenmemişse, cüzdanınızdaki coinlerin bir bölümünün harcanması nedeniyle olabilir. + + + WARNING: Invalid BitBean address + UYARI: Geçersiz BitBean adresi + + + (no label) + (boş etiket) + + + WARNING: unknown change address + UYARI: bilinmeyen adres değişikliği + + + + SendCoinsEntry + + Form + Form + + + A&mount: + Mebla&ğ: + + + Pay &To: + &Şu adrese öde: + + + 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: + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Ödemenin gönderileceği adres (örn: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + Adres defterinden adres seç + + + Alt+A + Alt+A + + + Paste address from clipboard + Panodan adres yapıştır + + + Alt+P + Alt+P + + + Remove this recipient + Bu alıcıyı kaldır + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Bir BitBean adresi girin (örn: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Mesajın imzalanacağı adres (örn: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + Adres defterinden 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 + + + + Copy the current signature to the system clipboard + Güncel imzayı sistem panosuna kopyala + + + + Sign the message to prove you own this BitBean address + Bu BitBean adresine sahip olduğunuzu ispatlamak için 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Mesajın imzalandığı adres (örn: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + Mesajın, belirtilen BitBean adresiyle imzalandığından emin olmak için onu doğrula + + + + Reset all verify message fields + Tüm mesaj kontrolü alanlarını sıfırla + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + Bir BitBean adresi girin (örn: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + İmzayı oluşturmak için "Mesaj İmzala" unsurunu tıklayın + + + + Enter BitBean signature + BitBean 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ı. + + + + TransactionDesc + + + Open until %1 + %1 değerine dek açık + + + + Open for %n block(s) + + %n blok için aç + + + + + 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 devre üzerinde yayınlama + + + + + 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 blok içerisinde olgunlaşıyor + + + + + not accepted + kabul edilmedi + + + + + + + Debit + Gelir + + + + Transaction fee + Muamele ücreti + + + + Net amount + Net meblağ + + + + Message + Mesaj + + + + Comment + Yorum + + + + Transaction ID + Muamele tanımlayıcı + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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. + Üretilen coinler, harcanmaya başlamadan önce 510 blokta olgunlaşmalıdır. Bu bloğu ürettiğinizde, blok zincirine eklenmek üzere ağda yayınlanır. Eğer blok, zincire girmede başarısız olursa, bloğun durumu "kabul edilmedi"ye dönüşür ve harcanamaz. Bu, başka bir devre sizden birkaç saniye önce bir blok ürettiyse gerçekleşebilir. + + + + 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ı + + + + unknown + bilinmiyor + + + + TransactionDescDialog + + + Transaction details + Muamele detayları + + + + This pane shows a detailed description of the transaction + Bu pano muamelenin ayrıntılı açıklamasını gösterir + + + + TransactionTableModel + + + Date + Tarih + + + + Type + Tür + + + + Address + Adres + + + + Amount + Meblağ + + + + Open until %1 + %1 değerine dek açık + + + + Confirmed (%1 confirmations) + Doğrulandı (%1 teyit) + + + + Open for %n more block(s) + + %n blok için aç + + + + + 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 + + + + Immature (%1 confirmations, will be available after %2) + Olgunlaşmamış (%1 teyit, %2 teyit ardından kullanılabilir olacaktır) + + + + This block was not received by any other nodes and will probably not be accepted! + Bu blok başka hiçbir düğüm tarafından alınmamıştır ve muhtemelen kabul edilmeyecektir! + + + + Generated but not accepted + Oluşturuldu ama kabul edilmedi + + + + Received with + Şununla alındı + + + + Received from + Alındığı kişi + + + + Sent to + Gönderildiği adres + + + + Payment to yourself + Kendinize ödeme + + + + SPROUT + + + + 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ğ. + + + + 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 Data + İşlem Verisini Dışarı Aktar + + + + Comma separated file (*.csv) + Virgülle ayrılmış değerler dosyası (*.csv) + + + + Confirmed + Doğrulandı + + + + Date + Tarih + + + + Type + Tür + + + + Label + Etiket + + + + Address + Adres + + + + Amount + Meblağ + + + + ID + Tanımlayıcı + + + + Error exporting + Dışarı aktarmada hata + + + + Could not write to file %1. + %1 dosyasına yazılamadı. + + + + Range: + Aralık: + + + + to + ilâ + + + + WalletModel + + + Sending... + Gönderiyor... + + + + bitbean-core + + + To use the %s option + %s seçeneğini kullanmak için + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, konfigürasyon dosyasında bir rpcpassword belirlemelisiniz: + %s +Aşağıdaki rastgele parolayı kullanmanız tavsiye edilir: +rpcuser=BitBeanrpc +rpcpassword=%s +(bu parolayı hatırlamanız gerekmemektedir) +Kullanıcı adı ve parola aynı OLMAMALIDIR. +Dosya mevcut değilse, dosyayı sadece-kullanıcı-okuyabilir dosya izniyle yaratınız. +alertnotify ayarlamanız da ayrıca tavsiye edilir böylece sorunlar, size bildirilir; +örneğin: alertnotify=echo %%s | mail -s "BitBean Uyarısı" admin@foo.com + + + + + Error + Hata + + + + 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 + + + + 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 + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + rpcpassword=<parola> şu yapılandırma dosyasında belirtilmelidir: +%s +Dosya mevcut değilse, sadece sahibi için okumayla sınırlı izin ile oluşturunuz. + + + + BitBean version + BitBean versiyonu + + + + Usage: + Kullanım: + + + + Send command to -server or BitBeand + -sunucu veya BitBeand'ye komut gönder + + + + List commands + Komutları listele + + + + Get help for a command + Bir komut için yardım al + + + + BitBean + BitBean + + + + Options: + Seçenekler: + + + + This help message + Bu yardım mesajı + + + + Specify configuration file (default: BitBean.conf) + Konfigürasyon dosyasını belirt (varsayılan: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + pid dosyasını belirt (varsayılan: BitBean.pid) + + + + Specify data directory + Veri dizinini belirt + + + + Specify wallet file (within data directory) + Cüzdan dosyası belirtiniz (veri klasörünün içinde) + + + + Set database cache size in megabytes (default: 25) + Veritabanı önbellek boyutunu megabayt olarak belirt (varsayılan: 25) + + + + Set database disk log size in megabytes (default: 100) + Veritabanı disk log boyutunu megabayt olarak ayarla (varsayılan: 100) + + + + Specify connection timeout in milliseconds (default: 5000) + Bağlantı zaman aşım süresini milisaniye olarak belirt (varsayılan: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + Kullanılacak socks vekil sunucusunun versiyonunu seç (4-5, varsayılan: 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + Tor gizli servisine erişim için vekil sunucu kullan (varsayılan: -proxy ile aynı) + + + + Allow DNS lookups for -addnode, -seednode and -connect + -addnode, -seednode ve -connect için DNS aramalarına izin ver + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + <port> üzerinde bağlantıları dinle (varsayılan: 15714 veya testnet: 25714) + + + + Maintain at most <n> connections to peers (default: 125) + Eşler ile en çok <n> adet bağlantı kur (varsayılan: 125) + + + + 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ış + + + + Connect only to the specified node(s) + Sadece belirtilen düğüme veya düğümlere bağlan + + + + 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 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Sadece <net> şebekesindeki düğümlere bağlan (IPv4, IPv6 ya da Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Kendi IP adresini keşfet (varsayılan: dinlenildiğinde ve -externalip yoksa 1) + + + + Find peers using internet relay chat (default: 0) + Internet aktarımlı söyleşi kullanarak eşleri bul (varsayılan: 1) {0)?} + + + + 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) + + + + Bind to given address. Use [host]:port notation for IPv6 + Belirtilen adrese bağlı. IPv6 için [host]:port notasyonunu kullan + + + + Find peers using DNS lookup (default: 1) + DNS arama kullanarak eşleri bul (varsayılan: 1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Diğer devrelerle saati senkronize et. Sisteminizdeki saat doğru ise devre dışı bırakın, örn: NTC ile senkronize etme (varsayılan: 1) + + + + Sync checkpoints policy (default: strict) + Kontrol noktası politikasını senkronize et (varsayılan: sıkı) + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + Dinlenecek portu haritalamak için UPnP kullan (varsayılan: dinlenildiğinde 1) + + + + Use UPnP to map the listening port (default: 0) + Dinlenecek portu haritalamak için UPnP kullan (varsayılan: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + Blok ve adres veritabanlarını birbirinden ayır. Kapanma süresini arttırır (varsayılan: 0) + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + Konut satırı ve JSON-RPC komutlarını kabul et + + + + 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 + + + + Output extra debugging information. Implies all other -debug* options + Ekstra hata ayıklama bilgisini çıktı al. Diğer tüm -debug* seçeneklerini kapsar + + + + Output extra network debugging information + Ekstra ağ hata ayıklama bilgisini çıktı al + + + + Prepend debug output with timestamp + Tarih bilgisini, hata ayıklama çıktısının başına ekle + + + + 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) + + + + Send trace/debug info to console instead of debug.log file + Trace/hata ayıklama verilerini debug.log dosyası yerine konsola gönder + + + + Send trace/debug info to debugger + Hata ayıklayıcıya iz sürme/hata ayıklama bilgisi gönder + + + + Username for JSON-RPC connections + JSON-RPC bağlantıları için kullanıcı ismi + + + + Password for JSON-RPC connections + JSON-RPC bağlantıları için parola + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + <port> üzerinde JSON-RPC bağlantılarını dinle (varsayılan: 15715 veya testnet: 25715) + + + + 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) + + + + 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) + + + + Require a confirmations for change (default: 0) + + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + + + + + 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 + + + + Attempt to recover private keys from a corrupt wallet.dat + Bozuk bir wallet.dat dosyasından özel anahtarları geri kazanmayı dene + + + + How many blocks to check at startup (default: 2500, 0 = all) + + + + + How thorough the block verification is (0-6, default: 1) + + + + + Imports blocks from external blk000?.dat file + + + + + Block creation options: + Blok oluşturma seçenekleri: + + + + Set minimum block size in bytes (default: 0) + Bayt olarak asgari blok boyutunu tanımla (varsayılan: 0) + + + + Set maximum block size in bytes (default: 250000) + Bayt olarak maksimum blok boyutunu belirle (varsayılan: 250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Bayt olarak yüksek öncelikli/düşük ücretli işlemlerin maksimum boyutunu belirle (varsayılan: 27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + + Invalid amount for -paytxfee=<amount>: '%s' + -paytxfee=<meblağ> için geçersiz meblağ: '%s' + + + + 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. + + + + Invalid amount for -mininput=<amount>: '%s' + + + + + Wallet %s resides outside data directory %s. + + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + + + + + Verifying database integrity... + Veritabanı bütünlüğü doğrulanıyor... + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Veritabanı ortamı %s başlatılırken hata oluştu! Kurtarmak için, İLGİLİ KLASÖRÜ YEDEKLEYİN, ardından wallet.dat dışındaki her şeyi silin. + + + + 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. + + + + wallet.dat corrupt, salvage failed + wallet.dat bozuk, geri kazanım başarısız oldu + + + + Unknown -socks proxy version requested: %i + Bilinmeyen bir -socks vekil sürümü talep edildi: %i + + + + Unknown network specified in -onlynet: '%s' + -onlynet için bilinmeyen bir şebeke belirtildi: '%s' + + + + Invalid -proxy address: '%s' + Geçersiz -proxy adresi: '%s' + + + + Invalid -tor address: '%s' + Geçersiz -tor adresi: '%s' + + + + Cannot resolve -bind address: '%s' + -bind adresi çözümlenemedi: '%s' + + + + 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. + + + + Cannot resolve -externalip address: '%s' + -externalip adresi çözümlenemedi: '%s' + + + + Invalid amount for -reservebalance=<amount> + -reservebalance=<amount> için geçersiz miktar + + + + Unable to sign checkpoint, wrong checkpointkey? + + Kontrol noktası imzalanamadı, bu bir hatalı kontrol noktası anahtarı mı? + + + + + Loading block index... + Blok indeksi yükleniyor... + + + + Error loading blkindex.dat + + + + + Loading wallet... + Cüzdan yükleniyor... + + + + Error loading wallet.dat: Wallet corrupted + wallet.dat dosyasının yüklenmesinde hata oluştu: bozuk cüzdan + + + + 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. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + + + + + Wallet needed to be rewritten: restart BitBean to complete + + + + + Error loading wallet.dat + wallet.dat dosyasının yüklenmesinde hata oluştu + + + + Cannot downgrade wallet + Cüzdan eski biçime geri alınamaz + + + + Cannot initialize keypool + + + + + Cannot write default address + Varsayılan adres yazılamadı + + + + Rescanning... + Yeniden tarama... + + + + Importing blockchain data file. + Blok zinciri veri dosyası içeri aktarılıyor. + + + + Importing bootstrap blockchain data file. + Önyükleme blok zinciri veri dosyası içeri aktarılıyor. + + + + Loading addresses... + Adresler yükleniyor... + + + + Error: could not start node + + + + + Done loading + Yükleme tamamlandı + + + + Unable to bind to %s on this computer. BitBean is probably already running. + + + + + 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) + + + + Error: Wallet locked, unable to create transaction + Hata: Cüzdan kilitli, işlem yaratılamıyor + + + + Error: Wallet unlocked for staking only, unable to create transaction. + + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Hata: Bu işlem; miktarı, karmaşıklığı veya son alınan miktarın kullanımı nedeniyle en az %s işlem ücreti gerektirir + + + + Error: Transaction creation failed + Hata: İşlem yaratma başarısız oldu + + + + Sending... + Gönderiyor... + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + Geçersiz meblağ + + + + Insufficient funds + Yetersiz bakiye + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + Uyarı: Lütfen bilgisayarınızın tarih ve saatinin doğru olduğunu kontrol ediniz! Saatiniz yanlış ise, BitBean düzgün çalışmayacaktır. + + + + Warning: This version is obsolete, upgrade required! + Uyarı: Bu sürüm çok eskidir, güncellemeniz gerekir! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + UYARI: senkronize edilen kontrol noktası ihlali tespit edildi ancak atlandı! + + + + Warning: Disk space is low! + Uyarı: Disk alanı düşüktür! + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + + bitcoin-core + + BitBean version + BitBean versiyonu + + + Usage: + Kullanım: + + + Send command to -server or BitBeand + -sunucu veya BitBeand'ye komut gönder + + + List commands + Komutları listele + + + Get help for a command + Bir komut için yardım al + + + Options: + Seçenekler: + + + Specify configuration file (default: BitBean.conf) + Konfigürasyon dosyasını belirt (varsayılan: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + pid dosyasını belirt (varsayılan: BitBean.pid) + + + Specify wallet file (within data directory) + Cüzdan dosyası belirtiniz (veri klasörünün içinde) + + + Specify data directory + Veri dizinini belirt + + + Set database cache size in megabytes (default: 25) + Veritabanı önbellek boyutunu megabayt olarak belirt (varsayılan: 25) + + + Set database disk log size in megabytes (default: 100) + Veritabanı disk log boyutunu megabayt olarak ayarla (varsayılan: 100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + <port> üzerinde bağlantıları dinle (varsayılan: 15714 veya testnet: 25714) + + + 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 + + + Bind to given address. Use [host]:port notation for IPv6 + Belirtilen adrese bağlı. IPv6 için [host]:port notasyonunu kullan + + + Stake your coins to support network and gain reward (default: 1) + Ağı desteklemek için coinlerinizden pay alın ve ödül kazanın (varsayılan: 1) + + + 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 + + + Detach block and address databases. Increases shutdown time (default: 0) + Blok ve adres veritabanlarını birbirinden ayır. Kapanma süresini arttırır (varsayılan: 0) + + + 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: İşlem reddedildi. Bu; cüzdanınızdaki bazı coinler, önceden harcanmışsa, örneğin wallet.dat dosyasının bir kopyasını kullandıysanız ve bu kopyadaki coinler harcanmış ve burada harcanmış olarak işaretlenmediyse gerçekleşebilir. + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + Hata: Bu işlem; miktarı, karmaşıklığı veya son alınan miktarın kullanımı nedeniyle en az %s işlem ücreti gerektirir + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + <port> üzerinde JSON-RPC bağlantılarını dinle (varsayılan: 15715 veya testnet: 25715) + + + Accept command line and JSON-RPC commands + Konut satırı ve JSON-RPC komutlarını kabul et + + + Error: Transaction creation failed + Hata: İşlem yaratma başarısız oldu + + + Error: Wallet locked, unable to create transaction + Hata: Cüzdan kilitli, işlem yaratılamıyor + + + Importing blockchain data file. + Blok zinciri veri dosyası içeri aktarılıyor. + + + Importing bootstrap blockchain data file. + Önyükleme blok zinciri veri dosyası içeri aktarılıyor. + + + 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) + + + 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 + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + Veritabanı ortamı %s başlatılırken hata oluştu! Kurtarmak için, İLGİLİ KLASÖRÜ YEDEKLEYİN, ardından wallet.dat dışındaki her şeyi silin. + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + Bayt olarak yüksek öncelikli/düşük ücretli işlemlerin maksimum boyutunu belirle (varsayılan: 27000) + + + 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 BitBean will not work properly. + Uyarı: Lütfen bilgisayarınızın tarih ve saatinin doğru olduğunu kontrol ediniz! Saatiniz yanlış ise, BitBean düzgün çalışmayacaktır. + + + 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. + + + Attempt to recover private keys from a corrupt wallet.dat + Bozuk bir wallet.dat dosyasından özel anahtarları geri kazanmayı dene + + + Block creation options: + Blok oluşturma seçenekleri: + + + Connect only to the specified node(s) + Sadece belirtilen düğüme veya düğümlere bağlan + + + Discover own IP address (default: 1 when listening and no -externalip) + Kendi IP adresini keşfet (varsayılan: dinlenildiğinde ve -externalip yoksa 1) + + + 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. + + + Find peers using DNS lookup (default: 1) + DNS arama kullanarak eşleri bul (varsayılan: 1) + + + Sync checkpoints policy (default: strict) + Kontrol noktası politikasını senkronize et (varsayılan: sıkı) + + + Invalid -tor address: '%s' + Geçersiz -tor adresi: '%s' + + + Invalid amount for -reservebalance=<amount> + -reservebalance=<amount> için geçersiz miktar + + + 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) + Sadece <net> şebekesindeki düğümlere bağlan (IPv4, IPv6 ya da Tor) + + + Output extra debugging information. Implies all other -debug* options + Ekstra hata ayıklama bilgisini çıktı al. Diğer tüm -debug* seçeneklerini kapsar + + + Output extra network debugging information + Ekstra ağ hata ayıklama bilgisini çıktı al + + + Prepend debug output with timestamp + Tarih bilgisini, hata ayıklama çıktısının başına ekle + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL seçenekleri: (SSL kurulum bilgisi için Bitcoin vikisine bakınız) + + + Select the version of socks proxy to use (4-5, default: 5) + Kullanılacak socks vekil sunucusunun versiyonunu seç (4-5, varsayılan: 5) + + + Send trace/debug info to console instead of debug.log file + Trace/hata ayıklama verilerini debug.log dosyası yerine konsola gönder + + + Send trace/debug info to debugger + Hata ayıklayıcıya iz sürme/hata ayıklama bilgisi gönder + + + Set maximum block size in bytes (default: 250000) + Bayt olarak maksimum blok boyutunu belirle (varsayılan: 250000) + + + Set minimum block size in bytes (default: 0) + Bayt olarak asgari blok boyutunu tanımla (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) + + + Specify connection timeout in milliseconds (default: 5000) + Bağlantı zaman aşım süresini milisaniye olarak belirt (varsayılan: 5000) + + + Unable to sign checkpoint, wrong checkpointkey? + + Kontrol noktası imzalanamadı, bu bir hatalı kontrol noktası anahtarı mı? + + + + Use UPnP to map the listening port (default: 0) + Dinlenecek portu haritalamak için UPnP kullan (varsayılan: 0) + + + Use UPnP to map the listening port (default: 1 when listening) + Dinlenecek portu haritalamak için UPnP kullan (varsayılan: dinlenildiğinde 1) + + + Use proxy to reach tor hidden services (default: same as -proxy) + Tor gizli servisine erişim için vekil sunucu kullan (varsayılan: -proxy ile aynı) + + + Username for JSON-RPC connections + JSON-RPC bağlantıları için kullanıcı ismi + + + Verifying database integrity... + Veritabanı bütünlüğü doğrulanıyor... + + + WARNING: syncronized checkpoint violation detected, but skipped! + UYARI: senkronize edilen kontrol noktası ihlali tespit edildi ancak atlandı! + + + Warning: Disk space is low! + Uyarı: Disk alanı düşüktür! + + + Warning: This version is obsolete, upgrade required! + Uyarı: Bu sürüm çok eskidir, güncellemeniz gerekir! + + + 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 + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, konfigürasyon dosyasında bir rpcpassword belirlemelisiniz: + %s +Aşağıdaki rastgele parolayı kullanmanız tavsiye edilir: +rpcuser=BitBeanrpc +rpcpassword=%s +(bu parolayı hatırlamanız gerekmemektedir) +Kullanıcı adı ve parola aynı OLMAMALIDIR. +Dosya mevcut değilse, dosyayı sadece-kullanıcı-okuyabilir dosya izniyle yaratınız. +alertnotify ayarlamanız da ayrıca tavsiye edilir böylece sorunlar, size bildirilir; +örneğin: alertnotify=echo %%s | mail -s "BitBean Uyarısı" admin@foo.com + + + + Find peers using internet relay chat (default: 0) + Internet aktarımlı söyleşi kullanarak eşleri bul (varsayılan: 1) {0)?} + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + Diğer devrelerle saati senkronize et. Sisteminizdeki saat doğru ise devre dışı bırakın, örn: NTC ile senkronize etme (varsayılan: 1) + + + 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) + + + 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) + + + 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.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ış + + + 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. + rpcpassword=<parola> şu yapılandırma dosyasında belirtilmelidir: +%s +Dosya mevcut değilse, sadece sahibi için okumayla sınırlı izin ile oluşturunuz. + + + diff --git a/src/qt/locale/bitbean_uk.qm b/src/qt/locale/bitbean_uk.qm new file mode 100644 index 0000000..25552c8 Binary files /dev/null and b/src/qt/locale/bitbean_uk.qm differ diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitbean_uk.ts similarity index 55% rename from src/qt/locale/bitcoin_uk.ts rename to src/qt/locale/bitbean_uk.ts index 5bfe28c..cb02ff4 100644 --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitbean_uk.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + Це програмне забезпечення є експериментальним. Поширюється за ліцензією MIT/X11, додаткова інформація міститься у файлі COPYING, а також за адресою http://www.opensource.org/licenses/mit-license.php. @@ -37,72 +49,72 @@ This product includes software developed by the OpenSSL Project for use in the O AddressBookPage - + Address Book - + - + Double-click to edit address or label Двічі клікніть на адресу чи назву для їх зміни - + Create a new address Створити нову адресу - + Copy the currently selected address to the system clipboard Копіювати виділену адресу в буфер обміну - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address &Скопіювати адресу - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list Вилучити вибрані адреси з переліку - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + Перевірити повідомлення - + &Delete &Видалити @@ -119,7 +131,7 @@ This product includes software developed by the OpenSSL Project for use in the O Export Address Book Data - + @@ -129,12 +141,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -158,34 +170,34 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog Діалог введення паролю - + Enter passphrase Введіть пароль - + New passphrase Новий пароль - + Repeat new passphrase Повторіть пароль - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + @@ -234,16 +246,21 @@ This product includes software developed by the OpenSSL Project for use in the O - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - + Are you sure you wish to encrypt your wallet? + Ви дійсно хочете зашифрувати свій гаманець? - Are you sure you wish to encrypt your wallet? - Ви дійсно хочете зашифрувати свій гаманець? + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. ВАЖЛИВО: Всі попередні резервні копії, які ви зробили з вашого гаманця файл повинен бути замінений новоствореному, зашифрованому файлі гаманця. З міркувань безпеки, попередні резервні копії в незашифрованому файлі гаманець стане марним, як тільки ви починаєте використовувати нову, зашифрований гаманець. @@ -260,12 +277,7 @@ This product includes software developed by the OpenSSL Project for use in the O Гаманець зашифровано - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - - - - + @@ -307,333 +319,591 @@ This product includes software developed by the OpenSSL Project for use in the O - BitcoinGUI + BeanControlDialog - - Sign &message... - &Підписати повідомлення... - - - - Synchronizing with network... - Синхронізація з мережею... + + Bean Control + - - &Overview - &Огляд + + Quantity: + - - Show general overview of wallet - Показати загальний огляд гаманця + + Bytes: + - - &Transactions - Транзакції + + Amount: + Кількість: - - Browse transaction history - Переглянути історію транзакцій + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - &Вихід + + Tree mode + - - Quit application - Вийти + + List mode + - - Show information about BitBean - + + Amount + Кількість - - About &Qt - &Про Qt + + Label + - - Show information about Qt - Показати інформацію про Qt + + Address + Адреса - - &Options... - &Параметри... + + Date + Дата - - &Encrypt Wallet... - &Шифрування гаманця... + + Confirmations + - &Backup Wallet... - &Резервне копіювання гаманця... + Confirmed + Підтверджені - - &Change Passphrase... - Змінити парол&ь... - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + Скопіювати адресу - - &Export... - + + Copy label + Скопіювати мітку - - Send coins to a BitBean address - + + + Copy amount + Копіювати кількість - - Modify configuration options for BitBean - + + Copy transaction ID + Копіювати ID транзакції - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - Резервне копіювання гаманця в інше місце + + Copy after fee + - - Change the passphrase used for wallet encryption - Змінити пароль, який використовується для шифрування гаманця + + Copy bytes + - - &Debug window - Вікно зневадження + + Copy priority + - Open debugging and diagnostic console - Відкрити консоль зневадження і діагностики + Copy low output + - - &Verify message... - Перевірити повідомлення... + + Copy change + - - BitBean - + + highest + - - Wallet - Гаманець + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - Показати / Приховати + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Файл + + DUST + - - &Settings - &Налаштування + + yes + - - &Help - &Довідка + + no + - - Tabs toolbar - Панель вкладок + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [тестова мережа] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (немає назви) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + &Огляд - - - %n second(s) ago - + + + Show general overview of wallet + Показати загальний огляд гаманця - - &Unlock Wallet... - + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + + + + + &Transactions + Транзакції + + + + Browse transaction history + Переглянути історію транзакцій + + + + &Address Book + + + + + Edit the list of stored addresses and labels + + + + + E&xit + &Вихід + + + + Quit application + Вийти + + + + &About BitBean + + + + + Show information about BitBean + + + + + About &Qt + &Про Qt + + + + Show information about Qt + Показати інформацію про Qt + + + + &Options... + &Параметри... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + Показати / Приховати + + + + &Encrypt Wallet... + &Шифрування гаманця... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + &Резервне копіювання гаманця... + + + + Backup wallet to another location + Резервне копіювання гаманця в інше місце + + + + &Change Passphrase... + Змінити парол&ь... + + + + Change the passphrase used for wallet encryption + Змінити пароль, який використовується для шифрування гаманця + + + + &Unlock Wallet... + + + + + Unlock wallet + Розблокувати гаманець + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + &Підписати повідомлення... + + + + &Verify message... + Перевірити повідомлення... + + + + &Export... + + + + + Export the data in the current tab to a file + + + + + &Debug window + Вікно зневадження + + + + Open debugging and diagnostic console + Відкрити консоль зневадження і діагностики + + + + &File + &Файл + + + + &Settings + &Налаштування + + + + &Help + &Довідка + + + + Tabs toolbar + Панель вкладок + + + + Actions toolbar + + + + + + [testnet] + [тестова мережа] + + + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + + + + + + Synchronizing with network... + Синхронізація з мережею... + + + + ~%n block(s) remaining + + + + + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + + + + + Downloaded %1 blocks of transaction history. + - + + %n second(s) ago + + + + + + + + %n minute(s) ago - + + + + + %n hour(s) ago - + + + + + %n day(s) ago - + + + + + Up to date - Синхронізовано + Синхронізовано Catching up... - Синхронізується... + Синхронізується... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - Надіслані транзакції + Надіслані транзакції Incoming transaction - Отримані перекази + Отримані перекази @@ -642,7 +912,7 @@ Amount: %2 Type: %3 Address: %4 - Дата: %1 + Дата: %1 Кількість: %2 Тип: %3 Адреса: %4 @@ -652,341 +922,309 @@ Address: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - <b>Зашифрований</b> гаманець <b>розблоковано</b> + <b>Зашифрований</b> гаманець <b>розблоковано</b> Wallet is <b>encrypted</b> and currently <b>locked</b> - <b>Зашифрований</b> гаманець <b>заблоковано</b> + <b>Зашифрований</b> гаманець <b>заблоковано</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + + + %n minute(s) - + + + + + %n hour(s) - + + + + + %n day(s) - + + + + + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - Сповіщення мережі + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - + + Not staking because you don't have mature beans + - - Bytes: - + + Not staking + + + + BitcoinGUI - - Amount: - Кількість: + Sign &message... + &Підписати повідомлення... - - Priority: - + Synchronizing with network... + Синхронізація з мережею... - - Fee: - + &Overview + &Огляд - - Low Output: - + Show general overview of wallet + Показати загальний огляд гаманця - - no - + &Transactions + Транзакції - - After Fee: - + Browse transaction history + Переглянути історію транзакцій - - Change: - + E&xit + &Вихід - - (un)select all - + Quit application + Вийти - - Tree mode - + About &Qt + &Про Qt - - List mode - + Show information about Qt + Показати інформацію про Qt - - Amount - Кількість + &Options... + &Параметри... - - Label - + &Encrypt Wallet... + &Шифрування гаманця... - - Address - Адреса + &Backup Wallet... + &Резервне копіювання гаманця... - - Date - Дата + &Change Passphrase... + Змінити парол&ь... - - Confirmations - + Backup wallet to another location + Резервне копіювання гаманця в інше місце - - Confirmed - Підтверджені + Change the passphrase used for wallet encryption + Змінити пароль, який використовується для шифрування гаманця - - Priority - + &Debug window + Вікно зневадження - - Copy address - Скопіювати адресу + Open debugging and diagnostic console + Відкрити консоль зневадження і діагностики - - Copy label - Скопіювати мітку + &Verify message... + Перевірити повідомлення... - - - Copy amount - Копіювати кількість + Wallet + Гаманець - - Copy transaction ID - Копіювати ID транзакції + &Show / Hide + Показати / Приховати - - Copy quantity - + &File + &Файл - - Copy fee - + &Settings + &Налаштування - - Copy after fee - + &Help + &Довідка - - Copy bytes - + Tabs toolbar + Панель вкладок - - Copy priority - + [testnet] + [тестова мережа] - - Copy low output - + Up to date + Синхронізовано - - Copy change - + Catching up... + Синхронізується... - - highest - + Sent transaction + Надіслані транзакції - - high - + Incoming transaction + Отримані перекази - - medium-high - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + Дата: %1 +Кількість: %2 +Тип: %3 +Адреса: %4 + - - medium - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + <b>Зашифрований</b> гаманець <b>розблоковано</b> - - low-medium - + Wallet is <b>encrypted</b> and currently <b>locked</b> + <b>Зашифрований</b> гаманець <b>заблоковано</b> + + + ClientModel - - low - + + Network Alert + Сповіщення мережі + + + CoinControlDialog - - lowest - + Amount: + Кількість: - - DUST - + Amount + Кількість - - yes - + Address + Адреса - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + Date + Дата - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + Confirmed + Підтверджені - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + Copy address + Скопіювати адресу - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Copy label + Скопіювати мітку - - - (no label) - (немає назви) + Copy amount + Копіювати кількість - - change from %1 (%2) - + Copy transaction ID + Копіювати ID транзакції - - (change) - + (no label) + (немає назви) EditAddressDialog - + Edit Address Редагувати адресу @@ -998,7 +1236,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1008,7 +1246,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1038,7 +1276,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1054,98 +1292,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + Використання: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options Параметри - + &Main &Головні - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee Заплатити комісі&ю - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1155,7 +1393,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1165,12 +1403,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1180,7 +1418,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1240,7 +1478,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1249,31 +1487,35 @@ This label turns red, if the priority is smaller than "medium". - Choose the default subdivision unit to show in the interface and when sending coins. - Виберіть одиницю вимірювання монет, яка буде відображатись в гаманці та при відправленні. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - &Відображати адресу в списку транзакцій + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + Choose the default subdivision unit to show in the interface and when sending coins. + Виберіть одиницю вимірювання монет, яка буде відображатись в гаманці та при відправленні. + + + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + &Відображати адресу в списку транзакцій - + &OK &Гаразд @@ -1285,7 +1527,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1296,13 +1538,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1313,78 +1555,158 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form Форма - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: - + - Wallet - Гаманець + Гаманець - + Spendable: - + - + Your current spendable balance Ваш поточний баланс расходуемого - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: незрілі: + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + Mined balance that has not yet matured - Замінований баланс, який ще не дозрів + Замінований баланс, який ще не дозрів - + Total: всього: - Your current total balance - Ваше поточне Сукупний баланс + Ваше поточне Сукупний баланс - <b>Recent transactions</b> - <b>Недавні транзакції</b> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - - - - - Total of coins that was staked, and do not yet count toward the current balance - + <b>Недавні транзакції</b> - + out of sync не синхронізовано @@ -1393,65 +1715,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Кількість: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name Назва клієнту @@ -1502,7 +1824,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1532,17 +1854,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1557,12 +1879,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1572,7 +1894,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1582,7 +1904,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1596,59 +1918,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Відправити + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - Кількість: + Кількість: @@ -1656,296 +1978,394 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Відправити на декілька адрес + Відправити на декілька адрес Add &Recipient - Дод&ати одержувача + Дод&ати одержувача Remove all transaction fields - + Clear &All - Очистити &все + Очистити &все Balance: - Баланс: + Баланс: 123.456 BC - + Confirm the send action - Підтвердити відправлення + Підтвердити відправлення S&end - &Відправити + &Відправити - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - Копіювати кількість + Копіювати кількість Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - Підтвердіть відправлення + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - Знайдено адресу що дублюється. Відправлення на кожну адресу дозволяється лише один раз на кожну операцію переказу. + Знайдено адресу що дублюється. Відправлення на кожну адресу дозволяється лише один раз на кожну операцію переказу. Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (немає назви) + (немає назви) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + Форма - + A&mount: - &Кількість: + &Кількість: Pay &To: - &Отримувач: + &Отримувач: - + Enter a label for this address to add it to your address book - Введіть мітку для цієї адреси для додавання її в адресну книгу + Введіть мітку для цієї адреси для додавання її в адресну книгу &Label: - &Мітка: + &Мітка: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - Вставити адресу + Вставити адресу Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + - SignVerifyMessageDialog + SendCoinsDialog - - Signatures - Sign / Verify a Message - Підписи - Підпис / Перевірка повідомлення + Send Coins + Відправити - - - &Sign Message - &Підписати повідомлення + Amount: + Кількість: - - 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. - Ви можете зареєструватися повідомленнями зі своїми адресами, щоб довести, що ви є їх власником. Будьте обережні, щоб не підписувати що-небудь неясне, як фішинг-атак може спробувати обдурити вас в підписанні вашу особистість до них. Тільки підписати повністю докладні свідчення, користувач зобов'язується. + Send to multiple recipients at once + Відправити на декілька адрес + + + Add &Recipient + Дод&ати одержувача + + + Clear &All + Очистити &все + + + Balance: + Баланс: + + + Confirm the send action + Підтвердити відправлення + + + S&end + &Відправити + + + Copy amount + Копіювати кількість + + + Confirm send coins + Підтвердіть відправлення + + + 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. + Знайдено адресу що дублюється. Відправлення на кожну адресу дозволяється лише один раз на кожну операцію переказу. + + + (no label) + (немає назви) + + + + SendCoinsEntry + + A&mount: + &Кількість: + + + Pay &To: + &Отримувач: + + + Enter a label for this address to add it to your address book + Введіть мітку для цієї адреси для додавання її в адресну книгу + + + &Label: + &Мітка: + + + Alt+A + Alt+A + + + Paste address from clipboard + Вставити адресу + + + Alt+P + Alt+P + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1976,7 +2396,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -2003,12 +2423,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2019,7 +2439,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2029,7 +2449,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2108,12 +2528,16 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + + + conflicted - + @@ -2138,7 +2562,11 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - + + + + + @@ -2191,7 +2619,11 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - + + + + + @@ -2233,8 +2665,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2280,7 +2712,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details Деталі транзакції @@ -2325,32 +2757,36 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - + + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + @@ -2384,8 +2820,12 @@ This label turns red, if the priority is smaller than "medium". + SPROUT + + + Mined - Добуто + Добуто @@ -2433,854 +2873,1133 @@ This label turns red, if the priority is smaller than "medium". - This week - На цьому тижні + 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 Data + + + + + Comma separated file (*.csv) + Файли, розділені комою (*.csv) + + + + Confirmed + Підтверджені + + + + Date + Дата + + + + Type + Тип + + + + Label + Мітка + + + + Address + Адреса + + + + Amount + Кількість + + + + ID + Ідентифікатор + + + + Error exporting + + + + + Could not write to file %1. + + + + + Range: + Діапазон від: + + + + to + до + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + Щоб використати опцію %s + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + Помилка + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + Ви мусите встановити rpcpassword=<password> в файлі конфігурації: +%s +Якщо файл не існує, створіть його із правами тільки для читання власником (owner-readable-only). + + + + BitBean version + + + + + Usage: + Використання: + + + + Send command to -server or BitBeand + + + + + List commands + Список команд + + + + Get help for a command + Отримати довідку по команді + + + + BitBean + + + + + Options: + Параметри: + + + + This help message + Дана довідка + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + Вкажіть робочий каталог + + + + Specify wallet file (within data directory) + + + + + Set database cache size in megabytes (default: 25) + Встановити розмір кешу бази даних в мегабайтах (типово: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + Вказати тайм-аут підключення у мілісекундах (типово: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Дозволити пошук в DNS для команд -addnode, -seednode та -connect + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + Підтримувати не більше <n> зв'язків з колегами (типово: 125) + + + + Add a node to connect to and attempt to keep the connection open + Додати вузол до підключення і лишити його відкритим + + + + Connect only to the specified node(s) + Підключитись лише до вказаного вузла + + + + Connect to a node to retrieve peer addresses, and disconnect + Підключитись до вузла, щоб отримати список адрес інших учасників та від'єднатись + + + + Specify your own public address + Вкажіть вашу власну публічну адресу + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Підключити тільки до вузлів в мережі <net> (IPv4, IPv6 або Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + Відкрийте власну IP-адресу (за замовчуванням: 1, коли не чує і-externalip) + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + Приймати з'єднання ззовні (за замовчуванням: 1, якщо ні-проксі або-з'єднання) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + Threshold for disconnecting misbehaving peers (default: 100) + Поріг відключення неправильно під'єднаних пірів (типово: 100) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Максимальній розмір вхідного буферу на одне з'єднання (типово: 86400) + + + + 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) - This month - На цьому місяці + Use UPnP to map the listening port (default: 1 when listening) + Намагатись використовувати UPnP для відображення порту, що прослуховується на роутері (default: 1 when listening) - Last month - Минулого місяця + Use UPnP to map the listening port (default: 0) + Намагатись використовувати UPnP для відображення порту, що прослуховується на роутері (default: 0) - This year - Цього року + Detach block and address databases. Increases shutdown time (default: 0) + - - Range... - Проміжок... + + Fee per KB to add to transactions you send + - - Received with - Отримані на + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Sent to - Відправлені на + + Accept command line and JSON-RPC commands + Приймати команди із командного рядка та команди JSON-RPC - - To yourself - Відправлені собі + + Run in the background as a daemon and accept commands + Запустити в фоновому режимі (як демон) та приймати команди - Mined - Добуті + Use the test network + Використовувати тестову мережу - Other - Інше + Output extra debugging information. Implies all other -debug* options + - - Enter address or label to search - Введіть адресу чи мітку для пошуку + + Output extra network debugging information + - - Min amount - Мінімальна сума + + Prepend debug output with timestamp + - - Copy address - Скопіювати адресу + + Shrink debug.log file on client startup (default: 1 when no -debug) + Стискати файл debug.log під час старту клієнта (типово: 1 коли відсутутній параметр -debug) - Copy label - Скопіювати мітку + Send trace/debug info to console instead of debug.log file + Відсилати налагоджувальну інформацію на консоль, а не у файл debug.log - Copy amount - Копіювати кількість + Send trace/debug info to debugger + - Copy transaction ID - Копіювати ID транзакції + Username for JSON-RPC connections + Ім'я користувача для JSON-RPC-з'єднань - Edit label - Редагувати мітку + Password for JSON-RPC connections + Пароль для JSON-RPC-з'єднань - Show transaction details - Показати деталі транзакції + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - - Export Transaction Data - + + Allow JSON-RPC connections from specified IP address + Дозволити JSON-RPC-з'єднання з вказаної IP-адреси - Comma separated file (*.csv) - Файли, розділені комою (*.csv) + Send commands to node running on <ip> (default: 127.0.0.1) + Відправляти команди на вузол, запущений на <ip> (типово: 127.0.0.1) - - Confirmed - Підтверджені + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Виконати команду, коли з'явиться новий блок (%s в команді змінюється на хеш блоку) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Require a confirmations for change (default: 0) + - Date - Дата + Enforce transaction scripts to use canonical PUSH operators (default: 1) + + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + + + + + Upgrade wallet to latest format + Модернізувати гаманець до останнього формату - Type - Тип + Set key pool size to <n> (default: 100) + Встановити розмір пулу ключів <n> (типово: 100) - Label - Мітка + Rescan the block chain for missing wallet transactions + Пересканувати ланцюжок блоків, в пошуку втрачених транзакцій - Address - Адреса + Attempt to recover private keys from a corrupt wallet.dat + Спроба відновити закриті ключі з пошкодженого wallet.dat - Amount - Кількість + How many blocks to check at startup (default: 2500, 0 = all) + - ID - Ідентифікатор + How thorough the block verification is (0-6, default: 1) + - - Error exporting - + + Imports blocks from external blk000?.dat file + - - Could not write to file %1. - + + Block creation options: + Опції створення блоку: - - Range: - Діапазон від: + + Set minimum block size in bytes (default: 0) + Встановити мінімальний розмір блоку у байтах (типово: 0) - - to - до + + Set maximum block size in bytes (default: 250000) + - - - WalletModel - - Sending... - + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - - bitcoin-core - - BitBean version - + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - Usage: - Використання: + Use OpenSSL (https) for JSON-RPC connections + Використовувати OpenSSL (https) для JSON-RPC-з'єднань - Send command to -server or BitBeand - + Server certificate file (default: server.cert) + Файл сертифіката сервера (типово: server.cert) - List commands - Список команд + Server private key (default: server.pem) + Закритий ключ сервера (типово: server.pem) - Get help for a command - Отримати довідку по команді + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - Options: - Параметри: + + Invalid amount for -paytxfee=<amount>: '%s' + Помилка у величині комісії -paytxfee=<amount>: «%s» - - Specify configuration file (default: BitBean.conf) - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Увага: встановлено занадто велику комісію (-paytxfee). Комісія зніматиметься кожен раз коли ви проводитимете транзакції. - - Specify pid file (default: BitBeand.pid) - + + Invalid amount for -mininput=<amount>: '%s' + - - Specify wallet file (within data directory) - + + Wallet %s resides outside data directory %s. + - - Specify data directory - Вкажіть робочий каталог + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Set database cache size in megabytes (default: 25) - Встановити розмір кешу бази даних в мегабайтах (типово: 25) + + Verifying database integrity... + - Set database disk log size in megabytes (default: 100) - + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + 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; якщо Ваш баланс чи транзакції неправильні, Ви можете відновити їх з резервної копії. - - Maintain at most <n> connections to peers (default: 125) - Підтримувати не більше <n> зв'язків з колегами (типово: 125) + + wallet.dat corrupt, salvage failed + wallet.dat пошкоджено, відновлення не вдалося - - Connect to a node to retrieve peer addresses, and disconnect - Підключитись до вузла, щоб отримати список адрес інших учасників та від'єднатись + + Unknown -socks proxy version requested: %i + В параметрі -socks запитується невідома версія: %i - Specify your own public address - Вкажіть вашу власну публічну адресу + Unknown network specified in -onlynet: '%s' + Невідома мережа вказана в -onlynet: «%s» - - Bind to given address. Use [host]:port notation for IPv6 - + + Invalid -proxy address: '%s' + Помилка в адресі проксі-сервера: «%s» - - Stake your coins to support network and gain reward (default: 1) - + + Invalid -tor address: '%s' + - - Threshold for disconnecting misbehaving peers (default: 100) - Поріг відключення неправильно під'єднаних пірів (типово: 100) + + Cannot resolve -bind address: '%s' + - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - Максимальній розмір вхідного буферу на одне з'єднання (типово: 86400) + Failed to listen on any port. Use -listen=0 if you want this. + Не вдалося слухати на будь-якому порту. Використовуйте-слухати = 0, якщо ви хочете цього. - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - + + Cannot resolve -externalip address: '%s' + - - Detach block and address databases. Increases shutdown time (default: 0) - + + Invalid amount for -reservebalance=<amount> + - - 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. - + + Unable to sign checkpoint, wrong checkpointkey? + + - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Loading block index... + Завантаження індексу блоків... - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Error loading blkindex.dat + - - Accept command line and JSON-RPC commands - Приймати команди із командного рядка та команди JSON-RPC + + Loading wallet... + Завантаження гаманця... - - Error: Transaction creation failed - + + Error loading wallet.dat: Wallet corrupted + Помилка при завантаженні wallet.dat: Гаманець пошкоджено - - Error: Wallet locked, unable to create transaction - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Увага: помилка читання wallet.dat! Всі ключі прочитано коректно, але дані транзакцій чи записи адресної книги можуть бути пропущені, або пошкоджені. - - Importing blockchain data file. - + + Error loading wallet.dat: Wallet requires newer version of BitBean + - Importing bootstrap blockchain data file. - + Wallet needed to be rewritten: restart BitBean to complete + - - Run in the background as a daemon and accept commands - Запустити в фоновому режимі (як демон) та приймати команди + + Error loading wallet.dat + Помилка при завантаженні wallet.dat - Use the test network - Використовувати тестову мережу + Cannot downgrade wallet + Не вдається понизити версію гаманця - - Accept connections from outside (default: 1 if no -proxy or -connect) - Приймати з'єднання ззовні (за замовчуванням: 1, якщо ні-проксі або-з'єднання) + + Cannot initialize keypool + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Cannot write default address + Неможливо записати типову адресу - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Rescanning... + Сканування... - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + + Importing blockchain data file. + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - Увага: встановлено занадто велику комісію (-paytxfee). Комісія зніматиметься кожен раз коли ви проводитимете транзакції. + + Importing bootstrap blockchain data file. + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Loading addresses... + Завантаження адрес... - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - Увага: помилка читання wallet.dat! Всі ключі прочитано коректно, але дані транзакцій чи записи адресної книги можуть бути пропущені, або пошкоджені. + + Error: could not start node + - - 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; якщо Ваш баланс чи транзакції неправильні, Ви можете відновити їх з резервної копії. + + Done loading + Завантаження завершене - - Attempt to recover private keys from a corrupt wallet.dat - Спроба відновити закриті ключі з пошкодженого wallet.dat + + Unable to bind to %s on this computer. BitBean is probably already running. + - - Block creation options: - Опції створення блоку: + + Unable to bind to %s on this computer (bind returned error %d, %s) + Неможливо прив'язати до порту %s на цьому комп'ютері (bind returned error %d, %s) - - Connect only to the specified node(s) - Підключитись лише до вказаного вузла + + Error: Wallet locked, unable to create transaction + - - Discover own IP address (default: 1 when listening and no -externalip) - Відкрийте власну IP-адресу (за замовчуванням: 1, коли не чує і-externalip) + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Failed to listen on any port. Use -listen=0 if you want this. - Не вдалося слухати на будь-якому порту. Використовуйте-слухати = 0, якщо ви хочете цього. + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Find peers using DNS lookup (default: 1) - + + Error: Transaction creation failed + - - Sync checkpoints policy (default: strict) - + + Sending... + - - Invalid -tor address: '%s' - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - Invalid amount for -reservebalance=<amount> - + Invalid amount + Некоректна кількість - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - Максимальний буфер, <n>*1000 байт (типово: 5000) + + Insufficient funds + Недостатньо коштів - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - Максимальній розмір вихідного буферу на одне з'єднання, <n>*1000 байт (типово: 1000) + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - Підключити тільки до вузлів в мережі <net> (IPv4, IPv6 або Tor) + + Warning: This version is obsolete, upgrade required! + Увага: Поточна версія застаріла, необхідне оновлення! - - Output extra debugging information. Implies all other -debug* options - + + WARNING: syncronized checkpoint violation detected, but skipped! + - Output extra network debugging information - + Warning: Disk space is low! + - Prepend debug output with timestamp - + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Параметри SSL: (див. Bitcoin Wiki для налаштування SSL) + Usage: + Використання: - - Select the version of socks proxy to use (4-5, default: 5) - + List commands + Список команд - - Send trace/debug info to console instead of debug.log file - Відсилати налагоджувальну інформацію на консоль, а не у файл debug.log + Get help for a command + Отримати довідку по команді - - Send trace/debug info to debugger - + Options: + Параметри: - - Set maximum block size in bytes (default: 250000) - + Specify data directory + Вкажіть робочий каталог - - Set minimum block size in bytes (default: 0) - Встановити мінімальний розмір блоку у байтах (типово: 0) + Set database cache size in megabytes (default: 25) + Встановити розмір кешу бази даних в мегабайтах (типово: 25) - - Shrink debug.log file on client startup (default: 1 when no -debug) - Стискати файл debug.log під час старту клієнта (типово: 1 коли відсутутній параметр -debug) + Maintain at most <n> connections to peers (default: 125) + Підтримувати не більше <n> зв'язків з колегами (типово: 125) - - Specify connection timeout in milliseconds (default: 5000) - Вказати тайм-аут підключення у мілісекундах (типово: 5000) + Connect to a node to retrieve peer addresses, and disconnect + Підключитись до вузла, щоб отримати список адрес інших учасників та від'єднатись - - Unable to sign checkpoint, wrong checkpointkey? - - + Specify your own public address + Вкажіть вашу власну публічну адресу - - Use UPnP to map the listening port (default: 0) - Намагатись використовувати UPnP для відображення порту, що прослуховується на роутері (default: 0) + Threshold for disconnecting misbehaving peers (default: 100) + Поріг відключення неправильно під'єднаних пірів (типово: 100) - - Use UPnP to map the listening port (default: 1 when listening) - Намагатись використовувати UPnP для відображення порту, що прослуховується на роутері (default: 1 when listening) + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + Максимальній розмір вхідного буферу на одне з'єднання (типово: 86400) - - Use proxy to reach tor hidden services (default: same as -proxy) - + Accept command line and JSON-RPC commands + Приймати команди із командного рядка та команди JSON-RPC - - Username for JSON-RPC connections - Ім'я користувача для JSON-RPC-з'єднань + Run in the background as a daemon and accept commands + Запустити в фоновому режимі (як демон) та приймати команди - - Verifying database integrity... - + Use the test network + Використовувати тестову мережу - - WARNING: syncronized checkpoint violation detected, but skipped! - + Accept connections from outside (default: 1 if no -proxy or -connect) + Приймати з'єднання ззовні (за замовчуванням: 1, якщо ні-проксі або-з'єднання) - - Warning: Disk space is low! - + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + Увага: встановлено занадто велику комісію (-paytxfee). Комісія зніматиметься кожен раз коли ви проводитимете транзакції. - - Warning: This version is obsolete, upgrade required! - Увага: Поточна версія застаріла, необхідне оновлення! + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Увага: помилка читання wallet.dat! Всі ключі прочитано коректно, але дані транзакцій чи записи адресної книги можуть бути пропущені, або пошкоджені. - - wallet.dat corrupt, salvage failed - 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; якщо Ваш баланс чи транзакції неправильні, Ви можете відновити їх з резервної копії. - - Password for JSON-RPC connections - Пароль для JSON-RPC-з'єднань + Attempt to recover private keys from a corrupt wallet.dat + Спроба відновити закриті ключі з пошкодженого wallet.dat - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + Block creation options: + Опції створення блоку: - - Find peers using internet relay chat (default: 0) - + Connect only to the specified node(s) + Підключитись лише до вказаного вузла - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + Discover own IP address (default: 1 when listening and no -externalip) + Відкрийте власну IP-адресу (за замовчуванням: 1, коли не чує і-externalip) - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + Failed to listen on any port. Use -listen=0 if you want this. + Не вдалося слухати на будь-якому порту. Використовуйте-слухати = 0, якщо ви хочете цього. - - Allow JSON-RPC connections from specified IP address - Дозволити JSON-RPC-з'єднання з вказаної IP-адреси + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + Максимальний буфер, <n>*1000 байт (типово: 5000) - - Send commands to node running on <ip> (default: 127.0.0.1) - Відправляти команди на вузол, запущений на <ip> (типово: 127.0.0.1) + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + Максимальній розмір вихідного буферу на одне з'єднання, <n>*1000 байт (типово: 1000) - - Execute command when the best block changes (%s in cmd is replaced by block hash) - Виконати команду, коли з'явиться новий блок (%s в команді змінюється на хеш блоку) + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + Підключити тільки до вузлів в мережі <net> (IPv4, IPv6 або Tor) - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + Параметри SSL: (див. Bitcoin Wiki для налаштування SSL) - - Require a confirmations for change (default: 0) - + Send trace/debug info to console instead of debug.log file + Відсилати налагоджувальну інформацію на консоль, а не у файл debug.log - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Set minimum block size in bytes (default: 0) + Встановити мінімальний розмір блоку у байтах (типово: 0) - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Shrink debug.log file on client startup (default: 1 when no -debug) + Стискати файл debug.log під час старту клієнта (типово: 1 коли відсутутній параметр -debug) - - Upgrade wallet to latest format - Модернізувати гаманець до останнього формату + Specify connection timeout in milliseconds (default: 5000) + Вказати тайм-аут підключення у мілісекундах (типово: 5000) - - Set key pool size to <n> (default: 100) - Встановити розмір пулу ключів <n> (типово: 100) + Use UPnP to map the listening port (default: 0) + Намагатись використовувати UPnP для відображення порту, що прослуховується на роутері (default: 0) - - Rescan the block chain for missing wallet transactions - Пересканувати ланцюжок блоків, в пошуку втрачених транзакцій + Use UPnP to map the listening port (default: 1 when listening) + Намагатись використовувати UPnP для відображення порту, що прослуховується на роутері (default: 1 when listening) - - How many blocks to check at startup (default: 2500, 0 = all) - + Username for JSON-RPC connections + Ім'я користувача для JSON-RPC-з'єднань - - How thorough the block verification is (0-6, default: 1) - + Warning: This version is obsolete, upgrade required! + Увага: Поточна версія застаріла, необхідне оновлення! - - Imports blocks from external blk000?.dat file - + wallet.dat corrupt, salvage failed + wallet.dat пошкоджено, відновлення не вдалося - - Use OpenSSL (https) for JSON-RPC connections - Використовувати OpenSSL (https) для JSON-RPC-з'єднань + Password for JSON-RPC connections + Пароль для JSON-RPC-з'єднань - - Server certificate file (default: server.cert) - Файл сертифіката сервера (типово: server.cert) + Allow JSON-RPC connections from specified IP address + Дозволити JSON-RPC-з'єднання з вказаної IP-адреси - - Server private key (default: server.pem) - Закритий ключ сервера (типово: server.pem) + Send commands to node running on <ip> (default: 127.0.0.1) + Відправляти команди на вузол, запущений на <ip> (типово: 127.0.0.1) - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + Execute command when the best block changes (%s in cmd is replaced by block hash) + Виконати команду, коли з'явиться новий блок (%s в команді змінюється на хеш блоку) - - Error: Wallet unlocked for staking only, unable to create transaction. - + Upgrade wallet to latest format + Модернізувати гаманець до останнього формату - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + Set key pool size to <n> (default: 100) + Встановити розмір пулу ключів <n> (типово: 100) - - This help message - Дана довідка + Rescan the block chain for missing wallet transactions + Пересканувати ланцюжок блоків, в пошуку втрачених транзакцій - - Wallet %s resides outside data directory %s. - + Use OpenSSL (https) for JSON-RPC connections + Використовувати OpenSSL (https) для JSON-RPC-з'єднань - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - + Server certificate file (default: server.cert) + Файл сертифіката сервера (типово: server.cert) - - BitBean - + Server private key (default: server.pem) + Закритий ключ сервера (типово: server.pem) - - Unable to bind to %s on this computer (bind returned error %d, %s) - Неможливо прив'язати до порту %s на цьому комп'ютері (bind returned error %d, %s) + This help message + Дана довідка - - Connect through socks proxy - + 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 + Дозволити пошук в DNS для команд -addnode, -seednode та -connect - Loading addresses... - Завантаження адрес... - - - - Error loading blkindex.dat - + Завантаження адрес... - Error loading wallet.dat: Wallet corrupted - Помилка при завантаженні wallet.dat: Гаманець пошкоджено - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + Помилка при завантаженні wallet.dat: Гаманець пошкоджено - Error loading wallet.dat - Помилка при завантаженні wallet.dat + Помилка при завантаженні wallet.dat - Invalid -proxy address: '%s' - Помилка в адресі проксі-сервера: «%s» + Помилка в адресі проксі-сервера: «%s» - Unknown network specified in -onlynet: '%s' - Невідома мережа вказана в -onlynet: «%s» + Невідома мережа вказана в -onlynet: «%s» - Unknown -socks proxy version requested: %i - В параметрі -socks запитується невідома версія: %i - - - - Cannot resolve -bind address: '%s' - - - - - Cannot resolve -externalip address: '%s' - + В параметрі -socks запитується невідома версія: %i - Invalid amount for -paytxfee=<amount>: '%s' - Помилка у величині комісії -paytxfee=<amount>: «%s» - - - - Error: could not start node - - - - - Sending... - + Помилка у величині комісії -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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + Додати вузол до підключення і лишити його відкритим - Loading wallet... - Завантаження гаманця... + Завантаження гаманця... - Cannot downgrade wallet - Не вдається понизити версію гаманця - - - - Cannot initialize keypool - + Не вдається понизити версію гаманця - Cannot write default address - Неможливо записати типову адресу + Неможливо записати типову адресу - Rescanning... - Сканування... + Сканування... - Done loading - Завантаження завершене + Завантаження завершене - To use the %s option - Щоб використати опцію %s + Щоб використати опцію %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=<password> в файлі конфігурації: + Ви мусите встановити rpcpassword=<password> в файлі конфігурації: %s Якщо файл не існує, створіть його із правами тільки для читання власником (owner-readable-only). - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ur_PK.qm b/src/qt/locale/bitbean_ur_PK.qm similarity index 64% rename from src/qt/locale/bitcoin_ur_PK.qm rename to src/qt/locale/bitbean_ur_PK.qm index 31cf0a9..4679cd3 100644 Binary files a/src/qt/locale/bitcoin_ur_PK.qm and b/src/qt/locale/bitbean_ur_PK.qm differ diff --git a/src/qt/locale/bitcoin_ur_PK.ts b/src/qt/locale/bitbean_ur_PK.ts similarity index 61% rename from src/qt/locale/bitcoin_ur_PK.ts rename to src/qt/locale/bitbean_ur_PK.ts index 7786754..20cc585 100644 --- a/src/qt/locale/bitcoin_ur_PK.ts +++ b/src/qt/locale/bitbean_ur_PK.ts @@ -1,135 +1,138 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + Double-click to edit address or label ایڈریس یا لیبل میں ترمیم کرنے پر ڈبل کلک کریں - + Create a new address نیا ایڈریس بنائیں - + Copy the currently selected address to the system clipboard - + - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete - + Copy &Label - + &Edit - + Export Address Book Data - + Comma separated file (*.csv) - + Error exporting - + Could not write to file %1. - + @@ -153,49 +156,49 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog - + - + Enter passphrase پاس فریز داخل کریں - + New passphrase نیا پاس فریز - + Repeat new passphrase نیا پاس فریز دہرائیں - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + Encrypt wallet - + This operation needs your wallet passphrase to unlock the wallet. - + @@ -205,7 +208,7 @@ This product includes software developed by the OpenSSL Project for use in the O This operation needs your wallet passphrase to decrypt the wallet. - + @@ -220,1231 +223,1344 @@ This product includes software developed by the OpenSSL Project for use in the O 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 COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + Wallet encrypted - - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins 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. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - + + Bean Control + - - &Overview - + + Quantity: + - - Show general overview of wallet - + + Bytes: + - - &Transactions - + + Amount: + - - Browse transaction history - + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - + + Tree mode + - - Quit application - + + List mode + - - Show information about BitBean - + + Amount + رقم - - About &Qt - + + Label + چٹ - - Show information about Qt - + + Address + پتہ - - &Options... - + + Date + تاریخ - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - + Confirmed + - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - + + DUST + - - &Settings - + + yes + - - &Help - + + no + - - Tabs toolbar - + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + چٹ کے بغیر - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + - - - %n second(s) ago - + + + Show general overview of wallet + - - &Unlock Wallet... - + + &Send Beans + - - - %n minute(s) ago - - - - - %n hour(s) ago - - - - - %n day(s) ago - + + + Send Beans to a BitBean address + - - Up to date - + + &Receive Beans + - - Catching up... - + + Show the list of addresses for receiving payments + - - Last received block was generated %1. - + + &Transactions + - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + + Browse transaction history + - Confirm transaction fee - + &Address Book + - - Sent transaction - + + Edit the list of stored addresses and labels + - - Incoming transaction - + + E&xit + - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - + Quit application + - - - URI handling - + + &About BitBean + - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + + Show information about BitBean + - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + + About &Qt + - - Wallet is <b>encrypted</b> and currently <b>locked</b> - + + Show information about Qt + - - Backup Wallet - + + &Options... + - - Wallet Data (*.dat) - + + Modify configuration options for BitBean + - - Backup Failed - + + &Show / Hide + - - There was an error trying to save the wallet data to the new location. - - - - - %n second(s) - - - - - %n minute(s) - + + &Encrypt Wallet... + - - - %n hour(s) - + + + Encrypt or decrypt wallet + - - - %n day(s) - + + + &Backup Wallet... + - - Not staking - + + Backup wallet to another location + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + &Change Passphrase... + - - - ClientModel - - Network Alert - + + Change the passphrase used for wallet encryption + - - - CoinControlDialog - - Coin Control - + + &Unlock Wallet... + - - Quantity: - + + Unlock wallet + بٹوا ان لاک - - Bytes: - + + &Lock Wallet + - - Amount: - + + Lock wallet + - - Priority: - + + Sign &message... + - - Fee: - + + &Verify message... + - - Low Output: - + + &Export... + - - no - + + Export the data in the current tab to a file + - - After Fee: - + + &Debug window + - - Change: - + + Open debugging and diagnostic console + - - (un)select all - + + &File + - - Tree mode - + + &Settings + - - List mode - + + &Help + - - Amount - رقم + + Tabs toolbar + - - Label - + + Actions toolbar + - - Address - پتہ + + + [testnet] + - - Date - تاریخ + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + + - - Confirmations - + + Synchronizing with network... + + + + + ~%n block(s) remaining + + + + - - Confirmed - + + Downloaded %1 of %2 blocks of transaction history (%3% done). + - - Priority - + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + + %n minute(s) ago + + + + + + + + %n hour(s) ago + + + + + + + + %n day(s) ago + + + + - - Copy address - + + Up to date + - - Copy label - + + Catching up... + - - - Copy amount - + + Last received block was generated %1. + - - Copy transaction ID - + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + - - Copy quantity - + + Confirm transaction fee + - - Copy fee - + + Sent transaction + - Copy after fee - + Incoming transaction + - Copy bytes - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + - - Copy priority - + + + URI handling + - - Copy low output - + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + - - Copy change - + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + - - highest - + + Wallet is <b>encrypted</b> and currently <b>locked</b> + - - high - + + Backup Wallet + - - medium-high - + + Wallet Data (*.dat) + - - medium - + + Backup Failed + + + There was an error trying to save the wallet data to the new location. + + + + + %n second(s) + + + + + + - low-medium - + %n minute(s) + + + + + + + + %n hour(s) + + + + + + + + %n day(s) + + + + - - low - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - lowest - + + Not staking because wallet is locked + - - DUST - + + Not staking because wallet is offline + - - yes - + + Not staking because wallet is syncing + - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + + Not staking because you don't have mature beans + - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + + Not staking + + + + ClientModel - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + + Network Alert + + + + CoinControlDialog - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + Amount + رقم - - - (no label) - چٹ کے بغیر + Address + پتہ - - change from %1 (%2) - + Date + تاریخ - - (change) - + (no label) + چٹ کے بغیر EditAddressDialog - + Edit Address - + &Label - + The label associated with this address book entry - + &Address - + The address associated with this address book entry. This can only be modified for sending addresses. - + New receiving address - + New sending address - + Edit receiving address - + Edit sending address - + The entered address "%1" is already in the address book. - + The entered address "%1" is not a valid BitBean address. - + Could not unlock wallet. - + New key generation failed. - + GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options - + - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - + &Cancel - + &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + The supplied proxy address is invalid. - + OverviewPage - + Form - + - - + + Bean Vault + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + + + + Unconfirmed: + + + + + Spendable: + + + + + Your current spendable balance + + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + - - Stake: - + + Sprouting Difficulty: + - - Unconfirmed: - + + Bean Weight: + - - Wallet - + + Connections: + - - Spendable: - + + Total Beans: + - - Your current spendable balance - + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + - - Immature: - + + + + + + 0 + - - Mined balance that has not yet matured - + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + - - Total: - + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + - - Your current total balance - + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + - - <b>Recent transactions</b> - + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + Total: + - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1458,188 +1574,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - + @@ -1647,386 +1763,397 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - + Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - بیلنس: + بیلنس: 123.456 BC - + Confirm the send action - + S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - + Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - چٹ کے بغیر + چٹ کے بغیر WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + - + A&mount: - + Pay &To: - + - + Enter a label for this address to add it to your address book - + &Label: - + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Balance: + بیلنس: + + + (no label) + چٹ کے بغیر 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2034,59 +2161,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2094,42 +2221,48 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - + Open for %n block(s) - + + + + conflicted - + %1/offline - + %1/unconfirmed - + %1 confirmations - + Status - + , broadcast through %n node(s) - + + + + @@ -2139,36 +2272,36 @@ This label turns red, if the priority is smaller than "medium". Source - + Generated - + From - + To - + own address - + label - + @@ -2177,17 +2310,20 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + + not accepted - + @@ -2195,52 +2331,52 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + @@ -2250,35 +2386,35 @@ This label turns red, if the priority is smaller than "medium". true - + false - + , has not been successfully broadcast yet - + unknown - + TransactionDescDialog - + Transaction details - + This pane shows a detailed description of the transaction - + @@ -2306,62 +2442,65 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - + Confirmed (%1 confirmations) - + Open for %n more block(s) - + + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + This block was not received by any other nodes and will probably not be accepted! - + Generated but not accepted - + Received with - + Received from - + @@ -2371,12 +2510,12 @@ This label turns red, if the priority is smaller than "medium". Payment to yourself - + - Mined - + SPROUT + @@ -2386,27 +2525,27 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2450,7 +2589,7 @@ This label turns red, if the priority is smaller than "medium". Received with - + @@ -2460,72 +2599,72 @@ This label turns red, if the priority is smaller than "medium". 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 Data - + Comma separated file (*.csv) - + Confirmed - + @@ -2555,27 +2694,27 @@ This label turns red, if the priority is smaller than "medium". ID - + Error exporting - + Could not write to file %1. - + Range: - + to - + @@ -2583,693 +2722,712 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core - - BitBean version - + + To use the %s option + - Usage: - + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - + + Error + نقص - List commands - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - + + BitBean version + - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - + Usage: + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send command to -server or BitBeand + - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - + List commands + - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - + Get help for a command + - - Threshold for disconnecting misbehaving peers (default: 100) - + + BitBean + - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - + Options: + - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - + + This help message + یہ مدد کا پیغام - - Detach block and address databases. Increases shutdown time (default: 0) - + + Specify configuration file (default: BitBean.conf) + - - 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. - + + Specify pid file (default: BitBeand.pid) + - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + + Specify data directory + - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + + Specify wallet file (within data directory) + - - Accept command line and JSON-RPC commands - + + Set database cache size in megabytes (default: 25) + - - Error: Transaction creation failed - + + Set database disk log size in megabytes (default: 100) + - - Error: Wallet locked, unable to create transaction - + + Specify connection timeout in milliseconds (default: 5000) + - - Importing blockchain data file. - + + Connect through socks proxy + - Importing bootstrap blockchain data file. - + Select the version of socks proxy to use (4-5, default: 5) + - - Run in the background as a daemon and accept commands - + + Use proxy to reach tor hidden services (default: same as -proxy) + - Use the test network - + Allow DNS lookups for -addnode, -seednode and -connect + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Maintain at most <n> connections to peers (default: 125) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Add a node to connect to and attempt to keep the connection open + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Connect only to the specified node(s) + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Connect to a node to retrieve peer addresses, and disconnect + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Specify your own public address + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - 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. - + + Discover own IP address (default: 1 when listening and no -externalip) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Find peers using internet relay chat (default: 0) + - - Block creation options: - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Connect only to the specified node(s) - + + Bind to given address. Use [host]:port notation for IPv6 + - - Discover own IP address (default: 1 when listening and no -externalip) - + + Find peers using DNS lookup (default: 1) + - - Failed to listen on any port. Use -listen=0 if you want this. - + + Stake your beans to support network and gain reward (default: 1) + - - Find peers using DNS lookup (default: 1) - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - + Sync checkpoints policy (default: strict) - + - - Invalid -tor address: '%s' - + + Threshold for disconnecting misbehaving peers (default: 100) + - - Invalid amount for -reservebalance=<amount> - + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - Output extra debugging information. Implies all other -debug* options - + - Output extra network debugging information - + Use UPnP to map the listening port (default: 1 when listening) + - Prepend debug output with timestamp - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Select the version of socks proxy to use (4-5, default: 5) - - - - - Send trace/debug info to console instead of debug.log file - + Use UPnP to map the listening port (default: 0) + - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - Unable to sign checkpoint, wrong checkpointkey? - - + Detach block and address databases. Increases shutdown time (default: 0) + - - Use UPnP to map the listening port (default: 0) - + + Fee per KB to add to transactions you send + - - Use UPnP to map the listening port (default: 1 when listening) - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Accept command line and JSON-RPC commands + - - Username for JSON-RPC connections - + + Run in the background as a daemon and accept commands + - - Verifying database integrity... - + + Use the test network + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Output extra debugging information. Implies all other -debug* options + - Warning: Disk space is low! - + Output extra network debugging information + - - Warning: This version is obsolete, upgrade required! - + + Prepend debug output with timestamp + - - wallet.dat corrupt, salvage failed - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Password for JSON-RPC connections - + + Send trace/debug info to console instead of debug.log file + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Send trace/debug info to debugger + - - Find peers using internet relay chat (default: 0) - + + Username for JSON-RPC connections + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Password for JSON-RPC connections + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - + 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) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Require a confirmations for change (default: 0) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Upgrade wallet to latest format - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + - + + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) - + How thorough the block verification is (0-6, default: 1) - + Imports blocks from external blk000?.dat file - + - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Invalid amount for -paytxfee=<amount>: '%s' + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - This help message - یہ مدد کا پیغام + + Invalid amount for -mininput=<amount>: '%s' + - + Wallet %s resides outside data directory %s. - + Cannot obtain a lock on data directory %s. BitBean is probably already running. - + - - BitBean - + + Verifying database integrity... + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect through socks proxy - + + 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. + - - Allow DNS lookups for -addnode, -seednode and -connect - + + wallet.dat corrupt, salvage failed + - - Loading addresses... - + + Unknown -socks proxy version requested: %i + - + + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Cannot resolve -externalip address: '%s' + + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - + Wallet needed to be rewritten: restart BitBean to complete - + Error loading wallet.dat - + - - Invalid -proxy address: '%s' - + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - + + Cannot write default address + - - Cannot resolve -bind address: '%s' - + + Rescanning... + - - Cannot resolve -externalip address: '%s' - + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - + + Importing bootstrap blockchain data file. + - + + Loading addresses... + + + + Error: could not start node - + - - Sending... - + + Done loading + - - Invalid amount - غلط رقم + + Unable to bind to %s on this computer. BitBean is probably already running. + + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + - Insufficient funds - ناکافی فنڈز + Error: Wallet locked, unable to create transaction + - - Loading block index... - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Add a node to connect to and attempt to keep the connection open - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Unable to bind to %s on this computer. BitBean is probably already running. - + + Error: Transaction creation failed + - - Fee per KB to add to transactions you send - + + Sending... + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Loading wallet... - + + Invalid amount + غلط رقم - - Cannot downgrade wallet - + + Insufficient funds + ناکافی فنڈز - Cannot initialize keypool - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + + + + + Warning: This version is obsolete, upgrade required! + - Cannot write default address - + WARNING: syncronized checkpoint violation detected, but skipped! + - Rescanning... - + Warning: Disk space is low! + - - Done loading - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - To use the %s option - + This help message + یہ مدد کا پیغام - - Error - نقص + Invalid amount + غلط رقم - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + Insufficient funds + ناکافی فنڈز + + + Error + نقص - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_vi.qm b/src/qt/locale/bitbean_vi.qm similarity index 71% rename from src/qt/locale/bitcoin_vi.qm rename to src/qt/locale/bitbean_vi.qm index 8cb33c4..05eaa96 100644 Binary files a/src/qt/locale/bitcoin_vi.qm and b/src/qt/locale/bitbean_vi.qm differ diff --git a/src/qt/locale/bitcoin_vi.ts b/src/qt/locale/bitbean_vi.ts similarity index 61% rename from src/qt/locale/bitcoin_vi.ts rename to src/qt/locale/bitbean_vi.ts index d8e6b52..4490740 100644 --- a/src/qt/locale/bitcoin_vi.ts +++ b/src/qt/locale/bitbean_vi.ts @@ -1,120 +1,123 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + 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 - + 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 - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete &Xóa Copy &Label - + &Edit - + Export Address Book Data - + @@ -124,12 +127,12 @@ This product includes software developed by the OpenSSL Project for use in the O Error exporting - + Could not write to file %1. - + @@ -153,1298 +156,1397 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog - + - + Enter passphrase - + - + New passphrase - + - + Repeat new passphrase - + - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - + 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 COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + Wallet encrypted - - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins 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. - + - BitcoinGUI - - - Sign &message... - - + BeanControlDialog - - Synchronizing with network... - + + Bean Control + - - &Overview - + + Quantity: + - - Show general overview of wallet - + + Bytes: + - - &Transactions - + + Amount: + - - Browse transaction history - + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - + + Tree mode + - - Quit application - + + List mode + - - Show information about BitBean - + + Amount + Số lượng - - About &Qt - + + Label + Nhãn dữ liệu - - Show information about Qt - + + Address + Địa chỉ - - &Options... - + + Date + - - &Encrypt Wallet... - + + Confirmations + - &Backup Wallet... - + Confirmed + - - &Change Passphrase... - - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - + + Copy after fee + - - Change the passphrase used for wallet encryption - + + Copy bytes + - - &Debug window - + + Copy priority + - Open debugging and diagnostic console - + Copy low output + - - &Verify message... - + + Copy change + - - BitBean - + + highest + - - Wallet - + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - + + DUST + - - &Settings - + + yes + - - &Help - + + no + - - Tabs toolbar - + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + (chưa có nhãn) - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + - - - %n second(s) ago - + + + Show general overview of wallet + - - &Unlock Wallet... - + + &Send Beans + - - - %n minute(s) ago - - - - - %n hour(s) ago - - - - - %n day(s) ago - + + + Send Beans to a BitBean address + - - Up to date - + + &Receive Beans + - - Catching up... - + + Show the list of addresses for receiving payments + - - Last received block was generated %1. - + + &Transactions + - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + + Browse transaction history + - Confirm transaction fee - + &Address Book + - - Sent transaction - + + Edit the list of stored addresses and labels + - - Incoming transaction - + + E&xit + - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - + Quit application + - - - URI handling - + + &About BitBean + - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + + Show information about BitBean + - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - + + About &Qt + - - Wallet is <b>encrypted</b> and currently <b>locked</b> - + + Show information about Qt + - - Backup Wallet - + + &Options... + - - Wallet Data (*.dat) - + + Modify configuration options for BitBean + - - Backup Failed - + + &Show / Hide + - - There was an error trying to save the wallet data to the new location. - - - - - %n second(s) - - - - - %n minute(s) - + + &Encrypt Wallet... + - - - %n hour(s) - + + + Encrypt or decrypt wallet + - - - %n day(s) - + + + &Backup Wallet... + - - Not staking - + + Backup wallet to another location + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + &Change Passphrase... + - - - ClientModel - - Network Alert - + + Change the passphrase used for wallet encryption + - - - CoinControlDialog - - Coin Control - + + &Unlock Wallet... + - - Quantity: - + + Unlock wallet + - - Bytes: - + + &Lock Wallet + - - Amount: - + + Lock wallet + - - Priority: - + + Sign &message... + - - Fee: - + + &Verify message... + - - Low Output: - + + &Export... + - - no - + + Export the data in the current tab to a file + - - After Fee: - + + &Debug window + - - Change: - + + Open debugging and diagnostic console + - - (un)select all - + + &File + - - Tree mode - + + &Settings + - - List mode - + + &Help + - - Amount - Số lượng + + Tabs toolbar + - - Label - + + Actions toolbar + - - Address - Địa chỉ + + + [testnet] + - - Date - + + + BitBean client + + + + + %n active connection(s) to BitBean network + + + - - Confirmations - + + Synchronizing with network... + + + + + ~%n block(s) remaining + + + - - Confirmed - + + Downloaded %1 of %2 blocks of transaction history (%3% done). + - - Priority - + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + %n minute(s) ago + + + + + + + %n hour(s) ago + + + + + + + %n day(s) ago + + + - - Copy address - + + Up to date + - - Copy label - + + Catching up... + - - - Copy amount - + + Last received block was generated %1. + - - Copy transaction ID - + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + - - Copy quantity - + + Confirm transaction fee + - - Copy fee - + + Sent transaction + - Copy after fee - + Incoming transaction + - Copy bytes - + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + - - Copy priority - + + + URI handling + - - Copy low output - + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + - - Copy change - + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + - - highest - + + Wallet is <b>encrypted</b> and currently <b>locked</b> + - - high - + + Backup Wallet + - - medium-high - + + Wallet Data (*.dat) + - - medium - + + Backup Failed + + + There was an error trying to save the wallet data to the new location. + + + + + %n second(s) + + + + + - low-medium - + %n minute(s) + + + - - - low - + + + %n hour(s) + + + + + + + %n day(s) + + + - - lowest - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - DUST - + + Not staking because wallet is locked + - - yes - + + Not staking because wallet is offline + - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + + Not staking because wallet is syncing + - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + + Not staking because you don't have mature beans + - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + + Not staking + + + + ClientModel - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + + Network Alert + + + + CoinControlDialog - - - (no label) - (chưa có nhãn) + Amount + Số lượng - - change from %1 (%2) - + Address + Địa chỉ - - (change) - + (no label) + (chưa có nhãn) EditAddressDialog - + Edit Address - + &Label - + The label associated with this address book entry - + &Address - + The address associated with this address book entry. This can only be modified for sending addresses. - + New receiving address - + New sending address - + Edit receiving address - + Edit sending address - + The entered address "%1" is already in the address book. - + The entered address "%1" is not a valid BitBean address. - + Could not unlock wallet. - + New key generation failed. - + GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options - + - + &Main - + - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &Unit to show amounts in: - + - Choose the default subdivision unit to show in the interface and when sending coins. - + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - + &Cancel - + &Apply - + default - + Warning - + This setting will take effect after restarting BitBean. - + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + + + + + Unconfirmed: + + + + + Spendable: + + + + + Your current spendable balance + + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - The supplied proxy address is invalid. - + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - - OverviewPage - - Form - + + BitBean Network + - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Stalk Height: + - - Stake: - + + Sprouting Difficulty: + - - Unconfirmed: - + + Bean Weight: + - - Wallet - + + Connections: + - - Spendable: - + + Total Beans: + - - Your current spendable balance - + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + - - Immature: - + + + + + + 0 + - - Mined balance that has not yet matured - + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + - - Total: - + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + - - Your current total balance - + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + - - <b>Recent transactions</b> - + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + Total: + - + out of sync - + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - + @@ -1458,188 +1560,188 @@ This label turns red, if the priority is smaller than "medium". N/A - + Client version - + &Information - + Using OpenSSL version - + Startup time - + Network - + Number of connections - + On testnet - + Block chain - + Current number of blocks - + Estimated total blocks - + Last block time - + &Open - + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - + Build date - + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + Clear console - + Welcome to the BitBean 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. - + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - + @@ -1647,386 +1749,393 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - + Add &Recipient - + Remove all transaction fields - + Clear &All - + Balance: - + 123.456 BC - + Confirm the send action - + S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - + Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - + Confirm send beans + Are you sure you want to send %1? - + and - + 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. - + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (chưa có nhãn) + (chưa có nhãn) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + - + A&mount: - + Pay &To: - + - + Enter a label for this address to add it to your address book - + &Label: - + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + (no label) + (chưa có nhãn) 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + Alt+A - + Paste address from clipboard - + Alt+P - + Enter the message you want to sign here - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2034,59 +2143,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2094,81 +2203,85 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - + Open for %n block(s) - + + + conflicted - + %1/offline - + %1/unconfirmed - + %1 confirmations - + Status - + , broadcast through %n node(s) - + + + Date - + Source - + Generated - + From - + To - + own address - + label - + @@ -2177,17 +2290,19 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + not accepted - + @@ -2195,52 +2310,52 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - + @@ -2250,35 +2365,35 @@ This label turns red, if the priority is smaller than "medium". true - + false - + , has not been successfully broadcast yet - + unknown - + TransactionDescDialog - + Transaction details - + This pane shows a detailed description of the transaction - + @@ -2286,12 +2401,12 @@ This label turns red, if the priority is smaller than "medium". Date - + Type - + @@ -2306,107 +2421,109 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - + Confirmed (%1 confirmations) - + Open for %n more block(s) - + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + This block was not received by any other nodes and will probably not be accepted! - + Generated but not accepted - + Received with - + Received from - + Sent to - + Payment to yourself - + - Mined - + SPROUT + (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. - + @@ -2415,107 +2532,107 @@ This label turns red, if the priority is smaller than "medium". 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 Data - + @@ -2525,17 +2642,17 @@ This label turns red, if the priority is smaller than "medium". Confirmed - + Date - + Type - + @@ -2555,27 +2672,27 @@ This label turns red, if the priority is smaller than "medium". ID - + Error exporting - + Could not write to file %1. - + Range: - + to - + @@ -2583,693 +2700,693 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core - - BitBean version - + + To use the %s option + - Usage: - + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - + + Error + - List commands - + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - + + BitBean version + - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - + Usage: + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send command to -server or BitBeand + - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - + List commands + - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - - - - - Threshold for disconnecting misbehaving peers (default: 100) - + Get help for a command + - 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 - - - - - Detach block and address databases. Increases shutdown time (default: 0) - - - - - 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 - - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - - - - - Accept command line and JSON-RPC commands - + BitBean + - - Error: Transaction creation failed - + + Options: + - - Error: Wallet locked, unable to create transaction - + + This help message + - - Importing blockchain data file. - + + Specify configuration file (default: BitBean.conf) + - Importing bootstrap blockchain data file. - + Specify pid file (default: BitBeand.pid) + - - Run in the background as a daemon and accept commands - + + Specify data directory + - Use the test network - + Specify wallet file (within data directory) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Set database cache size in megabytes (default: 25) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Set database disk log size in megabytes (default: 100) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Specify connection timeout in milliseconds (default: 5000) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Connect through socks proxy + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Select the version of socks proxy to use (4-5, default: 5) + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Use proxy to reach tor hidden services (default: same as -proxy) + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Allow DNS lookups for -addnode, -seednode and -connect + - - 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. - + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Maintain at most <n> connections to peers (default: 125) + - - Block creation options: - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node(s) - - - - - Discover own IP address (default: 1 when listening and no -externalip) - - - - - Failed to listen on any port. Use -listen=0 if you want this. - - - - - Find peers using DNS lookup (default: 1) - + - - Sync checkpoints policy (default: strict) - + + Connect to a node to retrieve peer addresses, and disconnect + - - Invalid -tor address: '%s' - + + Specify your own public address + - - Invalid amount for -reservebalance=<amount> - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Discover own IP address (default: 1 when listening and no -externalip) + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Find peers using internet relay chat (default: 0) + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Output extra debugging information. Implies all other -debug* options - + + Bind to given address. Use [host]:port notation for IPv6 + - Output extra network debugging information - + Find peers using DNS lookup (default: 1) + - Prepend debug output with timestamp - + Stake your beans to support network and gain reward (default: 1) + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Select the version of socks proxy to use (4-5, default: 5) - + + Sync checkpoints policy (default: strict) + - - Send trace/debug info to console instead of debug.log file - + + Threshold for disconnecting misbehaving peers (default: 100) + - Send trace/debug info to debugger - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Set maximum block size in bytes (default: 250000) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Set minimum block size in bytes (default: 0) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Use UPnP to map the listening port (default: 1 when listening) + - - Specify connection timeout in milliseconds (default: 5000) - + + Use UPnP to map the listening port (default: 0) + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Use UPnP to map the listening port (default: 0) - + + Fee per KB to add to transactions you send + - - Use UPnP to map the listening port (default: 1 when listening) - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Accept command line and JSON-RPC commands + - - Username for JSON-RPC connections - + + Run in the background as a daemon and accept commands + - - Verifying database integrity... - + + Use the test network + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Output extra debugging information. Implies all other -debug* options + - Warning: Disk space is low! - + Output extra network debugging information + - - Warning: This version is obsolete, upgrade required! - + + Prepend debug output with timestamp + - - wallet.dat corrupt, salvage failed - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Password for JSON-RPC connections - + + Send trace/debug info to console instead of debug.log file + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Send trace/debug info to debugger + - - Find peers using internet relay chat (default: 0) - + + Username for JSON-RPC connections + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Password for JSON-RPC connections + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - + 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) - + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Require a confirmations for change (default: 0) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) - + Upgrade wallet to latest format - + Set key pool size to <n> (default: 100) - + Rescan the block chain for missing wallet transactions - + - + + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) - + How thorough the block verification is (0-6, default: 1) - + Imports blocks from external blk000?.dat file - + - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + Use OpenSSL (https) for JSON-RPC connections - + Server certificate file (default: server.cert) - + Server private key (default: server.pem) - + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Invalid amount for -paytxfee=<amount>: '%s' + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - This help message - + + Invalid amount for -mininput=<amount>: '%s' + - + Wallet %s resides outside data directory %s. - + Cannot obtain a lock on data directory %s. BitBean is probably already running. - + - - BitBean - + + Verifying database integrity... + - - Unable to bind to %s on this computer (bind returned error %d, %s) - + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect through socks proxy - + + 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. + - - Allow DNS lookups for -addnode, -seednode and -connect - + + wallet.dat corrupt, salvage failed + - - Loading addresses... - + + Unknown -socks proxy version requested: %i + - + + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Cannot resolve -externalip address: '%s' + + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - + Wallet needed to be rewritten: restart BitBean to complete - + Error loading wallet.dat - + - - Invalid -proxy address: '%s' - + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - + + Cannot write default address + - - Cannot resolve -bind address: '%s' - + + Rescanning... + - - Cannot resolve -externalip address: '%s' - + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - + + Importing bootstrap blockchain data file. + - - Error: could not start node - + + Loading addresses... + - - Sending... - + + Error: could not start node + - - Invalid amount - + + Done loading + - Insufficient funds - + Unable to bind to %s on this computer. BitBean is probably already running. + - - Loading block index... - + + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Add a node to connect to and attempt to keep the connection open - + + Error: Wallet locked, unable to create transaction + - - Unable to bind to %s on this computer. BitBean is probably already running. - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Fee per KB to add to transactions you send - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: Transaction creation failed + - - Loading wallet... - + + Sending... + - - Cannot downgrade wallet - + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Cannot initialize keypool - + + Invalid amount + - Cannot write default address - + Insufficient funds + - Rescanning... - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Done loading - + + Warning: This version is obsolete, upgrade required! + - - To use the %s option - + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Error - + + Warning: Disk space is low! + - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_vi_VN.qm b/src/qt/locale/bitbean_vi_VN.qm similarity index 100% rename from src/qt/locale/bitcoin_vi_VN.qm rename to src/qt/locale/bitbean_vi_VN.qm diff --git a/src/qt/locale/bitcoin_lv_LV.ts b/src/qt/locale/bitbean_vi_VN.ts similarity index 61% rename from src/qt/locale/bitcoin_lv_LV.ts rename to src/qt/locale/bitbean_vi_VN.ts index 32ea021..220f537 100644 --- a/src/qt/locale/bitcoin_lv_LV.ts +++ b/src/qt/locale/bitbean_vi_VN.ts @@ -1,135 +1,138 @@ - + + + +UTF-8 AboutDialog - + About BitBean - + - + <b>BitBean</b> version - + - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + - - -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. - + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + AddressBookPage - + Address Book - + - + Double-click to edit address or label - Adresi vai nosaukumu rediģē ar dubultklikšķi + - + Create a new address - Izveidot jaunu adresi + Tạo một địa chỉ mới - + Copy the currently selected address to the system clipboard - Kopēt iezīmēto adresi uz starpliktuvi + - + &New Address - + - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - + - + &Copy Address - &Kopēt adresi + - + Show &QR Code - + - + Sign a message to prove you own a BitBean address - + Sign &Message - + - + Delete the currently selected address from the list - + - + Verify a message to ensure it was signed with a specified BitBean address - + &Verify Message - + - + &Delete - &Dzēst + Copy &Label - Kopēt &Nosaukumu + &Edit - &Rediģēt + Export Address Book Data - + Comma separated file (*.csv) - Fails ar komatu kā atdalītāju (*.csv) + Error exporting - + Could not write to file %1. - + @@ -137,1318 +140,1398 @@ This product includes software developed by the OpenSSL Project for use in the O Label - Nosaukums + Address - Adrese + (no label) - (bez nosaukuma) + AskPassphraseDialog - + Passphrase Dialog - Paroles dialogs + - + Enter passphrase - Ierakstiet paroli + - + New passphrase - Jauna parole + - + Repeat new passphrase - Jaunā parole vēlreiz + - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - + For staking only - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - 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 COINS</b>! - + Are you sure you wish to encrypt your wallet? + - Are you sure you wish to encrypt your wallet? - + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + - + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - + Warning: The Caps Lock key is on! - + Wallet encrypted - Maciņš nošifrēts - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - + - + 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. - + - BitcoinGUI - - - Sign &message... - Parakstīt &ziņojumu... - + BeanControlDialog - - Synchronizing with network... - Sinhronizācija ar tīklu... + + Bean Control + - - &Overview - &Pārskats + + Quantity: + - - Show general overview of wallet - Rādīt vispārēju maciņa pārskatu + + Bytes: + - - &Transactions - &Transakcijas + + Amount: + - - Browse transaction history - Skatīt transakciju vēsturi + + Priority: + - - &Address Book - + + Fee: + - - Edit the list of stored addresses and labels - + + Low Output: + - - &Receive coins - + + After Fee: + - - Show the list of addresses for receiving payments - + + Change: + - - &Send coins - + + (un)select all + - - E&xit - &Iziet + + Tree mode + - - Quit application - Aizvērt programmu + + List mode + - - Show information about BitBean - + + Amount + - - About &Qt - Par &Qt + + Label + - - Show information about Qt - Parādīt informāciju par Qt + + Address + - - &Options... - &Iespējas + + Date + - - &Encrypt Wallet... - Š&ifrēt maciņu... + + Confirmations + - &Backup Wallet... - &Izveidot maciņa rezerves kopiju + Confirmed + - - &Change Passphrase... - &Mainīt paroli - - - - ~%n block(s) remaining - + + Priority + - - Downloaded %1 of %2 blocks of transaction history (%3% done). - + + Copy address + - - &Export... - + + Copy label + - - Send coins to a BitBean address - + + + Copy amount + - - Modify configuration options for BitBean - + + Copy transaction ID + - - Export the data in the current tab to a file - + + Copy quantity + - - Encrypt or decrypt wallet - + + Copy fee + - - Backup wallet to another location - Izveidot maciņa rezerves kopiju citur + + Copy after fee + - - Change the passphrase used for wallet encryption - Mainīt maciņa šifrēšanas paroli + + Copy bytes + - - &Debug window - &Debug logs + + Copy priority + - Open debugging and diagnostic console - Atvērt atkļūdošanas un diagnostikas konsoli + Copy low output + - - &Verify message... - &Pārbaudīt ziņojumu... + + Copy change + - - BitBean - + + highest + - - Wallet - Maciņš + + high + - - &About BitBean - + + medium-high + - - &Show / Hide - + + medium + - - Unlock wallet - + + low-medium + - &Lock Wallet - + low + - Lock wallet - + lowest + - - &File - &Fails + + DUST + - - &Settings - &Uzstādījumi + + yes + - - &Help - &Palīdzība + + no + - - Tabs toolbar - Ciļņu rīkjosla + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [testnet] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - - %n active connection(s) to BitBean network - + + + + (no label) + - - Downloaded %1 blocks of transaction history. - + + change from %1 (%2) + - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - + + (change) + + + + BitbeanGUI - - Not staking because wallet is locked - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is offline - + + BitBean + - - Not staking because wallet is syncing - + + Vault + - - Not staking because you don't have mature coins - + + &Overview + - - - %n second(s) ago - + + + Show general overview of wallet + - - &Unlock Wallet... - + + &Send Beans + - - - %n minute(s) ago - - - - - %n hour(s) ago - - - - - %n day(s) ago - + + + Send Beans to a BitBean address + - - Up to date - Sinhronizēts + + &Receive Beans + - - Catching up... - Sinhronizējos... + + Show the list of addresses for receiving payments + - - Last received block was generated %1. - + + &Transactions + - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + + Browse transaction history + - Confirm transaction fee - + &Address Book + - - Sent transaction - Transakcija nosūtīta + + Edit the list of stored addresses and labels + - - Incoming transaction - Ienākoša transakcija + + E&xit + - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Datums: %1 -Daudzums: %2 -Tips: %3 -Adrese: %4 - + Quit application + - - - URI handling - + + &About BitBean + - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + + Show information about BitBean + - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Maciņš ir <b>šifrēts</b> un pašlaik <b>atslēgts</b> + + About &Qt + - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Maciņš ir <b>šifrēts</b> un pašlaik <b>slēgts</b> + + Show information about Qt + - - Backup Wallet - + + &Options... + - - Wallet Data (*.dat) - + + Modify configuration options for BitBean + - - Backup Failed - + + &Show / Hide + - - There was an error trying to save the wallet data to the new location. - - - - - %n second(s) - - - - - %n minute(s) - - - - - %n hour(s) - - - - - %n day(s) - + + &Encrypt Wallet... + - - Not staking - + + Encrypt or decrypt wallet + - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + &Backup Wallet... + - - - ClientModel - - Network Alert - Tīkla brīdinājums + + Backup wallet to another location + - - - CoinControlDialog - - Coin Control - + + &Change Passphrase... + - - Quantity: - + + Change the passphrase used for wallet encryption + - - Bytes: - + + &Unlock Wallet... + - - Amount: - Daudzums: + + Unlock wallet + - - Priority: - + + &Lock Wallet + - - Fee: - + + Lock wallet + - - Low Output: - + + Sign &message... + - - no - + + &Verify message... + - - After Fee: - + + &Export... + - - Change: - + + Export the data in the current tab to a file + - - (un)select all - + + &Debug window + - - Tree mode - + + Open debugging and diagnostic console + - - List mode - + + &File + - - Amount - Daudzums + + &Settings + - - Label - + + &Help + - - Address - Adrese + + Tabs toolbar + - - Date - Datums + + Actions toolbar + - - Confirmations - + + + [testnet] + - - Confirmed - Apstiprināts + + + BitBean client + - - - Priority - + + + %n active connection(s) to BitBean network + + + - - Copy address - Kopēt adresi + + Synchronizing with network... + - - - Copy label - Kopēt nosaukumu + + + ~%n block(s) remaining + + + - - - Copy amount - Kopēt daudzumu + + Downloaded %1 of %2 blocks of transaction history (%3% done). + - - Copy transaction ID - + + Downloaded %1 blocks of transaction history. + + + + + %n second(s) ago + + + + + + + %n minute(s) ago + + + + + + + %n hour(s) ago + + + + + + + %n day(s) ago + + + - - Copy quantity - + + Up to date + - - Copy fee - + + Catching up... + - - Copy after fee - + + Last received block was generated %1. + - - Copy bytes - + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + - - Copy priority - + + Confirm transaction fee + - - Copy low output - + + Sent transaction + - Copy change - + Incoming transaction + - - highest - + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + - - high - + + + URI handling + - - medium-high - + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + - - medium - + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + - - low-medium - + + Wallet is <b>encrypted</b> and currently <b>locked</b> + - - low - + + Backup Wallet + - - lowest - + + Wallet Data (*.dat) + - - DUST - + + Backup Failed + - yes - + There was an error trying to save the wallet data to the new location. + + + + + %n second(s) + + + + + + + %n minute(s) + + + + + + + %n hour(s) + + + + + + + %n day(s) + + + - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + + Not staking because wallet is locked + - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - + + Not staking because wallet is offline + - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - + + Not staking because wallet is syncing + - - - (no label) - (bez nosaukuma) + + Not staking because you don't have mature beans + - - change from %1 (%2) - + + Not staking + + + + ClientModel - - (change) - + + Network Alert + EditAddressDialog - + Edit Address - Mainīt adrese + &Label - &Nosaukums + The label associated with this address book entry - + &Address - &Adrese + The address associated with this address book entry. This can only be modified for sending addresses. - + 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 BitBean address. - + Could not unlock wallet. - Nav iespējams atslēgt maciņu. + New key generation failed. - Neizdevās ģenerēt jaunu atslēgu. + GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + 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. Fee 5.00 recommended. - + + Pay transaction &fee + - - Pay transaction &fee - &Maksāt par transakciju + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + &Network - &Tīkls + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + Map port using &UPnP - Kartēt portu, izmantojot &UPnP + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + Proxy &IP: - Proxy &IP: + IP address of the proxy (e.g. 127.0.0.1) - + &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 BitBean. - + &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 bitkoinus. + Choose the default subdivision unit to show in the interface and when sending beans. + - - Whether to show BitBean addresses in the transaction list or not. - + + Whether to show bean control features or not. + - &Display addresses in transaction list - &Attēlot adreses transakciju sarakstā + Display bean &control features (experts only!) + - - Whether to show coin control features or not. - + + Whether to show BitBean addresses in the transaction list or not. + - Display coin &control features (experts only!) - + &Display addresses in transaction list + - + &OK - &OK + &Cancel - &Atcelt + &Apply - + default - pēc noklusēšanas + + + + + + Warning + + + + + + This setting will take effect after restarting BitBean. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + + + + + Unconfirmed: + + + + + Spendable: + + + + + Your current spendable balance + + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + - - - Warning - + + Immature: + - - - This setting will take effect after restarting BitBean. - + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + - - The supplied proxy address is invalid. - Norādītā proxy adrese nav derīga. + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + - - - OverviewPage - - Form - Forma + + BitBean Network + - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Stalk Height: + - - Stake: - + + Sprouting Difficulty: + - - Unconfirmed: - + + Bean Weight: + - - Wallet - Maciņš + + Connections: + - - Spendable: - + + Total Beans: + - - Your current spendable balance - + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + - - Immature: - Nenobriedušu: + + + + + + 0 + - - Mined balance that has not yet matured - + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + - - Total: - + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + - - Your current total balance - + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + - - <b>Recent transactions</b> - <b>Pēdējās transakcijas</b> + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - + + <html><head/><body><p>New Transactions</p></body></html> + - - Total of coins that was staked, and do not yet count toward the current balance - + + Total: + - + out of sync - nav sinhronizēts + QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name - Klienta vārds + @@ -1462,188 +1545,188 @@ This label turns red, if the priority is smaller than "medium". N/A - N/A + Client version - Klienta versija + &Information - &Informācija + Using OpenSSL version - + Startup time - Sākuma laiks + Network - Tīkls + Number of connections - Savienojumu skaits + On testnet - + 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 + Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + &Console - &Konsole + Build date - Kompilācijas datums + BitBean - Debug window - + BitBean Core - + Debug log file - + Open the BitBean 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 BitBean RPC console. - + 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. + - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - Sūtīt bitkoinus + Send Beans + - Coin Control Features - + Bean Control Features + Inputs... - + automatically selected - + Insufficient funds! - + Quantity: - + 0 - + Bytes: - + Amount: - Daudzums: + @@ -1651,386 +1734,386 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - + medium - + Fee: - + Low Output: - + no - + After Fee: - + Change - + custom change address - + Send to multiple recipients at once - Sūtīt vairākiem saņēmējiem uzreiz + Add &Recipient - + Remove all transaction fields - + Clear &All - &Notīrīt visu + Balance: - Bilance: + 123.456 BC - + Confirm the send action - Apstiprināt nosūtīšanu + S&end - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - + Copy amount - Kopēt daudzumu + Copy fee - + Copy after fee - + Copy bytes - + Copy priority - + Copy low output - + Copy change - + <b>%1</b> to %2 (%3) - + - Confirm send coins - Apstiprināt bitkoinu sūtīšanu + Confirm send beans + Are you sure you want to send %1? - + and - + 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. + Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (bez nosaukuma) + WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + - + A&mount: - Apjo&ms + Pay &To: - &Saņēmējs: + - + 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: + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Paste address from clipboard - ielīmēt adresi no starpliktuves + Alt+P - Alt+P + Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + 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 - + Copy the current signature to the system clipboard - + Sign the message to prove you own this BitBean address - + Reset all sign message fields - + Clear &All - &Notīrīt visu + &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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + Reset all verify message fields - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Click "Sign Message" to generate signature - + Enter BitBean signature - + The entered address is invalid. - + @@ -2038,59 +2121,59 @@ This label turns red, if the priority is smaller than "medium". 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. - + @@ -2098,81 +2181,85 @@ This label turns red, if the priority is smaller than "medium". Open until %1 - Atvērts līdz %1 + Open for %n block(s) - + + + conflicted - + %1/offline - + %1/unconfirmed - %1/neapstiprinātas + %1 confirmations - %1 apstiprinājumu + Status - + , broadcast through %n node(s) - + + + Date - Datums + Source - + Generated - + From - + To - + own address - + label - + @@ -2181,17 +2268,19 @@ This label turns red, if the priority is smaller than "medium". Credit - + matures in %n more block(s) - + + + not accepted - + @@ -2199,90 +2288,90 @@ This label turns red, if the priority is smaller than "medium". Debit - + Transaction fee - + Net amount - + Message - + Comment - + Transaction ID - + - Generated coins must mature 110 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. - + Generated beans must mature 110 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 - Daudzums + true - + false - + , has not been successfully broadcast yet - , vēl nav veiksmīgi izziņots + unknown - nav zināms + TransactionDescDialog - + Transaction details - Transakcijas detaļas + This pane shows a detailed description of the transaction - Šis panelis parāda transakcijas detaļas + @@ -2290,127 +2379,129 @@ This label turns red, if the priority is smaller than "medium". Date - Datums + Type - Tips + Address - Adrese + Amount - Daudzums + Open until %1 - Atvērts līdz %1 + Confirmed (%1 confirmations) - Apstiprināts (%1 apstiprinājumu) + Open for %n more block(s) - + + + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + Immature (%1 confirmations, will be available after %2) - + 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 + Received with - Saņemts ar + Received from - Saņemts no + Sent to - Nosūtīts + Payment to yourself - Maksājums sev + - Mined - Atrasts + SPROUT + (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. + @@ -2419,167 +2510,167 @@ This label turns red, if the priority is smaller than "medium". 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 - + Edit label - Mainīt nosaukumu + Show transaction details - Rādīt transakcijas detaļas + Export Transaction Data - + 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 + Error exporting - + Could not write to file %1. - + Range: - Diapazons: + to - uz + @@ -2587,695 +2678,693 @@ This label turns red, if the priority is smaller than "medium". Sending... - + - bitcoin-core + bitbean-core - - BitBean version - + + To use the %s option + - Usage: - Lietojums: + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + - - Send command to -server or BitBeand - + + Error + - List commands - Komandu saraksts + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + - - Get help for a command - Palīdzība par komandu + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + - Options: - Iespējas: + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + - - Specify configuration file (default: BitBean.conf) - + + BitBean version + - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - 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) + Usage: + - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + Send command to -server or BitBeand + - 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 + List commands + - Specify your own public address - Norādiet savu publisko adresi - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - - - - - Threshold for disconnecting misbehaving peers (default: 100) - Slieksnis pārkāpējmezglu atvienošanai (pēc noklusēšanas: 100) + Get help for a command + - 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 - - - - - Detach block and address databases. Increases shutdown time (default: 0) - - - - - 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 - - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - - - - - Accept command line and JSON-RPC commands - Pieņemt komandrindas un JSON-RPC komandas + BitBean + - - Error: Transaction creation failed - + + Options: + - - Error: Wallet locked, unable to create transaction - + + This help message + - - Importing blockchain data file. - + + Specify configuration file (default: BitBean.conf) + - Importing bootstrap blockchain data file. - + Specify pid file (default: BitBeand.pid) + - - Run in the background as a daemon and accept commands - Darbināt fonā kā servisu un pieņemt komandas + + Specify data directory + - Use the test network - Izmantot testa tīklu + Specify wallet file (within data directory) + - - Accept connections from outside (default: 1 if no -proxy or -connect) - + + Set database cache size in megabytes (default: 25) + - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - + + Set database disk log size in megabytes (default: 100) + - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - + + Specify connection timeout in milliseconds (default: 5000) + - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + + Connect through socks proxy + - - Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. - + + Select the version of socks proxy to use (4-5, default: 5) + - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - + + Use proxy to reach tor hidden services (default: same as -proxy) + - - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - + + Allow DNS lookups for -addnode, -seednode and -connect + - - 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. - + + Listen for connections on <port> (default: 15714 or testnet: 25714) + - - Attempt to recover private keys from a corrupt wallet.dat - + + Maintain at most <n> connections to peers (default: 125) + - - Block creation options: - + + Add a node to connect to and attempt to keep the connection open + - + Connect only to the specified node(s) - - - - - Discover own IP address (default: 1 when listening and no -externalip) - - - - - Failed to listen on any port. Use -listen=0 if you want this. - - - - - Find peers using DNS lookup (default: 1) - + - - Sync checkpoints policy (default: strict) - + + Connect to a node to retrieve peer addresses, and disconnect + - - Invalid -tor address: '%s' - + + Specify your own public address + - - Invalid amount for -reservebalance=<amount> - + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - + + Discover own IP address (default: 1 when listening and no -externalip) + - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - + Find peers using internet relay chat (default: 0) + - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - + + Accept connections from outside (default: 1 if no -proxy or -connect) + - - Output extra debugging information. Implies all other -debug* options - + + Bind to given address. Use [host]:port notation for IPv6 + - Output extra network debugging information - + Find peers using DNS lookup (default: 1) + - Prepend debug output with timestamp - + Stake your beans to support network and gain reward (default: 1) + - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + - - Select the version of socks proxy to use (4-5, default: 5) - + + Sync checkpoints policy (default: strict) + - - Send trace/debug info to console instead of debug.log file - Debug/trace informāciju izvadīt konsolē, nevis debug.log failā + + Threshold for disconnecting misbehaving peers (default: 100) + - Send trace/debug info to debugger - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + - - Set maximum block size in bytes (default: 250000) - + + Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) + - - Set minimum block size in bytes (default: 0) - + + Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) + - - Shrink debug.log file on client startup (default: 1 when no -debug) - + + Use UPnP to map the listening port (default: 1 when listening) + - - Specify connection timeout in milliseconds (default: 5000) - + + Use UPnP to map the listening port (default: 0) + - - Unable to sign checkpoint, wrong checkpointkey? - - + + Detach block and address databases. Increases shutdown time (default: 0) + - - Use UPnP to map the listening port (default: 0) - + + Fee per KB to add to transactions you send + - - Use UPnP to map the listening port (default: 1 when listening) - + + When creating transactions, ignore inputs with value less than this (default: 0.01) + - - Use proxy to reach tor hidden services (default: same as -proxy) - + + Accept command line and JSON-RPC commands + - - Username for JSON-RPC connections - JSON-RPC savienojumu lietotājvārds + + Run in the background as a daemon and accept commands + - - Verifying database integrity... - + + Use the test network + - - WARNING: syncronized checkpoint violation detected, but skipped! - + + Output extra debugging information. Implies all other -debug* options + - Warning: Disk space is low! - + Output extra network debugging information + - - Warning: This version is obsolete, upgrade required! - + + Prepend debug output with timestamp + - - wallet.dat corrupt, salvage failed - + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - Password for JSON-RPC connections - JSON-RPC savienojumu parole + + Send trace/debug info to console instead of debug.log file + - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - + + Send trace/debug info to debugger + - - Find peers using internet relay chat (default: 0) - + + Username for JSON-RPC connections + - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - + + Password for JSON-RPC connections + - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + - + 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) + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - + Require a confirmations for change (default: 0) - + Enforce transaction scripts to use canonical PUSH operators (default: 1) - + Execute command when a relevant alert is received (%s in cmd is replaced by message) - + 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 + - + + Attempt to recover private keys from a corrupt wallet.dat + + + + How many blocks to check at startup (default: 2500, 0 = all) - + How thorough the block verification is (0-6, default: 1) - + Imports blocks from external blk000?.dat file - + - + + Block creation options: + + + + + Set minimum block size in bytes (default: 0) + + + + + Set maximum block size in bytes (default: 250000) + + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + 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) + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - + - - Error: Wallet unlocked for staking only, unable to create transaction. - + + Invalid amount for -paytxfee=<amount>: '%s' + - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + - - This help message - Šis palīdzības paziņojums + + Invalid amount for -mininput=<amount>: '%s' + - + Wallet %s resides outside data directory %s. - + Cannot obtain a lock on data directory %s. BitBean is probably already running. - + - - BitBean - + + Verifying database integrity... + - - 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) + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - Connect through socks proxy - + + 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. + - - Allow DNS lookups for -addnode, -seednode and -connect - Atļaut DNS uzmeklēšanu priekš -addnode, -seednode un -connect + + wallet.dat corrupt, salvage failed + - - Loading addresses... - Ielādē adreses... + + Unknown -socks proxy version requested: %i + - + + Unknown network specified in -onlynet: '%s' + + + + + Invalid -proxy address: '%s' + + + + + Invalid -tor address: '%s' + + + + + Cannot resolve -bind address: '%s' + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Cannot resolve -externalip address: '%s' + + + + + Invalid amount for -reservebalance=<amount> + + + + + Unable to sign checkpoint, wrong checkpointkey? + + + + + + Loading block index... + + + + Error loading blkindex.dat - + - + + Loading wallet... + + + + Error loading wallet.dat: Wallet corrupted - Nevar ielādēt wallet.dat: maciņš bojāts + - + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + Error loading wallet.dat: Wallet requires newer version of BitBean - + Wallet needed to be rewritten: restart BitBean to complete - + Error loading wallet.dat - Kļūda ielādējot wallet.dat + - - Invalid -proxy address: '%s' - Nederīga -proxy adrese: '%s' + + Cannot downgrade wallet + - - Unknown network specified in -onlynet: '%s' - -onlynet komandā norādīts nepazīstams tīkls: '%s' + + Cannot initialize keypool + - - Unknown -socks proxy version requested: %i - Pieprasīta nezināma -socks proxy versija: %i + + Cannot write default address + - - Cannot resolve -bind address: '%s' - Nevar uzmeklēt -bind adresi: '%s' + + Rescanning... + - - Cannot resolve -externalip address: '%s' - Nevar atrisināt -externalip adresi: '%s' + + Importing blockchain data file. + - - Invalid amount for -paytxfee=<amount>: '%s' - Nederīgs daudzums priekš -paytxfree=<amount>: '%s' + + Importing bootstrap blockchain data file. + - - Error: could not start node - + + Loading addresses... + - - Sending... - + + Error: could not start node + - - Invalid amount - Nederīgs daudzums + + Done loading + - Insufficient funds - Nepietiek bitkoinu + Unable to bind to %s on this computer. BitBean is probably already running. + - - Loading block index... - Ielādē bloku indeksu... + + Unable to bind to %s on this computer (bind returned error %d, %s) + - - Add a node to connect to and attempt to keep the connection open - Pievienot mezglu, kam pievienoties un turēt savienojumu atvērtu + + Error: Wallet locked, unable to create transaction + - - Unable to bind to %s on this computer. BitBean is probably already running. - + + Error: Wallet unlocked for staking only, unable to create transaction. + - - Fee per KB to add to transactions you send - + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Invalid amount for -mininput=<amount>: '%s' - + + Error: Transaction creation failed + - - Loading wallet... - Ielādē maciņu... + + Sending... + - - Cannot downgrade wallet - Nevar maciņa formātu padarīt vecāku + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Cannot initialize keypool - + + Invalid amount + - Cannot write default address - Nevar ierakstīt adresi pēc noklusēšanas + Insufficient funds + - Rescanning... - Skanēju no jauna... + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Done loading - Ielāde pabeigta + + Warning: This version is obsolete, upgrade required! + - - To use the %s option - Izmantot opciju %s + + WARNING: syncronized checkpoint violation detected, but skipped! + - - Error - Kļūda + + Warning: Disk space is low! + - - You must set rpcpassword=<password> in the configuration file: -%s -If the file does not exist, create it with owner-readable-only file permissions. - Konfigurācijas failā jāuzstāda rpcpassword=<password>: -%s -Ja fails neeksistē, izveidojiet to ar atļauju lasīšanai tikai īpašniekam. + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + - \ No newline at end of file + diff --git a/src/qt/locale/bitbean_zh_CN.qm b/src/qt/locale/bitbean_zh_CN.qm new file mode 100644 index 0000000..142cf3c Binary files /dev/null and b/src/qt/locale/bitbean_zh_CN.qm differ diff --git a/src/qt/locale/bitbean_zh_CN.ts b/src/qt/locale/bitbean_zh_CN.ts new file mode 100644 index 0000000..07fbcdb --- /dev/null +++ b/src/qt/locale/bitbean_zh_CN.ts @@ -0,0 +1,4882 @@ + + + +UTF-8 + + AboutDialog + + + About BitBean + 关于黑币 + + + + <b>BitBean</b> version + <b>黑币客户端</b> 版本 + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + + + + Copyright © 2009-2014 The Bitcoin developers +Copyright © 2012-2014 The NovaCoin developers +Copyright © 2014 The BitBean developers + 版权所有 © 2009-2014 比特币Bitcoin开发组 +版权所有 © 2012-2014 新星币Novacoin开发组 +版权所有 © 2014 黑币BitBean开发组 + + + +This is experimental software. + +Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. + +This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. + +测试版软件 + +经MIT/X11软件授权发布, 具体参见http://www.opensource.org/licenses/mit-license.php. + +本产品包括由OpenSSL Project (http://www.openssl.org/)开发的OpenSSL工具包 ,由 Eric Young (eay@cryptsoft.com) 撰写的密码学软件以及由 Thomas Bernard 撰写的UPnP软件. + + + + AddressBookPage + + + Address Book + 地址簿 + + + + Double-click to edit address or label + 双击编辑地址或标签 + + + + Create a new address + 创建新地址 + + + + Copy the currently selected address to the system clipboard + 复制当前选中的地址到系统剪贴板 + + + + &New Address + 新建地址(&N) + + + + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. + 这是您用来接收支付的黑币地址列表。为不同的支付方建立不同的地址以便于了解支付来源。 + + + + &Copy Address + 复制地址(&C) + + + + Show &QR Code + 显示二维码(&Q) + + + + Sign a message to prove you own a BitBean address + 对信息进行签名以证明您对该黑币地址的所有权 + + + + Sign &Message + 签名(&M) + + + + Delete the currently selected address from the list + 从列表中删除选中的地址 + + + + Verify a message to ensure it was signed with a specified BitBean address + 验证信息以保证其经过指定黑币地址的签名 + + + + &Verify Message + 验证消息(&V) + + + + &Delete + 删除(&D) + + + + Copy &Label + 复制标签(&L) + + + + &Edit + 编辑(&E) + + + + Export Address Book Data + 导出地址簿数据 + + + + Comma separated file (*.csv) + 逗号分隔文件 (*.csv) + + + + Error exporting + 导出时发生错误 + + + + Could not write to file %1. + 无法写入文件 %1 。 + + + + AddressTableModel + + + Label + 标签 + + + + Address + 地址 + + + + (no label) + (没有标签) + + + + AskPassphraseDialog + + + Passphrase Dialog + 密码对话框 + + + + Enter passphrase + 输入密码 + + + + New passphrase + 新密码 + + + + Repeat new passphrase + 重复新密码 + + + + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. + 在系统允许的情况下用于防止sendmoney欺诈,并未提供真正的安全防护措施。 + + + + For staking only + 仅用于权益增值 + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. + 输入钱包的新密码。<br/>使用的密码请至少包含<b>10个以上随机字符</>,或者是<b>8个以上的单词</b>。 + + + + Encrypt wallet + 加密钱包 + + + + This operation needs your wallet passphrase to unlock the wallet. + 此操作需要您首先使用密码解锁该钱包。 + + + + Unlock wallet + 解锁钱包 + + + + This operation needs your wallet passphrase to decrypt the wallet. + 该操作需要您首先使用密码解密钱包。 + + + + Decrypt wallet + 解密钱包 + + + + Change passphrase + 更改密码 + + + + Enter the old and new passphrase to the wallet. + 请输入该钱包的旧密码与新密码。 + + + + Confirm wallet encryption + 确认加密钱包 + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! + 警告:如果您丢失了加密该钱包的密码,其中所有的黑币将会丢失! + + + + Are you sure you wish to encrypt your wallet? + 您确定需要为钱包加密吗? + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + 重要提示:您以前备份的钱包文件应该替换成最新生成的加密钱包文件(重新备份)。从安全性上考虑,您以前备份的未加密的钱包文件,在您使用新的加密钱包后将无效,请重新备份。 + + + + + Warning: The Caps Lock key is on! + 警告:大写锁定键处于打开状态! + + + + + Wallet encrypted + 钱包已加密 + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins 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. + 修改钱包密码成功。 + + + + BeanControlDialog + + + Bean Control + + + + + Quantity: + 总量: + + + + Bytes: + 字节: + + + + Amount: + 金额: + + + + Priority: + 优先级: + + + + Fee: + 费用: + + + + Low Output: + 低输出 + + + + After Fee: + 加上交易费用后: + + + + Change: + 变更 : + + + + (un)select all + (不)全选 + + + + Tree mode + 树状模式 + + + + List mode + 列表模式 + + + + Amount + + + + + Label + 标签 + + + + Address + 地址 + + + + Date + 日期 + + + + Confirmations + 确认 + + + + Confirmed + 已确认 + + + + Priority + 优先级 + + + + Copy address + 复制地址 + + + + Copy label + 复制标签 + + + + + Copy amount + 复制金额 + + + + Copy transaction ID + 复制交易编号 + + + + Copy quantity + 复制金额 + + + + Copy fee + 复制交易费 + + + + Copy after fee + 复制含交易费的金额 + + + + Copy bytes + 复制字节 + + + + Copy priority + 复制优先级 + + + + Copy low output + 复制低输出 + + + + Copy change + 复制零钱 + + + + highest + 最高 + + + + high + + + + + medium-high + 中高 + + + + medium + 中等 + + + + low-medium + 中低 + + + + low + + + + + lowest + 最低 + + + + DUST + DUST + + + + yes + + + + + no + + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + 交易数据量超过10000字节时,该标签变为红色。 +此时每kb数据量将会收取 %1 的手续费。 +可能有+/-1字节的误差。 + + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + 优先度较高的交易有更高可能进入到区块中。 +当优先度为中级以下时,该标签变为红色。 +此时需要收取每kb %1 的手续费。 + + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + 如果收款人所收款项少于 %1,该标签变为红色。 +此时需收取 %2 的手续费。 +低于该手续费的0.546倍的款项将被显示为DUST。 + + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + 如果零钱少于 %1,该标签变为红色。 +此时需收取 %2 的手续费。 + + + + + (no label) + (没有标签) + + + + change from %1 (%2) + 来自%1的零钱 (%2) + + + + (change) + (零钱) + + + + BitbeanGUI + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + 发生严重错误,黑币客户端即将关闭。 + + + + BitBean + 黑币 + + + + Vault + + + + + &Overview + 概况(&O) + + + + Show general overview of wallet + 显示钱包概况 + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + 显示用于接收支付的地址列表 + + + + &Transactions + 交易记录(&T) + + + + Browse transaction history + 查看交易历史 + + + + &Address Book + 地址簿(&A) + + + + Edit the list of stored addresses and labels + 管理已储存的地址和标签 + + + + E&xit + 退出(&X) + + + + Quit application + 退出程序 + + + + &About BitBean + 关于黑币(&A) + + + + Show information about BitBean + 显示关于黑币的信息 + + + + About &Qt + 关于 &Qt + + + + Show information about Qt + 显示 Qt 相关信息 + + + + &Options... + 选项(&O)... + + + + Modify configuration options for BitBean + 更改设置选项 + + + + &Show / Hide + 显示 / 隐藏(&S) + + + + &Encrypt Wallet... + 加密钱包(&E)... + + + + Encrypt or decrypt wallet + 加密/解密钱包 + + + + &Backup Wallet... + 备份钱包(&B)... + + + + Backup wallet to another location + 备份钱包到其他文件夹 + + + + &Change Passphrase... + 更改密码(&C)... + + + + Change the passphrase used for wallet encryption + 更改钱包加密口令 + + + + &Unlock Wallet... + 解锁钱包(&U) + + + + Unlock wallet + 解锁钱包 + + + + &Lock Wallet + 锁定钱包(&L) + + + + Lock wallet + 锁定钱包 + + + + Sign &message... + 消息签名(&M)... + + + + &Verify message... + 验证消息(&V)... + + + + &Export... + 导出(&E) + + + + Export the data in the current tab to a file + 导出当前标签页的数据 + + + + &Debug window + 调试窗口(&D) + + + + Open debugging and diagnostic console + 打开调试和诊断控制台 + + + + &File + 文件(&F) + + + + &Settings + 设置(&S) + + + + &Help + 帮助(&H) + + + + Tabs toolbar + 分页工具栏 + + + + Actions toolbar + 工具栏 + + + + + [testnet] + [测试网络] + + + + + BitBean client + 黑币客户端 + + + + %n active connection(s) to BitBean network + + 与黑币网络建立了 %n 个连接 + + + + + Synchronizing with network... + 正在与网络同步... + + + + ~%n block(s) remaining + + ~%n 个区块未完成 + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + 交易记录已下载%3% (%1 / %2 个区块) + + + + Downloaded %1 blocks of transaction history. + 已下载 %1 个区块的交易记录 + + + + %n second(s) ago + + %n 秒前 + + + + + %n minute(s) ago + + %n 分钟前 + + + + + %n hour(s) ago + + %n 小时前 + + + + + %n day(s) ago + + %n 天前 + + + + + Up to date + 已是最新 + + + + Catching up... + 更新中... + + + + Last received block was generated %1. + 最近生成的区块接收于%1 + + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + 该笔交易数据量太大,需支付%1手续费给执行该笔交易的网络结点。您愿意支付吗? + + + + Confirm transaction fee + 手续费确认 + + + + Sent transaction + 发送交易 + + + + Incoming transaction + 流入交易 + + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + 日期: %1 +金额: %2 +类别: %3 +地址: %4 + + + + + + URI handling + URI处理 + + + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + 无法解析URI:无效的黑币地址或错误的URI参数。 + + + + 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>状态 + + + + Backup Wallet + 备份钱包 + + + + Wallet Data (*.dat) + 钱包数据文件(*.dat) + + + + Backup Failed + 备份失败 + + + + There was an error trying to save the wallet data to the new location. + 试图将钱包地址保存到新位置时出现错误 + + + + %n second(s) + + %n秒 + + + + + %n minute(s) + + %n 分钟 + + + + + %n hour(s) + + %n 小时 + + + + + %n day(s) + + %n 天 + + + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + 权益增值中 <br>您的权重为 %1 <br>网络总权重为 %2<br>预计将在 %3 之后获得收益 + + + + Not staking because wallet is locked + 未进行权益增值,因为钱包已锁定 + + + + Not staking because wallet is offline + 未进行权益增值,因为钱包处于离线状态 + + + + Not staking because wallet is syncing + 未进行权益增值,因为钱包正在同步 + + + + Not staking because you don't have mature beans + + + + + Not staking + 未进行权益增值 + + + + BitcoinGUI + + Sign &message... + 消息签名(&M)... + + + Synchronizing with network... + 正在与网络同步... + + + &Overview + 概况(&O) + + + Show general overview of wallet + 显示钱包概况 + + + &Transactions + 交易记录(&T) + + + Browse transaction history + 查看交易历史 + + + &Address Book + 地址簿(&A) + + + Edit the list of stored addresses and labels + 管理已储存的地址和标签 + + + &Receive coins + 接收黑币(&R) + + + Show the list of addresses for receiving payments + 显示用于接收支付的地址列表 + + + &Send coins + 发送黑币(&S) + + + E&xit + 退出(&X) + + + Quit application + 退出程序 + + + Show information about BitBean + 显示关于黑币的信息 + + + About &Qt + 关于 &Qt + + + Show information about Qt + 显示 Qt 相关信息 + + + &Options... + 选项(&O)... + + + &Encrypt Wallet... + 加密钱包(&E)... + + + &Backup Wallet... + 备份钱包(&B)... + + + &Change Passphrase... + 更改密码(&C)... + + + ~%n block(s) remaining + + ~%n 个区块未完成 + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + 交易记录已下载%3% (%1 / %2 个区块) + + + &Export... + 导出(&E) + + + Send coins to a BitBean address + 向指定的地址发送黑币 + + + Modify configuration options for BitBean + 更改设置选项 + + + Export the data in the current tab to a file + 导出当前标签页的数据 + + + Encrypt or decrypt wallet + 加密/解密钱包 + + + Backup wallet to another location + 备份钱包到其他文件夹 + + + Change the passphrase used for wallet encryption + 更改钱包加密口令 + + + &Debug window + 调试窗口(&D) + + + Open debugging and diagnostic console + 打开调试和诊断控制台 + + + &Verify message... + 验证消息(&V)... + + + BitBean + 黑币 + + + Wallet + 钱包 + + + &About BitBean + 关于黑币(&A) + + + &Show / Hide + 显示 / 隐藏(&S) + + + Unlock wallet + 解锁钱包 + + + &Lock Wallet + 锁定钱包(&L) + + + Lock wallet + 锁定钱包 + + + &File + 文件(&F) + + + &Settings + 设置(&S) + + + &Help + 帮助(&H) + + + Tabs toolbar + 分页工具栏 + + + Actions toolbar + 工具栏 + + + [testnet] + [测试网络] + + + BitBean client + 黑币客户端 + + + %n active connection(s) to BitBean network + + 与黑币网络建立了 %n 个连接 + + + + Downloaded %1 blocks of transaction history. + 已下载 %1 个区块的交易记录 + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + 权益增值中 <br>您的权重为 %1 <br>网络总权重为 %2<br>预计将在 %3 之后获得收益 + + + Not staking because wallet is locked + 未进行权益增值,因为钱包已锁定 + + + Not staking because wallet is offline + 未进行权益增值,因为钱包处于离线状态 + + + Not staking because wallet is syncing + 未进行权益增值,因为钱包正在同步 + + + Not staking because you don't have mature coins + 未进行权益增值,因为钱包中没有成熟的黑币 + + + %n second(s) ago + + %n 秒前 + + + + &Unlock Wallet... + 解锁钱包(&U) + + + %n minute(s) ago + + %n 分钟前 + + + + %n hour(s) ago + + %n 小时前 + + + + %n day(s) ago + + %n 天前 + + + + Up to date + 已是最新 + + + Catching up... + 更新中... + + + Last received block was generated %1. + 最近生成的区块接收于%1 + + + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? + 该笔交易数据量太大,需支付%1手续费给执行该笔交易的网络结点。您愿意支付吗? + + + Confirm transaction fee + 手续费确认 + + + Sent transaction + 发送交易 + + + Incoming transaction + 流入交易 + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + 日期: %1 +金额: %2 +类别: %3 +地址: %4 + + + + URI handling + URI处理 + + + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. + 无法解析URI:无效的黑币地址或错误的URI参数。 + + + 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>状态 + + + Backup Wallet + 备份钱包 + + + Wallet Data (*.dat) + 钱包数据文件(*.dat) + + + Backup Failed + 备份失败 + + + There was an error trying to save the wallet data to the new location. + 试图将钱包地址保存到新位置时出现错误 + + + %n second(s) + + %n秒 + + + + %n minute(s) + + %n 分钟 + + + + %n hour(s) + + %n 小时 + + + + %n day(s) + + %n 天 + + + + Not staking + 未进行权益增值 + + + A fatal error occurred. BitBean can no longer continue safely and will quit. + 发生严重错误,黑币客户端即将关闭。 + + + + ClientModel + + + Network Alert + 网络警报 + + + + CoinControlDialog + + Coin Control + 黑币控制 + + + Quantity: + 总量: + + + Bytes: + 字节: + + + Amount: + 金额: + + + Priority: + 优先级: + + + Fee: + 费用: + + + Low Output: + 低输出 + + + no + + + + After Fee: + 加上交易费用后: + + + Change: + 变更 : + + + (un)select all + (不)全选 + + + Tree mode + 树状模式 + + + List mode + 列表模式 + + + Amount + 金额 + + + Label + 标签 + + + Address + 地址 + + + Date + 日期 + + + Confirmations + 确认 + + + Confirmed + 已确认 + + + Priority + 优先级 + + + Copy address + 复制地址 + + + Copy label + 复制标签 + + + Copy amount + 复制金额 + + + Copy transaction ID + 复制交易编号 + + + Copy quantity + 复制金额 + + + Copy fee + 复制交易费 + + + Copy after fee + 复制含交易费的金额 + + + Copy bytes + 复制字节 + + + Copy priority + 复制优先级 + + + Copy low output + 复制低输出 + + + Copy change + 复制零钱 + + + highest + 最高 + + + high + + + + medium-high + 中高 + + + medium + 中等 + + + low-medium + 中低 + + + low + + + + lowest + 最低 + + + DUST + DUST + + + yes + + + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + 交易数据量超过10000字节时,该标签变为红色。 +此时每kb数据量将会收取 %1 的手续费。 +可能有+/-1字节的误差。 + + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + 优先度较高的交易有更高可能进入到区块中。 +当优先度为中级以下时,该标签变为红色。 +此时需要收取每kb %1 的手续费。 + + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + 如果收款人所收款项少于 %1,该标签变为红色。 +此时需收取 %2 的手续费。 +低于该手续费的0.546倍的款项将被显示为DUST。 + + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + 如果零钱少于 %1,该标签变为红色。 +此时需收取 %2 的手续费。 + + + (no label) + (没有标签) + + + change from %1 (%2) + 来自%1的零钱 (%2) + + + (change) + (零钱) + + + + EditAddressDialog + + + Edit Address + 编辑地址 + + + + &Label + 标签(&L) + + + + The label associated with this address book entry + 地址簿内该项目对应的标签 + + + + &Address + 地址(&A) + + + + The address associated with this address book entry. This can only be modified for sending addresses. + 地址簿内该项目对应的地址。只有“收款人地址”分类下的地址可以修改。 + + + + New receiving address + 新建接收地址 + + + + New sending address + 新建发送地址 + + + + Edit receiving address + 编辑接收地址 + + + + Edit sending address + 编辑发送地址 + + + + The entered address "%1" is already in the address book. + 输入的地址“%1”已经存在于地址簿中。 + + + + The entered address "%1" is not a valid BitBean address. + “%1” 不是有效的黑币地址。 + + + + Could not unlock wallet. + 无法解锁钱包 + + + + New key generation failed. + 新的密钥生成失败。 + + + + GUIUtil::HelpMessageBox + + + + BitBean-Qt + 黑币客户端BitBean-Qt + + + + version + 版本 + + + + Usage: + 使用 + + + + command-line options + 命令行选项 + + + + UI options + 用户界面选项 + + + + Set language, for example "de_DE" (default: system locale) + 设定语言,例如 “de_DE" (默认语言为本地操作系统语言) + + + + Start minimized + 启动时最小化 + + + + Show splash screen on startup (default: 1) + 登录时显示Logo界面 (默认开启) + + + + OptionsDialog + + + Options + 选项 + + + + &Main + 主要(&M) + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. + 支付可选的交易手续费以加速交易(每kB)。大多数交易的数据量为1kB。推荐额0.01。 + + + + Pay transaction &fee + 支付交易费用(&F) + + + Reserved amount does not participate in staking and is therefore spendable at any time. + 保留金额不参与权益累积,可以随时使用。 + + + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + + + + + Reserve + 保留 + + + + Automatically start BitBean after logging in to the system. + 开机自动启动黑币客户端 + + + + &Start BitBean on system login + 开机时自动启动黑币客户端(&S) + + + + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. + 关机时断开区块和地址数据连接使得它们可以被移动到其他目录。这样做会使关机速度变慢。钱包数据总是断开存储的。 + + + + &Detach databases at shutdown + 关机时断开区块和地址数据库连接(&D) + + + + &Network + 网络(&N) + + + + Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. + 路由器自动打开黑币客户端端口。该功能仅在路由器开启UPnP支持时有效。 + + + + Map port using &UPnP + 使用 &UPnP 映射端口 + + + + Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). + 经SOCKS代理连接到黑币网络(例如使用Tor) + + + + &Connect through SOCKS proxy: + 经SOCKS代理连接(&C) + + + + Proxy &IP: + 代理服务器 &IP: + + + + IP address of the proxy (e.g. 127.0.0.1) + 代理地址(如:127.0.0.1) + + + + &Port: + 端口(&P): + + + + Port of the proxy (e.g. 9050) + 代理端口(例如 9050) + + + + SOCKS &Version: + Socks 版本(&V): + + + + SOCKS version of the proxy (e.g. 5) + Socks 代理版本(例如 5) + + + + &Window + 窗口(&W) + + + + Show only a tray icon after minimizing the window. + 最小化窗口后仅显示托盘图标 + + + + &Minimize to the tray instead of the taskbar + 最小化到托盘(&M) + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. + 当窗口关闭时程序最小化而不是退出。当使用该选项时,程序只能通过在菜单中选择退出来关闭 + + + + M&inimize on close + 单击关闭按钮最小化(&I) + + + + &Display + 显示(&D) + + + + User Interface &language: + 用户界面语言(&L): + + + + The user interface language can be set here. This setting will take effect after restarting BitBean. + 在此设置用户界面语言。重启黑币客户端后设置生效。 + + + + &Unit to show amounts in: + 黑币金额单位(&U): + + + + Choose the default subdivision unit to show in the interface and when sending beans. + + + + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + Choose the default subdivision unit to show in the interface and when sending coins. + 选择黑币单位。 + + + + Whether to show BitBean 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) + + + + &Apply + 应用(&A) + + + + default + 默认 + + + + + Warning + 警告 + + + + + This setting will take effect after restarting BitBean. + 重启客户端后设置生效 + + + + The supplied proxy address is invalid. + 提供的代理服务器地址无效。 + + + + OverviewPage + + + Form + 表单 + + + + Bean Vault + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + 所显示的信息尚未更新,建立连接后钱包客户端会自动和网络进行同步,但目前该过程尚未完成。 + + + Stake: + 用于权益累积: + + + + Unconfirmed: + 未确认: + + + Wallet + 钱包 + + + + Spendable: + 可用金额: + + + + Your current spendable balance + 您当前可使用的余额 + + + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + + Immature: + 未成熟的: + + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + 0 + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + + Mined balance that has not yet matured + 尚未成熟的挖矿收入余额 + + + + Total: + 总额: + + + Your current total balance + 您当前的总余额 + + + <b>Recent transactions</b> + <b>最近交易记录</b> + + + Total of transactions that have yet to be confirmed, and do not yet count toward the current balance + 尚未确认的交易总额(不计入目前钱包余额) + + + Total of coins that was staked, and do not yet count toward the current balance + 正在进行权益累积的货币总额(不计入目前钱包余额) + + + + + out of sync + 数据未同步 + + + + QRCodeDialog + + + QR Code Dialog + QR二维码对话框 + + + + Request Payment + 请求支付 + + + + Amount: + 金额: + + + + Label: + 标签: + + + + Message: + 信息: + + + + &Save As... + 另存为(&S)... + + + + Error encoding URI into QR Code. + URI编为QR二维码时出错。 + + + + The entered amount is invalid, please check. + 输入的金额无效,请检查。 + + + + Resulting URI too long, try to reduce the text for label / message. + 生成的URI过长,请减短标签或消息的长度。 + + + + Save QR Code + 保存QR二维码 + + + + PNG Images (*.png) + PNG图片(*.png) + + + + RPCConsole + + + Client name + 客户端名称 + + + + + + + + + + + + + N/A + 不可用 + + + + Client version + 客户端版本 + + + + &Information + 信息(&I) + + + + Using OpenSSL version + 使用 OpenSSL 版本 + + + + Startup time + 启动时间 + + + + Network + 网络 + + + + Number of connections + 连接数 + + + + On testnet + 测试网 + + + + Block chain + 数据链 + + + + Current number of blocks + 当前数据块数量 + + + + Estimated total blocks + 预计数据块数量 + + + + Last block time + 上一数据块时间 + + + + &Open + 打开(&O) + + + + Command-line options + 命令行选项 + + + + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. + 显示关于命令行选项的帮助信息。 + + + + &Show + 显示(&S) + + + + &Console + 控制台(&C) + + + + Build date + 创建时间 + + + + BitBean - Debug window + 黑币客户端-调试窗口 + + + + BitBean Core + 黑币核心进程 + + + + Debug log file + 调试日志文件 + + + + Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. + 打开调试日志文件,对于较大的文件,这可能持续几秒钟。 + + + + Clear console + 清空控制台 + + + + Welcome to the BitBean 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> 命令显示帮助信息。 + + + + SendBeansDialog + + + + + + + + + + Send Beans + + + + + Bean Control Features + + + + + Inputs... + 输入... + + + + automatically selected + 自动选择 + + + + Insufficient funds! + 存款不足! + + + + Quantity: + 总量: + + + + + 0 + 0 + + + + Bytes: + 字节: + + + + Amount: + 金额: + + + + + + + 0.00 BC + 123.456 BC {0.00 ?} + + + + Priority: + 优先级: + + + + medium + 中等 + + + + Fee: + 费用: + + + + Low Output: + 低输出 + + + + no + + + + + After Fee: + 加上交易费用后: + + + + Change + 零钱 + + + + custom change address + 自定义零钱地址 + + + + Send to multiple recipients at once + 一次发送给多个接收者 + + + + Add &Recipient + 添加收款人(&R) + + + + Remove all transaction fields + 删除所有交易区域 + + + + Clear &All + 清除所有(&A) + + + + Balance: + 余额: + + + + 123.456 BC + 123.456 BC + + + + Confirm the send action + 确认并发送货币 + + + + S&end + 发送(&E) + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Copy quantity + 复制金额 + + + + Copy amount + 复制金额 + + + + Copy fee + 复制交易费 + + + + Copy after fee + 复制含交易费的金额 + + + + Copy bytes + 复制字节 + + + + Copy priority + 复制优先级 + + + + Copy low output + 复制低输出 + + + + Copy change + 复制零钱 + + + + <b>%1</b> to %2 (%3) + <b>%1</b> 至 %2 (%3) + + + + Confirm send beans + + + + + Are you sure you want to send %1? + 确认要发送 %1 ? + + + + and + + + + + 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. + 发现重复的地址, 每次只能对同一地址发送一次。 + + + + Error: Transaction creation failed. + 错误:交易创建失败。 + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + WARNING: Invalid BitBean address + 警告:无效的黑币地址 + + + + (no label) + (没有标签) + + + + WARNING: unknown change address + 警告:未知的零钱地址 + + + + SendBeansEntry + + + Form + 表单 + + + + A&mount: + 金额(&M) + + + + Pay &To: + 付给(&T): + + + + + Enter a label for this address to add it to your address book + 为这个地址输入一个标签,以便将它添加到您的地址簿 + + + + &Label: + 标签(&L): + + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + 收款人地址(例:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Choose address from address book + 从地址簿选择地址 + + + + Alt+A + Alt+A + + + + Paste address from clipboard + 从剪贴板粘贴地址 + + + + Alt+P + Alt+P + + + + Remove this recipient + 删除收款人 + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + SendCoinsDialog + + Send Coins + 发送货币 + + + Coin Control Features + 交易源地址控制功能 + + + Inputs... + 输入... + + + automatically selected + 自动选择 + + + Insufficient funds! + 存款不足! + + + Quantity: + 总量: + + + 0 + 0 + + + Bytes: + 字节: + + + Amount: + 金额: + + + 0.00 BC + 123.456 BC {0.00 ?} + + + Priority: + 优先级: + + + medium + 中等 + + + Fee: + 费用: + + + Low Output: + 低输出 + + + no + no + + + After Fee: + 加上交易费用后: + + + Change + 零钱 + + + custom change address + 自定义零钱地址 + + + Send to multiple recipients at once + 一次发送给多个接收者 + + + Add &Recipient + 添加收款人(&R) + + + Remove all transaction fields + 删除所有交易区域 + + + Clear &All + 清除所有(&A) + + + Balance: + 余额: + + + 123.456 BC + 123.456 BC + + + Confirm the send action + 确认并发送货币 + + + S&end + 发送(&E) + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + 输入黑币地址(例如:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Copy quantity + 复制金额 + + + Copy amount + 复制金额 + + + Copy fee + 复制交易费 + + + Copy after fee + 复制含交易费的金额 + + + Copy bytes + 复制字节 + + + Copy priority + 复制优先级 + + + Copy low output + 复制低输出 + + + Copy change + 复制零钱 + + + <b>%1</b> to %2 (%3) + <b>%1</b> 至 %2 (%3) + + + Confirm send coins + 确认发送货币 + + + Are you sure you want to send %1? + 确认要发送 %1 ? + + + and + + + + 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. + 发现重复的地址, 每次只能对同一地址发送一次。 + + + Error: Transaction creation failed. + 错误:交易创建失败。 + + + 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. + 错误:交易被拒绝。可能由于钱包中部分金额已被使用,例如您使用了钱包数据的副本,在副本中某些金额已被使用,但在此处尚未被标记为已使用。 + + + WARNING: Invalid BitBean address + 警告:无效的黑币地址 + + + (no label) + (没有标签) + + + WARNING: unknown change address + 警告:未知的零钱地址 + + + + SendCoinsEntry + + Form + 表单 + + + A&mount: + 金额(&M) + + + Pay &To: + 付给(&T): + + + Enter a label for this address to add it to your address book + 为这个地址输入一个标签,以便将它添加到您的地址簿 + + + &Label: + 标签(&L): + + + The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + 收款人地址(例:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + Choose address from address book + 从地址簿选择地址 + + + Alt+A + Alt+A + + + Paste address from clipboard + 从剪贴板粘贴地址 + + + Alt+P + Alt+P + + + Remove this recipient + 删除收款人 + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + 输入一个黑币地址 (例:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + 用来签名该消息的地址(例: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + + Choose an address from the address book + 从地址簿里选择一个地址 + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + 从剪贴板粘贴地址 + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + 请输入您要发送的签名消息 + + + + Copy the current signature to the system clipboard + 复制当前签名至剪切板 + + + + Sign the message to prove you own this BitBean address + 对该消息进行签名以证明您对该黑币地址的所有权 + + + + 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + 用来签名该消息的黑币地址(例: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Verify the message to ensure it was signed with the specified BitBean address + 确认该消息以保证它经由指定的黑币地址签名 + + + + Reset all verify message fields + 清空所有验证消息栏 + + + + + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + 输入黑币地址(例: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) + + + + Click "Sign Message" to generate signature + 单击“签名消息“产生签名。 + + + + Enter BitBean 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. + 消息验证成功。 + + + + TransactionDesc + + + Open until %1 + 至 %1 个数据块时开启 + + + + Open for %n block(s) + + 为 %n 个数据块开启 + + + + + 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 + + + + Generated beans must mature 110 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. + + + + Generated coins must mature 110 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. + 通过权益累积获得的金额需要在510个块确认后方可使用。此数据块生成时,将被广播到网络并加入区块链。如果未能成功加入区块链,其状态会显示为“未接受”,该部分金额也不可被使用。如果其他节点在您生成区块后的几秒钟内也生成了区块,这种情况会偶尔发生。 + + + + Debug information + 调试信息 + + + + Transaction + 交易 + + + + Inputs + 输入 + + + + Amount + 金额 + + + + true + 正确 + + + + false + 错误 + + + + , has not been successfully broadcast yet + ,未被成功广播 + + + + unknown + 未知 + + + + TransactionDescDialog + + + Transaction details + 交易细节 + + + + This pane shows a detailed description of the transaction + 当前面板显示了交易的详细信息 + + + + TransactionTableModel + + + Date + 日期 + + + + Type + 类型 + + + + Address + 地址 + + + + Amount + 数量 + + + + Open until %1 + 至 %1 个数据块时开启 + + + + Confirmed (%1 confirmations) + 已确认 (%1 条确认信息) + + + + Open for %n more block(s) + + 为 %n 个更多的区块开启 + + + + + Offline + 掉线 + + + + Unconfirmed + 未确认的 + + + + Confirming (%1 of %2 recommended confirmations) + 确认中 (推荐 %2个确认,已经有 %1个确认) + + + + Conflicted + 冲突的 + + + + Immature (%1 confirmations, will be available after %2) + 未成熟 (%1 个确认,将在 %2 个后可用) + + + + This block was not received by any other nodes and will probably not be accepted! + 此数据块未被任何其他节点接收,可能不被接受! + + + + Generated but not accepted + 已生成但未被接受 + + + + Received with + 接收于 + + + + Received from + 收款来自 + + + + Sent to + 发送给 + + + + Payment to yourself + 付款给自己 + + + + SPROUT + + + + 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. + 从余额添加或移除的金额。 + + + + 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 Data + 输出交易数据 + + + + Comma separated file (*.csv) + 逗号分隔文件 (*.csv) + + + + Confirmed + 已确认 + + + + Date + 日期 + + + + Type + 类别 + + + + Label + 标签 + + + + Address + 地址 + + + + Amount + 金额 + + + + ID + ID + + + + Error exporting + 导出出现错误 + + + + Could not write to file %1. + 无法写入文件 %1 。 + + + + Range: + 范围: + + + + to + + + + + WalletModel + + + Sending... + 正在发送 + + + + bitbean-core + + + To use the %s option + 使用 %s 选项 + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, 必须在配置文件里设置rpc密码: + %s +建议使用如下的随机密码: +rpcuser=BitBeanrpc +rpcpassword=%s +(不需要记住该密码) +用户名和密码不能重复。 +如果该文件不存在,请自行创建并设为用户本身只读权限。 +建议创建提示以监测可能的问题,如: +alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + Error + 错误 + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + 在IPv6模式下设置RPC监听端口 %u 失败,返回到IPv4模式: %s + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + 设置RPC监听端口%u时发生错误, IPv4:%s + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + 您必须在配置文件中加入选项 rpcpassword : + %s +如果配置文件不存在,请新建,并将文件权限设置为仅允许文件所有者读取. + + + + BitBean version + 黑币客户端 版本 + + + + Usage: + + + + + Send command to -server or BitBeand + 向-server服务器或BitBeand发送命令 + + + + List commands + 列出命令 + + + + + Get help for a command + 获得某条命令的帮助 + + + + + BitBean + 黑币 + + + + Options: + 选项: + + + + + This help message + 本帮助信息 + + + + + Specify configuration file (default: BitBean.conf) + 指定配置文件(默认: BitBean.conf) + + + + Specify pid file (default: BitBeand.pid) + 指定pid文件(默认: BitBeand.pid) + + + + Specify data directory + 指定数据目录 + + + + + Specify wallet file (within data directory) + 指定钱包文件(数据目录内) + + + + Set database cache size in megabytes (default: 25) + 设置数据库缓冲区大小 (缺省: 25MB) + + + + Set database disk log size in megabytes (default: 100) + 设置数据库日志文件大小(单位MB,默认值100) + + + + Specify connection timeout in milliseconds (default: 5000) + 设置连接超时时间(缺省:5000毫秒) + + + + Connect through socks proxy + 通过socks代理连接 + + + + Select the version of socks proxy to use (4-5, default: 5) + 选择要使用的SOCKS代理版本 (4-5, 默认 5) + + + + Use proxy to reach tor hidden services (default: same as -proxy) + 开启代理以使用隐藏服务 (默认: 和-proxy设置相同) + + + + Allow DNS lookups for -addnode, -seednode and -connect + 使用 -addnode, -seednode 和 -connect 选项时允许查询DNS + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + 监听<port>端口的连接 (默认: 15714 测试网: 25714) + + + + Maintain at most <n> connections to peers (default: 125) + 最大连接数 <n> (缺省: 125) + + + + Add a node to connect to and attempt to keep the connection open + 添加节点并与其保持连接 + + + + Connect only to the specified node(s) + 仅连接到指定节点 + + + + Connect to a node to retrieve peer addresses, and disconnect + 连接一个节点并获取对端地址,然后断开连接 + + + + Specify your own public address + 指定您的公共地址 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + 仅连接至指定网络的节点<net>(IPv4, IPv6 或者 Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + 发现自己的IP地址(缺省:不带 -externalip 参数监听时设置为1) + + + + Find peers using internet relay chat (default: 0) + 寻找使用互联网接力聊天的节点 (默认: 1) {0)?} + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + 接受来自外部的连接 (缺省: 如果不带 -proxy or -connect 参数设置为1) + + + + Bind to given address. Use [host]:port notation for IPv6 + 以IPv6 [host]:端口绑定给定地址 + + + + Find peers using DNS lookup (default: 1) + 以DNS查找方式寻找节点 (默认:1) + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + 自动和其它节点同步时间。如果本地计算机世界是准确的,建议关闭。(默认: 1) + + + + Sync checkpoints policy (default: strict) + 同步检测点政策 (默认:严格) + + + + 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) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + 使用UPnp映射监听端口(缺省: 监听状态设为1) + + + + Use UPnP to map the listening port (default: 0) + 使用UPnP映射监听端口 (缺省: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + 离线保存区块和地址数据库. 增加关机时间。 (默认: 0) + + + + Fee per KB to add to transactions you send + 每kB交易所支付的手续费 + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + 创建交易时自动忽略该值以下的数额 (默认:0.01) + + + + Accept command line and JSON-RPC commands + 接受命令行和 JSON-RPC 命令 + + + + + Run in the background as a daemon and accept commands + 在后台运行并接受命令 + + + + + + Use the test network + 使用测试网络 + + + + + Output extra debugging information. Implies all other -debug* options + 输出额外的调试信息。相当于开启了其它所有-debug选项 + + + + Output extra network debugging information + 输出额外的网络调试信息 + + + + Prepend debug output with timestamp + 将时间信息加入调试输出中 + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + 客户端启动时压缩debug.log文件(缺省:no-debug模式时为1) + + + + Send trace/debug info to console instead of debug.log file + 跟踪/调试信息输出到控制台,不输出到 debug.log 文件 + + + + Send trace/debug info to debugger + 发送跟踪/调试信息给调试者 + + + + Username for JSON-RPC connections + JSON-RPC 连接用户名 + + + + Password for JSON-RPC connections + JSON-RPC 连接密码 + + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + 监听 <port> 端口的JSON-RPC连接 (默认: 15715 测试网: 25715) + + + + 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 会被替换成数据块哈希值) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + 当最佳区块变化时执行命令 (命令行中的 %s 会被替换成区块哈希值) + + + + Require a confirmations for change (default: 0) + 要求对零钱进行确认 (默认:0) + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + 强制要求交易脚本使用标准PUSH算子 (默认:1) + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + 收到相关提示时执行命令 (命令中的%s将被信息替换) + + + + Upgrade wallet to latest format + 将钱包升级到最新的格式 + + + + Set key pool size to <n> (default: 100) + 设置密钥池大小为 <n> (缺省: 100) + + + + + Rescan the block chain for missing wallet transactions + 重新扫描区块链以查找遗漏的钱包交易 + + + + Attempt to recover private keys from a corrupt wallet.dat + 尝试从损坏的钱包文件wallet.dat中恢复私钥 + + + + How many blocks to check at startup (default: 2500, 0 = all) + 启动时检测的区块数量 (默认: 2500, 0表示检测全部) + + + + How thorough the block verification is (0-6, default: 1) + 区块确认的彻底程度 (0-6, 默认: 1) + + + + Imports blocks from external blk000?.dat file + 从外部 blk000?.dat 文件导入区块 + + + + Block creation options: + 数据块创建选项: + + + + Set minimum block size in bytes (default: 0) + 设置最小数据块大小(缺省:0) + + + + Set maximum block size in bytes (default: 250000) + 设置最大区块大小 (默认:250000) + + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + 设置高优先度/低手续费交易的最大字节数 (默认: 27000) + + + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + + + + + 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) + + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + 可用加密算法 (默认: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + + Invalid amount for -paytxfee=<amount>: '%s' + 非法金额 -paytxfee=<amount>: '%s' + + + + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + 警告:-paytxfee 交易费设置得太高了!每笔交易都将支付交易费。 + + + + Invalid amount for -mininput=<amount>: '%s' + 无效的数量。 -mininput=<amount>: '%s' + + + + Wallet %s resides outside data directory %s. + 钱包 %s 位于数据目录 %s 之外. + + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + 无法从数据目录 %s 获得锁定. 黑币客户端可能已在运行中. + + + + Verifying database integrity... + 正在检查数据库完整性... + + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + 数据库环境 %s 初始化错误。要修复,备份该目录并将其下除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 。如果您的账户余额或者交易记录不正确,请使用您的钱包备份文件恢复。 + + + + wallet.dat corrupt, salvage failed + 钱包文件wallet.dat损坏,抢救备份失败 + + + + Unknown -socks proxy version requested: %i + 被指定的是未知socks代理版本: %i + + + + Unknown network specified in -onlynet: '%s' + -onlynet 指定的是未知网络:%s + + + + Invalid -proxy address: '%s' + 无效的代理地址:%s + + + + Invalid -tor address: '%s' + 无效的 -tor 地址: '%s' + + + + Cannot resolve -bind address: '%s' + 无法解析 -bind 端口地址: '%s' + + + + Failed to listen on any port. Use -listen=0 if you want this. + 监听端口失败。请使用 -listen=0 参数。 + + + + Cannot resolve -externalip address: '%s' + 无法解析 -externalip 地址: '%s' + + + + Invalid amount for -reservebalance=<amount> + -reservebalance=<amount> 金额无效 + + + + Unable to sign checkpoint, wrong checkpointkey? + + 无法为记录点签名,错误的记录点密钥。 + + + + Loading block index... + 正在加载数据块索引... + + + + Error loading blkindex.dat + blkindex.dat 文件加载出错 + + + + Loading wallet... + 正在加载钱包... + + + + Error loading wallet.dat: Wallet corrupted + wallet.dat 钱包文件加载出错:钱包损坏 + + + + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + 警告:钱包文件wallet.dat读取失败!最重要的公钥、私钥数据都没有问题,但是交易记录或地址簿数据不正确,或者存在数据丢失。 + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + wallet.dat 钱包文件加载出错:需要新版本的客户端 + + + + Wallet needed to be rewritten: restart BitBean to complete + 需要重写钱包,重启客户端以完成该操作。 + + + + Error loading wallet.dat + wallet.dat 钱包文件加载出错 + + + + Cannot downgrade wallet + 无法降级钱包 + + + + Cannot initialize keypool + 无法初始化密钥池。 + + + + Cannot write default address + 无法写入默认地址 + + + + Rescanning... + 正在重新扫描... + + + + Importing blockchain data file. + 正在导入区块链数据文件 + + + + Importing bootstrap blockchain data file. + 正在导入高速区块链数据文件 + + + + Loading addresses... + 正在加载地址簿... + + + + Error: could not start node + 错误:无法启动节点 + + + + Done loading + 加载完成 + + + + Unable to bind to %s on this computer. BitBean is probably already running. + 无法绑定到该计算机上的 %s. 黑币客户端可能已在运行中。 + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + 无法绑定本机端口 %s (返回错误消息 %d, %s) + + + + Error: Wallet locked, unable to create transaction + 错误:钱包已锁定,无法创建交易。 + + + + Error: Wallet unlocked for staking only, unable to create transaction. + 错误:无法创建交易,已解锁的钱包仅用于权益累积。 + + + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + 错误:该笔交易需至少支付 %s 的手续费。 + + + + Error: Transaction creation failed + 错误:交易创建失败。 + + + + Sending... + 正在发送 + + + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + + + + + Invalid amount + 无效金额 + + + + Insufficient funds + 金额不足 + + + + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + 警告:请确认您计算机的本地时间。如果时钟错误,黑币客户端将不能正常工作。 + + + + Warning: This version is obsolete, upgrade required! + 警告:该软件版本已过时,请升级! + + + + WARNING: syncronized checkpoint violation detected, but skipped! + 警告:检测到同步记录点错误,已跳过。 + + + + Warning: Disk space is low! + 警告:磁盘空间低。 + + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + 警告:发现无效的记录点。所显示的交易信息未必正确!请升级客户端或联系开发者。 + + + + bitcoin-core + + BitBean version + 黑币客户端 版本 + + + Usage: + 使用: + + + Send command to -server or BitBeand + 向-server服务器或BitBeand发送命令 + + + List commands + 列出命令 + + + + Get help for a command + 获得某条命令的帮助 + + + + Options: + 选项: + + + + Specify configuration file (default: BitBean.conf) + 指定配置文件(默认: BitBean.conf) + + + Specify pid file (default: BitBeand.pid) + 指定pid文件(默认: BitBeand.pid) + + + Specify wallet file (within data directory) + 指定钱包文件(数据目录内) + + + Specify data directory + 指定数据目录 + + + + Set database cache size in megabytes (default: 25) + 设置数据库缓冲区大小 (缺省: 25MB) + + + Set database disk log size in megabytes (default: 100) + 设置数据库日志文件大小(单位MB,默认值100) + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + 监听<port>端口的连接 (默认: 15714 测试网: 25714) + + + 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 + 指定您的公共地址 + + + Bind to given address. Use [host]:port notation for IPv6 + 以IPv6 [host]:端口绑定给定地址 + + + Stake your coins to support network and gain reward (default: 1) + 进行权益累积以支持黑币网络并获得报酬(默认: 1) + + + 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) + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + 设置RPC监听端口%u时发生错误, IPv4:%s + + + Detach block and address databases. Increases shutdown time (default: 0) + 离线保存区块和地址数据库. 增加关机时间。 (默认: 0) + + + 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 的手续费。 + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + 监听 <port> 端口的JSON-RPC连接 (默认: 15715 测试网: 25715) + + + Accept command line and JSON-RPC commands + 接受命令行和 JSON-RPC 命令 + + + + Error: Transaction creation failed + 错误:交易创建失败。 + + + Error: Wallet locked, unable to create transaction + 错误:钱包已锁定,无法创建交易。 + + + Importing blockchain data file. + 正在导入区块链数据文件 + + + Importing bootstrap blockchain data file. + 正在导入高速区块链数据文件 + + + 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) + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + 在IPv6模式下设置RPC监听端口 %u 失败,返回到IPv4模式: %s + + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + 数据库环境 %s 初始化错误。要修复,备份该目录并将其下除wallet.dat以外的文件全部删除。 + + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + 设置高优先度/低手续费交易的最大字节数 (默认: 27000) + + + 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 BitBean will not work properly. + 警告:请确认您计算机的本地时间。如果时钟错误,黑币客户端将不能正常工作。 + + + 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 。如果您的账户余额或者交易记录不正确,请使用您的钱包备份文件恢复。 + + + Attempt to recover private keys from a corrupt wallet.dat + 尝试从损坏的钱包文件wallet.dat中恢复私钥 + + + Block creation options: + 数据块创建选项: + + + Connect only to the specified node(s) + 仅连接到指定节点 + + + Discover own IP address (default: 1 when listening and no -externalip) + 发现自己的IP地址(缺省:不带 -externalip 参数监听时设置为1) + + + Failed to listen on any port. Use -listen=0 if you want this. + 监听端口失败。请使用 -listen=0 参数。 + + + Find peers using DNS lookup (default: 1) + 以DNS查找方式寻找节点 (默认:1) + + + Sync checkpoints policy (default: strict) + 同步检测点政策 (默认:严格) + + + Invalid -tor address: '%s' + 无效的 -tor 地址: '%s' + + + Invalid amount for -reservebalance=<amount> + -reservebalance=<amount> 金额无效 + + + 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) + 仅连接至指定网络的节点<net>(IPv4, IPv6 或者 Tor) + + + Output extra debugging information. Implies all other -debug* options + 输出额外的调试信息。相当于开启了其它所有-debug选项 + + + Output extra network debugging information + 输出额外的网络调试信息 + + + Prepend debug output with timestamp + 将时间信息加入调试输出中 + + + SSL options: (see the Bitcoin Wiki for SSL setup instructions) + SSL选项:(参见Bitcoin Wiki关于SSL设置栏目) + + + Select the version of socks proxy to use (4-5, default: 5) + 选择要使用的SOCKS代理版本 (4-5, 默认 5) + + + Send trace/debug info to console instead of debug.log file + 跟踪/调试信息输出到控制台,不输出到 debug.log 文件 + + + Send trace/debug info to debugger + 发送跟踪/调试信息给调试者 + + + Set maximum block size in bytes (default: 250000) + 设置最大区块大小 (默认:250000) + + + Set minimum block size in bytes (default: 0) + 设置最小数据块大小(缺省:0) + + + Shrink debug.log file on client startup (default: 1 when no -debug) + 客户端启动时压缩debug.log文件(缺省:no-debug模式时为1) + + + Specify connection timeout in milliseconds (default: 5000) + 设置连接超时时间(缺省:5000毫秒) + + + Unable to sign checkpoint, wrong checkpointkey? + + 无法为记录点签名,错误的记录点密钥。 + + + Use UPnP to map the listening port (default: 0) + 使用UPnP映射监听端口 (缺省: 0) + + + Use UPnP to map the listening port (default: 1 when listening) + 使用UPnp映射监听端口(缺省: 监听状态设为1) + + + Use proxy to reach tor hidden services (default: same as -proxy) + 开启代理以使用隐藏服务 (默认: 和-proxy设置相同) + + + Username for JSON-RPC connections + JSON-RPC 连接用户名 + + + Verifying database integrity... + 正在检查数据库完整性... + + + WARNING: syncronized checkpoint violation detected, but skipped! + 警告:检测到同步记录点错误,已跳过。 + + + Warning: Disk space is low! + 警告:磁盘空间低。 + + + Warning: This version is obsolete, upgrade required! + 警告:该软件版本已过时,请升级! + + + wallet.dat corrupt, salvage failed + 钱包文件wallet.dat损坏,抢救备份失败 + + + Password for JSON-RPC connections + JSON-RPC 连接密码 + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + %s, 必须在配置文件里设置rpc密码: + %s +建议使用如下的随机密码: +rpcuser=BitBeanrpc +rpcpassword=%s +(不需要记住该密码) +用户名和密码不能重复。 +如果该文件不存在,请自行创建并设为用户本身只读权限。 +建议创建提示以监测可能的问题,如: +alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + Find peers using internet relay chat (default: 0) + 寻找使用互联网接力聊天的节点 (默认: 1) {0)?} + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + 自动和其它节点同步时间。如果本地计算机世界是准确的,建议关闭。(默认: 1) + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + 创建交易时自动忽略该值以下的数额 (默认:0.01) + + + 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 会被替换成数据块哈希值) + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + 当最佳区块变化时执行命令 (命令行中的 %s 会被替换成区块哈希值) + + + Require a confirmations for change (default: 0) + 要求对零钱进行确认 (默认:0) + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + 强制要求交易脚本使用标准PUSH算子 (默认:1) + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + 收到相关提示时执行命令 (命令中的%s将被信息替换) + + + Upgrade wallet to latest format + 将钱包升级到最新的格式 + + + Set key pool size to <n> (default: 100) + 设置密钥池大小为 <n> (缺省: 100) + + + + Rescan the block chain for missing wallet transactions + 重新扫描区块链以查找遗漏的钱包交易 + + + How many blocks to check at startup (default: 2500, 0 = all) + 启动时检测的区块数量 (默认: 2500, 0表示检测全部) + + + How thorough the block verification is (0-6, default: 1) + 区块确认的彻底程度 (0-6, 默认: 1) + + + Imports blocks from external blk000?.dat file + 从外部 blk000?.dat 文件导入区块 + + + 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) + + + + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + 可用加密算法 (默认: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + + + Error: Wallet unlocked for staking only, unable to create transaction. + 错误:无法创建交易,已解锁的钱包仅用于权益累积。 + + + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + 警告:发现无效的记录点。所显示的交易信息未必正确!请升级客户端或联系开发者。 + + + This help message + 本帮助信息 + + + + Wallet %s resides outside data directory %s. + 钱包 %s 位于数据目录 %s 之外. + + + Cannot obtain a lock on data directory %s. BitBean is probably already running. + 无法从数据目录 %s 获得锁定. 黑币客户端可能已在运行中. + + + BitBean + 黑币 + + + Unable to bind to %s on this computer (bind returned error %d, %s) + 无法绑定本机端口 %s (返回错误消息 %d, %s) + + + Connect through socks proxy + 通过socks代理连接 + + + Allow DNS lookups for -addnode, -seednode and -connect + 使用 -addnode, -seednode 和 -connect 选项时允许查询DNS + + + Loading addresses... + 正在加载地址簿... + + + Error loading blkindex.dat + blkindex.dat 文件加载出错 + + + Error loading wallet.dat: Wallet corrupted + wallet.dat 钱包文件加载出错:钱包损坏 + + + Error loading wallet.dat: Wallet requires newer version of BitBean + wallet.dat 钱包文件加载出错:需要新版本的客户端 + + + Wallet needed to be rewritten: restart BitBean 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' + 无法解析 -bind 端口地址: '%s' + + + Cannot resolve -externalip address: '%s' + 无法解析 -externalip 地址: '%s' + + + Invalid amount for -paytxfee=<amount>: '%s' + 非法金额 -paytxfee=<amount>: '%s' + + + Error: could not start node + 错误:无法启动节点 + + + Sending... + 正在发送 + + + 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. BitBean is probably already running. + 无法绑定到该计算机上的 %s. 黑币客户端可能已在运行中。 + + + Fee per KB to add to transactions you send + 每kB交易所支付的手续费 + + + Invalid amount for -mininput=<amount>: '%s' + 无效的数量。 -mininput=<amount>: '%s' + + + Loading wallet... + 正在加载钱包... + + + Cannot downgrade wallet + 无法降级钱包 + + + Cannot initialize keypool + 无法初始化密钥池。 + + + 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. + 您必须在配置文件中加入选项 rpcpassword : + %s +如果配置文件不存在,请新建,并将文件权限设置为仅允许文件所有者读取. + + + diff --git a/src/qt/locale/bitbean_zh_TW.qm b/src/qt/locale/bitbean_zh_TW.qm new file mode 100644 index 0000000..201930e Binary files /dev/null and b/src/qt/locale/bitbean_zh_TW.qm differ diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitbean_zh_TW.ts similarity index 53% rename from src/qt/locale/bitcoin_zh_TW.ts rename to src/qt/locale/bitbean_zh_TW.ts index 809a886..1a93475 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitbean_zh_TW.ts @@ -1,32 +1,44 @@ - + + + +UTF-8 AboutDialog - + About BitBean 關于黑幣 - + <b>BitBean</b> version <b>黑幣客戶端</b> 版本 - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Liberation Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2009-2014 The Bitcoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2012-2014 The Novacoin developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2014 The BitBean developers</span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-style:italic;">Copyright © 2015 Bean Core www.bitbean.org</span></p></body></html> + + + + + <html><head/><body><p><span style=" font-weight:600;">Chief Scientist &amp; Lead Developer: </span>Shawn Kent</p><p><span style=" font-weight:600;">Designer: </span>BrunoPro7</p><p><span style=" font-size:8pt;">This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or </span><a href="http://www.opensource.org/licenses/mit-license.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://www.opensource.org/licenses/mit-license.php</span></a><span style=" font-size:8pt;">. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (</span><a href="https://www.openssl.org/"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://www.openssl.org/</span></a><span style=" font-size:8pt;">) and cryptographic software written by Eric Young (</span><a href="mailto:eay@cryptsoft.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">eay@cryptsoft.com</span></a><span style=" font-size:8pt;">) and UPnP software written by Thomas Bernard.</span></p></body></html> + - This is experimental software. Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - + 位元幣,原名是 Bitcoin, 又叫做比特幣。 這是一套實驗性的軟體。 @@ -39,47 +51,47 @@ This product includes software developed by the OpenSSL Project for use in the O AddressBookPage - + Address Book 地址簿 - + Double-click to edit address or label 按兩下來編輯位址或標記 - + Create a new address 製造新的位址 - + Copy the currently selected address to the system clipboard 複製目前選擇的位址到系統剪貼簿 - + &New Address 新建地址(&N) - + These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. 這是您用來接收支付的黑幣地址列表。爲不同的支付方建立不同的地址以便于了解支付來源。 - + &Copy Address 複製地址(&C) - + Show &QR Code 顯示二維碼(&Q) - + Sign a message to prove you own a BitBean address 對信息進行簽名以證明您對該黑幣地址的所有權 @@ -89,12 +101,12 @@ This product includes software developed by the OpenSSL Project for use in the O 簽署訊息(&M) - + Delete the currently selected address from the list 把目前選擇的位址從列表中刪掉 - + Verify a message to ensure it was signed with a specified BitBean address 驗證信息以保證其經過指定黑幣地址的簽名 @@ -104,7 +116,7 @@ This product includes software developed by the OpenSSL Project for use in the O 驗證訊息(&V) - + &Delete 刪掉(&D) @@ -160,27 +172,27 @@ This product includes software developed by the OpenSSL Project for use in the O AskPassphraseDialog - + Passphrase Dialog 密碼對話視窗 - + Enter passphrase 請輸入密碼 - + New passphrase 新密碼 - + Repeat new passphrase 重複新密碼 - + Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. 在系統允許的情況下用于防止sendmoney欺詐,並未提供真正的安全防護措施。 @@ -235,17 +247,26 @@ This product includes software developed by the OpenSSL Project for use in the O 確認錢包加密 - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - 警告:如果您丟失了加密該錢包的密碼,其中所有的黑幣將會丟失! + 警告:如果您丟失了加密該錢包的密碼,其中所有的黑幣將會丟失! - + Are you sure you wish to encrypt your wallet? 你確定要把錢包加密嗎? - + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR beanS</b>! + + + + + BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your beans from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 重要: 請改用新產生有加密的錢包檔,來取代舊錢包檔的備份。為了安全性的理由,當你開始使用新的有加密的錢包後,舊錢包檔的備份就不能再使用了。 @@ -262,12 +283,11 @@ This product includes software developed by the OpenSSL Project for use in the O 錢包已加密 - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - 黑幣客戶端即將關閉以完成加密過程。請記住,加密錢包並不能完全防止您的電子貨幣被入侵您計算機的木馬軟件盜竊。 + 黑幣客戶端即將關閉以完成加密過程。請記住,加密錢包並不能完全防止您的電子貨幣被入侵您計算機的木馬軟件盜竊。 - + @@ -309,333 +329,579 @@ This product includes software developed by the OpenSSL Project for use in the O - BitcoinGUI - - - Sign &message... - 簽署訊息... - + BeanControlDialog - - Synchronizing with network... - 正在跟網路進行同步... + + Bean Control + - - &Overview - 總覽 + + Quantity: + 數目: - - Show general overview of wallet - 顯示錢包一般總覽 + + Bytes: + 位元組數: - - &Transactions - 交易 + + Amount: + 金額: - - Browse transaction history - 瀏覽交易紀錄 + + Priority: + 優先度: - - &Address Book - 地址簿(&A) + + Fee: + 手續費: - - Edit the list of stored addresses and labels - 管理已儲存的地址和標簽 + + Low Output: + 低輸出: - - &Receive coins - 接收黑幣(&R) + + After Fee: + 計費後金額: - - Show the list of addresses for receiving payments - 顯示用于接收支付的地址列表 + + Change: + 找零金額: - - &Send coins - 發送黑幣(&S) + + (un)select all + 全選或全不選 - - E&xit - 結束 + + Tree mode + 樹狀模式 - - Quit application - 結束應用程式 + + List mode + 列表模式 - - Show information about BitBean - 關于黑幣 + + Amount + 金額 - - About &Qt - 關於 &Qt + + Label + 標記 - - Show information about Qt - 顯示 Qt 相關資訊 + + Address + 位址 - - &Options... - 選項... + + Date + 日期 - - &Encrypt Wallet... - 加密錢包... + + Confirmations + 確認次數 - &Backup Wallet... - 備份錢包... + Confirmed + 已確定 - - &Change Passphrase... - 改變密碼... - - - - ~%n block(s) remaining - ~%n 個區塊未完成 + + Priority + 優先度 - - Downloaded %1 of %2 blocks of transaction history (%3% done). - 交易記錄已下載%3% (%1 / %2 個區塊) + + Copy address + 複製位址 - - &Export... - 導出(&E) + + Copy label + 複製標記 - - Send coins to a BitBean address - 向指定的地址發送黑幣 + + + Copy amount + 複製金額 - - Modify configuration options for BitBean - + + Copy transaction ID + 複製交易識別碼 - - Export the data in the current tab to a file - + + Copy quantity + 複製數目 - - Encrypt or decrypt wallet - + + Copy fee + 複製手續費 - - Backup wallet to another location - 把錢包備份到其它地方 + + Copy after fee + 複製計費後金額 - - Change the passphrase used for wallet encryption - 改變錢包加密用的密碼 + + Copy bytes + 複製位元組數 - - &Debug window - 除錯視窗 + + Copy priority + 複製優先度 - Open debugging and diagnostic console - 開啓除錯和診斷主控台 + Copy low output + 複製低輸出 - - &Verify message... - 驗證訊息... + + Copy change + 複製找零金額 - - BitBean - + + highest + 最高 - - Wallet - 錢包 + + high + - - &About BitBean - + + medium-high + 中高 - - &Show / Hide - 顯示或隱藏 + + medium + 中等 - - Unlock wallet - + + low-medium + 中低 - &Lock Wallet - + low + - Lock wallet - + lowest + 最低 - - &File - 檔案 + + DUST + - - &Settings - 設定 + + yes + - - &Help - 說明 + + no + - - Tabs toolbar - 分頁工具列 + + This label turns red, if the transaction size is bigger than 10000 bytes. + + This means a fee of at least %1 per kb is required. + + Can vary +/- 1 Byte per input. + - - Actions toolbar - 分頁工具欄 + + Transactions with higher priority get more likely into a block. + +This label turns red, if the priority is smaller than "medium". + + This means a fee of at least %1 per kb is required. + - - - [testnet] - [測試網絡] + + This label turns red, if any recipient receives an amount smaller than %1. + + This means a fee of at least %2 is required. + + Amounts below 0.546 times the minimum relay fee are shown as DUST. + - - - BitBean client - 黑幣客戶端 - - - - %n active connection(s) to BitBean network - 與黑幣網絡建立了 %n 個連接 + + This label turns red, if the change is smaller than %1. + + This means a fee of at least %2 is required. + - - Downloaded %1 blocks of transaction history. - 已下載 %1 個區塊的交易記錄 + + + (no label) + (無標記) - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - 權益增值中 <br>您的權重爲 %1 <br>網絡總權重爲 %2<br>預計將在 %3 之後獲得收益 + + change from %1 (%2) + 找零前是 %1 (%2) - - Not staking because wallet is locked - + + (change) + (找零) + + + BitbeanGUI - - Not staking because wallet is offline - + + A fatal error occurred. BitBean can no longer continue safely and will quit. + - - Not staking because wallet is syncing - + + BitBean + - - Not staking because you don't have mature coins - - - - - %n second(s) ago - + + Vault + - + + &Overview + 總覽 + + + + Show general overview of wallet + 顯示錢包一般總覽 + + + + &Send Beans + + + + + Send Beans to a BitBean address + + + + + &Receive Beans + + + + + Show the list of addresses for receiving payments + 顯示用于接收支付的地址列表 + + + + &Transactions + 交易 + + + + Browse transaction history + 瀏覽交易紀錄 + + + + &Address Book + 地址簿(&A) + + + + Edit the list of stored addresses and labels + 管理已儲存的地址和標簽 + + + + E&xit + 結束 + + + + Quit application + 結束應用程式 + + + + &About BitBean + + + + + Show information about BitBean + 關于黑幣 + + + + About &Qt + 關於 &Qt + + + + Show information about Qt + 顯示 Qt 相關資訊 + + + + &Options... + 選項... + + + + Modify configuration options for BitBean + + + + + &Show / Hide + 顯示或隱藏 + + + + &Encrypt Wallet... + 加密錢包... + + + + Encrypt or decrypt wallet + + + + + &Backup Wallet... + 備份錢包... + + + + Backup wallet to another location + 把錢包備份到其它地方 + + + + &Change Passphrase... + 改變密碼... + + + + Change the passphrase used for wallet encryption + 改變錢包加密用的密碼 + + + &Unlock Wallet... - + + + + + Unlock wallet + 解鎖錢包 + + + + &Lock Wallet + + + + + Lock wallet + + + + + Sign &message... + 簽署訊息... + + + + &Verify message... + 驗證訊息... + + + + &Export... + 導出(&E) + + + + Export the data in the current tab to a file + + + + + &Debug window + 除錯視窗 + + + + Open debugging and diagnostic console + 開啓除錯和診斷主控台 + + + + &File + 檔案 + + + + &Settings + 設定 + + + + &Help + 說明 + + + + Tabs toolbar + 分頁工具列 + + + + Actions toolbar + 分頁工具欄 + + + + + [testnet] + [測試網絡] + + + + + BitBean client + 黑幣客戶端 + + + + %n active connection(s) to BitBean network + + 與黑幣網絡建立了 %n 個連接 + + + + + Synchronizing with network... + 正在跟網路進行同步... + + + + ~%n block(s) remaining + + ~%n 個區塊未完成 + + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + 交易記錄已下載%3% (%1 / %2 個區塊) + + + + Downloaded %1 blocks of transaction history. + 已下載 %1 個區塊的交易記錄 + + + + %n second(s) ago + + + - + %n minute(s) ago - + + + %n hour(s) ago - + + + %n day(s) ago - + + + Up to date - 最新狀態 + 最新狀態 Catching up... - 正在趕進度... + 正在趕進度... Last received block was generated %1. - + This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - + Confirm transaction fee - + Sent transaction - 付款交易 + 付款交易 Incoming transaction - 收款交易 + 收款交易 @@ -644,7 +910,7 @@ Amount: %2 Type: %3 Address: %4 - 日期: %1 + 日期: %1 金額: %2 種類: %3 位址: %4 @@ -654,341 +920,497 @@ Address: %4 URI handling - + URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - + Wallet is <b>encrypted</b> and currently <b>unlocked</b> - 錢包<b>已加密</b>並且<b>解鎖中</b> + 錢包<b>已加密</b>並且<b>解鎖中</b> Wallet is <b>encrypted</b> and currently <b>locked</b> - 錢包<b>已加密</b>並且<b>上鎖中</b> + 錢包<b>已加密</b>並且<b>上鎖中</b> Backup Wallet - + Wallet Data (*.dat) - + Backup Failed - + There was an error trying to save the wallet data to the new location. - + - + %n second(s) - + + + %n minute(s) - + + + %n hour(s) - %n 個小時 + + %n 個小時 + %n day(s) - %n 天 + + %n 天 + - - Not staking - + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + 權益增值中 <br>您的權重爲 %1 <br>網絡總權重爲 %2<br>預計將在 %3 之後獲得收益 - - A fatal error occurred. BitBean can no longer continue safely and will quit. - + + Not staking because wallet is locked + - - - ClientModel - - Network Alert - 網路警報 + + Not staking because wallet is offline + - - - CoinControlDialog - - Coin Control - + + Not staking because wallet is syncing + - - Quantity: - 數目: + + Not staking because you don't have mature beans + - - Bytes: - 位元組數: + + Not staking + + + + BitcoinGUI - - Amount: - 金額: + Sign &message... + 簽署訊息... - - Priority: - 優先度: + Synchronizing with network... + 正在跟網路進行同步... - - Fee: - 手續費: + &Overview + 總覽 - - Low Output: - 低輸出: + Show general overview of wallet + 顯示錢包一般總覽 - - no - + &Transactions + 交易 - - After Fee: - 計費後金額: + Browse transaction history + 瀏覽交易紀錄 - - Change: - 找零金額: + &Address Book + 地址簿(&A) - - (un)select all - 全選或全不選 + Edit the list of stored addresses and labels + 管理已儲存的地址和標簽 - - Tree mode - 樹狀模式 + &Receive coins + 接收黑幣(&R) - - List mode - 列表模式 + Show the list of addresses for receiving payments + 顯示用于接收支付的地址列表 - - Amount - 金額 + &Send coins + 發送黑幣(&S) - - Label - + E&xit + 結束 + + + Quit application + 結束應用程式 + + + Show information about BitBean + 關于黑幣 + + + About &Qt + 關於 &Qt + + + Show information about Qt + 顯示 Qt 相關資訊 + + + &Options... + 選項... + + + &Encrypt Wallet... + 加密錢包... + + + &Backup Wallet... + 備份錢包... + + + &Change Passphrase... + 改變密碼... + + + ~%n block(s) remaining + + ~%n 個區塊未完成 + + + + Downloaded %1 of %2 blocks of transaction history (%3% done). + 交易記錄已下載%3% (%1 / %2 個區塊) + + + &Export... + 導出(&E) + + + Send coins to a BitBean address + 向指定的地址發送黑幣 + + + Backup wallet to another location + 把錢包備份到其它地方 + + + Change the passphrase used for wallet encryption + 改變錢包加密用的密碼 + + + &Debug window + 除錯視窗 + + + Open debugging and diagnostic console + 開啓除錯和診斷主控台 + + + &Verify message... + 驗證訊息... + + + Wallet + 錢包 + + + &Show / Hide + 顯示或隱藏 + + + &File + 檔案 + + + &Settings + 設定 + + + &Help + 說明 + + + Tabs toolbar + 分頁工具列 + + + Actions toolbar + 分頁工具欄 + + + [testnet] + [測試網絡] + + + BitBean client + 黑幣客戶端 + + + %n active connection(s) to BitBean network + + 與黑幣網絡建立了 %n 個連接 + + + + Downloaded %1 blocks of transaction history. + 已下載 %1 個區塊的交易記錄 + + + Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 + 權益增值中 <br>您的權重爲 %1 <br>網絡總權重爲 %2<br>預計將在 %3 之後獲得收益 + + + Up to date + 最新狀態 + + + Catching up... + 正在趕進度... + + + Sent transaction + 付款交易 + + + Incoming transaction + 收款交易 + + + Date: %1 +Amount: %2 +Type: %3 +Address: %4 + + 日期: %1 +金額: %2 +種類: %3 +位址: %4 + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + 錢包<b>已加密</b>並且<b>解鎖中</b> + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + 錢包<b>已加密</b>並且<b>上鎖中</b> + + + %n hour(s) + + %n 個小時 + + + + %n day(s) + + %n 天 + + + + + ClientModel + + + Network Alert + 網路警報 + + + + CoinControlDialog + + Quantity: + 數目: + + + Bytes: + 位元組數: + + + Amount: + 金額: + + + Priority: + 優先度: + + + Fee: + 手續費: + + + Low Output: + 低輸出: + + + no + + + + 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 - 複製交易識別碼 + 複製交易識別碼 - Copy quantity - 複製數目 + 複製數目 - Copy fee - 複製手續費 + 複製手續費 - Copy after fee - 複製計費後金額 + 複製計費後金額 - Copy bytes - 複製位元組數 + 複製位元組數 - Copy priority - 複製優先度 + 複製優先度 - Copy low output - 複製低輸出 + 複製低輸出 - Copy change - 複製找零金額 + 複製找零金額 - highest - 最高 + 最高 - high - + - medium-high - 中高 + 中高 - medium - 中等 + 中等 - low-medium - 中低 + 中低 - low - + - lowest - 最低 - - - - DUST - + 最低 - yes - - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - + - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 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. - - This means a fee of at least %2 is required. - - - - - (no label) - (無標記) + (無標記) - change from %1 (%2) - 找零前是 %1 (%2) + 找零前是 %1 (%2) - (change) - (找零) + (找零) EditAddressDialog - + Edit Address 編輯位址 @@ -1000,7 +1422,7 @@ This label turns red, if the priority is smaller than "medium". The label associated with this address book entry - + @@ -1010,7 +1432,7 @@ This label turns red, if the priority is smaller than "medium". The address associated with this address book entry. This can only be modified for sending addresses. - + @@ -1040,7 +1462,7 @@ This label turns red, if the priority is smaller than "medium". The entered address "%1" is not a valid BitBean address. - + @@ -1056,98 +1478,98 @@ This label turns red, if the priority is smaller than "medium". GUIUtil::HelpMessageBox - + BitBean-Qt - + version - + Usage: - + 用法: command-line options - + UI options - + Set language, for example "de_DE" (default: system locale) - + Start minimized - + Show splash screen on startup (default: 1) - + OptionsDialog - + Options 選項 - + &Main 主要 - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - + Pay transaction &fee 付交易手續費 - - Reserved amount does not participate in staking and is therefore spendable at any time. - + + Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5 recommended. Fees help support the BitBean network. + + + + + Reserved amount does not participate in sprouting and is therefore spendable at any time. + Reserve - + Automatically start BitBean after logging in to the system. - + &Start BitBean on system login - + Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - + &Detach databases at shutdown - + @@ -1157,7 +1579,7 @@ This label turns red, if the priority is smaller than "medium". Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - + @@ -1167,12 +1589,12 @@ This label turns red, if the priority is smaller than "medium". Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - + &Connect through SOCKS proxy: - + @@ -1182,7 +1604,7 @@ This label turns red, if the priority is smaller than "medium". IP address of the proxy (e.g. 127.0.0.1) - + @@ -1242,7 +1664,7 @@ This label turns red, if the priority is smaller than "medium". The user interface language can be set here. This setting will take effect after restarting BitBean. - + @@ -1251,13 +1673,27 @@ This label turns red, if the priority is smaller than "medium". - Choose the default subdivision unit to show in the interface and when sending coins. - 選擇操作界面和付款時,預設顯示金額的細分單位。 + Choose the default subdivision unit to show in the interface and when sending beans. + - + + Whether to show bean control features or not. + + + + + Display bean &control features (experts only!) + + + + Choose the default subdivision unit to show in the interface and when sending coins. + 選擇操作界面和付款時,預設顯示金額的細分單位。 + + + Whether to show BitBean addresses in the transaction list or not. - + @@ -1265,17 +1701,11 @@ This label turns red, if the priority is smaller than "medium". 在交易列表顯示位址 - Whether to show coin control features or not. - 是否要顯示錢幣控制功能。 + 是否要顯示錢幣控制功能。 - - Display coin &control features (experts only!) - - - - + &OK @@ -1287,7 +1717,7 @@ This label turns red, if the priority is smaller than "medium". &Apply - + @@ -1298,13 +1728,13 @@ This label turns red, if the priority is smaller than "medium". Warning - + This setting will take effect after restarting BitBean. - + @@ -1315,78 +1745,158 @@ This label turns red, if the priority is smaller than "medium". OverviewPage - + Form 表單 - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - + + Bean Vault + - - Stake: - + + + The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. + - + Unconfirmed: 未確定金額: - Wallet - 錢包 + 錢包 - + Spendable: - + - + Your current spendable balance 目前可用餘額 - + + Sprouting: + + + + + <html><head/><body><p>Sprouting beans that do not yet count toward the current total balance.</p></body></html> + + + + + <html><head/><body><p>Beans that have yet to be confirmed, and not currently counted towards the total balance.</p></body></html> + + + + Immature: 未成熟金額: + + + <html><head/><body><p>Newly sprouted beans that have not matured yet.</p></body></html> + + + + + <html><head/><body><p>The current total number of beans in your Bean Vault.</p></body></html> + + + + + BitBean Network + + + Bean Stalk Height: + + + + + Sprouting Difficulty: + + + + + Bean Weight: + + + + + Connections: + + + + + Total Beans: + + + + + <html><head/><body><p>Block height of BitBean Network.</p></body></html> + + + + + + + + + 0 + + + + + <html><head/><body><p>Difficulty of sprouting new beans.</p></body></html> + + + + + <html><head/><body><p>Cummaltive weight of BitBeans that are competing to sprout on the Network.</p></body></html> + + + + + <html><head/><body><p>Total direct connections with other stalks on the network.</p></body></html> + + + + + <html><head/><body><p>Total Bean Monetary supply.</p></body></html> + + + + + <html><head/><body><p>New Transactions</p></body></html> + + + Mined balance that has not yet matured - 還沒成熟的開採金額 + 還沒成熟的開採金額 - + Total: 總金額: - Your current total balance - 目前全部餘額 + 目前全部餘額 - <b>Recent transactions</b> - <b>最近交易</b> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - - - - - Total of coins that was staked, and do not yet count toward the current balance - + <b>最近交易</b> - + out of sync 還沒同步 @@ -1395,65 +1905,65 @@ This label turns red, if the priority is smaller than "medium". QRCodeDialog - + QR Code Dialog - + Request Payment - + Amount: - + 金額: Label: - + Message: - + &Save As... - + Error encoding URI into QR Code. - + The entered amount is invalid, please check. - + Resulting URI too long, try to reduce the text for label / message. - + Save QR Code - + PNG Images (*.png) - + RPCConsole - + Client name 客戶端軟體名稱 @@ -1504,7 +2014,7 @@ This label turns red, if the priority is smaller than "medium". On testnet - + @@ -1534,17 +2044,17 @@ This label turns red, if the priority is smaller than "medium". Command-line options - + Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - + &Show - + @@ -1559,12 +2069,12 @@ This label turns red, if the priority is smaller than "medium". BitBean - Debug window - + BitBean Core - + @@ -1574,7 +2084,7 @@ This label turns red, if the priority is smaller than "medium". Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - + @@ -1584,7 +2094,7 @@ This label turns red, if the priority is smaller than "medium". Welcome to the BitBean RPC console. - + @@ -1598,59 +2108,59 @@ This label turns red, if the priority is smaller than "medium". - SendCoinsDialog + SendBeansDialog - - + + - Send Coins - 付款 + Send Beans + - Coin Control Features - 錢幣控制功能 + Bean Control Features + Inputs... - 輸入... + 輸入... automatically selected - 自動選擇 + 自動選擇 Insufficient funds! - 累計金額不足! + 累計金額不足! Quantity: - 數目: + 數目: 0 - + Bytes: - 位元組數: + 位元組數: Amount: - 金額: + 金額: @@ -1658,272 +2168,438 @@ This label turns red, if the priority is smaller than "medium". 0.00 BC - + Priority: - 優先度: + 優先度: medium - + 中等 Fee: - 手續費: + 手續費: Low Output: - 低輸出: + 低輸出: no - + After Fee: - 計費後金額: + 計費後金額: Change - + custom change address - + Send to multiple recipients at once - 一次付給多個收款人 + 一次付給多個收款人 Add &Recipient - 增加收款人 + 增加收款人 Remove all transaction fields - + Clear &All - 全部清掉 + 全部清掉 Balance: - 餘額: + 餘額: 123.456 BC - + Confirm the send action - 確認付款動作 + 確認付款動作 S&end - 付款 + 付款 - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Copy quantity - 複製數目 + 複製數目 Copy amount - 複製金額 + 複製金額 Copy fee - 複製手續費 + 複製手續費 Copy after fee - 複製計費後金額 + 複製計費後金額 Copy bytes - 複製位元組數 + 複製位元組數 Copy priority - 複製優先度 + 複製優先度 Copy low output - 複製低輸出 + 複製低輸出 Copy change - 複製找零金額 + 複製找零金額 <b>%1</b> to %2 (%3) - + - Confirm send coins - 確認付款金額 + Confirm send beans + Are you sure you want to send %1? - + and - + 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 的交易手續費後,總金額超過你的餘額了。 + 包含 %1 的交易手續費後,總金額超過你的餘額了。 Duplicate address found, can only send to each address once per send operation. - 發現有重複的位址。每個付款動作中,只能付給個別的位址一次。 + 發現有重複的位址。每個付款動作中,只能付給個別的位址一次。 Error: Transaction creation failed. - + - 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 beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + WARNING: Invalid BitBean address - + (no label) - (無標記) + (無標記) WARNING: unknown change address - + - SendCoinsEntry + SendBeansEntry - + Form - + 表單 - + A&mount: - 金額: + 金額: Pay &To: - 付給: + 付給: - + Enter a label for this address to add it to your address book - 請輸入這個位址的標記來把它加進位址簿中 + 請輸入這個位址的標記來把它加進位址簿中 &Label: - 標記: + 標記: The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose address from address book - + Alt+A - Alt+A + Alt+A Paste address from clipboard - 貼上剪貼簿裡的位址 + 貼上剪貼簿裡的位址 Alt+P - Alt+P + Alt+P Remove this recipient - + - + Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + + + + + SendCoinsDialog + + Send Coins + 付款 + + + Coin Control Features + 錢幣控制功能 + + + Inputs... + 輸入... + + + automatically selected + 自動選擇 + + + Insufficient funds! + 累計金額不足! + + + Quantity: + 數目: + + + Bytes: + 位元組數: + + + Amount: + 金額: + + + Priority: + 優先度: + + + Fee: + 手續費: + + + Low Output: + 低輸出: + + + After Fee: + 計費後金額: + + + Send to multiple recipients at once + 一次付給多個收款人 + + + Add &Recipient + 增加收款人 + + + Clear &All + 全部清掉 + + + Balance: + 餘額: + + + Confirm the send action + 確認付款動作 + + + S&end + 付款 + + + Copy quantity + 複製數目 + + + Copy amount + 複製金額 + + + Copy fee + 複製手續費 + + + Copy after fee + 複製計費後金額 + + + Copy bytes + 複製位元組數 + + + Copy priority + 複製優先度 + + + Copy low output + 複製低輸出 + + + Copy change + 複製找零金額 + + + Confirm send coins + 確認付款金額 + + + 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. + 發現有重複的位址。每個付款動作中,只能付給個別的位址一次。 + + + (no label) + (無標記) + + + + SendCoinsEntry + + A&mount: + 金額: + + + Pay &To: + 付給: + + + Enter a label for this address to add it to your address book + 請輸入這個位址的標記來把它加進位址簿中 + + + &Label: + 標記: + + + Alt+A + Alt+A + + + Paste address from clipboard + 貼上剪貼簿裡的位址 + + + Alt+P + Alt+P SignVerifyMessageDialog - + Signatures - Sign / Verify a Message 簽章 - 簽署或驗證訊息 @@ -1941,13 +2617,13 @@ This label turns red, if the priority is smaller than "medium". The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Choose an address from the address book - + @@ -1978,7 +2654,7 @@ This label turns red, if the priority is smaller than "medium". Sign the message to prove you own this BitBean address - + @@ -2005,12 +2681,12 @@ This label turns red, if the priority is smaller than "medium". The address the message was signed with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + Verify the message to ensure it was signed with the specified BitBean address - + @@ -2021,7 +2697,7 @@ This label turns red, if the priority is smaller than "medium". Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - + @@ -2031,7 +2707,7 @@ This label turns red, if the priority is smaller than "medium". Enter BitBean signature - + @@ -2110,12 +2786,14 @@ This label turns red, if the priority is smaller than "medium". Open for %n block(s) - + + + conflicted - + @@ -2140,7 +2818,9 @@ This label turns red, if the priority is smaller than "medium". , broadcast through %n node(s) - ,已公告給 %n 個節點 + + ,已公告給 %n 個節點 + @@ -2193,7 +2873,9 @@ This label turns red, if the priority is smaller than "medium". matures in %n more block(s) - 再等 %n 個區塊生出來後成熟 + + 再等 %n 個區塊生出來後成熟 + @@ -2235,8 +2917,8 @@ This label turns red, if the priority is smaller than "medium". - Generated coins must mature 110 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. - + Generated beans must mature 110 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. + @@ -2282,7 +2964,7 @@ This label turns red, if the priority is smaller than "medium". TransactionDescDialog - + Transaction details 交易明細 @@ -2327,27 +3009,29 @@ This label turns red, if the priority is smaller than "medium". Open for %n more block(s) - 再等 %n 個區塊生出來後才確定 + + 再等 %n 個區塊生出來後才確定 + Offline - + Unconfirmed - + Confirming (%1 of %2 recommended confirmations) - + Conflicted - + @@ -2356,934 +3040,1242 @@ This label turns red, if the priority is smaller than "medium". - This block was not received by any other nodes and will probably not be accepted! - 沒有其他節點收到這個區塊,也許它不會被接受! + This block was not received by any other nodes and will probably not be accepted! + 沒有其他節點收到這個區塊,也許它不會被接受! + + + + Generated but not accepted + 生產出來但是不被接受 + + + + Received with + 收款在 + + + + Received from + 收款自 + + + + Sent to + 付款給 + + + + Payment to yourself + 付給自己 + + + + SPROUT + + + + 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. + 要減掉或加進餘額的金額。 + + + + 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 Data + + + + + Comma separated file (*.csv) + 逗點分隔資料檔(*.csv) + + + + Confirmed + 已確定 + + + + Date + 日期 + + + + Type + 種類 + + + + Label + 標記 + + + + Address + 位址 + + + + Amount + 金額 + + + + ID + 識別碼 + + + + Error exporting + 導出時發生錯誤 + + + + Could not write to file %1. + 無法寫入文件 %1 。 + + + + Range: + 範圍: + + + + to + + + + + WalletModel + + + Sending... + + + + + bitbean-core + + + To use the %s option + 為了要使用 %s 選項 + + + + %s, you must set a rpcpassword in the configuration file: + %s +It is recommended you use the following random password: +rpcuser=BitBeanrpc +rpcpassword=%s +(you do not need to remember this password) +The username and password MUST NOT be the same. +If the file does not exist, create it with owner-readable-only file permissions. +It is also recommended to set alertnotify so you are notified of problems; +for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com + + + + + + Error + 錯誤 + + + + An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s + 設定在 IPv6 網路上以通訊埠 %u 聽候 RPC 連線失敗,退而改用 IPv4 網路: %s + + + + An error occurred while setting up the RPC port %u for listening on IPv4: %s + 設定在 IPv4 網路上以通訊埠 %u 聽取 RPC 連線時發生錯誤: %s + + + + You must set rpcpassword=<password> in the configuration file: +%s +If the file does not exist, create it with owner-readable-only file permissions. + 你必須在以下設定檔中設定 RPC 密碼(rpcpassword=<password>): +%s +如果還沒有這個檔案,請在造出來的時候,設定檔案權限成只有主人才能讀取。 + + + + BitBean version + + + + + Usage: + 用法: + + + + Send command to -server or BitBeand + + + + + List commands + 列出指令 + + + + Get help for a command + 取得指令說明 + + + + BitBean + + + + + Options: + 選項: + + + + This help message + 這些說明訊息 + + + + Specify configuration file (default: BitBean.conf) + + + + + Specify pid file (default: BitBeand.pid) + + + + + Specify data directory + 指定資料目錄 + + + + Specify wallet file (within data directory) + 指定錢包檔(會在資料目錄中) + + + + Set database cache size in megabytes (default: 25) + 設定資料庫快取大小成多少百萬位元組(MB;預設值: 25) + + + + Set database disk log size in megabytes (default: 100) + + + + + Specify connection timeout in milliseconds (default: 5000) + 指定連線在幾毫秒後逾時(預設值: 5000) + + + + Connect through socks proxy + + + + + Select the version of socks proxy to use (4-5, default: 5) + + + + + Use proxy to reach tor hidden services (default: same as -proxy) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + 允許對 -addnode, -seednode, -connect 的參數使用域名查詢 + + + + Listen for connections on <port> (default: 15714 or testnet: 25714) + + + + + Maintain at most <n> connections to peers (default: 125) + 維持連線節點數的上限為 <n> 個(預設值: 125) + + + + Add a node to connect to and attempt to keep the connection open + 增加一個要連線的節線,並試著保持對它的連線暢通 + + + + Connect only to the specified node(s) + 只連線到指定節點(可多個) + + + + Connect to a node to retrieve peer addresses, and disconnect + 連線到某個節點來取得其它節點的位址,然後斷線 + + + + Specify your own public address + 指定自己的公開位址 + + + + Only connect to nodes in network <net> (IPv4, IPv6 or Tor) + 只和 <net> 網路上的節點連線(IPv4, IPv6, 或 Tor) + + + + Discover own IP address (default: 1 when listening and no -externalip) + 找出自己的網際網路位址(預設值: 當有聽候連線且沒有 -externalip 時為 1) + + + + Find peers using internet relay chat (default: 0) + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + 是否接受外來連線(預設值: 當沒有 -proxy 或 -connect 時為 1) + + + + Bind to given address. Use [host]:port notation for IPv6 + + + + + Find peers using DNS lookup (default: 1) + + + + + Stake your beans to support network and gain reward (default: 1) + + + + + Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) + + + + + Sync checkpoints policy (default: strict) + + + + + Threshold for disconnecting misbehaving peers (default: 100) + 把異常節點斷線的臨界值(預設值: 100) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + 拒絕跟異常節點連線的秒數(預設值: 86400) + + + + 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) + + + + Use UPnP to map the listening port (default: 1 when listening) + 是否要使用通用即插即用(UPnP)協定,來設定聽候連線的通訊埠的對應(預設值: 當有聽候連線時為 1) + + + + Use UPnP to map the listening port (default: 0) + 是否要使用通用即插即用(UPnP)協定,來設定聽候連線的通訊埠的對應(預設值: 0) + + + + Detach block and address databases. Increases shutdown time (default: 0) + + + + + Fee per KB to add to transactions you send + + + + + When creating transactions, ignore inputs with value less than this (default: 0.01) + + + + + Accept command line and JSON-RPC commands + 接受指令列和 JSON-RPC 指令 + + + + + Run in the background as a daemon and accept commands + 用護靈模式在背後執行並接受指令 + + + + Use the test network + 使用測試網路 + + + + Output extra debugging information. Implies all other -debug* options + + + + + Output extra network debugging information + + + + + Prepend debug output with timestamp + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + 客戶端軟體啓動時把 debug.log 檔縮小(預設值: 當沒有 -debug 時為 1) + + + + Send trace/debug info to console instead of debug.log file + 在終端機顯示追蹤或除錯資訊,而不是寫到檔案 debug.log 中 + + + + Send trace/debug info to debugger + + + + + Username for JSON-RPC connections + JSON-RPC 連線使用者名稱 + + + + Password for JSON-RPC connections + JSON-RPC 連線密碼 + + + + Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) + + + + + 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) + 當最新區塊改變時要執行的指令(指令中的 %s 會被取代成區塊雜湊值) + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + 當錢包有交易改變時要執行的指令(指令中的 %s 會被取代成交易識別碼) + + + + Require a confirmations for change (default: 0) + + + + + Enforce transaction scripts to use canonical PUSH operators (default: 1) + + + + + Execute command when a relevant alert is received (%s in cmd is replaced by message) + + + + + Upgrade wallet to latest format + 把錢包檔案升級成最新的格式 - - Generated but not accepted - 生產出來但是不被接受 + + Set key pool size to <n> (default: 100) + 設定密鑰池大小成 <n> (預設值: 100) - - Received with - 收款在 + + Rescan the block chain for missing wallet transactions + 重新掃描區塊鏈,來尋找錢包可能漏掉的交易。 - - Received from - 收款自 + + Attempt to recover private keys from a corrupt wallet.dat + 嘗試從壞掉的錢包檔 wallet.dat 復原密鑰 - - Sent to - 付款給 + + How many blocks to check at startup (default: 2500, 0 = all) + - - Payment to yourself - 付給自己 + + How thorough the block verification is (0-6, default: 1) + - - Mined - 開採所得 + + Imports blocks from external blk000?.dat file + - - (n/a) - (不適用) + + Block creation options: + 區塊製造選項: - - Transaction status. Hover over this field to show number of confirmations. - 交易狀態。把游標停在欄位上會顯示確認次數。 + + Set minimum block size in bytes (default: 0) + 設定區塊大小下限成多少位元組(預設值: 0) - - Date and time that the transaction was received. - 收到交易的日期和時間。 + + Set maximum block size in bytes (default: 250000) + - - Type of transaction. - 交易的種類。 + + Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) + - - Destination address of transaction. - 交易的目的地位址。 + + SSL options: (see the Bitbean Wiki for SSL setup instructions) + - - Amount removed from or added to balance. - 要減掉或加進餘額的金額。 + + Use OpenSSL (https) for JSON-RPC connections + 在 JSON-RPC 連線使用 OpenSSL (https) - - - TransactionView - - - All - 全部 + + Server certificate file (default: server.cert) + 伺服器憑證檔(預設值: server.cert) - - Today - 今天 + + Server private key (default: server.pem) + 伺服器私鑰檔(預設值: server.pem) - This week - 這星期 + Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) + - - This month - 這個月 + + Invalid amount for -paytxfee=<amount>: '%s' + 設定 -paytxfee=<金額> 的金額無效: '%s' - Last month - 上個月 + Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction. + 警告: -paytxfee 設定了很高的金額!這可是你交易付款所要付的手續費。 + + + + Invalid amount for -mininput=<amount>: '%s' + - This year - 今年 + Wallet %s resides outside data directory %s. + - Range... - 指定範圍... + Cannot obtain a lock on data directory %s. BitBean is probably already running. + - - Received with - 收款 + + Verifying database integrity... + - - Sent to - 付款 + + Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. + - - To yourself - 給自己 + + 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. 如果餘額或交易資料有誤,你應該要用備份資料復原回來。 - - Mined - 開採所得 + + wallet.dat corrupt, salvage failed + 錢包檔 weallet.dat 壞掉了,拯救失敗 - Other - 其它 + Unknown -socks proxy version requested: %i + 在 -socks 指定了不明的代理協定版本: %i - - Enter address or label to search - 請輸入要搜尋的位址或標記 + + Unknown network specified in -onlynet: '%s' + 在 -onlynet 指定了不明的網路別: '%s' - - Min amount - 最小金額 + + Invalid -proxy address: '%s' + 無效的 -proxy 位址: '%s' - - Copy address - 複製位址 + + Invalid -tor address: '%s' + - Copy label - 複製標記 + Cannot resolve -bind address: '%s' + 沒辦法解析 -bind 位址: '%s' - Copy amount - 複製金額 + Failed to listen on any port. Use -listen=0 if you want this. + 在任意的通訊埠聽候失敗。如果你希望這樣的話,可以設定 -listen=0. - Copy transaction ID - 複製交易識別碼 + Cannot resolve -externalip address: '%s' + 沒辦法解析 -externalip 位址: '%s' - Edit label - 編輯標記 + Invalid amount for -reservebalance=<amount> + - Show transaction details - 顯示交易明細 + Unable to sign checkpoint, wrong checkpointkey? + + - - Export Transaction Data - + + Loading block index... + 正在載入區塊索引... - Comma separated file (*.csv) - 逗點分隔資料檔(*.csv) + Error loading blkindex.dat + - - Confirmed - 已確定 + + Loading wallet... + 正在載入錢包資料... - Date - 日期 + Error loading wallet.dat: Wallet corrupted + 載入檔案 wallet.dat 時發生錯誤: 錢包損毀了 - Type - 種類 + Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + 警告: 讀取錢包檔 wallet.dat 時發生錯誤!所有的密鑰都正確讀取了,但是交易資料或位址簿資料可能會缺少或不正確。 + + + + Error loading wallet.dat: Wallet requires newer version of BitBean + - Label - 標記 + Wallet needed to be rewritten: restart BitBean to complete + - Address - 位址 + Error loading wallet.dat + 載入錢包檔 wallet.dat 時發生錯誤 - Amount - 金額 + Cannot downgrade wallet + 沒辦法把錢包格式降級 - ID - 識別碼 + Cannot initialize keypool + - - Error exporting - + + Cannot write default address + 沒辦法把預設位址寫進去 - - Could not write to file %1. - + + Rescanning... + 正在重新掃描... - - Range: - 範圍: + + Importing blockchain data file. + - - to - + + Importing bootstrap blockchain data file. + - - - WalletModel - - Sending... - + + Loading addresses... + 正在載入位址資料... - - - bitcoin-core - - BitBean version - + + Error: could not start node + - Usage: - 用法: + Done loading + 載入完成 - Send command to -server or BitBeand - + Unable to bind to %s on this computer. BitBean is probably already running. + + + + + Unable to bind to %s on this computer (bind returned error %d, %s) + 沒辦法和這台電腦上的 %s 繫結(回傳錯誤 %d, %s) - List commands - 列出指令 + Error: Wallet locked, unable to create transaction + - Get help for a command - 取得指令說明 + Error: Wallet unlocked for staking only, unable to create transaction. + - - Options: - 選項: + + Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds + - - Specify configuration file (default: BitBean.conf) - + + Error: Transaction creation failed + - Specify pid file (default: BitBeand.pid) - + Sending... + - - Specify wallet file (within data directory) - 指定錢包檔(會在資料目錄中) + + Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here. + - - Specify data directory - 指定資料目錄 + + Invalid amount + 無效的金額 - - Set database cache size in megabytes (default: 25) - 設定資料庫快取大小成多少百萬位元組(MB;預設值: 25) + + Insufficient funds + 累積金額不足 - Set database disk log size in megabytes (default: 100) - + Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. + - - Listen for connections on <port> (default: 15714 or testnet: 25714) - + + Warning: This version is obsolete, upgrade required! + 警告: 這個版本已經被淘汰了,必須要升級! - Maintain at most <n> connections to peers (default: 125) - 維持連線節點數的上限為 <n> 個(預設值: 125) + WARNING: syncronized checkpoint violation detected, but skipped! + - - Connect to a node to retrieve peer addresses, and disconnect - 連線到某個節點來取得其它節點的位址,然後斷線 + + Warning: Disk space is low! + - Specify your own public address - 指定自己的公開位址 + WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. + + + + bitcoin-core - - Bind to given address. Use [host]:port notation for IPv6 - + Usage: + 用法: - - Stake your coins to support network and gain reward (default: 1) - + List commands + 列出指令 - - Threshold for disconnecting misbehaving peers (default: 100) - 把異常節點斷線的臨界值(預設值: 100) + Get help for a command + 取得指令說明 - - Number of seconds to keep misbehaving peers from reconnecting (default: 86400) - 拒絕跟異常節點連線的秒數(預設值: 86400) + Options: + 選項: - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - 設定在 IPv4 網路上以通訊埠 %u 聽取 RPC 連線時發生錯誤: %s + Specify wallet file (within data directory) + 指定錢包檔(會在資料目錄中) - - Detach block and address databases. Increases shutdown time (default: 0) - + Specify data directory + 指定資料目錄 - - 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. - + Set database cache size in megabytes (default: 25) + 設定資料庫快取大小成多少百萬位元組(MB;預設值: 25) - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - + Maintain at most <n> connections to peers (default: 125) + 維持連線節點數的上限為 <n> 個(預設值: 125) - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - + Connect to a node to retrieve peer addresses, and disconnect + 連線到某個節點來取得其它節點的位址,然後斷線 - - Accept command line and JSON-RPC commands - 接受指令列和 JSON-RPC 指令 - + Specify your own public address + 指定自己的公開位址 - - Error: Transaction creation failed - + Threshold for disconnecting misbehaving peers (default: 100) + 把異常節點斷線的臨界值(預設值: 100) - - Error: Wallet locked, unable to create transaction - + Number of seconds to keep misbehaving peers from reconnecting (default: 86400) + 拒絕跟異常節點連線的秒數(預設值: 86400) - - Importing blockchain data file. - + An error occurred while setting up the RPC port %u for listening on IPv4: %s + 設定在 IPv4 網路上以通訊埠 %u 聽取 RPC 連線時發生錯誤: %s - - Importing bootstrap blockchain data file. - + Accept command line and JSON-RPC commands + 接受指令列和 JSON-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) + 是否接受外來連線(預設值: 當沒有 -proxy 或 -connect 時為 1) - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - 設定在 IPv6 網路上以通訊埠 %u 聽候 RPC 連線失敗,退而改用 IPv4 網路: %s - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - + 設定在 IPv6 網路上以通訊埠 %u 聽候 RPC 連線失敗,退而改用 IPv4 網路: %s - 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 BitBean will not work properly. - + 警告: -paytxfee 設定了很高的金額!這可是你交易付款所要付的手續費。 - Warning: error reading wallet.dat! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - 警告: 讀取錢包檔 wallet.dat 時發生錯誤!所有的密鑰都正確讀取了,但是交易資料或位址簿資料可能會缺少或不正確。 + 警告: 讀取錢包檔 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. 如果餘額或交易資料有誤,你應該要用備份資料復原回來。 + 警告: 錢包檔 wallet.dat 壞掉,但資料被拯救回來了!原來的 wallet.dat 會改儲存在 %s, 檔名是 wallet.{timestamp}.bak. 如果餘額或交易資料有誤,你應該要用備份資料復原回來。 - Attempt to recover private keys from a corrupt wallet.dat - 嘗試從壞掉的錢包檔 wallet.dat 復原密鑰 + 嘗試從壞掉的錢包檔 wallet.dat 復原密鑰 - Block creation options: - 區塊製造選項: + 區塊製造選項: - Connect only to the specified node(s) - 只連線到指定節點(可多個) + 只連線到指定節點(可多個) - Discover own IP address (default: 1 when listening and no -externalip) - 找出自己的網際網路位址(預設值: 當有聽候連線且沒有 -externalip 時為 1) + 找出自己的網際網路位址(預設值: 當有聽候連線且沒有 -externalip 時為 1) - Failed to listen on any port. Use -listen=0 if you want this. - 在任意的通訊埠聽候失敗。如果你希望這樣的話,可以設定 -listen=0. + 在任意的通訊埠聽候失敗。如果你希望這樣的話,可以設定 -listen=0. - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - 每個連線的接收緩衝區大小上限為 <n>*1000 個位元組(預設值: 5000) + 每個連線的接收緩衝區大小上限為 <n>*1000 個位元組(預設值: 5000) - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - 每個連線的傳送緩衝區大小上限為 <n>*1000 位元組(預設值: 1000) + 每個連線的傳送緩衝區大小上限為 <n>*1000 位元組(預設值: 1000) - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - 只和 <net> 網路上的節點連線(IPv4, IPv6, 或 Tor) - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - + 只和 <net> 網路上的節點連線(IPv4, IPv6, 或 Tor) - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) - - - - Select the version of socks proxy to use (4-5, default: 5) - + SSL 選項: (SSL 設定程序請見 Bitcoin Wiki) - Send trace/debug info to console instead of debug.log file - 在終端機顯示追蹤或除錯資訊,而不是寫到檔案 debug.log 中 + 在終端機顯示追蹤或除錯資訊,而不是寫到檔案 debug.log 中 - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - Set minimum block size in bytes (default: 0) - 設定區塊大小下限成多少位元組(預設值: 0) + 設定區塊大小下限成多少位元組(預設值: 0) - Shrink debug.log file on client startup (default: 1 when no -debug) - 客戶端軟體啓動時把 debug.log 檔縮小(預設值: 當沒有 -debug 時為 1) + 客戶端軟體啓動時把 debug.log 檔縮小(預設值: 當沒有 -debug 時為 1) - Specify connection timeout in milliseconds (default: 5000) - 指定連線在幾毫秒後逾時(預設值: 5000) + 指定連線在幾毫秒後逾時(預設值: 5000) - - Unable to sign checkpoint, wrong checkpointkey? - - - - - 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - + 是否要使用通用即插即用(UPnP)協定,來設定聽候連線的通訊埠的對應(預設值: 當有聽候連線時為 1) - Username for JSON-RPC connections - JSON-RPC 連線使用者名稱 - - - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - + JSON-RPC 連線使用者名稱 - Warning: This version is obsolete, upgrade required! - 警告: 這個版本已經被淘汰了,必須要升級! + 警告: 這個版本已經被淘汰了,必須要升級! - wallet.dat corrupt, salvage failed - 錢包檔 weallet.dat 壞掉了,拯救失敗 + 錢包檔 weallet.dat 壞掉了,拯救失敗 - Password for JSON-RPC connections - JSON-RPC 連線密碼 - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - + JSON-RPC 連線密碼 - Allow JSON-RPC connections from specified IP address - 允許指定的來源 IP 位址進行 JSON-RPC 連線 + 允許指定的來源 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) - 當最新區塊改變時要執行的指令(指令中的 %s 會被取代成區塊雜湊值) + 當最新區塊改變時要執行的指令(指令中的 %s 會被取代成區塊雜湊值) - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - 當錢包有交易改變時要執行的指令(指令中的 %s 會被取代成交易識別碼) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - + 當錢包有交易改變時要執行的指令(指令中的 %s 會被取代成交易識別碼) - Upgrade wallet to latest format - 把錢包檔案升級成最新的格式 + 把錢包檔案升級成最新的格式 - Set key pool size to <n> (default: 100) - 設定密鑰池大小成 <n> (預設值: 100) + 設定密鑰池大小成 <n> (預設值: 100) - Rescan the block chain for missing wallet transactions - 重新掃描區塊鏈,來尋找錢包可能漏掉的交易。 - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - + 重新掃描區塊鏈,來尋找錢包可能漏掉的交易。 - Use OpenSSL (https) for JSON-RPC connections - 在 JSON-RPC 連線使用 OpenSSL (https) + 在 JSON-RPC 連線使用 OpenSSL (https) - Server certificate file (default: server.cert) - 伺服器憑證檔(預設值: server.cert) + 伺服器憑證檔(預設值: server.cert) - Server private key (default: server.pem) - 伺服器私鑰檔(預設值: server.pem) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - + 伺服器私鑰檔(預設值: server.pem) - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - This help message - 這些說明訊息 - - - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - + 這些說明訊息 - Unable to bind to %s on this computer (bind returned error %d, %s) - 沒辦法和這台電腦上的 %s 繫結(回傳錯誤 %d, %s) - - - - Connect through socks proxy - + 沒辦法和這台電腦上的 %s 繫結(回傳錯誤 %d, %s) - Allow DNS lookups for -addnode, -seednode and -connect - 允許對 -addnode, -seednode, -connect 的參數使用域名查詢 + 允許對 -addnode, -seednode, -connect 的參數使用域名查詢 - Loading addresses... - 正在載入位址資料... - - - - Error loading blkindex.dat - + 正在載入位址資料... - Error loading wallet.dat: Wallet corrupted - 載入檔案 wallet.dat 時發生錯誤: 錢包損毀了 - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - + 載入檔案 wallet.dat 時發生錯誤: 錢包損毀了 - 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' + 沒辦法解析 -bind 位址: '%s' - Cannot resolve -externalip address: '%s' - 沒辦法解析 -externalip 位址: '%s' + 沒辦法解析 -externalip 位址: '%s' - Invalid amount for -paytxfee=<amount>: '%s' - 設定 -paytxfee=<金額> 的金額無效: '%s' - - - - Error: could not start node - - - - - Sending... - + 設定 -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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - + 增加一個要連線的節線,並試著保持對它的連線暢通 - Loading wallet... - 正在載入錢包資料... + 正在載入錢包資料... - Cannot downgrade wallet - 沒辦法把錢包格式降級 - - - - Cannot initialize keypool - + 沒辦法把錢包格式降級 - Cannot write default address - 沒辦法把預設位址寫進去 + 沒辦法把預設位址寫進去 - Rescanning... - 正在重新掃描... + 正在重新掃描... - Done loading - 載入完成 + 載入完成 - To use the %s option - 為了要使用 %s 選項 + 為了要使用 %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. - 你必須在以下設定檔中設定 RPC 密碼(rpcpassword=<password>): + 你必須在以下設定檔中設定 RPC 密碼(rpcpassword=<password>): %s 如果還沒有這個檔案,請在造出來的時候,設定檔案權限成只有主人才能讀取。 - \ No newline at end of file + diff --git a/src/qt/locale/bitcoin_ar.qm b/src/qt/locale/bitcoin_ar.qm deleted file mode 100644 index 932f99e..0000000 Binary files a/src/qt/locale/bitcoin_ar.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_bs.ts b/src/qt/locale/bitcoin_bs.ts deleted file mode 100644 index 59c937c..0000000 --- a/src/qt/locale/bitcoin_bs.ts +++ /dev/null @@ -1,3275 +0,0 @@ - - - AboutDialog - - - About BitBean - - - - - <b>BitBean</b> version - - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - - - - - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - - - - - AddressBookPage - - - Address Book - - - - - Double-click to edit address or label - - - - - Create a new address - - - - - Copy the currently selected address to the system clipboard - - - - - &New Address - - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - - - - - &Copy Address - - - - - Show &QR Code - - - - - Sign a message to prove you own a BitBean address - - - - - Sign &Message - - - - - Delete the currently selected address from the list - - - - - Verify a message to ensure it was signed with a specified BitBean address - - - - - &Verify Message - - - - - &Delete - - - - - Copy &Label - - - - - &Edit - - - - - Export Address Book Data - - - - - Comma separated file (*.csv) - - - - - Error exporting - - - - - Could not write to file %1. - - - - - AddressTableModel - - - Label - - - - - Address - - - - - (no label) - - - - - AskPassphraseDialog - - - Passphrase Dialog - - - - - Enter passphrase - - - - - New passphrase - - - - - Repeat new passphrase - - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - - - - - For staking only - - - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - - - - - 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 COINS</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 - - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins 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. - - - - - BitcoinGUI - - - Sign &message... - - - - - Synchronizing with network... - - - - - &Overview - - - - - Show general overview of wallet - - - - - &Transactions - - - - - Browse transaction history - - - - - &Address Book - - - - - Edit the list of stored addresses and labels - - - - - &Receive coins - - - - - Show the list of addresses for receiving payments - - - - - &Send coins - - - - - E&xit - - - - - Quit application - - - - - Show information about BitBean - - - - - About &Qt - - - - - Show information about Qt - - - - - &Options... - - - - - &Encrypt Wallet... - - - - - &Backup Wallet... - - - - - &Change Passphrase... - - - - - ~%n block(s) remaining - - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - - - - - &Export... - - - - - Send coins to a BitBean address - - - - - Modify configuration options for BitBean - - - - - Export the data in the current tab to a file - - - - - Encrypt or decrypt wallet - - - - - Backup wallet to another location - - - - - Change the passphrase used for wallet encryption - - - - - &Debug window - - - - - Open debugging and diagnostic console - - - - - &Verify message... - - - - - BitBean - - - - - Wallet - - - - - &About BitBean - - - - - &Show / Hide - - - - - Unlock wallet - - - - - &Lock Wallet - - - - - Lock wallet - - - - - &File - - - - - &Settings - - - - - &Help - - - - - Tabs toolbar - - - - - Actions toolbar - - - - - - [testnet] - - - - - - BitBean client - - - - - %n active connection(s) to BitBean network - - - - - Downloaded %1 blocks of transaction history. - - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - - - - - Not staking because wallet is locked - - - - - Not staking because wallet is offline - - - - - Not staking because wallet is syncing - - - - - Not staking because you don't have mature coins - - - - - %n second(s) ago - - - - - &Unlock Wallet... - - - - - %n minute(s) ago - - - - - %n hour(s) ago - - - - - %n day(s) ago - - - - - Up to date - - - - - Catching up... - - - - - Last received block was generated %1. - - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - - - - - Confirm transaction fee - - - - - Sent transaction - - - - - Incoming transaction - - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - - - - - - URI handling - - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - - - - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - - - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - - - - - Backup Wallet - - - - - Wallet Data (*.dat) - - - - - Backup Failed - - - - - There was an error trying to save the wallet data to the new location. - - - - - %n second(s) - - - - - %n minute(s) - - - - - %n hour(s) - - - - - %n day(s) - - - - - Not staking - - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - - - - - ClientModel - - - Network Alert - - - - - CoinControlDialog - - - Coin Control - - - - - Quantity: - - - - - Bytes: - - - - - Amount: - - - - - Priority: - - - - - Fee: - - - - - Low Output: - - - - - no - - - - - After Fee: - - - - - Change: - - - - - (un)select all - - - - - Tree mode - - - - - List mode - - - - - Amount - - - - - Label - - - - - Address - - - - - Date - - - - - Confirmations - - - - - Confirmed - - - - - Priority - - - - - Copy address - - - - - Copy label - - - - - - Copy amount - - - - - Copy transaction ID - - - - - Copy quantity - - - - - Copy fee - - - - - Copy after fee - - - - - Copy bytes - - - - - Copy priority - - - - - Copy low output - - - - - Copy change - - - - - highest - - - - - high - - - - - medium-high - - - - - medium - - - - - low-medium - - - - - low - - - - - lowest - - - - - DUST - - - - - yes - - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 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. - - This means a fee of at least %2 is required. - - - - - - (no label) - - - - - change from %1 (%2) - - - - - (change) - - - - - EditAddressDialog - - - Edit Address - - - - - &Label - - - - - The label associated with this address book entry - - - - - &Address - - - - - The address associated with this address book entry. This can only be modified for sending addresses. - - - - - New receiving address - - - - - New sending address - - - - - Edit receiving address - - - - - Edit sending address - - - - - The entered address "%1" is already in the address book. - - - - - The entered address "%1" is not a valid BitBean address. - - - - - Could not unlock wallet. - - - - - New key generation failed. - - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - - - - - version - - - - - Usage: - - - - - command-line options - - - - - UI options - - - - - Set language, for example "de_DE" (default: system locale) - - - - - Start minimized - - - - - Show splash screen on startup (default: 1) - - - - - OptionsDialog - - - Options - - - - - &Main - - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - - Pay transaction &fee - - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - - - - - Reserve - - - - - Automatically start BitBean after logging in to the system. - - - - - &Start BitBean on system login - - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - - - - - &Detach databases at shutdown - - - - - &Network - - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - - - - - Map port using &UPnP - - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - - - - - &Connect through SOCKS proxy: - - - - - Proxy &IP: - - - - - IP address of the proxy (e.g. 127.0.0.1) - - - - - &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 BitBean. - - - - - &Unit to show amounts in: - - - - - Choose the default subdivision unit to show in the interface and when sending coins. - - - - - Whether to show BitBean 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 - - - - - &Apply - - - - - default - - - - - - Warning - - - - - - This setting will take effect after restarting BitBean. - - - - - The supplied proxy address is invalid. - - - - - OverviewPage - - - Form - - - - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - - - - - Stake: - - - - - Unconfirmed: - - - - - Wallet - - - - - Spendable: - - - - - Your current spendable balance - - - - - Immature: - - - - - Mined balance that has not yet matured - - - - - Total: - - - - - Your current total balance - - - - - <b>Recent transactions</b> - - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - - - - - Total of coins that was staked, and do not yet count toward the current balance - - - - - - out of sync - - - - - QRCodeDialog - - - QR Code Dialog - - - - - Request Payment - - - - - Amount: - - - - - Label: - - - - - Message: - - - - - &Save As... - - - - - Error encoding URI into QR Code. - - - - - The entered amount is invalid, please check. - - - - - Resulting URI too long, try to reduce the text for label / message. - - - - - Save QR Code - - - - - PNG Images (*.png) - - - - - RPCConsole - - - Client name - - - - - - - - - - - - - - N/A - - - - - Client version - - - - - &Information - - - - - Using OpenSSL version - - - - - Startup time - - - - - Network - - - - - Number of connections - - - - - On testnet - - - - - Block chain - - - - - Current number of blocks - - - - - Estimated total blocks - - - - - Last block time - - - - - &Open - - - - - Command-line options - - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - - - - - &Show - - - - - &Console - - - - - Build date - - - - - BitBean - Debug window - - - - - BitBean Core - - - - - Debug log file - - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - - - - - Clear console - - - - - Welcome to the BitBean 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. - - - - - SendCoinsDialog - - - - - - - - - - Send Coins - - - - - Coin Control Features - - - - - Inputs... - - - - - automatically selected - - - - - Insufficient funds! - - - - - Quantity: - - - - - - 0 - - - - - Bytes: - - - - - Amount: - - - - - - - - 0.00 BC - - - - - Priority: - - - - - medium - - - - - Fee: - - - - - Low Output: - - - - - no - - - - - After Fee: - - - - - Change - - - - - custom change address - - - - - Send to multiple recipients at once - - - - - Add &Recipient - - - - - Remove all transaction fields - - - - - Clear &All - - - - - Balance: - - - - - 123.456 BC - - - - - Confirm the send action - - - - - S&end - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Copy quantity - - - - - Copy amount - - - - - Copy fee - - - - - Copy after fee - - - - - Copy bytes - - - - - Copy priority - - - - - Copy low output - - - - - Copy change - - - - - <b>%1</b> to %2 (%3) - - - - - Confirm send coins - - - - - Are you sure you want to send %1? - - - - - and - - - - - 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. - - - - - Error: Transaction creation failed. - - - - - 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. - - - - - WARNING: Invalid BitBean address - - - - - (no label) - - - - - WARNING: unknown change address - - - - - SendCoinsEntry - - - Form - - - - - A&mount: - - - - - Pay &To: - - - - - - Enter a label for this address to add it to your address book - - - - - &Label: - - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose address from address book - - - - - Alt+A - Alt+A - - - - Paste address from clipboard - - - - - Alt+P - Alt+P - - - - Remove this recipient - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - - Choose an address from the address book - - - - - - Alt+A - Alt+A - - - - Paste address from clipboard - - - - - Alt+P - Alt+P - - - - Enter the message you want to sign here - - - - - Copy the current signature to the system clipboard - - - - - Sign the message to prove you own this BitBean address - - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Verify the message to ensure it was signed with the specified BitBean address - - - - - Reset all verify message fields - - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Click "Sign Message" to generate signature - - - - - Enter BitBean 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. - - - - - TransactionDesc - - - Open until %1 - - - - - Open for %n block(s) - - - - - 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 - - - - - Generated coins must mature 110 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 - - - - - unknown - - - - - TransactionDescDialog - - - Transaction details - - - - - This pane shows a detailed description of the transaction - - - - - TransactionTableModel - - - Date - - - - - Type - - - - - Address - - - - - Amount - - - - - Open until %1 - - - - - Confirmed (%1 confirmations) - - - - - Open for %n more block(s) - - - - - Offline - - - - - Unconfirmed - - - - - Confirming (%1 of %2 recommended confirmations) - - - - - Conflicted - - - - - Immature (%1 confirmations, will be available after %2) - - - - - This block was not received by any other nodes and will probably not be accepted! - - - - - Generated but not accepted - - - - - 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. - - - - - 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 Data - - - - - Comma separated file (*.csv) - - - - - Confirmed - - - - - Date - - - - - Type - - - - - Label - - - - - Address - - - - - Amount - - - - - ID - - - - - Error exporting - - - - - Could not write to file %1. - - - - - Range: - - - - - to - - - - - WalletModel - - - Sending... - - - - - bitcoin-core - - - BitBean version - - - - - Usage: - - - - - Send command to -server or BitBeand - - - - - List commands - - - - - Get help for a command - - - - - Options: - - - - - Specify configuration file (default: BitBean.conf) - - - - - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - - - - - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - - - - - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - - - - - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - - - - - 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 - - - - - Detach block and address databases. Increases shutdown time (default: 0) - - - - - 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 - - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - - - - - Accept command line and JSON-RPC commands - - - - - Error: Transaction creation failed - - - - - Error: Wallet locked, unable to create transaction - - - - - Importing blockchain data file. - - - - - Importing bootstrap blockchain data file. - - - - - 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) - - - - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - - - - - 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 BitBean will not work properly. - - - - - 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. - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Discover own IP address (default: 1 when listening and no -externalip) - - - - - Failed to listen on any port. Use -listen=0 if you want this. - - - - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Select the version of socks proxy to use (4-5, default: 5) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - Unable to sign checkpoint, wrong checkpointkey? - - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Use proxy to reach tor hidden services (default: same as -proxy) - - - - - Username for JSON-RPC connections - - - - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - - - - - Warning: This version is obsolete, upgrade required! - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - - - - - 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) - - - - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - - This help message - - - - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Connect through socks proxy - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading blkindex.dat - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - - - - - Wallet needed to be rewritten: restart BitBean 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' - - - - - Error: could not start node - - - - - Sending... - - - - - 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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - - - - - Loading wallet... - - - - - Cannot downgrade wallet - - - - - Cannot initialize keypool - - - - - 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.qm b/src/qt/locale/bitcoin_ca_ES.qm deleted file mode 100644 index 9940758..0000000 Binary files a/src/qt/locale/bitcoin_ca_ES.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_ca_ES.ts b/src/qt/locale/bitcoin_ca_ES.ts deleted file mode 100644 index 801a053..0000000 --- a/src/qt/locale/bitcoin_ca_ES.ts +++ /dev/null @@ -1,3303 +0,0 @@ - - - AboutDialog - - - About BitBean - Sobre BitBean - - - - <b>BitBean</b> version - versió <b>BitBean</b> - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - - - - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - \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 software criptogràfic escrit per l'Eric Young (eay@cryptsoft.com) i software UPnP escrit per en Thomas Bernard. - - - - AddressBookPage - - - Address Book - Llibreta d'adreces - - - - 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 - - - - Copy the currently selected address to the system clipboard - Copiar l'adreça seleccionada al porta-retalls del sistema - - - - &New Address - &Nova adreça - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - Aquestes són les teves adreces de BitBean per rebre els pagaments. És possible que vulgueu donar una diferent a cada remitent per a poder realitzar un seguiment de qui li está pagant. - - - - &Copy Address - &Copiar adreça - - - - Show &QR Code - Mostra el códi &QR - - - - Sign a message to prove you own a BitBean address - Signar un missatge per demostrar que és propietari d'una adreça BitBean - - - - Sign &Message - Signar &Message - - - - Delete the currently selected address from the list - Esborrar l'adreça sel·leccionada - - - - Verify a message to ensure it was signed with a specified BitBean address - Comproveu el missatge per assegurar-se que es va signar amb una adreça BitBean especificada. - - - - &Verify Message - &Verificar el missatge - - - - &Delete - &Esborrar - - - - Copy &Label - Copiar &Etiqueta - - - - &Edit - &Editar - - - - Export Address Book Data - Exportar dades de la llibreta d'adreces - - - - Comma separated file (*.csv) - Arxiu de separació per comes (*.csv) - - - - Error exporting - Error a l'exportar - - - - Could not write to file %1. - No s'ha pogut escriure al fitxer %1. - - - - AddressTableModel - - - Label - Etiqueta - - - - Address - Adreça - - - - (no label) - (sense etiqueta) - - - - AskPassphraseDialog - - - Passphrase Dialog - Dialeg de contrasenya - - - - Enter passphrase - Introdueix contrasenya - - - - New passphrase - Nova contrasenya - - - - Repeat new passphrase - Repeteix la nova contrasenya - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - Serveix per desactivar l'enviament trivial de diners quan el compte del sistema operatiu ha estat compromès. No ofereix seguretat real. - - - - For staking only - Només per a fer "stake" - - - - 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 el moneder - - - - 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 COINS</b>! - Avís: Si xifra el seu moneder i perd la contrasenya, podrà <b> PERDRE TOTES LES SEVES MONEDES </ 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 - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - BitBean tancarà ara per acabar el procés de xifrat. Recordeu que l'encriptació del seu moneder no pot protegir completament les seves monedes de ser robades pel malware que pugui infectar al seu equip. - - - - - - - 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. - - - - BitcoinGUI - - - Sign &message... - Signar &missatge... - - - - Synchronizing with network... - Sincronitzant amb la xarxa ... - - - - &Overview - &Panorama general - - - - Show general overview of wallet - Mostra panorama general del moneder - - - - &Transactions - &Transaccions - - - - Browse transaction history - Cerca a l'historial de transaccions - - - - &Address Book - &Llibreta d'adreces - - - - Edit the list of stored addresses and labels - Edició de la llista d'adreces i etiquetes emmagatzemades - - - - &Receive coins - &Rebre monedes - - - - Show the list of addresses for receiving payments - Mostra la llista d'adreces per rebre pagaments - - - - &Send coins - &Enviar monedes - - - - E&xit - S&ortir - - - - Quit application - Sortir de l'aplicació - - - - Show information about BitBean - Mostra informació sobre BitBean - - - - About &Qt - Sobre &Qt - - - - Show information about Qt - Mostra informació sobre Qt - - - - &Options... - &Opcions... - - - - &Encrypt Wallet... - &Xifrar moneder - - - - &Backup Wallet... - &Realitzar copia de seguretat del moneder... - - - - &Change Passphrase... - &Canviar contrasenya... - - - - ~%n block(s) remaining - ~%n bloc restant~%n blocs restants - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Descarregats %1 de %2 blocs d'historial de transaccions (%3% completat). - - - - &Export... - &Exportar... - - - - Send coins to a BitBean address - Enviar monedes a una adreça BitBean - - - - Modify configuration options for BitBean - Modificar les opcions de configuració per a BitBean - - - - Export the data in the current tab to a file - Exportar les dades de la pestanya actual a un arxiu - - - - Encrypt or decrypt wallet - Xifrar o desxifrar moneder - - - - 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 depuració - - - - Open debugging and diagnostic console - Obrir la consola de diagnòstic i depuració - - - - &Verify message... - &Verifica el missatge.. - - - - BitBean - BitBean - - - - Wallet - Moneder - - - - &About BitBean - &Sobre BitBean - - - - &Show / Hide - &Mostrar / Amagar - - - - Unlock wallet - Desbloquejar el moneder - - - - &Lock Wallet - &Bloquejar moneder - - - - Lock wallet - Bloquejar moneder - - - - &File - &Arxiu - - - - &Settings - &Configuració - - - - &Help - &Ajuda - - - - Tabs toolbar - Barra d'eines de seccions - - - - Actions toolbar - Barra d'eines d'accions - - - - - [testnet] - [testnet] - - - - - BitBean client - Client BitBean - - - - %n active connection(s) to BitBean network - %n conexió activa a la xarxa BitBean%n conexions actives a la xarxa BitBean - - - - Downloaded %1 blocks of transaction history. - Descarregats %1 blocs d'historial de transaccions - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - Fent "stake".<br>El teu pes és %1<br>El pes de la xarxa és %2<br>El temps estimat per a guanyar una recompensa és 3% - - - - Not staking because wallet is locked - No s'està fent "stake" perquè el moneder esa bloquejat - - - - Not staking because wallet is offline - No s'està fent "stake" perquè el moneder està fora de línia - - - - Not staking because wallet is syncing - No s'està fent "stake" perquè el moneder està sincronitzant - - - - Not staking because you don't have mature coins - No s'està fent "stake" perquè no tens monedes madures - - - - %n second(s) ago - fa %n segonfa %n segons - - - - &Unlock Wallet... - &Desbloquejar moneder - - - - %n minute(s) ago - fa %n minutfa %n minuts - - - - %n hour(s) ago - fa %n horafa %n hores - - - - %n day(s) ago - fa %n diafa %n dies - - - - Up to date - Al dia - - - - Catching up... - Posar-se al dia ... - - - - Last received block was generated %1. - El darrer bloc rebut s'ha generat %1. - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Aquesta transacció es troba sobre el límit de mida. Encara pot enviar-la amb una comisió de 1%, aquesta va als nodes que processen la seva transacció i ajuda a mantenir la xarxa. Vol pagar la quota? - - - - Confirm transaction fee - Confirmeu comisió - - - - Sent transaction - Transacció enviada - - - - Incoming transaction - Transacció entrant - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Data: %1\nQuantitat %2\n Tipus: %3\n Adreça: %4\n - - - - - URI handling - Manejant URI - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - l'URI no es pot analitzar! Això pot ser causat per una adreça BitBean no vàlida o paràmetres URI malformats. - - - - 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> - - - - Backup Wallet - Realitzar còpia de seguretat del moneder - - - - Wallet Data (*.dat) - Dades del moneder (*.dat) - - - - Backup Failed - Còpia de seguretat fallida - - - - There was an error trying to save the wallet data to the new location. - Hi ha un error al tractar de salvar les dades del seu moneder a la nova ubicació. - - - - %n second(s) - %n segon%n segons - - - - %n minute(s) - %n minut%n minuts - - - - %n hour(s) - %n hora%n hores - - - - %n day(s) - %n dia%n dies - - - - Not staking - No s'està fent "stake" - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - S'ha produït un error fatal. BitBean ja no pot continuar de forma segura i es tancarà. - - - - ClientModel - - - Network Alert - Alerta de xarxa - - - - CoinControlDialog - - - Coin Control - Opcions del control de monedes - - - - Quantity: - Quantitat: - - - - Bytes: - Bytes: - - - - Amount: - Quantitat: - - - - Priority: - Prioritat: - - - - Fee: - Quota: - - - - Low Output: - Sortida baixa: - - - - no - no - - - - After Fee: - Quota posterior: - - - - Change: - Canvi: - - - - (un)select all - (de)seleccionar tot - - - - Tree mode - Mode arbre - - - - List mode - Mode llista - - - - Amount - Quantitat - - - - Label - Etiqueta - - - - 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ó - - - - Copy quantity - Copiar quantitat - - - - Copy fee - Copiar comisió - - - - Copy after fee - Copiar després de comisió - - - - Copy bytes - Copiar bytes - - - - Copy priority - Copiar prioritat - - - - Copy low output - Copiar sortida baixa - - - - Copy change - Copiar canvi - - - - highest - El més alt - - - - high - Alt - - - - medium-high - mig-alt - - - - medium - mig - - - - low-medium - baix-mig - - - - low - baix - - - - lowest - el més baix - - - - DUST - POLS - - - - yes - si - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - Aquesta etiqueta es tornarà vermell, si la mida de la transacció és més gran que 10000 bytes. - -En aquest cas es requereix una comisió d'almenys el 1% per kb. - -Pot variar + / - 1 Byte per entrada. - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - Les operacions amb més prioritat entren mes facilment a un bloc. - -Aquesta etiqueta es torna vermella, si la prioritat és menor que "mitja". - -En aquest cas es requereix una comisió d'almenys el 1% per kb. - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - Aquesta etiqueta es torna vermella, si qualsevol beneficiari rep una quantitat inferior a 1%. - -En aquest cas es requereix una comisió d'almenys 2%. - -Les quantitats inferiors a 0.546 vegades la quota mínima del relé es mostren com a POLS. - - - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - Aquesta etiqueta es torna vermella, si el canvi és menor que 1%. - -En aquest cas es requereix una comisió d'almenys 2%. - - - - - (no label) - (sense etiqueta) - - - - change from %1 (%2) - canvi desde %1 (%2) - - - - (change) - (canviar) - - - - EditAddressDialog - - - Edit Address - Editar Adreça - - - - &Label - &Etiqueta - - - - The label associated with this address book entry - L'etiqueta associada amb aquesta entrada de la llibreta d'adreces - - - - &Address - &Direcció - - - - The address associated with this address book entry. This can only be modified for sending addresses. - La direcció associada amb aquesta entrada de la llibreta d'adreces. Només pot ser modificada per a l'enviament d'adreces. - - - - 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 BitBean address. - La direcció introduïda "%1" no és una adreça BitBean vàlida. - - - - Could not unlock wallet. - No s'ha pogut desbloquejar el moneder. - - - - New key generation failed. - Ha fallat la generació d'una nova clau. - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - BitBean-Qt - - - - 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 - - - - Show splash screen on startup (default: 1) - Mostrar finestra de benvinguda a l'inici (per defecte: 1) - - - - OptionsDialog - - - Options - Opcions - - - - &Main - &Principal - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - Comisió opcional per kB que ajuda a assegurar-se que les seves transaccions es processen ràpidament. La majoria de les transaccions són 1 kB. Comisió d'0.01 recomenada. - - - - Pay transaction &fee - Pagar &comisió de transacció - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - La quantitat reservada no participa en fer "stake" i per tant esta disponible en qualsevol moment. - - - - Reserve - Reserva - - - - Automatically start BitBean after logging in to the system. - Inicia automàticament BitBean després d'entrar en el sistema. - - - - &Start BitBean on system login - &Iniciar BitBean amb l'inici de sessió - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - Separeu el bloc i les bases de dades d'adreces en apagar l'equip. En aquest cas es pot moure a un altre directori de dades, però alenteix l'apagada. El moneder està sempre separat. - - - - &Detach databases at shutdown - &Separar bases de dades a l'apagar l'equip - - - - &Network - &Xarxa - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - Obrir automàticament el port de client BitBean en el router. Això només funciona quan el router és compatible amb UPnP i està habilitat. - - - - Map port using &UPnP - Obrir ports amb &UPnP - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - Connecteu-vos a la xarxa BitBean través d'un proxy SOCKS (per exemple, quan es connecta a través de Tor). - - - - &Connect through SOCKS proxy: - &Conectar a través d'un proxy SOCKS: - - - - Proxy &IP: - &IP del proxy: - - - - IP address of the proxy (e.g. 127.0.0.1) - Adreça IP del servidor proxy (per exemple, 127.0.0.1) - - - - &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 BitBean. - L'idioma de la interfície d'usuari es pot configurar aquí. Aquesta configuració s'aplicarà després de reiniciar BitBean. - - - - &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 BitBean addresses in the transaction list or not. - Per mostrar BitBean adreces a la llista de transaccions o no. - - - - &Display addresses in transaction list - &Mostrar adreces al llistat de transaccions - - - - Whether to show coin control features or not. - Per mostrar les característiques de control de la moneda o no. - - - - Display coin &control features (experts only!) - Mostrar controls i característiques de la moneda (només per a experts!) - - - - &OK - &OK - - - - &Cancel - &Cancel·la - - - - &Apply - &Aplicar - - - - default - Per defecte - - - - - Warning - Avís - - - - - This setting will take effect after restarting BitBean. - Aquesta configuració s'aplicarà després de reiniciar BitBean. - - - - The supplied proxy address is invalid. - L'adreça proxy introduïda és invalida. - - - - OverviewPage - - - Form - Formulari - - - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - La informació mostrada pot estar fora de data. El seu moneder es sincronitza automàticament amb la xarxa BitBean després d'establir una connexió, però aquest procés no s'ha completat encara. - - - - Stake: - En "stake": - - - - Unconfirmed: - Sense confirmar: - - - - Wallet - Moneder - - - - Spendable: - Disponible: - - - - Your current spendable balance - El balanç de saldo actual disponible - - - - Immature: - Immatur: - - - - Mined balance that has not yet matured - Balanç minat que encara no ha madurat - - - - Total: - Total: - - - - Your current total balance - El seu balanç total - - - - <b>Recent transactions</b> - <b>Transaccions recents</b> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Total de transaccions que encara no s'han confirmat, i encara no compten per al balanç actual - - - - Total of coins that was staked, and do not yet count toward the current balance - Total de les monedes que s'han posat a fer "stake" (en joc, aposta), i encara no compten per al balanç actual - - - - - out of sync - Fora de sincronia - - - - QRCodeDialog - - - QR Code Dialog - Diàleg de codi QR - - - - Request Payment - Sol·licitud de pagament - - - - Amount: - Quantitat: - - - - Label: - Etiqueta: - - - - Message: - Missatge: - - - - &Save As... - &Desa com ... - - - - Error encoding URI into QR Code. - Error codificant la URI en un codi QR. - - - - The entered amount is invalid, please check. - La quantitat introduïda no és vàlida, comproveu-ho si us plau. - - - - 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 - - - - Save QR Code - Desar codi QR - - - - PNG Images (*.png) - Imatges PNG (*.png) - - - - RPCConsole - - - Client name - Nom del client - - - - - - - - - - - - - N/A - N/A - - - - Client version - Versió del client - - - - &Information - &Informació - - - - Using OpenSSL version - Utilitzant OpenSSL versió - - - - Startup time - &Temps d'inici - - - - Network - Xarxa - - - - Number of connections - Nombre de connexions - - - - On testnet - A testnet - - - - 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 - - - - Command-line options - Opcions de la línia d'ordres - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - Mostra el missatge d'ajuda de BitBean-Qt per obtenir una llista amb les possibles opcions de línia d'ordres BitBean. - - - - &Show - &Mostra - - - - &Console - &Consola - - - - Build date - Data de compilació - - - - BitBean - Debug window - BitBean - Finestra Depuració - - - - BitBean Core - Nucli BitBean - - - - Debug log file - Dietàri de depuració - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - Obriu el fitxer de registre de depuració BitBean des del directori de dades actual. Això pot trigar uns segons en els arxius de registre de grans dimensions. - - - - Clear console - Netejar consola - - - - Welcome to the BitBean RPC console. - Benvingut a la consola RPC de BitBean. - - - - 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. - - - - 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: - - - - - 0 - 0 - - - - Bytes: - Bytes: - - - - Amount: - Quantitat: - - - - - - - 0.00 BC - 123.456 BC {0.00 ?} - - - - Priority: - Prioritat: - - - - medium - mig - - - - Fee: - Quota: - - - - Low Output: - Sortida baixa: - - - - no - no - - - - After Fee: - Quota posterior: - - - - Change - Canvi - - - - custom change address - Adreça de canvi pròpia - - - - Send to multiple recipients at once - Enviar a multiples destinataris al mateix temps - - - - Add &Recipient - Afegir &Destinatari - - - - Remove all transaction fields - Traieu tots els camps de transacció - - - - Clear &All - Esborrar &Tot - - - - Balance: - Balanç: - - - - 123.456 BC - 123.456 BC - - - - Confirm the send action - Confirmi l'acció d'enviament - - - - S&end - E&nviar - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Introdueix una adreça BitBean (p.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Copy quantity - Copiar quantitat - - - - Copy amount - Copiar quantitat - - - - Copy fee - Copiar comisió - - - - Copy after fee - Copiar després de comisió - - - - Copy bytes - Copiar bytes - - - - Copy priority - Copiar prioritat - - - - Copy low output - Copiar sortida baixa - - - - Copy change - Copiar canvi - - - - <b>%1</b> to %2 (%3) - <b>%1</b> a %2 (%3) - - - - Confirm send coins - Confirmar l'enviament de monedes - - - - Are you sure you want to send %1? - Esteu segur que voleu enviar %1? - - - - and - i - - - - 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. - - - - Error: Transaction creation failed. - Error: La creació de transacció ha fallat. - - - - 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 sigut rebutjada. Això pot passar si algunes de les monedes al moneder ja s'han gastat, per exemple, si vostè utilitza una còpia del wallet.dat i les monedes han estat gastades a la cópia pero no s'han marcat com a gastades aqui. - - - - WARNING: Invalid BitBean address - ADVERTÈNCIA: Direcció BitBean invàlida - - - - (no label) - (sense etiqueta) - - - - WARNING: unknown change address - ADVERTÈNCIA: direcció de canvi desconeguda - - - - SendCoinsEntry - - - Form - Formulari - - - - A&mount: - Q&uantitat: - - - - Pay &To: - Pagar &A: - - - - - 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: - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - L'adreça per a enviar el pagament (per exemple: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Choose address from address book - Trieu la direcció de la llibreta d'adreces - - - - Alt+A - Alta+A - - - - Paste address from clipboard - Enganxar adreça del porta-retalls - - - - Alt+P - Alt+P - - - - Remove this recipient - Eliminar aquest destinatari - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Introdueix una adreça BitBean (p.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - L'adreça per a signar el missatge (per exemple 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose an address from the address book - Trieu una adreça de la llibreta d'adreces - - - - - 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 - - - - 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 BitBean address - Signar un missatge per demostrar que és propietari d'aquesta adreça BitBean - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - La direcció que va ser signada amb un missatge (per exemple 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Verify the message to ensure it was signed with the specified BitBean address - Comproveu el missatge per assegurar-se que es va signar amb l'adreça BitBean especificada. - - - - Reset all verify message fields - Neteja tots els camps de verificació de missatge - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Introdueix una adreça BitBean (p.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Click "Sign Message" to generate signature - Clica "Signar Missatge" per a generar una signatura - - - - Enter BitBean signature - Introduïu la signatura BitBean - - - - - 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. - - - - TransactionDesc - - - Open until %1 - Obert fins %1 - - - - Open for %n block(s) - Obert per a %n blocObert per a %n blocs - - - - conflicted - conflicte - - - - %1/offline - %1/offline - - - - %1/unconfirmed - %1/sense confirmar - - - - %1 confirmations - %1 confrimacions - - - - Status - Estat - - - - , broadcast through %n node(s) - , transmès a través de %n node, transmès 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) - madura en %n bloc mésmadura 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ó - - - - Generated coins must mature 110 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 monedes generades han de madurar 510 blocs abans per a poder estar disponibles. En generar aquest bloc, que va ser transmès a la xarxa per ser afegit a la cadena de bloc. Si no aconsegueix entrar a la cadena, el seu estat canviarà a "no acceptat" i no es podrà gastar. Això pot succeir de tant en tant si un altre node genera un bloc a pocs segons del seu. - - - - Debug information - Informació de depuració - - - - Transaction - Transacció - - - - Inputs - Entrades - - - - Amount - Quantitat - - - - true - cert - - - - false - fals - - - - , has not been successfully broadcast yet - , encara no ha estat emès correctement - - - - unknown - desconegut - - - - 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ó - - - - TransactionTableModel - - - Date - Data - - - - Type - Tipus - - - - Address - Direcció - - - - Amount - Quantitat - - - - Open until %1 - Obert fins %1 - - - - Confirmed (%1 confirmations) - Confirmat (%1 confirmacions) - - - - Open for %n more block(s) - Obert per a %n bloc mésObert per a %n blocs més - - - - Offline - Desconnectat - - - - Unconfirmed - Sense confirmar - - - - Confirming (%1 of %2 recommended confirmations) - Confirmant (%1 de %2 confirmacions recomanat) - - - - Conflicted - Conflicte - - - - Immature (%1 confirmations, will be available after %2) - Immadurs (%1 confirmacions, estaran disponibles després de %2) - - - - 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 - - - - Received with - Rebut desde - - - - 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ç. - - - - 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 desde - - - - 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 Data - Exportació de dades de transaccions - - - - Comma separated file (*.csv) - Arxiu de separació per comes (*.csv) - - - - Confirmed - Confirmat - - - - Date - Data - - - - Type - Tipus - - - - Label - Etiqueta - - - - Address - Direcció - - - - Amount - Quantitat - - - - ID - ID - - - - Error exporting - Error a l'exportar - - - - Could not write to file %1. - No s'ha pogut escriure al fitxer %1. - - - - Range: - Rang: - - - - to - a - - - - WalletModel - - - Sending... - Enviant... - - - - bitcoin-core - - - BitBean version - versió BitBean - - - - Usage: - Ús: - - - - Send command to -server or BitBeand - Enviar comandes a -server o BitBeand - - - - List commands - Llista d'ordres - - - - Get help for a command - Obtenir ajuda per a un ordre. - - - - Options: - Opcions: - - - - Specify configuration file (default: BitBean.conf) - Especifiqueu el fitxer de configuració (per defecte: BitBean.conf) - - - - Specify pid file (default: BitBeand.pid) - Especificar arxiu pid (per defecte: BitBeand.pid) - - - - Specify wallet file (within data directory) - Especifica un arxiu de moneder (dintre del directori de les dades) - - - - 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) - - - - Set database disk log size in megabytes (default: 100) - Configurar la mida del registre en disc de la base de dades en megabytes (per defecte: 100) - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - Escoltar connexions en <port> (per defecte: 15714 o testnet: 25714) - - - - 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 - - - - Bind to given address. Use [host]:port notation for IPv6 - Enllaçar a l'adreça donada. Utilitzeu la notació [host]:port per a IPv6 - - - - Stake your coins to support network and gain reward (default: 1) - Posa les teves monedes a fer "stake" per donar suport a la xarxa i obtenir una recompensa (per defecte: 1) - - - - 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 - - - - Detach block and address databases. Increases shutdown time (default: 0) - Separeu el bloc i les bases de dades d'adreces. Augmenta el temps d'apagada (per defecte: 0) - - - - 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 sigut rebutjada. Això pot passar si algunes de les monedes al moneder ja s'han gastat, per exemple, si vostè utilitza una còpia del wallet.dat i les monedes han estat gastades a la cópia pero no s'han marcat com a gastades aqui. - - - - 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 comisió d'almenys %s degut a la seva quantitat, complexitat, o l'ús dels fons rebuts recentment - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - Escoltar connexions JSON-RPC al port <port> (per defecte: 15715 o testnet: 25715) - - - - Accept command line and JSON-RPC commands - Acceptar línia d'ordres i ordres JSON-RPC - - - - Error: Transaction creation failed - Error: La creació de transacció ha fallat. - - - - Error: Wallet locked, unable to create transaction - Error: Moneder bloquejat, no es pot de crear la transacció - - - - Importing blockchain data file. - Important fitxer de dades de la cadena de blocs - - - - Importing bootstrap blockchain data file. - Important fitxer de dades d'arrencada de la cadena de blocs - - - - 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) - - - - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - Error en inicialitzar l'entorn de base de dades %s! Per recuperar, FACI UNA COPIA DE SEGURETAT D'AQUEST DIRECTORI, a continuació, retiri tot d'ella excepte l'arxiu wallet.dat. - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - Establir la grandària màxima de les transaccions alta-prioritat/baixa-comisió en bytes (per defecte: 27000) - - - - 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 BitBean will not work properly. - Avís: Comproveu que la data i hora de l'equip siguin correctes! Si el seu rellotge és erroni BitBean no funcionarà correctament. - - - - 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. - - - - Attempt to recover private keys from a corrupt wallet.dat - Intentar recuperar les claus privades d'un arxiu wallet.dat corrupte - - - - Block creation options: - Opcions de la creació de blocs: - - - - Connect only to the specified node(s) - Connectar només al(s) node(s) especificats - - - - 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) - - - - 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ò. - - - - Find peers using DNS lookup (default: 1) - Trobar companys utilitzant la recerca de DNS (per defecte: 1) - - - - Sync checkpoints policy (default: strict) - Política dels punts de control de sincronització (per defecte: estricta) - - - - Invalid -tor address: '%s' - Adreça -tor invalida: '%s' - - - - Invalid amount for -reservebalance=<amount> - Quantitat invalida per a -reservebalance=<amount> - - - - 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) - Només connectar als nodes de la xarxa <net> (IPv4, IPv6 o Tor) - - - - Output extra debugging information. Implies all other -debug* options - Sortida d'informació de depuració extra. Implica totes les opcions de depuracó -debug* - - - - Output extra network debugging information - Sortida d'informació de depuració de xarxa addicional - - - - Prepend debug output with timestamp - Anteposar marca de temps a la sortida de depuració - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opcions SSL: (veure la Wiki de Bitcoin per a instruccions de configuració SSL) - - - - Select the version of socks proxy to use (4-5, default: 5) - Seleccioneu la versió de proxy socks per utilitzar (4-5, per defecte: 5) - - - - Send trace/debug info to console instead of debug.log file - Enviar informació de traça/depuració a la consola en comptes del arxiu debug.log - - - - Send trace/debug info to debugger - Enviar informació de traça/depuració al depurador - - - - Set maximum block size in bytes (default: 250000) - Establir una mida máxima de bloc en bytes (per defecte: 250000) - - - - Set minimum block size in bytes (default: 0) - Establir una mida mínima de bloc en bytes (per defecte: 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) - - - - Specify connection timeout in milliseconds (default: 5000) - Especificar el temps limit per a un intent de connexió en milisegons (per defecte: 5000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - No es pot signar el punt de control, la clau del punt de control esta malament? - - - - - Use UPnP to map the listening port (default: 0) - Utilitza UPnP per a mapejar els ports d'escolta (per defecte: 0) - - - - Use UPnP to map the listening port (default: 1 when listening) - Utilitza UPnP per a mapejar els ports d'escolta (per defecte: 1 quan s'escolta) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - Utilitza proxy per arribar als serveis ocults de Tor (per defecte: la mateixa que -proxy) - - - - Username for JSON-RPC connections - Nom d'usuari per a connexions JSON-RPC - - - - Verifying database integrity... - Comprovant la integritat de la base de dades ... - - - - WARNING: syncronized checkpoint violation detected, but skipped! - ADVERTÈNCIA: violació de punt de control sincronitzat detectada, es saltarà! - - - - Warning: Disk space is low! - Avís: L'espai en disc és baix! - - - - Warning: This version is obsolete, upgrade required! - Advertència: Aquetsa versió està obsoleta, és necessari actualitzar! - - - - 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 - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - %s, ha d'establir un rpcpassword al fitxer de configuració: -%s -Es recomana utilitzar la següent contrasenya aleatòria: -rpcuser=BitBeanrpc -rpcpassword=%s -(No cal recordar aquesta contrasenya) -El nom d'usuari i contrasenya NO HA DE SER el mateix. -Si no hi ha l'arxiu, s'ha de crear amb els permisos de només lectura per al propietari. -També es recomana establir alertnotify per a que se li notifiquin els problemes; -per exemple: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - Find peers using internet relay chat (default: 0) - Trobar companys utilitzant l'IRC (per defecte: 1) {0)?} - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - Sincronitzar el temps amb altres nodes. Desactivar si el temps al seu sistema és precís, per exemple, si fa ús de sincronització amb NTP (per defecte: 1) - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - En crear transaccions, ignorar les entrades amb valor inferior a aquesta (per defecte: 0.01) - - - - 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) - - - - 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) - - - - Require a confirmations for change (default: 0) - Requerir les confirmacions de canvi (per defecte: 0) - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - Fer complir als scripts de transaccions d'utilitzar operadors PUSH canòniques (per defecte: 1) - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - -Executar una ordre quan es rep un avís rellevant (%s en cmd es substitueix per missatge) - - - - 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - Quants blocs s'han de confirmar a l'inici (per defecte: 2500, 0 = tots) - - - - How thorough the block verification is (0-6, default: 1) - Com és de minuciosa la verificació del bloc (0-6, per defecte: 1) - - - - Imports blocks from external blk000?.dat file - Importar blocs desde l'arxiu extern blk000?.dat - - - - 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Xifres acceptables (per defecte: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - Error: Wallet unlocked for staking only, unable to create transaction. - Error: Cartera bloquejada nomès per a fer "stake", no es pot de crear la transacció - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - ADVERTÈNCIA: Punt de control invàlid! Les transaccions mostrades podríen no ser correctes! Podria ser necessari actualitzar o notificar-ho als desenvolupadors. - - - - This help message - Aquest misatge d'ajuda - - - - Wallet %s resides outside data directory %s. - El moneder %s resideix fora del directori de dades %s. - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - No es pot obtenir un bloqueig en el directori de dades %s. BitBean probablement ja estigui en funcionament. - - - - BitBean - BitBean - - - - 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) - - - - Connect through socks proxy - Conectar a través d'un proxy SOCKS - - - - Allow DNS lookups for -addnode, -seednode and -connect - Permetre consultes DNS per a -addnode, -seednode i -connect - - - - Loading addresses... - Carregant adreces... - - - - Error loading blkindex.dat - Error carregant blkindex.dat - - - - Error loading wallet.dat: Wallet corrupted - Error carregant wallet.dat: Moneder corrupte - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - Error en carregar wallet.dat: El moneder requereix la versió més recent de BitBean - - - - Wallet needed to be rewritten: restart BitBean to complete - El moneder necessita ser reescrita: reiniciar BitBean per completar - - - - 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' - - - - Error: could not start node - Error: no s'ha pogut iniciar el node - - - - Sending... - Enviant... - - - - 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. BitBean is probably already running. - No es pot enllaçar a %s en aquest equip. BitBean probablement ja estigui en funcionament. - - - - Fee per KB to add to transactions you send - Comisió per KB per a afegir a les transaccions que enviï - - - - Invalid amount for -mininput=<amount>: '%s' - Quantitat invalida per a -mininput=<amount>: '%s' - - - - Loading wallet... - Carregant moneder... - - - - Cannot downgrade wallet - No es pot reduir la versió del moneder - - - - Cannot initialize keypool - No es pot inicialitzar el keypool - - - - 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_cs.qm b/src/qt/locale/bitcoin_cs.qm deleted file mode 100644 index 51bff08..0000000 Binary files a/src/qt/locale/bitcoin_cs.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_da.qm b/src/qt/locale/bitcoin_da.qm deleted file mode 100644 index 040e08c..0000000 Binary files a/src/qt/locale/bitcoin_da.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts deleted file mode 100644 index 285fc3c..0000000 --- a/src/qt/locale/bitcoin_da.ts +++ /dev/null @@ -1,3313 +0,0 @@ - - - AboutDialog - - - About BitBean - Om BitBean - - - - <b>BitBean</b> version - <b>BitBean</b> version - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - - - - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - -Dette program er eksperimentelt. - -Det er gjort tilgængeligt under MIT/X11-softwarelicensen. Se den medfølgende fil "COPYING" eller http://www.opensource.org/licenses/mit-license.php. - -Produktet indeholder software, som er udviklet af OpenSSL Project til brug i OpenSSL Toolkit (http://www.openssl.org/). Kryptografisk software er skrevet af Eric Young (eay@cryptsoft.com), og UPnP-software er skrevet af Thomas Bernard. - - - - AddressBookPage - - - Address Book - Adressebog - - - - Double-click to edit address or label - Dobbeltklik for at redigere adresse eller mærkat - - - - Create a new address - Opret en ny adresse - - - - Copy the currently selected address to the system clipboard - Kopier den valgte adresse til udklipsholder - - - - &New Address - &Ny adresse - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - Dette er dine BitBean adresser til at modtage betalinger. Du ønsker måske at give en anden en til af hver afsender, så du kan holde styr på hvem der betaler dig. - - - - &Copy Address - &Kopier adresse - - - - Show &QR Code - Vis &QR kode - - - - Sign a message to prove you own a BitBean address - Signerer en meddelelse for at bevise du ejer en BitBean adresse - - - - Sign &Message - Signere & Besked - - - - Delete the currently selected address from the list - Slet den markerede adresse fra listen - - - - Verify a message to ensure it was signed with a specified BitBean address - Bekræft en meddelelse for at sikre, den blev underskrevet med en specificeret BitBean adresse - - - - &Verify Message - Bekræft Meddelse - - - - &Delete - &Slet - - - - Copy &Label - Kopier mærkat - - - - &Edit - Rediger - - - - Export Address Book Data - Eksporter Adresse Bog - - - - Comma separated file (*.csv) - Kommasepareret fil (*.csv) - - - - Error exporting - Fejl ved eksportering - - - - Could not write to file %1. - Kunne ikke skrive til fil% 1. - - - - AddressTableModel - - - Label - Mærkat - - - - Address - Adresse - - - - (no label) - (ingen mærkat) - - - - AskPassphraseDialog - - - Passphrase Dialog - Adgangskodedialog - - - - Enter passphrase - Indtast adgangskode - - - - New passphrase - Ny adgangskode - - - - Repeat new passphrase - Gentag ny adgangskode - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - Deaktivere trivielle sendmoney når OS konto er kompromitteret. Giver ingen reel sikkerhed. - - - - For staking only - Kun til renteberegning - - - - 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 COINS</b>! - Advarsel: Hvis du krypterer din tegnebog og mister din adgangskode, vil du <b> miste alle dine mønter </ 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 - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - BitBean lukker nu for at afslutte krypteringen. Husk at en krypteret tegnebog ikke fuldt ud beskytter dine mønter mod at blive stjålet af malware som har inficeret 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. - - - - BitcoinGUI - - - Sign &message... - Underskriv besked... - - - - Synchronizing with network... - Synkroniserer med netværk... - - - - &Overview - &Oversigt - - - - Show general overview of wallet - Vis generel oversigt over tegnebog - - - - &Transactions - &Transaktioner - - - - Browse transaction history - Gennemse transaktionshistorik - - - - &Address Book - &Adressebog - - - - Edit the list of stored addresses and labels - Redigere listen over gemte adresser og etiketter - - - - &Receive coins - &Modtag mønter - - - - Show the list of addresses for receiving payments - Vis listen over adresser for modtagne betalinger - - - - &Send coins - &Send mønter - - - - E&xit - Luk - - - - Quit application - Afslut program - - - - Show information about BitBean - Vis oplysninger om BitBean - - - - 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... - - - - ~%n block(s) remaining - ~%n blok resterer~%n blokke resterende - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Overført %1 af %2 blokke af transaktions historie (%3% færdig). - - - - &Export... - &Eksporter... - - - - Send coins to a BitBean address - Send mønter til en BitBean adresse - - - - Modify configuration options for BitBean - Ændre indstillingsmuligheder for BitBean - - - - Export the data in the current tab to a file - Eksportere data i den aktuelle fane til en fil - - - - Encrypt or decrypt wallet - Kryptere eller dekryptere tegnebog - - - - 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... - - - - BitBean - BitBean - - - - Wallet - Tegnebog - - - - &About BitBean - &Om BitBean - - - - &Show / Hide - Vis / skjul - - - - Unlock wallet - Lås tegnebog - - - - &Lock Wallet - &Lås tegnebog - - - - Lock wallet - Lås tegnebog - - - - &File - Fil - - - - &Settings - Indstillinger - - - - &Help - Hjælp - - - - Tabs toolbar - Faneværktøjslinje - - - - Actions toolbar - Fanværktøjslinje - - - - - [testnet] - [testnetværk] - - - - - BitBean client - BitBean klient - - - - %n active connection(s) to BitBean network - %n aktiv forbindelse til BitBean netværk%n aktive forbindelser til BitBean netværk - - - - Downloaded %1 blocks of transaction history. - Downloadet %1 blokke af transaktions historie. - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - Renter.<br> Din andel er% 1 <br> Netværkets andel er% 2 <br> Forventet tid til at modtage rente %3 - - - - Not staking because wallet is locked - Ingen rente fordi tegnebog er låst - - - - Not staking because wallet is offline - Ingen rente fordi tegnebog er offline - - - - Not staking because wallet is syncing - Ingen rente fordi tegnebog er ved at synkronisere - - - - Not staking because you don't have mature coins - Ingen rente fordi der ingen modne mønter eksistere - - - - %n second(s) ago - %n sekund siden%n sekunder siden - - - - &Unlock Wallet... - Lås tegnebog op - - - - %n minute(s) ago - %n minut siden%n minutter siden - - - - %n hour(s) ago - %n time siden%n timer siden - - - - %n day(s) ago - %n dag siden%n dage siden - - - - Up to date - Opdateret - - - - Catching up... - Indhenter... - - - - Last received block was generated %1. - Sidst modtagne blok blev genereret %1. - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Denne transaktion er over grænsen størrelse. Du kan stadig sende det for et gebyr på %1, der går til de noder, der behandler din transaktion og hjælper med at støtte netværket. Ønsker du at betale gebyret? - - - - Confirm transaction fee - Bekræft transaktionsgebyr - - - - Sent transaction - Afsendt transaktion - - - - Incoming transaction - Indgående transaktion - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Dato: %1 -Beløb: %2 -Type: %3 -Adresse: %4 - - - - - - URI handling - URI håndtering - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - URI kan ikke tolkes! Dette kan skyldes en ugyldig BitBean adresse eller misdannede URI parametre. - - - - 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> - - - - Backup Wallet - Sikkerhedskopier Tegnebog - - - - Wallet Data (*.dat) - Tegnebogsdata (*.dat) - - - - Backup Failed - Sikkerhedskopiering Mislykkedes - - - - There was an error trying to save the wallet data to the new location. - Der opstod en fejl under forsøg på at gemme data i tegnebogen til den nye placering. - - - - %n second(s) - %n sekund%n sekunder - - - - %n minute(s) - %n minut%n minutter - - - - %n hour(s) - %n time(r)%n time(r) - - - - %n day(s) - %n dag(e)%n dag(e) - - - - Not staking - Ingen rente - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - Der opstod en fejl under forsøg på at gemme dataene i tegnebogen til den nye placering. - - - - ClientModel - - - Network Alert - Netværksadvarsel - - - - CoinControlDialog - - - Coin Control - Mønt Kontrol - - - - Quantity: - Antal: - - - - Bytes: - Bytes: - - - - Amount: - Beløb: - - - - Priority: - Prioritet: - - - - Fee: - Gebyr: - - - - Low Output: - Lav Udgangseffekt: - - - - no - nej - - - - After Fee: - Efter Gebyr: - - - - Change: - Ændre: - - - - (un)select all - (fra)vælg alle - - - - Tree mode - Træ tilstand - - - - List mode - Liste tilstand - - - - Amount - Beløb - - - - Label - Mærkat - - - - Address - Adresse - - - - Date - Dato - - - - Confirmations - Bekræftelser - - - - Confirmed - Bekræftet - - - - Priority - Prioritet - - - - Copy address - Kopier adresse - - - - Copy label - Kopier mærkat - - - - - Copy amount - Kopier beløb - - - - Copy transaction ID - Kopier transaktionens ID - - - - Copy quantity - Kopier antal - - - - Copy fee - Kopier transkationsgebyr - - - - Copy after fee - Kopier efter transkationsgebyr - - - - Copy bytes - Kopier bytes - - - - Copy priority - Kopier prioritet - - - - Copy low output - Lav udgangseffekt - - - - Copy change - Kopier ændring - - - - highest - højeste - - - - high - høj - - - - medium-high - medium-høj - - - - medium - medium - - - - low-medium - lav-medium - - - - low - lav - - - - lowest - lavest - - - - DUST - DUST - - - - yes - ja - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - Denne etiket bliver rød, hvis transaktionen størrelse er større end 10000 byte. - -Det betyder, at et gebyr på mindst %1 per kb er påkrævet. - -Kan variere + / - 1 byte per indgang. - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - Transaktioner med højere prioritet får mere sandsynligt en blok. - -Denne etiket bliver rød, hvis prioritet er mindre end "medium". - -Det betyder, at et gebyr på mindst %1 per kb er påkrævet. - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - Denne etiket bliver rød, hvis nogen modtager et beløb, der er mindre end %1. - -Det betyder, at et gebyr på mindst %2 er påkrævet. - -Beløb under 0,546 gange det minimale gebyr er vist som DUST. - - - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - Denne etiket bliver rød, hvis ændringen er mindre end %1. - -Det betyder, at et gebyr på mindst %2 er påkrævet. - - - - - (no label) - (ingen mærkat) - - - - change from %1 (%2) - skift fra %1 (%2) - - - - (change) - (skift) - - - - EditAddressDialog - - - Edit Address - Rediger adresse - - - - &Label - Mærkat - - - - The label associated with this address book entry - Etiketten er forbundet med denne post i adressekartoteket - - - - &Address - Adresse - - - - The address associated with this address book entry. This can only be modified for sending addresses. - Adressen er forbundet med denne post i adressekartoteket. Dette kan kun ændres til sende adresser. - - - - 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 BitBean address. - Den indtastede adresse "%1" er ikke en gyldig BitBean adresse. - - - - Could not unlock wallet. - Kunne ikke låse tegnebog op. - - - - New key generation failed. - Ny nøglegenerering mislykkedes. - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - BitBean-Qt - - - - version - version - - - - Usage: - Anvendelse: - - - - command-line options - Kommandolinjeparametrene - - - - UI options - UI opsætning - - - - Set language, for example "de_DE" (default: system locale) - Indstil sprog, for eksempel "de_DE" (standard: system locale) - - - - Start minimized - Start minimeret - - - - Show splash screen on startup (default: 1) - Vis splash skærm ved opstart (default: 1) - - - - OptionsDialog - - - Options - Indstillinger - - - - &Main - Generelt - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - Valgfri transaktionsgebyr pr kB, som hjælper med at sikre dine transaktioner bliver behandlet hurtigt. De fleste transaktioner er 1 kB. Gebyr 0,01 anbefales. - - - - Pay transaction &fee - Betal transaktionsgebyr - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - Reserveret beløb deltager ikke i forrentning og er derfor tilrådighed til enhver tid. - - - - Reserve - Reserve - - - - Automatically start BitBean after logging in to the system. - Automatisk start BitBean efter at have logget ind på systemet. - - - - &Start BitBean on system login - &Start BitBean ved systems login - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - Frigør blok og adressedatabaser ved lukning. Det betyder, at de kan flyttes til et anden data-bibliotek, men det sinker lukning. Tegnebogen er altid frigjort. - - - - &Detach databases at shutdown - &Frigør databaser ved lukning - - - - &Network - Netværk - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - Automatisk åbne BitBean klient-port på routeren. Dette virker kun, når din router understøtter UPnP og er det er aktiveret. - - - - Map port using &UPnP - Konfigurer port vha. UPnP - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - Opret forbindelse til BitBean netværk via en SOCKS proxy (fx ved tilslutning gennem Tor). - - - - &Connect through SOCKS proxy: - &Tilslut gennem SOCKS proxy: - - - - Proxy &IP: - Proxy-IP: - - - - IP address of the proxy (e.g. 127.0.0.1) - IP-adressen på proxy (f.eks 127.0.0.1) - - - - &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 BitBean. - Sproget i brugergrænsefladen kan indstilles her. Denne indstilling vil træde i kraft efter genstart af BitBean tegnebog. - - - - &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 bitcoins. - - - - Whether to show BitBean addresses in the transaction list or not. - Få vist BitBean adresser på listen over transaktioner eller ej. - - - - &Display addresses in transaction list - Vis adresser i transaktionsliste - - - - Whether to show coin control features or not. - Vis mønt kontrol funktioner eller ej. - - - - Display coin &control features (experts only!) - Vis mønt & kontrol funktioner (kun for eksperter!) - - - - &OK - OK - - - - &Cancel - Annuller - - - - &Apply - &Anvend - - - - default - standard - - - - - Warning - Advarsel - - - - - This setting will take effect after restarting BitBean. - Denne indstilling vil træde i kraft efter genstart af BitBean. - - - - The supplied proxy address is invalid. - Ugyldig proxy-adresse - - - - OverviewPage - - - Form - Formular - - - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - De viste oplysninger kan være forældet. Din tegnebog synkroniserer automatisk med BitBean netværket efter en forbindelse er etableret, men denne proces er ikke afsluttet endnu. - - - - Stake: - Rente: - - - - Unconfirmed: - Ubekræftede: - - - - Wallet - Tegnebog - - - - Spendable: - Brugbar: - - - - Your current spendable balance - Din nuværende tilgængelige 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> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Summen af ​​transaktioner, der endnu mangler at blive bekræftet, og ikke tæller mod den nuværende balance - - - - Total of coins that was staked, and do not yet count toward the current balance - I alt mønter, der bliver berentet, og endnu ikke tæller mod den nuværende balance - - - - - out of sync - ikke synkroniseret - - - - QRCodeDialog - - - QR Code Dialog - QR Kode Dialog - - - - Request Payment - Betalingsanmodning - - - - Amount: - Antal: - - - - Label: - Label: - - - - Message: - Besked: - - - - &Save As... - &Gem Som... - - - - Error encoding URI into QR Code. - Fejl kode URI i QR kode. - - - - The entered amount is invalid, please check. - Det indtastede beløb er ugyldig, venligst tjek igen. - - - - Resulting URI too long, try to reduce the text for label / message. - Resulterende URI for lang, prøv at reducere teksten til etiketten / besked. - - - - Save QR Code - Gem QR kode - - - - PNG Images (*.png) - PNG billede (*.png) - - - - RPCConsole - - - Client name - Klientnavn - - - - - - - - - - - - - N/A - N/A - - - - Client version - Klientversion - - - - &Information - Information - - - - Using OpenSSL version - Anvender OpenSSL-version - - - - Startup time - Opstartstid - - - - Network - Netværk - - - - Number of connections - Antal forbindelser - - - - On testnet - På testnet - - - - 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 - - - - Command-line options - Kommandolinjeparametrene - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - Vis BitBean-Qt hjælpe besked for at få en liste med mulige BitBean kommandolinjeparametre. - - - - &Show - &Vis - - - - &Console - Konsol - - - - Build date - Byggedato - - - - BitBean - Debug window - BitBean - Debug vindue - - - - BitBean Core - BitBean Kerne - - - - Debug log file - Fejlsøgningslogfil - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - Åbn BitBean debug logfilen fra den nuværende data mappe. Dette kan tage et par sekunder for store logfiler. - - - - Clear console - Ryd konsol - - - - Welcome to the BitBean RPC console. - Velkommen til BitBean RPC-konsol. - - - - 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. - - - - SendCoinsDialog - - - - - - - - - - Send Coins - Send bitcoins - - - - Coin Control Features - Mønt Kontrol Egenskaber - - - - Inputs... - Input ... - - - - automatically selected - Automatisk valgt - - - - Insufficient funds! - Utilstrækkelig midler! - - - - Quantity: - Antal: - - - - - 0 - 0 - - - - Bytes: - Bytes: - - - - Amount: - Beløb: - - - - - - - 0.00 BC - 123.456 BC {0.00 ?} - - - - Priority: - Prioritet: - - - - medium - medium - - - - Fee: - Gebyr - - - - Low Output: - Lav udgangseffekt - - - - no - nej - - - - After Fee: - Efter gebyr - - - - Change - Skift - - - - custom change address - Ændre adresse - - - - Send to multiple recipients at once - Send til flere modtagere på en gang - - - - Add &Recipient - Tilføj modtager - - - - Remove all transaction fields - Fjern alle transaktions omkostnings felter - - - - Clear &All - Ryd alle - - - - Balance: - Saldo: - - - - 123.456 BC - 123.456 BC - - - - Confirm the send action - Bekræft afsendelsen - - - - S&end - Afsend - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Indtast en BitBean-adresse (f.eks 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Copy quantity - Kopier antal - - - - Copy amount - Kopier beløb - - - - Copy fee - Kopier transkationsgebyr - - - - Copy after fee - Kopier efter transkationsgebyr - - - - Copy bytes - Kopier bytes - - - - Copy priority - Kopier prioritet - - - - Copy low output - Kopier lav produktion - - - - Copy change - Kopier forandring - - - - <b>%1</b> to %2 (%3) - <b>%1</b> til %2 (%3) - - - - Confirm send coins - Bekræft afsendelse af bitcoins - - - - Are you sure you want to send %1? - Er du sikker på du vil sende% 1? - - - - and - og - - - - 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. - - - - Error: Transaction creation failed. - Fejl: Transaktion oprettelse mislykkedes. - - - - 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 mønterne i din tegnebog allerede er blevet brugt, som hvis du brugte en kopi af wallet.dat og mønterne blev brugt i kopien, men ikke markeret som brugt her. - - - - WARNING: Invalid BitBean address - ADVARSEL: Ugyldig BitBean adresse - - - - (no label) - (ingen mærkat) - - - - WARNING: unknown change address - ADVARSEL: ukendt adresse forandring - - - - SendCoinsEntry - - - Form - Form - - - - A&mount: - Beløb: - - - - Pay &To: - Betal til: - - - - - 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: - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Adressen til at sende betalingen til (f.eks 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Choose address from address book - Vælg adresse fra adressebogen - - - - Alt+A - Alt+A - - - - Paste address from clipboard - Indsæt adresse fra udklipsholderen - - - - Alt+P - Alt+P - - - - Remove this recipient - Fjern denne modtager - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Indtast en BitBean-adresse (f.eks 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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 Bitcoin-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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Adresse til at underskrive meddelelsen med (f.eks 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose an address from the address book - Vælg en adresse fra adressebogen - - - - - 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 - - - - Copy the current signature to the system clipboard - Kopier den nuværende underskrift til systemets udklipsholder - - - - Sign the message to prove you own this BitBean address - Underskriv brevet for at bevise du ejer denne BitBean adresse - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Adressen meddelelse blev underskrevet med (f.eks 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Verify the message to ensure it was signed with the specified BitBean address - Kontroller meddelelsen for at sikre, at den blev indgået med den angivne BitBean adresse - - - - Reset all verify message fields - Nulstil alle "verificér besked"-felter - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Indtast en BitBean-adresse (f.eks 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Click "Sign Message" to generate signature - Klik "Underskriv besked" for at generere underskriften - - - - Enter BitBean signature - Indtast BitBean underskrift - - - - - 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. - - - - TransactionDesc - - - Open until %1 - Åben indtil %1 - - - - Open for %n block(s) - Åben for %n blokÅben for %n blok(ke) - - - - conflicted - konflikt - - - - %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 - - - - Generated coins must mature 110 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. - Generet mønter skal modne 510 blokke, før de kan blive brugt. Når du genererede denne blok blev det transmitteret til netværket, der tilføjes til blokkæden. Hvis det mislykkes at komme ind i kæden, vil dens tilstand ændres til "ikke godkendt", og det vil ikke være brugbar. Dette kan lejlighedsvis ske, hvis en anden node genererer en blok et par sekunder efter din. - - - - 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 - - - - unknown - ukendt - - - - TransactionDescDialog - - - Transaction details - Transaktionsdetaljer - - - - This pane shows a detailed description of the transaction - Denne rude viser en detaljeret beskrivelse af transaktionen - - - - TransactionTableModel - - - Date - Dato - - - - Type - Type - - - - Address - Adresse - - - - Amount - Beløb - - - - Open until %1 - Åben indtil %1 - - - - Confirmed (%1 confirmations) - Bekræftet (%1 bekræftelser) - - - - Open for %n more block(s) - Åben %n blok(ke) yderligereÅben %n blok(ke) yderligere - - - - Offline - Offline - - - - Unconfirmed - Ubekræftede - - - - Confirming (%1 of %2 recommended confirmations) - Bekræftelse (% 1 af% 2 anbefalede bekræftelser) - - - - Conflicted - Konflikt - - - - Immature (%1 confirmations, will be available after %2) - Umodne (% 1 bekræftelser, vil være tilgængelige efter% 2) - - - - 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 - - - - 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. - - - - 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 Data - Exportere transaktionsdata - - - - Comma separated file (*.csv) - Kommasepareret fil (*.csv) - - - - Confirmed - Bekræftet - - - - Date - Dato - - - - Type - Type - - - - Label - Mærkat - - - - Address - Adresse - - - - Amount - Beløb - - - - ID - ID - - - - Error exporting - Fejl exporting - - - - Could not write to file %1. - Kunne ikke skrive til filen% 1. - - - - Range: - Interval: - - - - to - til - - - - WalletModel - - - Sending... - Sender... - - - - bitcoin-core - - - BitBean version - BitBean version - - - - Usage: - Anvendelse: - - - - Send command to -server or BitBeand - Send kommando til-server eller BitBeand - - - - List commands - Liste over kommandoer - - - - Get help for a command - Få hjælp til en kommando - - - - Options: - Indstillinger: - - - - Specify configuration file (default: BitBean.conf) - Angiv konfigurationsfil (default: BitBean.conf) - - - - Specify pid file (default: BitBeand.pid) - Angiv pid fil (standard: BitBeand.pid) - - - - Specify wallet file (within data directory) - Angiv tegnebogs fil (indenfor data mappe) - - - - Specify data directory - Angiv datakatalog - - - - Set database cache size in megabytes (default: 25) - Angiv databasecachestørrelse i megabytes (standard: 25) - - - - Set database disk log size in megabytes (default: 100) - Set database disk logstørrelsen i megabyte (standard: 100) - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - Lyt efter forbindelser på <port> (default: 15714 eller Testnet: 25714) - - - - 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 - - - - Bind to given address. Use [host]:port notation for IPv6 - Binder til en given adresse. Brug [host]: port notation for IPv6 - - - - Stake your coins to support network and gain reward (default: 1) - Opbevar dine mønter for at støtte netværket og få belønning (default: 1) - - - - 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 - - - - Detach block and address databases. Increases shutdown time (default: 0) - Frigør blok og adresse databaser. Øg shutdown tid (default: 0) - - - - 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 mønterne i din pung allerede er blevet brugt, som hvis du brugte en kopi af wallet.dat og mønterne blev brugt i kopien, men ikke markeret 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å mindst% s på grund af dens størrelse, kompleksitet, eller anvendelse af nylig modtaget midler - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - Spor efter JSON-RPC-forbindelser på <port> (default: 15715 eller Testnet: 25715) - - - - Accept command line and JSON-RPC commands - Accepter kommandolinje- og JSON-RPC-kommandoer - - - - Error: Transaction creation failed - Fejl: Transaktion oprettelse mislykkedes - - - - Error: Wallet locked, unable to create transaction - Fejl: Wallet låst, ude af stand til at skabe transaktion - - - - Importing blockchain data file. - Importerer blockchain datafil. - - - - Importing bootstrap blockchain data file. - Import af bootstrap blockchain datafil. - - - - 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) - - - - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - Fejl initialisering database miljø% s! For at gendanne, BACKUP denne mappe, og derefter fjern alt bortset fra wallet.dat. - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - Angiv maksimal størrelse på high-priority/low-fee transaktioner i bytes (standard: 27000) - - - - 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 BitBean will not work properly. - Advarsel: Kontroller venligst, at computerens dato og klokkeslæt er korrekt! Hvis dit ur er forkert vil BitBean ikke fungere korrekt. - - - - 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. - - - - Attempt to recover private keys from a corrupt wallet.dat - Forsøg at genskabe private nøgler fra ødelagt wallet.dat - - - - Block creation options: - Blokoprettelsestilvalg: - - - - Connect only to the specified node(s) - Tilslut kun til de(n) angivne knude(r) - - - - Discover own IP address (default: 1 when listening and no -externalip) - Find egen IP-adresse (standard: 1 når lytter og ingen -externalip) - - - - 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. - - - - Find peers using DNS lookup (default: 1) - Find peer bruges DNS-opslag (default: 1) - - - - Sync checkpoints policy (default: strict) - Synkroniser checkpoints politik (default: streng) - - - - Invalid -tor address: '%s' - Ugyldig-tor-adresse: '% s' - - - - Invalid amount for -reservebalance=<amount> - Ugyldigt beløb for-reservebalance = <beløb> - - - - 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) - Tilslut kun til knuder i netværk <net> (IPv4, IPv6 eller Tor) - - - - Output extra debugging information. Implies all other -debug* options - Output ekstra debugging information. Indebærer alle andre-debug * muligheder - - - - Output extra network debugging information - Output ekstra netværk debugging information - - - - Prepend debug output with timestamp - Prepend debug output med tidsstempel - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL-indstillinger: (se Bitcoin Wiki for SSL-opsætningsinstruktioner) - - - - Select the version of socks proxy to use (4-5, default: 5) - Vælg den version af socks proxy du vil bruge (4-5, standard: 5) - - - - Send trace/debug info to console instead of debug.log file - Send sporings-/fejlsøgningsinformation til konsollen i stedet for debug.log filen - - - - Send trace/debug info to debugger - Send trace / debug info til debugger - - - - Set maximum block size in bytes (default: 250000) - Indstil maks. blok størrelse i bytes (standard: 250000) - - - - Set minimum block size in bytes (default: 0) - Angiv minimumsblokstørrelse i bytes (standard: 0) - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - Formindsk debug.log filen ved klientopstart (standard: 1 hvis ikke -debug) - - - - Specify connection timeout in milliseconds (default: 5000) - Angiv tilslutningstimeout i millisekunder (standard: 5000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - Kan ikke logge checkpoint, forkert checkpointkey? - - - - - 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - Brug proxy til at nå tor skjulte services (Standard: samme som-proxy) - - - - Username for JSON-RPC connections - Brugernavn til JSON-RPC-forbindelser - - - - Verifying database integrity... - Bekræfter database integritet ... - - - - WARNING: syncronized checkpoint violation detected, but skipped! - ADVARSEL: synkroniseret checkpoint overtrædelse opdaget, men skibbet! - - - - Warning: Disk space is low! - Advarsel: Diskplads lav! - - - - Warning: This version is obsolete, upgrade required! - Advarsel: Denne version er forældet, opgradering påkrævet! - - - - wallet.dat corrupt, salvage failed - wallet.dat ødelagt, redning af data mislykkedes - - - - Password for JSON-RPC connections - Adgangskode til JSON-RPC-forbindelser - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - % s, skal du indstille et rpcpassword i konfigurationsfilen: -% s -Det anbefales at bruge følgende tilfældig adgangskode: -rpcuser = BitBeanrpc -rpcpassword =% s -(du behøver ikke at huske denne adgangskode) -Brugernavn og adgangskode må ikke være den samme. -Hvis filen ikke findes, skal du oprette den med filtilladelser ejer-læsbar-kun. -Det kan også anbefales at sætte alertnotify så du får besked om problemer; -for eksempel: alertnotify = echo%% s | mail-s "BitBean Alert" admin@foo.com - - - - - Find peers using internet relay chat (default: 0) - Find peers der bruger internet relay chat (default: 1) {? 0)} - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - Synkroniser tid med andre noder. Deaktiver, hvis tiden på dit system er præcis eksempelvis synkroniseret med NTP (default: 1) - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - Når du opretter transaktioner ignoreres input med værdi mindre end dette (standard: 0,01) - - - - 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) - - - - 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) - - - - Require a confirmations for change (default: 0) - Kræver en bekræftelser for forandring (default: 0) - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - Gennemtving transaktions omkostninger scripts til at bruge canoniske PUSH operatører (default: 1) - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - Udfør kommando, når en relevant advarsel er modtaget (% s i cmd erstattes af meddelelse) - - - - 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - Hvor mange blokke til at kontrollere ved opstart (standard: 2500, 0 = alle) - - - - How thorough the block verification is (0-6, default: 1) - Hvor grundig blok verifikation er (0-6, default: 1) - - - - Imports blocks from external blk000?.dat file - Importere blokke fra ekstern blk000?. Dat fil - - - - 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Acceptable ciphers (default: TLSv1 + HØJ:! SSLv2: aNULL: eNULL: AH: 3DES: @ styrke) - - - - Error: Wallet unlocked for staking only, unable to create transaction. - Fejl: Pung låst for at udregne rente, ude af stand til at skabe transaktion. - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - ADVARSEL: Ugyldig checkpoint fundet! Viste transaktioner er måske ikke korrekte! Du kan være nødt til at opgradere, eller underrette udviklerne. - - - - This help message - Denne hjælpebesked - - - - Wallet %s resides outside data directory %s. - Wallet% s placeret udenfor data mappe% s. - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - Kan ikke få en lås på data mappe% s. BitBean kører sikkert allerede. - - - - BitBean - BitBean - - - - 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) - - - - Connect through socks proxy - Tilslut gennem socks proxy - - - - Allow DNS lookups for -addnode, -seednode and -connect - Tillad DNS-opslag for -addnode, -seednode og -connect - - - - Loading addresses... - Indlæser adresser... - - - - Error loading blkindex.dat - Fejl ved indlæsning af blkindex.dat - - - - Error loading wallet.dat: Wallet corrupted - Fejl ved indlæsning af wallet.dat: Tegnebog ødelagt - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - Fejl ved indlæsning af wallet.dat: Wallet kræver en nyere version af BitBean - - - - Wallet needed to be rewritten: restart BitBean to complete - Det er nødvendig for wallet at blive omskrevet: Genstart BitBean for fuldfø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' - - - - Error: could not start node - Fejl: kunne ikke starte node - - - - Sending... - Sender... - - - - 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. BitBean is probably already running. - Kunne ikke binde sig til% s på denne computer. BitBean kører sikkert allerede. - - - - Fee per KB to add to transactions you send - Gebyr pr KB som tilføjes til transaktioner, du sender - - - - Invalid amount for -mininput=<amount>: '%s' - Ugyldigt beløb for-mininput = <beløb>: '% s' - - - - Loading wallet... - Indlæser tegnebog... - - - - Cannot downgrade wallet - Kan ikke nedgradere tegnebog - - - - Cannot initialize keypool - Kan ikke initialisere keypool - - - - 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. - Du skal angive rpcpassword=<password> i konfigurationsfilen: -%s -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.qm b/src/qt/locale/bitcoin_de.qm deleted file mode 100644 index 2199c44..0000000 Binary files a/src/qt/locale/bitcoin_de.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_en.qm b/src/qt/locale/bitcoin_en.qm deleted file mode 100644 index 06d0818..0000000 Binary files a/src/qt/locale/bitcoin_en.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_eo.qm b/src/qt/locale/bitcoin_eo.qm deleted file mode 100644 index 5eb2dd1..0000000 Binary files a/src/qt/locale/bitcoin_eo.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_es.qm b/src/qt/locale/bitcoin_es.qm deleted file mode 100644 index 124d867..0000000 Binary files a/src/qt/locale/bitcoin_es.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts deleted file mode 100644 index 0d15981..0000000 --- a/src/qt/locale/bitcoin_es.ts +++ /dev/null @@ -1,3330 +0,0 @@ - - - AboutDialog - - - About BitBean - Acerca de BitBean - - - - <b>BitBean</b> version - <b>BitBean</b> versión - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - - - - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - -Este es un software experimental. - -Distribuido bajo la licencia MIT/X11, vea el archivo adjunto -COPYING o http://www.opensource.org/licenses/mit-license.php. - -Este producto incluye software desarrollado por OpenSSL Project para su uso en -el OpenSSL Toolkit (http://www.openssl.org/) y software criptográfico escrito por -Eric Young (eay@cryptsoft.com) y el software UPnP escrito por Thomas Bernard. - - - - AddressBookPage - - - Address Book - Libreta de Direcciones - - - - Double-click to edit address or label - Haga doble clic para editar una etiqueta o dirección - - - - Create a new address - Crear una nueva dirección - - - - Copy the currently selected address to the system clipboard - Copiar la dirección seleccionada al portapapeles del sistema - - - - &New Address - &Nueva Dirección - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - Estas son las direcciones de BitBean para recibir pagos. Es posible que desee dar una diferente a cada remitente para que pueda realizar un seguimiento de quien te está pagando. - - - - &Copy Address - &Copiar dirección - - - - Show &QR Code - Enseñar &QR Code - - - - Sign a message to prove you own a BitBean address - Firmar un mensaje para demostrar que es dueño de su dirección de BitBean - - - - Sign &Message - Firmar &Mensaje - - - - Delete the currently selected address from the list - Borrar de la lista la dirección seleccionada - - - - Verify a message to ensure it was signed with a specified BitBean address - Verifique el mensaje para asegurarse que fue firmado por una dirección específica de BitBean - - - - &Verify Message - &Verifique Mensaje - - - - &Delete - &Eliminar - - - - Copy &Label - Copiar &etiqueta - - - - &Edit - &Editar - - - - Export Address Book Data - Exportar Data de Libro de Direcciones - - - - Comma separated file (*.csv) - Archivos de columnas separadas por coma (*.csv) - - - - Error exporting - Error exportando - - - - Could not write to file %1. - No se pudo escribir en el archivo %1 - - - - AddressTableModel - - - Label - Etiqueta - - - - Address - Dirección - - - - (no label) - (sin etiqueta) - - - - 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 - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - Sirve para desactivar SendMoney cuando la cuenta del Sistema Operativo está comprometida. No ofrece seguridad real. - - - - For staking only - Para "Staking" solamente - - - - 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 COINS</b>! - Advertencia: Si encripta su cartera y pierde su frase de contraseña, puede <b>PERDER TODAS SUS MONEDAS</ 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 - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - BitBean cerrará para terminar el proceso de encriptación. Recuerde que la encriptación de su monedero no puede proteger completamente que sus monedas sean robadas por malware infectando su computadora. - - - - - - - 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. - - - - BitcoinGUI - - - Sign &message... - Firmar &mensaje... - - - - Synchronizing with network... - Sincronizando con la red… - - - - &Overview - &Vista general - - - - Show general overview of wallet - Mostrar vista general del monedero - - - - &Transactions - &Transacciones - - - - Browse transaction history - Examinar el historial de transacciones - - - - &Address Book - &Libreta de Direcciones - - - - Edit the list of stored addresses and labels - Editar la lista de direcciones y etiquetas almacenadas - - - - &Receive coins - &Recibir monedas - - - - Show the list of addresses for receiving payments - Mostrar la lista de direcciones para recibir pagos - - - - &Send coins - &Enviar monedas - - - - E&xit - &Salir - - - - Quit application - Salir de la aplicación - - - - Show information about BitBean - Mostrar información sobre BitBean - - - - About &Qt - Acerca de &Qt - - - - Show information about Qt - Mostrar información acerca de Qt - - - - &Options... - &Opciones... - - - - &Encrypt Wallet... - &Cifrar monedero… - - - - &Backup Wallet... - &Guardar copia de seguridad del monedero... - - - - &Change Passphrase... - &Cambiar la contraseña… - - - - ~%n block(s) remaining - ~%n bloque restante~%n bloques restantes - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Descargado %1 de %2 bloques de historial de transacciones (%3% completado). - - - - &Export... - &Exportar... - - - - Send coins to a BitBean address - Enviar monedas a una dirección de BitBean - - - - Modify configuration options for BitBean - Modificar las opciones de configuración para BitBean - - - - Export the data in the current tab to a file - Exportar los datos en la ficha actual a un archivo - - - - Encrypt or decrypt wallet - Cifrar o descifrar el monedero - - - - 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... - - - - BitBean - BitBean - - - - Wallet - Monedero - - - - &About BitBean - Acerca de BitBean - - - - &Show / Hide - &Mostrar / Ocultar - - - - Unlock wallet - Desbloquear el monedero - - - - &Lock Wallet - &Bloquear monedero - - - - Lock wallet - Bloquear monedero - - - - &File - &Archivo - - - - &Settings - &Configuración - - - - &Help - A&yuda - - - - Tabs toolbar - Barra de pestañas - - - - Actions toolbar - Barra de herramientas de acciones - - - - - [testnet] - [testnet] - - - - - BitBean client - Cliente BitBean - - - - %n active connection(s) to BitBean network - %n conexión activa a la red BitBean%n conexiones activas a la red BitBean - - - - Downloaded %1 blocks of transaction history. - Descargado %1 bloques de historial de transacciones. - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - Staking.<br>Su contribución es %1<br>Contribución de la red es %2<br>Tiempo esperado para ganar la recompensa es %3 - - - - Not staking because wallet is locked - No esta "Staking" porque monedera está bloqueada - - - - Not staking because wallet is offline - No esta "Staking" porque monedera está desconectada - - - - Not staking because wallet is syncing - No esta "Staking" porque monedera está sincronizando - - - - Not staking because you don't have mature coins - No esta "Staking" ya que no tiene monedas maduras - - - - %n second(s) ago - hace %n segundohace %n segundos - - - - &Unlock Wallet... - &Desbloquear Monedero... - - - - %n minute(s) ago - hace %n minutohace %n minutos - - - - %n hour(s) ago - hace %n horahace %n horas - - - - %n day(s) ago - hace %n diahace %n dias - - - - Up to date - Actualizado - - - - Catching up... - Actualizando... - - - - Last received block was generated %1. - Último bloque recibido se generó en %1. - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Esta transacción se encuentra sobre el límite de tamaño. Usted todavía puede enviarlo a un costo de %1, lo que va a los nodos que procesan sus transacciones y ayuda a apoyar la red. ¿Quieres pagar la cuota? - - - - Confirm transaction fee - Confirme tarifa de transacción - - - - Sent transaction - Transacción enviada - - - - Incoming transaction - Transacción entrante - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Fecha: %1 -Cantidad: %2 -Tipo: %3 -Dirección: %4 - - - - - - URI handling - Manejar URI - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - URI no se puede analizar! Esto puede ser causado por una dirección de BitBean no válida o parámetros de URI malformados. - - - - 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> - - - - Backup Wallet - Copia de Seguridad de Monedero - - - - Wallet Data (*.dat) - Data de Monedero (*.dat) - - - - Backup Failed - Copia de Seguridad a fracasado - - - - There was an error trying to save the wallet data to the new location. - Hubo un error al tratar de salvar los datos de su monedero a la nueva ubicación. - - - - %n second(s) - %n segundo%n segundos - - - - %n minute(s) - %n minuto%n minutos - - - - %n hour(s) - %n hora%n horas - - - - %n day(s) - %n día%n días - - - - Not staking - No estás "Staking" - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - Se ha producido un error fatal. BitBean ya no puede continuar de forma segura y cerrará. - - - - ClientModel - - - Network Alert - Alerta de red - - - - CoinControlDialog - - - Coin Control - Control de Moneda - - - - Quantity: - Cantidad: - - - - Bytes: - Bytes: - - - - Amount: - Cantidad: - - - - Priority: - Prioridad: - - - - Fee: - Tasa: - - - - Low Output: - Envío pequeño: - - - - no - no - - - - After Fee: - Después de tasas: - - - - Change: - Cambio: - - - - (un)select all - (des)marcar todos - - - - Tree mode - Modo árbol - - - - List mode - Modo lista - - - - Amount - Cuantía - - - - Label - Etiqueta - - - - 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 - - - - 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 - - - - high - alto - - - - medium-high - medio-alto - - - - medium - medio - - - - low-medium - bajo-medio - - - - low - bajo - - - - lowest - lo más bajo - - - - DUST - DUST - - - - yes - si - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - Esta etiqueta se convierte en rojo, si el tamaño de la transacción es mayor que 10000 bytes. - -Esto significa que se requiere una cuota de al menos el %1 por kb. - -Puede variar + / - 1 Byte por entrada. - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - Las transacciones con mayor prioridad son más probables en entrar hacia un bloque. - -Esta etiqueta se convierte en rojo, si la prioridad es menor que "medium". - -Esto significa que se requiere una cuota de al menos el %1 por kb. - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - Esta etiqueta se convierte en rojo, si cualquier recipiente recibe una cantidad menor que %1. - -Esto significa que se requiere una cuota de al menos %2. - -Las cantidades inferiores a 0.546 veces la cuota mínima del relé se muestran en forma de DUST. - - - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - Esta etiqueta se convierte en rojo, si el cambio es menor que %1. - -Esto significa que se requiere una cuota de al menos %2. - - - - - (no label) - (sin etiqueta) - - - - change from %1 (%2) - Enviar desde %1 (%2) - - - - (change) - (cambio) - - - - EditAddressDialog - - - Edit Address - Editar Dirección - - - - &Label - &Etiqueta - - - - The label associated with this address book entry - La etiqueta asociada con esta entrada de la libreta de direcciones - - - - &Address - &Dirección - - - - The address associated with this address book entry. This can only be modified for sending addresses. - La dirección asociada con esta entrada de la libreta de direcciones. Esto sólo puede ser modificada para direcciones de envío. - - - - 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 BitBean address. - La dirección introducida "%1" no es una dirección válida de BitBean. - - - - Could not unlock wallet. - No se pudo desbloquear el monedero. - - - - New key generation failed. - Ha fallado la generación de la nueva clave. - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - BitBean-Qt - - - - version - Versión - - - - Usage: - Uso: - - - - command-line options - opciones de líneas de comandos - - - - UI options - opciones del interfaz de usuario - - - - Set language, for example "de_DE" (default: system locale) - Defina el idioma, por ejemplo "de_DE" (predeterminado: región del sistema) - - - - Start minimized - Iniciar minimizado - - - - Show splash screen on startup (default: 1) - Mostrar pantalla de bienvenida al iniciar (predeterminado: 1) - - - - OptionsDialog - - - Options - Opciones - - - - &Main - &Principal - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - Tarifa de transacción opcional por kB que ayuda a asegurarse de que sus transacciones se procesan rápidamente. La mayoría de las transacciones son 1 kB. Cuota de 0.01 recomendada. - - - - Pay transaction &fee - Comisión de &transacciones - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - Cantidad reservada no participa en el "Staking" y por lo tanto se puede gastar en cualquier momento. - - - - Reserve - Reserva - - - - Automatically start BitBean after logging in to the system. - Iniciar BitBean automáticamente después de entrar en el sistema. - - - - &Start BitBean on system login - &Iniciar BitBean al inicio del sistema - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - Separe el bloque y las bases de datos de direcciones al apagar el equipo. Esto significa que se puede mover a otro directorio de datos, pero desacelera el apagado. El monedero siempre está separado. - - - - &Detach databases at shutdown - &Separe la bases de datos al apagar el equipo - - - - &Network - &Red - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - Abrir automáticamente el puerto de cliente BitBean en el router. Esto sólo funciona cuando el router es compatible con UPnP y está habilitado. - - - - Map port using &UPnP - Mapear el puerto usando &UPnP - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - Conéctese a la red de BitBean a través de un SOCKS proxy (e.g. cuando se conecta a través de Tor) - - - - &Connect through SOCKS proxy: - &Conéctese a través de un SOCKS proxy - - - - Proxy &IP: - Dirección &IP del proxy: - - - - IP address of the proxy (e.g. 127.0.0.1) - Dirección IP del proxy (e.g. 127.0.0.1) - - - - &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 BitBean. - El idioma del interfaz de usuario se puede configurar aquí. Esta configuración se aplicará después de reiniciar BitBean. - - - - &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 bitcoins. - - - - Whether to show BitBean addresses in the transaction list or not. - Tanto para mostrar direcciones de BitBean en la lista de transacciones o no. - - - - &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 moneda y Coin Control (expertos solamente!) - - - - &OK - &Aceptar - - - - &Cancel - &Cancelar - - - - &Apply - &Aplicar - - - - default - predeterminado - - - - - Warning - Advertencia - - - - - This setting will take effect after restarting BitBean. - Esta configuración se aplicará después de reiniciar BitBean. - - - - The supplied proxy address is invalid. - La dirección proxy indicada es inválida. - - - - OverviewPage - - - Form - Desde - - - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - La información mostrada puede estar fuera de fecha. Su monedera se sincroniza automáticamente con la red BitBean después de que se establece una conexión, pero este proceso no se ha completado todavía. - - - - Stake: - Stake: - - - - Unconfirmed: - Sin confirmar: - - - - Wallet - Monedero - - - - Spendable: - Disponible: - - - - Your current spendable balance - Su actual balance disponible - - - - 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> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Total de transacciones que aún no se han confirmado, y aún no cuentan para el balance actual - - - - Total of coins that was staked, and do not yet count toward the current balance - Total de las monedas que fueron "Staked", y aún no cuentan para el balance actual - - - - - out of sync - desincronizado - - - - QRCodeDialog - - - QR Code Dialog - Código Diálogo QR - - - - Request Payment - Solicitar Pago - - - - Amount: - Cantidad: - - - - Label: - Etiqueta: - - - - Message: - Mensaje: - - - - &Save As... - &Guardar como.... - - - - Error encoding URI into QR Code. - Error codificando URI en código QR​​. - - - - The entered amount is invalid, please check. - La cantidad introducida es inválida, compruebe por favor. - - - - Resulting URI too long, try to reduce the text for label / message. - La URI es demasiado larga, pruebe a acortar el texto para la etiqueta / mensaje - - - - Save QR Code - Guardar código QR - - - - PNG Images (*.png) - Imagenes PNG (*.png) - - - - RPCConsole - - - Client name - Nombre del cliente - - - - - - - - - - - - - N/A - N/D - - - - Client version - Versión del cliente - - - - &Information - &Información - - - - Using OpenSSL version - Utilizando la versión OpenSSL - - - - Startup time - Hora de inicio - - - - Network - Red - - - - Number of connections - Número de conexiones - - - - On testnet - En testnet - - - - 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 - - - - Command-line options - Opciones de línea de comandos - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - Mostrar el mensaje de ayuda de BitBean-Qt para obtener una lista con las posibles opciones de línea de comandos para BitBean. - - - - &Show - &Mostrar - - - - &Console - &Consola - - - - Build date - Fecha de compilación - - - - BitBean - Debug window - BitBean - Ventana de depuración - - - - BitBean Core - Núcleo BitBean - - - - Debug log file - Archivo de registro de depuración - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - Abre el archivo de registro de BitBean del directorio de datos actual. Esto puede tardar algunos segundos para archivos grandes. - - - - Clear console - Borrar consola - - - - Welcome to the BitBean RPC console. - Bienvenido a la consola RPC de BitBean - - - - 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 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. - - - - SendCoinsDialog - - - - - - - - - - Send Coins - Enviar bitcoins - - - - Coin Control Features - Características de Coin Control - - - - Inputs... - Entradas... - - - - automatically selected - Seleccionado automáticamente - - - - Insufficient funds! - Fondos insuficientes! - - - - Quantity: - Cantidad: - - - - - 0 - 0 - - - - Bytes: - Bytes: - - - - Amount: - Cuantía: - - - - - - - 0.00 BC - 123.456 BC {0.00 ?} - - - - Priority: - Prioridad: - - - - medium - medio - - - - Fee: - Tasa: - - - - Low Output: - Envío pequeño: - - - - no - no - - - - After Fee: - Después de tasas: - - - - Change - Cambio - - - - custom change address - dirección de cambio personalizada - - - - Send to multiple recipients at once - Enviar a múltiples destinatarios de una vez - - - - Add &Recipient - Añadir &destinatario - - - - Remove all transaction fields - Elimina todos los campos de transacciones - - - - Clear &All - Vaciar &todo - - - - Balance: - Saldo: - - - - 123.456 BC - 123.456 BC - - - - Confirm the send action - Confirmar el envío - - - - S&end - &Enviar - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Introduce una dirección BitBean (p.ej. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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 - - - - <b>%1</b> to %2 (%3) - <b>%1</b> para %2 (%3) - - - - Confirm send coins - Confirmar el envío de bitcoins - - - - Are you sure you want to send %1? - Estás seguro que quieres enviar %1? - - - - and - y - - - - 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. - - - - Error: Transaction creation failed. - Error: Falla al crear la transacción. - - - - 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ón ha sido rechazada. Esto puede ocurrir si algunas de sus monedas en el monedero ya se gastaron, por ejemplo, si se usa una copia del wallet.dat y se gastaron las monedas de la copia pero no se han marcado como gastadas aquí. - - - - WARNING: Invalid BitBean address - ADVERTENCIA: Dirección BitBean inválida - - - - (no label) - (sin etiqueta) - - - - WARNING: unknown change address - ADVERTENCIA: dirección de cambio desconocida - - - - SendCoinsEntry - - - Form - Formulario - - - - A&mount: - Ca&ntidad: - - - - Pay &To: - &Pagar a: - - - - - 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: - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - La dirección a la que se quiere enviar el pago (p.ej. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Choose address from address book - Elije dirección de la libreta de direcciones - - - - Alt+A - Alt+A - - - - Paste address from clipboard - Pegar dirección desde portapapeles - - - - Alt+P - Alt+P - - - - Remove this recipient - Elimina este beneficiario - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Introduce una dirección BitBean (p.ej. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - La dirección a firmar con un mensaje (p.ej. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose an address from the address book - Elije una dirección de la libreta de direcciones - - - - - 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í - - - - Copy the current signature to the system clipboard - Copiar la firma actual al portapapeles del sistema - - - - Sign the message to prove you own this BitBean address - Firma el mensaje para demostrar que posees esta dirección BitBean. - - - - Reset all sign message fields - Vaciar todos los campos de la firma de mensaje - - - - - Clear &All - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - La dirección firmada con un mensaje (p.ej. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Verify the message to ensure it was signed with the specified BitBean address - Verifique el mensaje para asegurarse de que se firmó con la dirección BitBean especificada. - - - - Reset all verify message fields - Vaciar todos los campos de la verificación de mensaje - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Introduce una dirección BitBean (p.ej 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Click "Sign Message" to generate signature - Haga clic en "Firmar mensaje" para generar la firma - - - - Enter BitBean signature - Introduce la firma BitBean - - - - - 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. - - - - TransactionDesc - - - Open until %1 - Abierto hasta %1 - - - - Open for %n block(s) - Abierto para %n bloqueAbierto para %n bloques - - - - 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 - - - - Generated coins must mature 110 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 510 bloques antes de que puedan gastarse. Cuando generaste este bloque, este fue transmitido a la red para ser añadido a la cadena de bloques. Si falla al introducirse en la cadena, su estado cambiará a "no aceptado" y no se podrá gastar. Esto ocasionalmente puede ocurrir si otro nodo genera un bloque a unos segundos que el 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 - - - - unknown - desconocido - - - - 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 - - - - TransactionTableModel - - - Date - Fecha - - - - Type - Tipo - - - - Address - Dirección - - - - Amount - Cantidad - - - - Open until %1 - Abierto hasta %1 - - - - Confirmed (%1 confirmations) - Confirmado (%1 confirmaciones) - - - - Open for %n more block(s) - Abrir para %n bloque másAbrir para %n bloques más - - - - Offline - Sin conexión - - - - Unconfirmed - Sin confirmar - - - - Confirming (%1 of %2 recommended confirmations) - Confirmando (%1 de %2 confirmaciones recomendadas) - - - - Conflicted - En conflicto - - - - Immature (%1 confirmations, will be available after %2) - No vencidos (%1 confirmaciones. Estarán disponibles al cabo de %2) - - - - 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 - - - - 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. - - - - 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 Data - Exportar datos de transacción - - - - 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 - - - - Error exporting - Error al exportar - - - - Could not write to file %1. - No se puede escribir en el archivo %1. - - - - Range: - Rango: - - - - to - para - - - - WalletModel - - - Sending... - Enviando... - - - - bitcoin-core - - - BitBean version - versión BitBean - - - - Usage: - Uso: - - - - Send command to -server or BitBeand - Envía un comando a -server o BitBeand - - - - List commands - Muestra comandos - - - - - Get help for a command - Recibir ayuda para un comando - - - - - Options: - Opciones: - - - - - Specify configuration file (default: BitBean.conf) - Especifica un archivo de configuración (por defecto: BitBean.conf) - - - - Specify pid file (default: BitBeand.pid) - Especifica un archivo pid (por defecto: BitBeand.pid) - - - - Specify wallet file (within data directory) - Especificar archivo de monedero (dentro del directorio de datos) - - - - 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) - - - - Set database disk log size in megabytes (default: 100) - Ajusta el tamaño de la base de datos del registro en megabytes (por defecto: 100) - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - Escuchando conexiones en el puerto <port> (por defecto: 15714 o testnet: 25714) - - - - 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 - - - - Bind to given address. Use [host]:port notation for IPv6 - Enlazar a la dirección dada. Utilice la notación [host]:puerto para IPv6 - - - - Stake your coins to support network and gain reward (default: 1) - Pon tus monedas en participación "Stake" para dar soporte a la red y ganar alguna recompensa (por defecto: 1) - - - - 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 - - - - Detach block and address databases. Increases shutdown time (default: 0) - Separa el bloque y la base de datos de direcciones. Aumenta el tiempo de apagado (por defecto: 0) - - - - 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ón ha sido rechazada. Esto puede ocurrir si algunas de sus monedas en el monedero ya se gastaron, por ejemplo, si se usa una copia del wallet.dat y se gastaron las monedas de la copia pero no se han marcado 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 - Error: Esta transacción requiere de una comisión de transacción de al menos %s debido a su tamaño, complejidad, o uso de fondos recibidos recientemente. - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - Escuchar conexiones JSON-RPC en <port> (predeterminado: 15715 o testnet: 25715) - - - - Accept command line and JSON-RPC commands - Aceptar comandos consola y JSON-RPC - - - - - Error: Transaction creation failed - Error: Fallo al crear la transacción. - - - - Error: Wallet locked, unable to create transaction - Error: Monedero bloqueado, no es posible crear una transacción - - - - Importing blockchain data file. - Importando el archivo de datos de la cadena de bloques. - - - - Importing bootstrap blockchain data file. - Importando el archivo de datos de arranque de la cadena de bloques. - - - - 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) - - - - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - Error al inicializar el entorno de base de datos %s! Para recuperar, HAGA UNA COPIA DE SEGURIDAD DEL DIRECTORIO, a continuación, elimine todo de ella excepto el archivo wallet.dat. - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - Establecer el tamaño máximo de las transacciones alta-prioridad/baja-comisión en bytes (por defecto: 27000) - - - - 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 BitBean will not work properly. - Advertencia: Verifique que la fecha y hora del equipo sean correctas! Si su reloj es erróneo BitBean no funcionará correctamente. - - - - 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. - - - - Attempt to recover private keys from a corrupt wallet.dat - Intento de recuperar claves privadas de un wallet.dat corrupto - - - - Block creation options: - Opciones de creación de bloques: - - - - Connect only to the specified node(s) - Conectar sólo a los nodos (o nodo) especificados - - - - Discover own IP address (default: 1 when listening and no -externalip) - Descubrir dirección IP propia (predeterminado: 1 al escuchar sin -externalip) - - - - 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. - - - - Find peers using DNS lookup (default: 1) - Encontrar pares usando la búsqueda de DNS (por defecto: 1) - - - - Sync checkpoints policy (default: strict) - Política de puntos de control de sincronización (por defecto: estricta) - - - - Invalid -tor address: '%s' - Dirección -tor inválida: '%s' - - - - Invalid amount for -reservebalance=<amount> - Cantidad no válida para -reservebalance=<amount> - - - - 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) - Conectarse solo a nodos de la red <net> (IPv4, IPv6 o Tor) - - - - Output extra debugging information. Implies all other -debug* options - Salida de información de depuración extra. Implica todas las opciones -debug* de depuración - - - - Output extra network debugging information - Salida extra de información de depuración de red - - - - Prepend debug output with timestamp - Prefijar salida de depuración con marca de tiempo - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Opciones SSL: (ver la Bitcoin Wiki para instrucciones de configuración SSL) - - - - Select the version of socks proxy to use (4-5, default: 5) - Selecciona la versión de socks proxy a usar (4-5, por defecto: 5) - - - - 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 - - - - Send trace/debug info to debugger - Enviar información de rastreo / depurado al depurador - - - - Set maximum block size in bytes (default: 250000) - Establecer el tamaño máximo de bloque en bytes (por defecto: 250000) - - - - Set minimum block size in bytes (default: 0) - Establecer tamaño mínimo de bloque en bytes (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) - - - - Specify connection timeout in milliseconds (default: 5000) - Especificar el tiempo máximo de conexión en milisegundos (predeterminado: 5000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - No es posible firmar el punto de control, clave de punto de control incorrecta?%s - - - - Use UPnP to map the listening port (default: 0) - Usar UPnP para asignar el puerto de escucha (predeterminado: 0) - - - - Use UPnP to map the listening port (default: 1 when listening) - Usar UPnP para asignar el puerto de escucha (predeterminado: 1 al escuchar) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - Usar proxy para alcanzar a ver los servicios ocultos (por defecto: los mismos que -proxy) - - - - Username for JSON-RPC connections - Nombre de usuario para las conexiones JSON-RPC - - - - - Verifying database integrity... - Verificando la integridad de la base de datos... - - - - WARNING: syncronized checkpoint violation detected, but skipped! - ADVERTENCIA: violación de un punto de control sincronizado detectada, se saltara! - - - - Warning: Disk space is low! - Advertencia: Espacio en disco bajo! - - - - Warning: This version is obsolete, upgrade required! - Aviso: Esta versión es obsoleta, actualización necesaria! - - - - 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 - - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - %s, debe establecer un rpcpassword en el fichero de configuración: -%s -Se recomienda utilizar la siguiente contraseña aleatoria: -rpcuser=BitBeanrpc -rpcpassword=%s -(no necesita recordar este password) -El nombre de usuario y contraseña no debe ser el mismo. -Si no existe el archivo, créelo con permisos de sólo lectura para el dueño. -También se recomienda establecer alertnotify para ser notificado de los problemas; -por ejemplo: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - Find peers using internet relay chat (default: 0) - Encontrar pares usando IRC (por defecto:1) {0)?} - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - Sincronizar el tiempo con otros nodos. Desactivar si el tiempo en su sistema es preciso, por ejemplo si usa sincronización con NTP (por defecto: 1) - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - Al crear transacciones, ignorar las entradas con valor inferior a esta (por defecto: 0.01) - - - - 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) - - - - 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) - - - - Require a confirmations for change (default: 0) - Requerir confirmaciones para cambio (por defecto: 0) - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - Exigir a los scripts de transacción que usen los operadores PUSH canónicos (por defecto: 1) - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - Ejecutar comando cuando una alerta relevante sea recibida (%s en la linea de comandos es reemplazado por un mensaje) - - - - 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - Cuantos bloques para comprobar al inicio (por defecto: 2500, 0 = todos) - - - - How thorough the block verification is (0-6, default: 1) - Cómo de minuciosa es la verificación del bloque (0-6, por defecto: 1) - - - - Imports blocks from external blk000?.dat file - Importar bloques desde el archivo externo blk000?.dat - - - - 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) - - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Cifras aceptables: (por defecto: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - Error: Wallet unlocked for staking only, unable to create transaction. - Error: Monedero desbloqueado sólo para hacer "stake", no es posible crear una transacción. - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - ADVERTENCIA: Punto de control no válido encontrado! Las transacciones que se muestran pueden no ser correctas! Puede que tenga que actualizar o notificar a los desarrolladores. - - - - This help message - Este mensaje de ayuda - - - - - Wallet %s resides outside data directory %s. - El monedero %s reside fuera del directorio de datos %s. - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - No se puede obtener un bloqueo en el directorio de datos %s. BitBean probablemente ya esté en funcionamiento. - - - - BitBean - BitBean - - - - 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) - - - - Connect through socks proxy - Conecte a través del socks proxy - - - - Allow DNS lookups for -addnode, -seednode and -connect - Permitir búsquedas DNS para -addnode, -seednode y -connect - - - - Loading addresses... - Cargando direcciones... - - - - Error loading blkindex.dat - Error al cargar blkindex.dat - - - - Error loading wallet.dat: Wallet corrupted - Error al cargar wallet.dat: el monedero está dañado - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - Error cargando wallet.dat: El monedero requiere una nueva versión de BitBean - - - - Wallet needed to be rewritten: restart BitBean to complete - El monedero necesita ser reescrito: reinicie BitBean para completar - - - - 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' - - - - Error: could not start node - Error: no se pudo iniciar el nodo - - - - Sending... - Enviando... - - - - 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. BitBean is probably already running. - No se puede enlazar a %s en este equipo. BitBean probablemente ya esté en funcionamiento. - - - - Fee per KB to add to transactions you send - Comisión por KB a añadir a las transacciones que envía - - - - Invalid amount for -mininput=<amount>: '%s' - Cantidad no válida para -mininput=<amount>: '%s' - - - - Loading wallet... - Cargando monedero... - - - - Cannot downgrade wallet - No se puede rebajar el monedero - - - - Cannot initialize keypool - No se puede inicializar el keypool - - - - 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. - Tiene que establecer rpcpassword=<contraseña> en el fichero de configuración: ⏎ -%s ⏎ -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.qm b/src/qt/locale/bitcoin_es_MX.qm deleted file mode 100644 index 0102f69..0000000 Binary files a/src/qt/locale/bitcoin_es_MX.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_es_UY.qm b/src/qt/locale/bitcoin_es_UY.qm deleted file mode 100644 index e8d3e13..0000000 Binary files a/src/qt/locale/bitcoin_es_UY.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_et.qm b/src/qt/locale/bitcoin_et.qm deleted file mode 100644 index 736d43b..0000000 Binary files a/src/qt/locale/bitcoin_et.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_fi.qm b/src/qt/locale/bitcoin_fi.qm deleted file mode 100644 index 7cc2c41..0000000 Binary files a/src/qt/locale/bitcoin_fi.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_fi.ts b/src/qt/locale/bitcoin_fi.ts deleted file mode 100644 index 16761b4..0000000 --- a/src/qt/locale/bitcoin_fi.ts +++ /dev/null @@ -1,3310 +0,0 @@ - - - AboutDialog - - - About BitBean - Tietoa BTestcoinista - - - - <b>BitBean</b> version - <b>BitBean</b> versio - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - - - - - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - -Tämä on kokeellista ohjelmistoa. - -Levitetään MIT/X11 ohjelmistolisenssin alaisuudessa. Tarkemmat tiedot löytyvät tiedostosta COPYING tai osoitteesta http://www.opensource.org/licenses/mit-license.php. - -Tämä tuote sisältää OpenSSL-projektin kehittämää ohjelmistoa OpenSSL-työkalupakettia varten (http://www.openssl.org/), Eric Youngin (eay@cryptsoft.com) kehittämän salausohjelmiston sekä Thomas Bernardin UPnP-ohjelmiston. - - - - - AddressBookPage - - - Address Book - Osoitekirja - - - - Double-click to edit address or label - Kaksoisnapauta muokataksesi osoitetta tai nimikettä - - - - Create a new address - Luo uusi osoite - - - - Copy the currently selected address to the system clipboard - Kopioi valittu osoite järjestelmän leikepöydälle - - - - &New Address - &Uusi osoite - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - Nämä ovat BitBean-osoitteesi rahansiirtojen vastaanottoa varten. Jos haluat, voit antaa jokaiselle lähettäjälle oman osoitteen jotta voit pitää kirjaa sinulle rahaa siirtäneistä henkilöistä. - - - - &Copy Address - &Kopioi osoite - - - - Show &QR Code - Näytä &QR-koodi - - - - Sign a message to prove you own a BitBean address - Allekirjoita viesti osoittaaksesi BitBean-osoitteesi omistajuus - - - - Sign &Message - Allekirjoita &Viesti - - - - Delete the currently selected address from the list - Poista valittu osoite listalta - - - - Verify a message to ensure it was signed with a specified BitBean address - Vahvista viesti varmistaaksesi että kyseinen BitBean-osoitteesi on allekirjoittanut sen - - - - &Verify Message - &Varmista viesti - - - - &Delete - &Poista - - - - Copy &Label - Kopioi &nimi - - - - &Edit - &Muokkaa - - - - Export Address Book Data - Vie osoitekirjasta tietoja - - - - Comma separated file (*.csv) - Pilkuilla eroteltu tiedosto (*.csv) - - - - Error exporting - Virhe vietäessä - - - - Could not write to file %1. - Ei voida kirjoittaa tiedostoon %1. - - - - AddressTableModel - - - Label - Nimi - - - - Address - Osoite - - - - (no label) - (ei nimeä) - - - - AskPassphraseDialog - - - Passphrase Dialog - Tunnuslauseen Dialogi - - - - Enter passphrase - Syötä tunnuslause - - - - New passphrase - Uusi tunnuslause - - - - Repeat new passphrase - Toista uusi tunnuslause uudelleen - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - Sallii estettäväksi yksinkertaiset rahansiirrot kun käyttöjärjestelmän käyttäjätunnuksen turvallisuutta on rikottu. Tämä ei takaa oikeasti turvallisuutta. - - - - For staking only - Vain osakkuutta varten - - - - 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 merkkiä</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 lukituksestaan - - - - 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 COINS</b>! - Varoitus: Jos salaat lompakkosi ja hukkaat salasanasi, <b>MENETÄT KAIKKI KOLIKKOSI</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 tulisi korvata uusilla suojatuilla varmuuskopioilla. Turvallisuussyistä edelliset varmuuskopiot muuttuvat käyttökelvottomiksi, kun aloitat uuden salatun lompakon käytön. - - - - - Warning: The Caps Lock key is on! - Varoitus: Caps Lock-näppäin on käytössä! - - - - - Wallet encrypted - Lompakko salattu - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - BitBean-ohjelma sulkee itsensä päättääkseen salauksen luonnin. Muista, että lompakon salaaminen ei täysin turvaa kolikoitasi haittaohjelmien aiheuttamien varkauksien uhalta. - - - - - - - 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. - - - - BitcoinGUI - - - Sign &message... - Allekirjoita &viesti... - - - - Synchronizing with network... - Synkronoidaan verkon kanssa... - - - - &Overview - &Yleisnäkymä - - - - Show general overview of wallet - Lompakon tilanteen yleiskatsaus - - - - &Transactions - &Rahansiirrot - - - - Browse transaction history - Selaa rahansiirtohistoriaa - - - - &Address Book - %Osoitekirja - - - - Edit the list of stored addresses and labels - Muokkaa tallennettujen osoitteiden ja nimien listaa - - - - &Receive coins - &Vastaanota kolikoita - - - - Show the list of addresses for receiving payments - Näytä osoitelista vastaanottaaksesi maksuja - - - - &Send coins - &Lähetä kolikoita - - - - E&xit - L&opeta - - - - Quit application - Sulje ohjelma - - - - Show information about BitBean - Näytä tietoja BitBeanista - - - - About &Qt - Tietoja &Qt - - - - Show information about Qt - Näytä tietoja Qt:sta - - - - &Options... - &Asetukset... - - - - &Encrypt Wallet... - &Salaa lompakko... - - - - &Backup Wallet... - &Varmuuskopioi lompakko... - - - - &Change Passphrase... - &Vaihda tunnuslause... - - - - ~%n block(s) remaining - ~%n lohko jäljellä~%n lohkoa jäljellä - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Ladattu %1 lohkoa %2 lohkosta rahansiirtohistoriassa (%3% ladattu). - - - - &Export... - Vie... - - - - Send coins to a BitBean address - Lähetä kolikkoja BitBean osoitteeseen - - - - Modify configuration options for BitBean - Mukauta BitBeanin konfigurointiasetuksia - - - - Export the data in the current tab to a file - Vie data tämänhetkisestä välilehdestä tiedostoon - - - - Encrypt or decrypt wallet - Salaa tai pura salaus lompakosta - - - - 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... - &Vahvista viesti... - - - - BitBean - BitBean - - - - Wallet - Lompakko - - - - &About BitBean - &Tietoa BitBeanista - - - - &Show / Hide - &Näytä / Piilota - - - - Unlock wallet - Avaa Lompakko - - - - &Lock Wallet - &Lukitse Lompakko - - - - Lock wallet - Lukitse lompakko - - - - &File - &Tiedosto - - - - &Settings - &Asetukset - - - - &Help - &Apua - - - - Tabs toolbar - Välilehtipalkki - - - - Actions toolbar - Toimintopalkki - - - - - [testnet] - [testnet] - - - - - BitBean client - BitBean-asiakas - - - - %n active connection(s) to BitBean network - %n aktiivinen yhteys BitBean-verkkoon%n aktiivista yhteyttä BitBean-verkkoon - - - - Downloaded %1 blocks of transaction history. - Ladattu %1 lohkoa rahansiirtohistoriasta. - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - Osakkaana.<br>Osuutesi on %1<br>Verkon osuus on %2<br>Odotettu aika palkkion ansaitsemiselle on %3 - - - - Not staking because wallet is locked - Ei osakkaana koska lompakko on lukittu - - - - Not staking because wallet is offline - Ei osakkaana koska lompakko on offline-tilassa - - - - Not staking because wallet is syncing - Ei osakkaana koska lompakko synkronoituu - - - - Not staking because you don't have mature coins - Ei osakkaana koska sinulle ei ole erääntynyt kolikoita - - - - %n second(s) ago - %n sekunti sitten%n sekuntia sitten - - - - &Unlock Wallet... - &Aukaise lompakko - - - - %n minute(s) ago - %n minuutti sitten%n minuuttia sitten - - - - %n hour(s) ago - %n tunti sitten%n tuntia sitten - - - - %n day(s) ago - %n päivä sitten%n päivää sitten - - - - Up to date - Rahansiirtohistoria on ajan tasalla - - - - Catching up... - Saavutetaan verkkoa... - - - - Last received block was generated %1. - Viimeinen vastaanotettu lohko generoitu %1. - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Tämä rahansiirto ylittää siirtorajan. Voit silti lähettää sen %1 rahansiirtopalkkiota vastaan, joka siirretään rahansiirtoasi käsitteleville solmuille jotta se auttaisi ja tukisi verkkoa. Haluatko maksaa rahansiirtopalkkion? - - - - Confirm transaction fee - Hyväksy rahansiirtopalkkio - - - - Sent transaction - Lähetetyt rahansiirrot - - - - Incoming transaction - Saapuva rahansiirto - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Päivä: %1 -Määrä: %2 -Tyyppi: %3 -Osoite: %4 - - - - - URI handling - URI-merkkijonojen käsittely - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - URI-merkkijonoa ei voida jäsentää! Tämä voi johtua väärästä BitBean-osoitteesta tai väärässä muodossa olevista URI-parametreistä. - - - - 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> - - - - Backup Wallet - Varmuuskopioi lompakkosi - - - - Wallet Data (*.dat) - Lompakkodata (*.dat) - - - - Backup Failed - Varmuuskopion luonti epäonnistui - - - - There was an error trying to save the wallet data to the new location. - Virhe tallentaessa lompakkotiedostoa uuteen sijaintiinsa. - - - - %n second(s) - %n sekunti%n sekuntia - - - - %n minute(s) - %n minuutti%n minuuttia - - - - %n hour(s) - %n tunti%n tuntia - - - - %n day(s) - %n päivä%n päivää - - - - Not staking - Ei osakkaana - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - Vakava virhe kohdattu. BitBean-ohjelma ei voi enää jatkaa turvallisesti ja sulkee itsensä. - - - - ClientModel - - - Network Alert - Verkkohälytys - - - - CoinControlDialog - - - Coin Control - Rahan hallinta - - - - Quantity: - Määrä: - - - - Bytes: - Tavua: - - - - Amount: - Määrä: - - - - Priority: - Prioriteetti: - - - - Fee: - Kulu: - - - - Low Output: - Heikko ulosanti: - - - - no - ei - - - - After Fee: - Kulujen jälkeen: - - - - Change: - Vaihdos: - - - - (un)select all - (tai ei)Valitse kaikki - - - - Tree mode - Puunäkymä - - - - List mode - Listanäkymä - - - - Amount - Määrä - - - - Label - Nimike - - - - Address - Osoite - - - - Date - Päivämäärä - - - - Confirmations - Vahvistukset - - - - Confirmed - Vahvistettu - - - - Priority - Prioriteetti - - - - Copy address - Kopioi osoite - - - - Copy label - Kopioi nimi - - - - - Copy amount - Kopioi määrä - - - - Copy transaction ID - Kopioi siirtotunnus - - - - Copy quantity - Kopioi määrä - - - - Copy fee - Kopioi kulu - - - - Copy after fee - Kopioi kulun jälkeen - - - - Copy bytes - Kopioi tavuja - - - - Copy priority - Kopioi prioriteetti - - - - Copy low output - Kopioi heikko ulosanti - - - - Copy change - Kopioi vaihdos - - - - highest - korkein - - - - high - korkea - - - - medium-high - keskikorkea - - - - medium - keski - - - - low-medium - keskimatala - - - - low - matala - - - - lowest - matalin - - - - DUST - pölyä - - - - yes - kyllä - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - Tämä nimike muuttuu punaiseksi, jos rahansiirron koko on suurempi kuin 10000 tavua. - -Tämä tarkoittaa, että ainakin %1 rahansiirtopalkkio per kilotavu tarvitaan. - -Voi vaihdella välillä +/- 1 Tavu per syöte. - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - Suuremman prioriteetin rahansiirrot pääsevät suuremmalla todennäköisyydellä lohkoketjuun. - -Tämä nimike muuttuu punaiseksi, jos prioriteetti on pienempi kuin "keskikokoinen". - -Tämä tarkoittaa, että ainakin %1 rahansiirtopalkkio per kilotavu tarvitaan. - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - Tämä nimike muuttuu punaiseksi, jos jokin asiakas saa pienemmän määrän kuin %1. - -Tämä tarkoittaa, että ainakin %2 rahansiirtopalkkio tarvitaan. - -Määrät alle 0.546 kertaa pienimmän rahansiirtokulun verran näytetään pölynä. - - - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - Tämä nimike muuttuu punaiseksi, jos vaihdos on pienempi kuin %1. - -Tämä tarkoittaa, että ainakin %2 rahansiirtopalkkio tarvitaan. - - - - - (no label) - (ei nimeä) - - - - change from %1 (%2) - vaihdos %1 (%2) - - - - (change) - (vaihdos) - - - - EditAddressDialog - - - Edit Address - Muokkaa osoitetta - - - - &Label - &Nimi - - - - The label associated with this address book entry - Tämän syötteen nimike osoitekirjassa - - - - &Address - &Osoite - - - - The address associated with this address book entry. This can only be modified for sending addresses. - Tämän syötteen nimike osoitekirjassa. Nimikettä voidaan muuttaa vain lähetysosoitteille. - - - - 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 BitBean address. - Syöttämäsi osoite "%1" ei ole hyväksytty BitBean-osoite. - - - - Could not unlock wallet. - Lompakkoa ei voitu avata. - - - - New key generation failed. - Uuden avaimen luonti epäonnistui. - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - BitBean-Qt - - - - version - versio - - - - Usage: - Kulutus: - - - - command-line options - komentokehotteen asetukset - - - - UI options - Käyttäjärajapinnan asetukset - - - - Set language, for example "de_DE" (default: system locale) - Aseta kieli, esimerkiksi "fi_FI" (oletus: järjestelmän oma) - - - - Start minimized - Käynnistä pienennettynä - - - - Show splash screen on startup (default: 1) - Näytä logo käynnistettäessä (oletus: 1) - - - - OptionsDialog - - - Options - Asetukset - - - - &Main - &Yleiset - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - Vapaavalintainen rahansiirtopalkkio kilotavua kohden auttaa varmistamaan että rahansiirtosi käsitellään nopeasti. Suurin osa rahansiirroista on alle yhden kilotavun. Palkkiota 0.01 suositellaan. - - - - Pay transaction &fee - Maksa rahansiirtopalkkio - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - Varattu määrä ei vaadi osakkuutta jonka vuoksi se on mahdollista käyttää milloin tahansa. - - - - Reserve - Varattuna - - - - Automatically start BitBean after logging in to the system. - Käynnistä BitBean-asiakasohjelma automaattisesti kun olet kirjautunut järjestelmään. - - - - &Start BitBean on system login - %Käynnistä BitBean-asiakasohjelma kirjautuessasi - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - Irroita lohko- ja osoitetietokannat lopetettaessa. Tämä tarkoittaa, että tietokannat voidaan siirtää eri hakemistoon mutta se hidastaa ohjelman sammumista. Lompakko on aina irroitettuna. - - - - &Detach databases at shutdown - %Irroita tietokannat lopetettaessa - - - - &Network - &Verkko - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - Avaa BitBean-asiakkaalle automaattisesti portti reitittimestä. Tämä toimii vain, kun reitittimesi tukee UPnP:tä ja se on aktivoituna. - - - - Map port using &UPnP - Portin uudelleenohjaus &UPnP:llä - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - Yhdistä BitBean-verkkoon SOCKS-välityspalvelimen lävitse. (esim. yhdistettäessä Tor:n läpi). - - - - &Connect through SOCKS proxy: - %Yhdistä SOCKS-välityspalvelimen läpi: - - - - Proxy &IP: - Proxyn &IP: - - - - IP address of the proxy (e.g. 127.0.0.1) - Välityspalvelimen IP-osoite (esim. 127.0.0.1) - - - - &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ää Bitcoin-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 BitBean. - Käyttöliittymän kieli voidaan valita tästä. Tämä asetus tulee voimaan vasta BitBean-asiakasohjelman uudelleenkäynnistyksen jälkeen. - - - - &Unit to show amounts in: - 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 bitcoin-määrien näyttämiseen. - - - - Whether to show BitBean addresses in the transaction list or not. - Näytä tai piilota BitBean-osoitteet rahansiirtolistassa. - - - - &Display addresses in transaction list - &Näytä osoitteet rahansiirrot listassa - - - - Whether to show coin control features or not. - Näytä tai piilota rahanhallintaominaisuudet. - - - - Display coin &control features (experts only!) - Näytä rahan&hallinnan ominaisuudet (vain kokeneille käyttäjille!) - - - - &OK - &OK - - - - &Cancel - &Peruuta - - - - &Apply - %Käytä - - - - default - oletus - - - - - Warning - Varoitus - - - - - This setting will take effect after restarting BitBean. - Tämä asetus tulee voimaan vasta BitBean-asiakasohjelman uudelleenkäynnistyksen jälkeen. - - - - The supplied proxy address is invalid. - Antamasi proxy-osoite on virheellinen. - - - - OverviewPage - - - Form - Lomake - - - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - Näytettävät tiedot voivat olla vanhentuneet. Lompakkosi synkronoituu automaattisesti BitBean-verkon kanssa kun yhteys on muodostettu, mutta tätä prosessia ei ole viety vielä päätökseen. - - - - Stake: - Vaihdos: - - - - Unconfirmed: - Hyväksymätöntä: - - - - Wallet - Lompakko - - - - Spendable: - Käytettävissä: - - - - Your current spendable balance - Käytettävissä olevat varat: - - - - 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 Bitcoinien määrä - - - - <b>Recent transactions</b> - <b>Viimeisimmät rahansiirrot</b> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Kaikki vahvistamattomat rahansiirrot yhteensä, joita ei vielä lasketa saldoosi. - - - - Total of coins that was staked, and do not yet count toward the current balance - Kolikoiden kokoinaismäärä, jotka eivät vielä ole laskettu tämänhetkiseen saldoon. - - - - - out of sync - Ei ajan tasalla - - - - QRCodeDialog - - - QR Code Dialog - QR-koodidialogi - - - - Request Payment - Pyydä rahansiirtoa - - - - Amount: - Määrä: - - - - Label: - Nimike: - - - - Message: - Viesti: - - - - &Save As... - %Tallenna nimellä... - - - - Error encoding URI into QR Code. - Virhe koodatessa linkkiä QR-koodiin. - - - - The entered amount is invalid, please check. - Syötetty määrä on epäkelpoinen; tarkista. - - - - Resulting URI too long, try to reduce the text for label / message. - Tuloksena liian pitkä URI, yritä lyhentää nimikkeen tai viestin pituutta. - - - - Save QR Code - Tallenna QR-koodi - - - - PNG Images (*.png) - PNG-kuvat (*.png) - - - - RPCConsole - - - Client name - Pääteohjelman nimi - - - - - - - - - - - - - N/A - Ei saatavilla - - - - Client version - Pääteohjelman versio - - - - &Information - T&ietoa - - - - Using OpenSSL version - Käytössä oleva OpenSSL-versio - - - - Startup time - Käynnistysaika - - - - Network - Verkko - - - - Number of connections - Yhteyksien lukumäärä - - - - On testnet - Testiverkossa - - - - 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 - - - - Command-line options - Komentokehotteen ominaisuudet - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - Näytä BitBean-Qt:n avustusohje saadaksesi listan käytettävistä BitBeanin komentokehotteen määritteistä. - - - - &Show - %Näytä - - - - &Console - &Konsoli - - - - Build date - Kääntöpäiväys - - - - BitBean - Debug window - BitBean - Debug-ikkuna - - - - BitBean Core - BitBeanin ydin - - - - Debug log file - Debug lokitiedosto - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - Avaa BitBean-asiakasohjelman debug-lokitiedosto nykyisestä hakemistostaan. Tämä voi kestää muutaman sekunnin avattaessa suuria lokitiedostoja. - - - - Clear console - Tyhjennä konsoli - - - - Welcome to the BitBean RPC console. - Tervetuloa BitBeanin 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. - - - - SendCoinsDialog - - - - - - - - - - Send Coins - Lähetä Bitcoineja - - - - Coin Control Features - Kolikoidenhallinnan ominaisuudet - - - - Inputs... - Syötteet... - - - - automatically selected - automaattisesti valittu - - - - Insufficient funds! - Ei tarpeeksi varoja! - - - - Quantity: - Määrä: - - - - - 0 - 0 - - - - Bytes: - Tavua: - - - - Amount: - Määrä: - - - - - - - 0.00 BC - 123.456 BC {0.00 ?} - - - - Priority: - Prioriteetti: - - - - medium - keskikokoinen - - - - Fee: - Kulu: - - - - Low Output: - Heikko ulosanti: - - - - no - ei - - - - After Fee: - Kulujen jälkeen: - - - - Change - Vaihtoraha - - - - custom change address - erikseen määritetty vaihtorahaosoite - - - - Send to multiple recipients at once - Lähetä monelle vastaanottajalle - - - - Add &Recipient - Lisää &Vastaanottaja - - - - Remove all transaction fields - Tyhjennä kaikki rahansiirtokentät - - - - Clear &All - &Tyhjennnä Kaikki - - - - Balance: - Saldo: - - - - 123.456 BC - 123.456 BC - - - - Confirm the send action - Vahvista lähetys - - - - S&end - &Lähetä - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Syötä BitBean-osoite (esim. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Copy quantity - Kopioi määrä - - - - Copy amount - Kopioi määrä - - - - Copy fee - Kopioi rahansiirtokulu - - - - Copy after fee - Kopioi rahansiirtokulun jälkeen - - - - Copy bytes - Kopioi tavuja - - - - Copy priority - Kopioi prioriteetti - - - - Copy low output - Kopioi heikko ulosanti - - - - Copy change - Kopioi vaihtoraha - - - - <b>%1</b> to %2 (%3) - <b>%1</b>:sta %2 (%3) - - - - Confirm send coins - Hyväksy Bitcoinien lähettäminen - - - - Are you sure you want to send %1? - Oletko varma että haluat lähettää %1? - - - - and - ja - - - - 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 Bitcoinia. - - - - 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. - - - - Error: Transaction creation failed. - Virhe: Rahansiirron luonti epäonnistui. - - - - 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 evätty. Tämä voi tapahtua kun jotkut kolikot lompakossasi ovat jo käytetty, kuten myös tilanteessa jos käytit wallet.dat-tiedoston kopiota ja rahat olivat käytetty kopiossa, mutta eivät ole merkitty käytetyiksi tässä. - - - - WARNING: Invalid BitBean address - VAROITUS: Epäkelpo BitBean-osoite - - - - (no label) - (ei nimeä) - - - - WARNING: unknown change address - VAROITUS: Tuntematon vaihtorahaosoite - - - - SendCoinsEntry - - - Form - Kaavake - - - - A&mount: - M&äärä: - - - - Pay &To: - Maksun saaja: - - - - - 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: - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Osoite, johon maksu lähetetään (esim. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Choose address from address book - Valitse osoite osoitekirjasta - - - - Alt+A - Alt+A - - - - Paste address from clipboard - Liitä osoite leikepöydältä - - - - Alt+P - Alt+P - - - - Remove this recipient - Poista tämä vastaanottaja - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Syötä BitBean-osoite (esim. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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, ettet allekirjoita mitään epämääräistä, sillä phishing-hyökkääjät voivat yrittää huijata sinua allekirjoittamaan henkilöllisyytesi heidän hyväksi. Allekirjoita vain se, mihin olet sitoutunut. - - - - The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Osoite, jolle viesti kirjataan (esim. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose an address from the address book - Valitse osoite osoitekirjasta - - - - - 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 viesti, jonka haluat allekirjoittaa tähän - - - - Copy the current signature to the system clipboard - Kopioi tämänhetkinen allekirjoitus järjestelmän leikepöydälle - - - - Sign the message to prove you own this BitBean address - Allekirjoita viesti vahvistaaksesi, että omistat tämän BitBean-osoitteen - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Osoite, jolla viesti on allekirjoitettu (esim. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Verify the message to ensure it was signed with the specified BitBean address - Vahvista viesti varmistaaksesi että se on allekirjoitettu kyseisellä BitBean-osoitteella - - - - Reset all verify message fields - Tyhjennä kaikki varmista-viesti-kentät - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Syötä BitBean-osoite (esim. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Click "Sign Message" to generate signature - Klikkaa "Allekirjoita Viesti luodaksesi allekirjoituksen - - - - Enter BitBean signature - Syötä BitBean-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. - - - - TransactionDesc - - - Open until %1 - Avoinna %1 asti - - - - Open for %n block(s) - Avoinna %n:lle lohkolleAvoinna %n lohkolle - - - - conflicted - törmännyt - - - - %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 - - - - Generated coins must mature 110 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. - Luotujen kolikoiden on eräännyttävä 510 lohkon ajan ennenkuin niitä voidaan käyttää. Kun loit tämän lohkon, se oli lähetetty verkkoon lohkoketjuun lisättäväksi. Jos lohkon siirtyminen ketjuun epäonnistuu, tilaksi muuttuu "ei hyväksytty" ja sillon sitä ei voida käyttää. Tämä voi tapahtua joskus jos toinen verkon noodi luo lohkon muutaman sekunnin sisällä luodusta lohkostasi. - - - - 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 - - - - unknown - tuntematon - - - - TransactionDescDialog - - - Transaction details - Rahansiirron yksityiskohdat - - - - This pane shows a detailed description of the transaction - Tämä ruutu näyttää yksityiskohtaisen tiedon rahansiirrosta - - - - TransactionTableModel - - - Date - Päivämäärä - - - - Type - Laatu - - - - Address - Osoite - - - - Amount - Määrä - - - - Open until %1 - Avoinna %1 asti - - - - Confirmed (%1 confirmations) - Vahvistettu (%1 vahvistusta) - - - - Open for %n more block(s) - Avoinna %n lohkolleAvoinna %n lohkolle - - - - Offline - Offline-tila - - - - Unconfirmed - Vahvistamaton - - - - Confirming (%1 of %2 recommended confirmations) - Vahvistetaan (%1 %2:sta suositellusta vahvistuksesta) - - - - Conflicted - Törmännyt - - - - Immature (%1 confirmations, will be available after %2) - Ei vahvistettu (%1 vahvistusta, on saatavilla %2:n jälkeen) - - - - 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 - - - - 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 Bitcoin-osoite - - - - Amount removed from or added to balance. - Saldoon lisätty tai siitä vähennetty määrä. - - - - 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 rahansiirron ID - - - - Edit label - Muokkaa nimeä - - - - Show transaction details - Näytä rahansiirron yksityiskohdat - - - - Export Transaction Data - Vie tiedot rahansiirrosta - - - - Comma separated file (*.csv) - Comma separated file (*.csv) - - - - Confirmed - Vahvistettu - - - - Date - Aika - - - - Type - Laatu - - - - Label - Nimi - - - - Address - Osoite - - - - Amount - Määrä - - - - ID - ID - - - - Error exporting - Virhe vietäessä - - - - Could not write to file %1. - Ei voida kirjoittaa tiedostoon %1. - - - - Range: - Alue: - - - - to - kenelle - - - - WalletModel - - - Sending... - Lähetetään... - - - - bitcoin-core - - - BitBean version - BitBeanin versio - - - - Usage: - Käyttö: - - - - Send command to -server or BitBeand - Syötä komento kohteeseen -server tai BitBeand - - - - List commands - Lista komennoista - - - - Get help for a command - Hanki apua käskyyn - - - - Options: - Asetukset: - - - - Specify configuration file (default: BitBean.conf) - Määritä asetustiedosto (oletus: BitBean.conf) - - - - Specify pid file (default: BitBeand.pid) - Määritä prosessitiedosto (oletus: BitBean.pid) - - - - Specify wallet file (within data directory) - Määritä lompakkotiedosto (datahakemiston sisällä) - - - - Specify data directory - Määritä data-hakemisto - - - - Set database cache size in megabytes (default: 25) - Aseta tietokannan välimuistin koko megatavuina (oletus: 25) - - - - Set database disk log size in megabytes (default: 100) - Aseta tietokannan lokien maksimikoko megatavuissa (oletus: 100) - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - Kuuntele yhteyksiä portissa <port> (oletus: 15714 tai testiverkko: 25714) - - - - 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 - - - - Bind to given address. Use [host]:port notation for IPv6 - Liitä annettuun osoitteeseen. Käytä [host]:port merkintää IPv6:lle - - - - Stake your coins to support network and gain reward (default: 1) - Panosta rahasi tukeaksi verkkoa ja saadaksesi palkkiota (oletus: 1) - - - - 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 - - - - Detach block and address databases. Increases shutdown time (default: 0) - Irroita lohko- ja osoitetietokannat lopetuksessa. Nostaa ohjelman lopetusaikaa (oletus: 0) - - - - 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 on evätty. Tämä voi tapahtua jos joitakin kolikoistasi lompakossasi on jo käytetty, tai jos olet käyttänyt wallet.dat-tiedoston kopiota ja rahat olivat käytetyt kopiossa, mutta ei merkitty käytetyksi tässä. - - - - 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 tarvitsee rahansiirtopalkkion, kooltaan %s, kokonsa, monimutkaisuutensa tai aikaisemmin saatujen varojen käytön takia. - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - Kuuntele JSON-RPC-yhteyksiä portissa <port> (oletus: 15715 tai testiverkko: 25715) - - - - Accept command line and JSON-RPC commands - Hyväksy merkkipohjaiset- ja JSON-RPC-käskyt - - - - Error: Transaction creation failed - Virhe: Rahansiirron luonti epäonnistui - - - - Error: Wallet locked, unable to create transaction - Virhe: Lompakko lukittu, rahansiirtoa ei voida luoda - - - - Importing blockchain data file. - Tuodaan lohkoketjun datatiedostoa. - - - - Importing bootstrap blockchain data file. - Tuodaan esilatausohjelma lohkoketjun datatiedostolle. - - - - 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) - - - - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - Virhe alustettaessa tietokantaympäristöä %s! Palauttaaksesi sen, TEE VARMUUSKOPIO HAKEMISTOSTA ja poista tämän jälkeen kaikki hakemiston tiedostot paitsi wallet.dat-tiedosto. - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - Aseta maksimikoko korkean prioriteetin/pienen siirtokulun maksutapahtumille tavuina (oletus: 27000) - - - - 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 BitBean will not work properly. - Varoitus: Tarkista, että tietokoneesi aika ja päivämäärä ovat oikeassa! Jos kellosi on väärässä, BitBean ei toimi oikein. - - - - 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-tiedostoa! Kaikki avaimet luettiin oikein, mutta rahansiirtodata tai osoitekirjan kentät voivat olla puuttuvat tai väärät. - - - - 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-tiedosto on korruptoitunut, data pelastettu! Alkuperäinen wallet.dat on tallennettu nimellä wallet.{aikaleima}.bak kohteeseen %s; Jos saldosi tai rahansiirrot ovat väärät, sinun tulee palauttaa lompakko varmuuskopiosta. - - - - Attempt to recover private keys from a corrupt wallet.dat - Yritetään palauttaa yksityisiä salausavaimia korruptoituneesta wallet.dat-tiedostosta - - - - Block creation options: - Lohkon luonnin asetukset: - - - - Connect only to the specified node(s) - Yhidstä ainoastaan määrättyihin noodeihin - - - - Discover own IP address (default: 1 when listening and no -externalip) - Hae oma IP osoite (vakioasetus: 1 kun kuuntelemassa ja ei -externalip) - - - - 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ä. - - - - Find peers using DNS lookup (default: 1) - Etsi vertaisiasi käyttäen DNS-nimihakua (oletus: 1) - - - - Sync checkpoints policy (default: strict) - Synkronoi tallennuspisteiden käytännöt (oletus: strict) - - - - Invalid -tor address: '%s' - Epäkelpo -tor-osoite: '%s' - - - - Invalid amount for -reservebalance=<amount> - Epäkelpo määrä -reservebalance=<amount> - - - - 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) - Yhdistä vain noodeihin verkossa <net> (IPv4, IPv6 tai Tor) - - - - Output extra debugging information. Implies all other -debug* options - Tulosta lisäksi debug-tietoa, seuraa kaikkia muita -debug*-asetuksia - - - - Output extra network debugging information - Tulosta lisäksi verkon debug-tietoa - - - - Prepend debug output with timestamp - Lisää debug-tulosteiden alkuun aikaleimat - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL asetukset (katso Bitcoin Wikistä tarkemmat SSL ohjeet) - - - - Select the version of socks proxy to use (4-5, default: 5) - Valitse SOCKS-välityspalvelimen versio (4-5, oletus 5) - - - - Send trace/debug info to console instead of debug.log file - Lähetä jäljitys/debug-tieto konsoliin, debug.log-tiedoston sijaan - - - - Send trace/debug info to debugger - Lähetä debug-tuloste kehittäjille - - - - Set maximum block size in bytes (default: 250000) - Aseta lohkon maksimikoko tavuissa (oletus: 250000) - - - - Set minimum block size in bytes (default: 0) - Asetan pienin lohkon koko tavuissa (vakioasetus: 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) - - - - Specify connection timeout in milliseconds (default: 5000) - Määritä yhteyden aikakataisu millisekunneissa (vakioasetus: 5000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - Ei voitu kirjata tallennuspistettä, väärä checkpointkey? - - - - - 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - Käytä välityspalvelinta saavuttaaksesi tor:n piilotetut palvelut (oletus: sama kuin -proxy) - - - - Username for JSON-RPC connections - Käyttäjätunnus JSON-RPC-yhteyksille - - - - Verifying database integrity... - Tarkistetaan tietokannan eheyttä... - - - - WARNING: syncronized checkpoint violation detected, but skipped! - VAROITUS: synkronoidun tallennuspisteen rikkomista havaittu, mutta ohitettu! - - - - Warning: Disk space is low! - Varoitus: Kiintolevytila on vähissä! - - - - Warning: This version is obsolete, upgrade required! - Varoitus: Tämä versio on vanhentunut, päivitys tarpeen! - - - - wallet.dat corrupt, salvage failed - wallet.dat on korruptoitunut, pelastusyritys epäonnistui - - - - Password for JSON-RPC connections - Salasana JSON-RPC-yhteyksille - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - %s, sinun on asetettava rpcpassword asetustiedostoon: -%s -On suositeltavaa, että käytät seuraavaa arvottua salasanaa: -rpcuser=BitBeanrpc -rpcpassword=%s -(Sinun ei tarvitse muistaa tätä salasanaa) -Käyttäjänimen ja salasanan EI TULE OLLA SAMOJA. -Jos tiedostoa ei ole olemassa, luo se asettaen samalla omistajan lukuoikeudet. -On myös suositeltavaa asettaa alertnotify jolloin olet tiedotettu ongelmista; esimerkiksi: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - Find peers using internet relay chat (default: 0) - Etsi vertaisiasi käyttäen Internet Relay Chatia (oletus: 1) {0)?} - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - Synkronoi kello muiden noodien kanssa. Poista käytöstä, jos järjestelmäsi aika on tarkka esim. päivittää itsensä NTP-palvelimelta. (oletus: 1) - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - Rahansiirtoja luodessa jätä huomioimatta syötteet joiden arvo on vähemmän kuin tämä (oletus: 0.01) - - - - 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) - - - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Suorita komento kun lompakon rahansiirrossa muutoksia (%s komennossa on korvattu TxID:llä) - - - - Require a confirmations for change (default: 0) - Vaadi vaihtorahalle vahvistus (oletus: 0) - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - Vahvista, että rahansiirtoskriptit käyttävät sääntöjen mukaisia PUSH-toimijoita (oletus: 1) - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - Suorita komento kun olennainen varoitus on saatu (%s komennossa korvattu viestillä) - - - - 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - Kuinka monta lohkoa tarkistetaan käynnistyksen yhteydessä (oletus: 2500, 0 = kaikki) - - - - How thorough the block verification is (0-6, default: 1) - Kuinka perusteellisesti lohko vahvistetaan (0-6, oletus: 1) - - - - Imports blocks from external blk000?.dat file - Tuo lohkoja erillisestä blk000?.dat-tiedostosta - - - - 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Hyväksytyt salaustyypit (oletus: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - Error: Wallet unlocked for staking only, unable to create transaction. - Virhe: Lompakko avattu vain osakkuutta varten, rahansiirtoja ei voida luoda. - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - VAROITUS: Epäkelpo tarkistuspiste löydetty! Ilmoitetut rahansiirrot eivät välttämättä pidä paikkaansa! Sinun täytyy päivittää asiakasohjelma, tai ilmoittaa kehittäjille ongelmasta. - - - - This help message - Tämä ohjeviesti - - - - Wallet %s resides outside data directory %s. - Lompakko %s on datahakemiston %s ulkopuolella. - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - Ei voida saavuttaa lukkoa datatiedostossa %s. BitBean-asiakasohjelma on ehkä jo käynnissä. - - - - BitBean - BitBean - - - - 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) - - - - Connect through socks proxy - Yhdistä SOCKS-välityspalvelimen lävitse - - - - Allow DNS lookups for -addnode, -seednode and -connect - Salli DNS kyselyt -addnode, -seednode ja -connect yhteydessä - - - - Loading addresses... - Ladataan osoitteita... - - - - Error loading blkindex.dat - Virhe ladattaessa blkindex.dat-tiedostoa - - - - Error loading wallet.dat: Wallet corrupted - Virhe ladattaessa wallet.dat-tiedostoa: Lompakko vioittunut - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - Virhe ladattaessa wallet.dat-tiedostoa: Lompakko tarvitsee uudemman version BitBean-asiakasohjelmasta - - - - Wallet needed to be rewritten: restart BitBean to complete - Lompakko on kirjoitettava uudelleen: käynnistä BitBean-asiakasohjelma uudelleen päättääksesi toiminnon - - - - 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 - - - - Error: could not start node - Virhe: Ei voitu käynnistää noodia - - - - Sending... - Lähetetään... - - - - 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. BitBean is probably already running. - Ei voitu liittää %s tällä tietokoneella. BitBean-asiakasohjelma on jo ehkä päällä. - - - - Fee per KB to add to transactions you send - Rahansiirtopalkkio kilotavua kohden lähetettäviin rahansiirtoihisi - - - - Invalid amount for -mininput=<amount>: '%s' - Epäkelpo määrä parametrille -mininput=<amount>: '%s' - - - - Loading wallet... - Ladataan lompakkoa... - - - - Cannot downgrade wallet - Et voi päivittää lompakkoasi vanhempaan versioon - - - - Cannot initialize keypool - Ei voida alustaa avainallasta - - - - 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. - Sinun täytyy asettaa rpcpassword=<password> asetustiedostoon: -%s -Jos tiedostoa ei ole, niin luo se ainoastaan omistajan kirjoitusoikeuksin. - - - \ No newline at end of file diff --git a/src/qt/locale/bitcoin_fr.qm b/src/qt/locale/bitcoin_fr.qm deleted file mode 100644 index 89eaede..0000000 Binary files a/src/qt/locale/bitcoin_fr.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_fr.ts b/src/qt/locale/bitcoin_fr.ts deleted file mode 100644 index 7cbfbc9..0000000 --- a/src/qt/locale/bitcoin_fr.ts +++ /dev/null @@ -1,3313 +0,0 @@ - - - AboutDialog - - - About BitBean - Au sujet de BitBean - - - - <b>BitBean</b> version - Version de <b>BitBean</b> - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - Copyright © 2009-2014 Les développeurs Bitcoin -Copyright © 2012-2014 Les développeurs NovaCoin -Copyright © 2014 Les développeurs BitBean - - - - -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. - - Ce logiciel est expérimental. - - Distribué sous licence logicielle MIT/X11, voir le fichier COPYING joint ou http://www.opensource.org/licenses/mit-license.php. - - 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. - - - - AddressBookPage - - - Address Book - Répertoire d'adresses - - - - 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 - - - - Copy the currently selected address to the system clipboard - Copier l'adresse sélectionnée vers le presse-papier système - - - - &New Address - &Nouvelle adresse - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - Ce sont vos adresses pour recevoir vos paiements. Vous pouvez utiliser une adresse différente pour chaque réception afin d'identifier facilement le payeur. - - - - &Copy Address - &Copier l'adresse - - - - Show &QR Code - Montrer le &QR Code - - - - Sign a message to prove you own a BitBean address - Signer un message afin de valider l'identité de votre adresse BitBean - - - - Sign &Message - Signer le &message - - - - Delete the currently selected address from the list - Effacer l'adresse actuellement sélectionnée de la liste - - - - Verify a message to ensure it was signed with a specified BitBean address - Vérifier un message pour s'assurer qu'il vient d'un adresse BitBean spécifique. - - - - &Verify Message - &Vérifier un message - - - - &Delete - &Supprimer - - - - Copy &Label - Copier l'&Étiquette - - - - &Edit - &Modifier - - - - Export Address Book Data - Exporter votre répertoire d'adresses - - - - Comma separated file (*.csv) - Fichier de valeurs séparées par des virgules (*.csv) - - - - Error exporting - Erreur lors de l'export - - - - Could not write to file %1. - Impossible d'écrire dans le fichier %1. - - - - AddressTableModel - - - Label - Étiquette - - - - Address - Adresse - - - - (no label) - (aucune étiquette) - - - - 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 - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - Sert à désactiver les transactions sortantes si votre compte de système d'exploitation est compromis. Ne procure pas de réelle sécurité. - - - - For staking only - Pour "staking" seulement - - - - 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 COINS</b>! - Avertissement : Si vous chiffrez votre portefeuille et perdez votre passphrase, vous ne pourrez <b>plus accéder à vos BitBeans</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 lors 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é - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - L'application BitBean va désormais se terminer afin de finaliser le processus de chiffrage. Merci de noter que le chiffrage du portefeuille ne garantit pas de se prémunir du vol via utilisation de malware, qui auraient pu infecter 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 est 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. - - - - BitcoinGUI - - - Sign &message... - Signer le &message... - - - - Synchronizing with network... - Synchronisation avec le réseau en cours… - - - - &Overview - &Vue d'ensemble - - - - Show general overview of wallet - Afficher une vue d’ensemble du portefeuille - - - - &Transactions - &Transactions - - - - Browse transaction history - Parcourir l'historique des transactions - - - - &Address Book - Carnet d'adresses - - - - Edit the list of stored addresses and labels - Éditer la liste d'adresses et étiquettes - - - - &Receive coins - &Recevoir des monnaies - - - - Show the list of addresses for receiving payments - Montrer la liste d'adresses de réception de paiements - - - - &Send coins - &Envoyer des monnaies - - - - E&xit - Q&uitter - - - - Quit application - Quitter l’application - - - - Show information about BitBean - Afficher des informations au sujet de BitBean - - - - About &Qt - À propos de &Qt - - - - Show information about Qt - Afficher les informations au sujet de Qt - - - - &Options... - &Options… - - - - &Encrypt Wallet... - &Chiffrer le portefeuille... - - - - &Backup Wallet... - Sauvegarder le &portefeuille... - - - - &Change Passphrase... - &Changer la phrase de passe... - - - - ~%n block(s) remaining - ~%n blocks restants~%n blocs restants - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Téléchargement des blocks de l'historique des transactions : 1% sur 2% (%3% effectués). - - - - &Export... - &Exporter... - - - - Send coins to a BitBean address - Envoyer des monnaies vers une adresse BitBean - - - - Modify configuration options for BitBean - Modification des options de configuration de BitBean - - - - Export the data in the current tab to a file - Export des données de l'onglet courant vers un fichier - - - - Encrypt or decrypt wallet - Chiffrer ou déchiffrer le portefeuille - - - - 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 la console de débogage et de diagnostic - - - - &Verify message... - &Vérifier un message... - - - - BitBean - BitBean - - - - Wallet - Portefeuille - - - - &About BitBean - &Au sujet de BitBean - - - - &Show / Hide - &Montrer / Masquer - - - - Unlock wallet - Déverrouiller le portefeuille - - - - &Lock Wallet - &Verrouiller le portefeuille - - - - Lock wallet - Verrouiller le portefeuille - - - - &File - &Fichier - - - - &Settings - &Paramètres - - - - &Help - &Aide - - - - Tabs toolbar - Barre d'onglets - - - - Actions toolbar - Barre d'actions - - - - - [testnet] - [testnet] - - - - - BitBean client - Client BitBean - - - - %n active connection(s) to BitBean network - %n connexion active au réseau BitBean%n connexions actives au réseau BitBean - - - - Downloaded %1 blocks of transaction history. - Téléchargement de blocs de l'historique de transactions : 1% blocks - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - Staking.<br>Votre poids est de %1<br>Le poids du réseau est de %2<br>Temps estimé avant récompense %3 - - - - Not staking because wallet is locked - Pas de staking car votre portefeuille est verouillé - - - - Not staking because wallet is offline - Pas de staking car votre portefeuille est hors ligne - - - - Not staking because wallet is syncing - Pas de staking car votre portefeuille est en cours de synchronisation - - - - Not staking because you don't have mature coins - Pas de staking car vos monnaies ne sont pas encore matures - - - - %n second(s) ago - il y a %n secondeil y a %n secondes - - - - &Unlock Wallet... - &Déverrouiller le portefeuille... - - - - %n minute(s) ago - il y a %n minuteil y a %n minutes - - - - %n hour(s) ago - il y a %n heureil y a %n heures - - - - %n day(s) ago - il y a %n jouril y a %n jours - - - - Up to date - À jour - - - - Catching up... - Rattrapage en cours… - - - - Last received block was generated %1. - Le dernier block reçu à été généré %1. - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Cette transaction dépasse la limite autorisée. Vous pouvez tout de même effectuer cette opération, moyennant %1 de frais, qui seront envoyés aux noeuds qui valideront cette transaction, et dont l'objectif vise à supporter le réseau. Souhaitez-vous payer ces frais ? - - - - Confirm transaction fee - Confirmer le paiement des frais de transaction - - - - Sent transaction - Transaction envoyée - - - - Incoming transaction - Transaction entrante - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Date : %1 -Montant : %2 -Type : %3 -Adresse : %4 - - - - - - URI handling - Prise en charge de l'URL - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - L'adresse du portefeuille BitBean n'as pas pu être correctement identifiée, car invalide ou malformée. - - - - 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> - - - - Backup Wallet - Sauvegarder le portefeuille - - - - Wallet Data (*.dat) - Données liées au portefeuille (*.dat) - - - - Backup Failed - Echec de la sauvegarde - - - - There was an error trying to save the wallet data to the new location. - Une erreur a été rencontrée lors de la sauvegarde du portefeuille vers la nouvelle destination. - - - - %n second(s) - %n seconde%n secondes - - - - %n minute(s) - %n minute%n minutes - - - - %n hour(s) - %n heure%n heures - - - - %n day(s) - %n jour%n jours - - - - Not staking - Pas de staking - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - Une erreur fatale a été rencontrée. L'application BitBean ne peut plus être s'exécuter de façon correcte et va se terminer. - - - - ClientModel - - - Network Alert - Alerte réseau - - - - CoinControlDialog - - - Coin Control - Fonctions de contrôle des monnaies - - - - Quantity: - Quantité : - - - - Bytes: - Octets : - - - - Amount: - Montant : - - - - Priority: - Priorité : - - - - Fee: - Frais : - - - - Low Output: - Sortie faible: - - - - no - non - - - - 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 - - - - Label - Étiquette - - - - 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 - - - - 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 - - - - high - élevée - - - - medium-high - moyennement-élevée - - - - medium - moyenne - - - - low-medium - moyennement-basse - - - - low - basse - - - - lowest - la plus basse - - - - DUST - DUST - - - - yes - oui - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - Cette étiquette passe au rouge, si la taille de la transaction est supérieure à 10000 bytes. - -Cela implique que des frais à hauteur d'au moins %1 par kb seront nécessaires. - -Ceux-ci Peuvent varier de +/- 1 Byte par entrée. - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - Les transactions avec une priorité haute ont plus de chances d'être traitées en un block. - -L'étiquette passe au rouge si votre priorité est plus basse que la "moyenne". - -Cela implique que des frais d'un minimum de %1 par kb sont requis - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - Cette étiquette passe au rouge, Lorsqu'un destinataire reçoit un montant inférieur à %1. - -Cela implique que des frais à hauteur de %2 seront nécessaire - -Les montants inférieurs à 0.546 fois les frais minimum de relais apparaissent en tant que DUST. - - - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - Cette étiquette passe au rouge, lorsque la différence est inférieure à %1. - -Cela implique que des frais à hauteur d'au moins %2 seront nécessaires. - - - - - (no label) - (aucune étiquette) - - - - change from %1 (%2) - monnaie de %1 (%2) - - - - (change) - (monnaie) - - - - EditAddressDialog - - - Edit Address - Modifier l'adresse - - - - &Label - &Étiquette - - - - The label associated with this address book entry - L'étiquette associée à cette entrée du carnet d'adresse - - - - &Address - &Adresse - - - - The address associated with this address book entry. This can only be modified for sending addresses. - L'adresse associée à cette entrée du carnet d'adresse. Seules les adresses d'envoi peuvent être modifiées. - - - - 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 BitBean address. - L'adresse "%1" renseignée n'est pas une adresse BitBean valide. - - - - Could not unlock wallet. - Impossible de déverrouiller le portefeuille. - - - - New key generation failed. - Échec de génération de la nouvelle clef. - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - BitBean-Qt - - - - version - version - - - - Usage: - Utilisation: - - - - command-line options - Options de ligne de commande - - - - UI options - Options graphiques - - - - Set language, for example "de_DE" (default: system locale) - Définir la langue, par exemple « fr_FR » (par défaut: la langue du système) - - - - Start minimized - Démarrer en mode réduit - - - - Show splash screen on startup (default: 1) - Affichage de l'écran de démarrage (par défaut: 1) - - - - 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. Fee 5.00 recommended. - Frais de transaction optionnels par kB permettant d'assurer la rapidité de traitement de votre transaction. La plupart des transactions sont de 1 kB. Frais de 0.01 recommandés. - - - - Pay transaction &fee - Payer des &frais de transaction - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - Montants réservés ne participant pas au "staking" pouvant être utilisés pour dépensés à tout moment. - - - - Reserve - Réserve - - - - Automatically start BitBean after logging in to the system. - Démarrage automatique du client BitBean lors de la connexion au système - - - - &Start BitBean on system login - &Démarrage du client BitBean à la connexion au système - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - Détacher la base des blocs et adresses à la fermeture. Vous pourrez les utiliser dans un autre dossier mais cela ralentit la fermeture. Le portefeuille est lui toujours détaché. - - - - &Detach databases at shutdown - &Détacher la base de données lors de la fermeture du logiciel - - - - &Network - &Réseau - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - Ouvrir automatiquemwnr le port client de BitBean sur le routeur. Ceci ne fonctionne que dans le cas où le support UPnP sur votre routeur existe et est actif. - - - - Map port using &UPnP - Mapper le port avec l'&UPnP - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - Connexion au réseau BitBean à travers un proxy SOCKS (e.g. Connexion via le réseau Tor). - - - - &Connect through SOCKS proxy: - &Connexion à travers du proxy SOCKS: - - - - Proxy &IP: - &IP du serveur Proxy mandataire : - - - - IP address of the proxy (e.g. 127.0.0.1) - Addresse IP du proxy (e.g. 127.0.0.1) - - - - &Port: - &Port: - - - - Port of the proxy (e.g. 9050) - Port du serveur Proxy 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 BitBean. - La langue d'interface de l'utilisateur peut être définie ici. Les modification seront prises en compte après redémarrage de l'application BitBean - - - - &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 BitBean addresses in the transaction list or not. - Afficher les adresses BitBean au sein de la liste de 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 options de monnaie & contrôle (mode expert) - - - - &OK - &OK - - - - &Cancel - &Annuler - - - - &Apply - &Appliquer - - - - default - par défaut - - - - - Warning - Avertissement - - - - - This setting will take effect after restarting BitBean. - Les paramètres prendront effet après redémarrage du client BitBean - - - - The supplied proxy address is invalid. - L'adresse de serveur mandataire -proxy- fournie est invalide. - - - - OverviewPage - - - Form - Formulaire - - - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - Les informations affichées peuvent être obsolètes. Votre portefeuille se synchronise automatiquement avec le réseau BitBean mais ce processus n'est pas encore terminé. - - - - Stake: - Stake: - - - - Unconfirmed: - Non confirmé: - - - - Wallet - Portefeuille - - - - Spendable: - Disponible pour dépense: - - - - Your current spendable balance - Votre solde actuel pouvant être dépensé - - - - Immature: - Immature: - - - - Mined balance that has not yet matured - Le solde généré n'est pas encore mature - - - - Total: - Total: - - - - Your current total balance - Votre solde total actuel - - - - <b>Recent transactions</b> - <b>Transactions récentes</b> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Montant total des transactions nécessitant confirmation, et ne figurant pas encore dans le solde actuel - - - - Total of coins that was staked, and do not yet count toward the current balance - Montant total des transactions en "staking" et ne figurant pas encore dans le solde actuel - - - - - out of sync - désynchronisé - - - - QRCodeDialog - - - QR Code Dialog - Boîte de dialogue QR Code - - - - Request Payment - Demander un paiement - - - - Amount: - Montant: - - - - Label: - Étiquette: - - - - Message: - Message: - - - - &Save As... - &Enregistrer sous... - - - - Error encoding URI into QR Code. - Erreur d'encodage de l'URI en code QR. - - - - The entered amount is invalid, please check. - Le montant indiqué est invalide, veuillez vérifier. - - - - 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. - - - - Save QR Code - Sauvegarder le QR Code - - - - PNG Images (*.png) - Images PNG (*.png) - - - - RPCConsole - - - Client name - Nom du client - - - - - - - - - - - - - N/A - N.D. - - - - Client version - Version du client - - - - &Information - &Informations - - - - Using OpenSSL version - Version d'OpenSSL utilisée - - - - Startup time - Heure de démarrage - - - - Network - Réseau - - - - Number of connections - Nombre de connexions - - - - On testnet - Sur testnet - - - - Block chain - Chaîne de blocs - - - - Current number of blocks - Nombre actuel de blocs - - - - Estimated total blocks - Nombre total de blocs estimé - - - - Last block time - Horodatage du dernier bloc - - - - &Open - &Ouvrir - - - - Command-line options - Options de ligne de commande - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - Afficher le message d'aide BitBean-Qt afin d'obtenir la liste des options de de L'outil en ligne de commande BitBean - - - - &Show - &Afficher - - - - &Console - &Console - - - - Build date - Date de compilation - - - - BitBean - Debug window - BitBean - Fenêtre de déboggage - - - - BitBean Core - BitBean Core - - - - Debug log file - Journal de débogage - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - Ouvrir le fichier journal de debug BitBean au sein du répertoire courant. Cette opération peut prendre quelques secondes dans le cas de fichiers journaux volumineux. - - - - Clear console - Nettoyer la console - - - - Welcome to the BitBean RPC console. - Bienvenue sur la console RPC de BitBean. - - - - 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. - - - - SendCoinsDialog - - - - - - - - - - Send Coins - Envoyer des monnaies - - - - Coin Control Features - Fonctions de contrôle des monnaies - - - - Inputs... - Entrants... - - - - automatically selected - choisi automatiquement - - - - Insufficient funds! - Fonds insuffisants! - - - - Quantity: - Quantité: - - - - - 0 - 0 - - - - Bytes: - Octets: - - - - Amount: - Montant: - - - - - - - 0.00 BC - 123.456 BC {0.00 ?} - - - - Priority: - Priorité: - - - - medium - medium - - - - Fee: - Frais: - - - - Low Output: - Sortie faible - - - - no - non - - - - After Fee: - Après frais: - - - - Change - Monnaie : - - - - custom change address - adresse de change personnalisée - - - - Send to multiple recipients at once - Envoyer à plusieurs destinataires à la fois - - - - Add &Recipient - Ajouter un &Destinataire - - - - Remove all transaction fields - Réinitialiser tous les champs liés à la transaction - - - - Clear &All - &Tout nettoyer - - - - Balance: - Solde: - - - - 123.456 BC - 123.456 BC - - - - Confirm the send action - Confirmer l’action d'envoi - - - - S&end - E&nvoyer - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Entrer une adresse BitBean (par ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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 - - - - <b>%1</b> to %2 (%3) - <b>%1</b> à %2 (%3) - - - - Confirm send coins - Confirmer l’envoi des pièces - - - - Are you sure you want to send %1? - Etes-vous sûr de vouloir envoyer %1? - - - - and - et - - - - 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. - - - - Error: Transaction creation failed. - Erreur: Echec lors de la création de la transaction - - - - 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. Cela peut se produire si une quantité d'argent de votre portefeuille a déjà été dépensée, comme dans le cas où une copie du fichier wallet.dat aurait été utilisée afin d'effectuer des dépenses, à la place du fichier courant. - - - - WARNING: Invalid BitBean address - AVERTISSEMENT: Adresse BitBean Invalide - - - - (no label) - (pas d'étiquette) - - - - WARNING: unknown change address - AVERTISSEMENT: Adresse BitBean Invalide - - - - SendCoinsEntry - - - Form - Formulaire - - - - A&mount: - &Montant: - - - - Pay &To: - &Payer à: - - - - - 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 : - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Adresse destinataire du paiement (par ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Choose address from address book - Choisir une adresse du carnet d'adresse - - - - Alt+A - Alt+A - - - - Paste address from clipboard - Coller l'adresse depuis le presse-papier - - - - Alt+P - Alt+P - - - - Remove this recipient - Supprimer ce destinataire - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Entrer une adresse BitBean (par ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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 rien signer de suspect 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Entrer une adresse BitBean (par ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose an address from the address book - Choisir une adresse du carnet d'adresse - - - - - 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 - - - - Copy the current signature to the system clipboard - Copier la signature actuelle dans le presse-papier - - - - Sign the message to prove you own this BitBean address - Signer le message afin de prouver l'identité de votre adresse BitBean - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - L'adresse avec laquelle le message à été signé (ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Verify the message to ensure it was signed with the specified BitBean address - Vérifiez le message afin de vous assurer qu'il provient de l'adresse BitBean spécifiée. - - - - Reset all verify message fields - Réinitialiser tous les champs de vérification de message - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Entrer une adresse BitBean (par ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Click "Sign Message" to generate signature - Cliquez sur « Signer le message » pour générer la signature - - - - Enter BitBean signature - Entrer une signature BitBean - - - - - 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é. - - - - TransactionDesc - - - Open until %1 - Ouvert jusqu'à %1 - - - - Open for %n block(s) - Ouvert pour %n blocOuvert pour %n blocks - - - - 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 blocks supplémentaires - - - - 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 - - - - Generated coins must mature 110 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 de monnaie générées nécessitent une maturation de 110 blocks avant de pouvoir être utilisées. Lors de la génération d'un blokc, celui-ci est diffusé sur le réseau afin d'être ajouté à la chaîne de blocks. En cas d'échec, son état passera en "non accepté" et celui-ci ne pourra pas être dépensé. Cela peut occasionnellement se produire, lorsqu'un noeud différent génère un block à quelques secondes d'intervalle du vôtre. - - - - 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 - - - - unknown - inconnu - - - - 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 - - - - TransactionTableModel - - - Date - Date - - - - Type - Type - - - - Address - Adresse - - - - Amount - Montant - - - - Open until %1 - Ouvert jusqu'à %1 - - - - Confirmed (%1 confirmations) - Confirmée (%1 confirmations) - - - - Open for %n more block(s) - Ouvert pour %n bloc de plusOuvert pour %n blocs de plus - - - - Offline - Hors ligne - - - - Unconfirmed - Non confirmé - - - - Confirming (%1 of %2 recommended confirmations) - En cours de confirmation (%1 sur %2 confirmations recommandées) - - - - Conflicted - En conflit - - - - Immature (%1 confirmations, will be available after %2) - Immature (%1 confirmations, sera disponible après %2) - - - - 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é - - - - 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. - - - - 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 Data - Exporter les données de la transaction - - - - Comma separated file (*.csv) - Fichier de valeurs séparées par des virgules (*.csv) - - - - Confirmed - Confirmée - - - - Date - Date - - - - Type - Type - - - - Label - Étiquette - - - - Address - Adresse - - - - Amount - Montant - - - - ID - ID - - - - Error exporting - Erreur lors de l'export - - - - Could not write to file %1. - Impossible d'écrire dans le fichier %1 - - - - Range: - Intervalle: - - - - to - à - - - - WalletModel - - - Sending... - Envoi... - - - - bitcoin-core - - - BitBean version - Version BitBean - - - - Usage: - Utilisation: - - - - Send command to -server or BitBeand - Envoyer commande à -server ou BitBeand - - - - List commands - Lister les commandes - - - - Get help for a command - Obtenir de l’aide pour une commande - - - - Options: - Options: - - - - Specify configuration file (default: BitBean.conf) - Spécifier le fichier de configuration (par défaut: BitBean.conf) - - - - Specify pid file (default: BitBeand.pid) - Spécifier le fichier pid (par défaut: BitBeand.pid) - - - - Specify wallet file (within data directory) - Spécifier le fichier de portefeuille (dans le répertoire de données) - - - - 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 de base de données en mégaoctets (par défaut : 25) - - - - Set database disk log size in megabytes (default: 100) - Définir la taille du journal de base de données en mégaoctets (par défaut : 100) - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - Écouter les connexions sur le <port> (par défault: 15714 ou testnet: 25714) - - - - 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 - - - - Bind to given address. Use [host]:port notation for IPv6 - Connexion à l'adresse fournie. Utiliser la notation [machine]:port pour les adresses IPv6 - - - - Stake your coins to support network and gain reward (default: 1) - Placer vos monnaies en staking, afin de soutenir le réseau et obtenir des intérêts (par défault: 1) - - - - 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 positionnement du port RPC %u pour écouter sur une adresse IPv4 : %s - - - - Detach block and address databases. Increases shutdown time (default: 0) - Détacher la base de donnée des blocks et adresses. Augmente le temps de fermeture (default: 0) - - - - 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. Cela peut se produire si une quantité d'argent de votre portefeuille a déjà été dépensée, comme dans le cas où une copie du fichier wallet.dat aurait été utilisée afin d'effectuer des dépenses, à la place du fichier courant. - - - - 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 requière des frais minimum de %s a cause de son montant, de sa complexité ou de l'utilisation de fonds récemment reçus. - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - Écouter les connexions JSON-RPC sur le <port> (default: 15715 or testnet: 25715) - - - - Accept command line and JSON-RPC commands - Accepter les commandes de JSON-RPC et de la ligne de commande - - - - Error: Transaction creation failed - Erreur: La création de cette transaction à échouée - - - - Error: Wallet locked, unable to create transaction - Erreur: Portefeuille verrouillé, impossible d'effectuer cette transaction - - - - Importing blockchain data file. - Import en cours du fichier de chaîne de blocs - - - - Importing bootstrap blockchain data file. - Import en masse du fichier de chaîne bloc - - - - 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 ) - - - - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - Erreur lors de l'initialisation de l'environnement de base de données %s! Afin de procéder à la récupération, une SAUVEGARDE DE CE REPERTOIRE est nécessaire, puis, supprimez le contenu entier de ce répertoire, à l'exception du fichier wallet.dat - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - Fixer la taille maximale d'un bloc en octets (par défault: 27000) - - - - 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 BitBean will not work properly. - Avertissement: Veuillez vérifier la date et l'heure de votre ordinateur. BitBean ne pourra pas fonctionner correctement si l'horloge est réglée de façon incorrecte - - - - 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. - - - - Attempt to recover private keys from a corrupt wallet.dat - Tenter de récupérer les clefs privées d'un wallet.dat corrompu - - - - Block creation options: - Options de création de bloc: - - - - Connect only to the specified node(s) - Ne se connecter qu'au(x) nœud(s) spécifié(s) - - - - 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) - - - - 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. - - - - Find peers using DNS lookup (default: 1) - Trouvez des peers utilisant DNS lookup (default: 1) - - - - Sync checkpoints policy (default: strict) - Politique de synchronisation des checkpoints (default: strict) - - - - Invalid -tor address: '%s' - Adresse -tor invalide: '%s' - - - - Invalid amount for -reservebalance=<amount> - Montant incorrect pour -reservebalance=<montant> - - - - 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) - Se connecter uniquement aux nœuds du réseau <net> (IPv4, IPv6 ou Tor) - - - - Output extra debugging information. Implies all other -debug* options - Voir les autres informations de débogage. Implique toutes les autres options -debug* - - - - Output extra network debugging information - Voir les autres informations de débogage du réseau - - - - Prepend debug output with timestamp - Horodater les messages de debug - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Options SSL : (voir le Wiki de Bitcoin pour les instructions de configuration du SSL) - - - - Select the version of socks proxy to use (4-5, default: 5) - Sélectionner la version du proxy socks à utiliser (4-5, par défaut: 5) - - - - 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 - - - - Send trace/debug info to debugger - Envoyer les informations de débogage/trace à la console au lieu du fichier debug.log - - - - Set maximum block size in bytes (default: 250000) - Fixer la taille maximale d'un block en bytes (default: 250000) - - - - 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ésente) - - - - Specify connection timeout in milliseconds (default: 5000) - Spécifier le délai d'expiration de la connexion en millisecondes (par défaut: 5000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - Impossible de "signer" le checkpoint, mauvaise clef de checkpoint? - - - - - 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - Utiliser un proxy pour atteindre les services cachés (par défaut: équivalent à -proxy) - - - - Username for JSON-RPC connections - Nom d'utilisateur pour les connexions JSON-RPC - - - - Verifying database integrity... - Vérification d'intégrité de la base de données... - - - - WARNING: syncronized checkpoint violation detected, but skipped! - ATTENTION : violation du checkpoint de synchronisation, mais ignorée! - - - - Warning: Disk space is low! - Avertissement: Espace disque faible! - - - - Warning: This version is obsolete, upgrade required! - Avertissement : cette version est obsolète, une mise à niveau est nécessaire ! - - - - 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 - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - %s, vous devez définir un mot de passe rpc 'rpcpassword' au sein du fichier de configuration: - %s -Il est recommandé d'utiliser le mot de passe aléatoire suivant: -rpcuser=BitBeanrpc -rpcpassword=%s -(il n'est pas nécessaire de retenir ce mot de passe) -Le nom d'utilisateur et le mot de passe doivent IMPERATIVEMENT être différents. -Si le fichier n'existe pas, il est nécessaire de le créer, avec les droit de lecture au propriétaire seulement. -Il est également recommandé d'utiliser l'option alertnotify afin d'être notifié des problèmes; -par exemple: alertnotify=echo %%s | mail -s "Alerte BitBean" admin@foo.com - - - - - Find peers using internet relay chat (default: 0) - Trouvez des pairs utilisant DNS lookup (par défault: 1) {0)?} - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - Synchronisation de l'horloge avec d'autres noeuds. Désactiver si votre serveur est déjà synchronisé avec le protocole NTP (défaut: 1) - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - Lors de la création de transactions, ignorer les entrées dont la valeur sont inférieures (défaut: 0.01) - - - - 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) - - - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Exécuter la commande lorsqu'une transaction du portefeuille change (%s dans la commande est remplacée par TxID) - - - - Require a confirmations for change (default: 0) - Nécessite a confirmations pour modification (par défaut: 0) - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - Force les scripts de transaction à utiliser des opérateurs PUSH canoniques (défaut: 1) - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - Exécute une commande lorsqu'une alerte correspondante est reçue (%s dans la commande est remplacé par message) - - - - 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - Nombre de blocs à vérifier lors du démarrage (par défaut: 2500, 0 = tous) - - - - How thorough the block verification is (0-6, default: 1) - Niveau d'approfondissement de la vérification des blocs (0-6, default: 1) - - - - Imports blocks from external blk000?.dat file - Importe les blocs d'un fichier externe blk000?.dat - - - - 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Algorithmes de chiffrements acceptés (par défaut: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - Error: Wallet unlocked for staking only, unable to create transaction. - Erreur: Portefeuille déverrouillé uniquement pour "staking" , impossible d'effectuer cette transaction - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - AVERTISSEMENT: point de contrôle invalide! Les transactions affichées peuvent être incorrectes! Il est peut-être nécessaire d'effectuer une mise à jour, ou d'avertir les développeurs du projet. - - - - This help message - Ce message d'aide - - - - Wallet %s resides outside data directory %s. - Le portefeuille %s est situé en dehors du répertoire de données %s - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - Echec lors de la tentative de verrou des données du répertoire %s. L'application BitBean est probablement déjà en cours d'exécution - - - - BitBean - BitBean - - - - 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) - - - - Connect through socks proxy - Se connecter à travers un proxy socks - - - - Allow DNS lookups for -addnode, -seednode and -connect - Autoriser les recherches DNS pour -addnode, -seednode et -connect - - - - Loading addresses... - Chargement des adresses… - - - - Error loading blkindex.dat - Erreur de chargement du fichier blkindex.dat - - - - Error loading wallet.dat: Wallet corrupted - Erreur lors du chargement de wallet.dat: portefeuille corrompu - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - Erreur de chargement du fichier wallet.dat: le portefeuille nécessite une version plus récente de l'application BitBean - - - - Wallet needed to be rewritten: restart BitBean to complete - Le portefeuille nécessite d'être réédité : Merci de relancer l'application BitBean - - - - Error loading wallet.dat - Erreur lors du chargement du fichier 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 » - - - - Error: could not start node - Erreur: Impossible de démarrer le noeud - - - - Sending... - Envoi... - - - - 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. BitBean is probably already running. - Connexion au port %s impossible. L'application BitBean est probablement déjà en cours d'exécution - - - - Fee per KB to add to transactions you send - Frais par KB à ajouter à vos transactions sortantes - - - - Invalid amount for -mininput=<amount>: '%s' - Montant invalide pour -mininput=<amount>: '%s' - - - - Loading wallet... - Chargement du portefeuille… - - - - Cannot downgrade wallet - Impossible de revenir à une version inférieure du portefeuille - - - - Cannot initialize keypool - Impossible d'initialiser la "keypool" - - - - 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. - Vous devez ajouter la ligne rpcpassword=<mot-de-passe> au fichier de configuration : -%s -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.qm b/src/qt/locale/bitcoin_fr_CA.qm deleted file mode 100644 index e5d2695..0000000 Binary files a/src/qt/locale/bitcoin_fr_CA.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_fr_CA.ts b/src/qt/locale/bitcoin_fr_CA.ts deleted file mode 100644 index 581b884..0000000 --- a/src/qt/locale/bitcoin_fr_CA.ts +++ /dev/null @@ -1,3314 +0,0 @@ - - - AboutDialog - - - About BitBean - Au sujet de BitBean - - - - <b>BitBean</b> version - Version de <b>BitBean</b> - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - Copyright © 2009-2014 Les développeurs Bitcoin -Copyright © 2012-2014 Les développeurs NovaCoin -Copyright © 2014 Les développeurs BitBean - - - - -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. - - Ce logiciel est expérimental. - - Distribué sous licence logicielle MIT/X11, voir le fichier COPYING joint ou http://www.opensource.org/licenses/mit-license.php. - - 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. - - - - AddressBookPage - - - Address Book - Répertoire d'adresses - - - - 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 - - - - Copy the currently selected address to the system clipboard - Copier l'adresse sélectionnée vers le presse-papier système - - - - &New Address - &Nouvelle adresse - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - Ce sont vos adresses pour recevoir vos paiements. Vous pouvez utiliser une adresse différente pour chaque réception afin d'identifier facilement le payeur. - - - - &Copy Address - &Copier l'adresse - - - - Show &QR Code - Montrer le &QR Code - - - - Sign a message to prove you own a BitBean address - Signer un message afin de valider l'identité de votre adresse BitBean - - - - Sign &Message - Signer le &message - - - - Delete the currently selected address from the list - Effacer l'adresse actuellement sélectionnée de la liste - - - - Verify a message to ensure it was signed with a specified BitBean address - Vérifier un message pour s'assurer qu'il vient d'un adresse BitBean spécifique. - - - - &Verify Message - &Vérifier un message - - - - &Delete - &Supprimer - - - - Copy &Label - Copier l'&Étiquette - - - - &Edit - &Modifier - - - - Export Address Book Data - Exporter votre répertoire d'adresses - - - - Comma separated file (*.csv) - Fichier de valeurs séparées par des virgules (*.csv) - - - - Error exporting - Erreur lors de l'export - - - - Could not write to file %1. - Impossible d'écrire dans le fichier %1. - - - - AddressTableModel - - - Label - Étiquette - - - - Address - Adresse - - - - (no label) - (aucune étiquette) - - - - 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 - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - Sert à désactiver les transactions sortantes si votre compte de système d'exploitation est compromis. Ne procure pas de réelle sécurité. - - - - For staking only - Pour "staking" seulement - - - - 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 - Crypter 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 et la nouvelle phrase de passe du portefeuille - - - - Confirm wallet encryption - Confirmer le cryptage du portefeuille - - - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - ATTENTION : Si vous cryptez votre portefeuille et perdez votre passphrase, vous ne pourrez plus accéder à vos BitBeans - - - - Are you sure you wish to encrypt your wallet? - Êtes-vous sûr de vouloir crypter 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 crypté. Pour des raisons de sécurité, les sauvegardes précédentes de votre fichier de portefeuille non crypté deviendront inutilisables dès lors que vous commencerez à utiliser le nouveau portefeuille crypté. - - - - - Warning: The Caps Lock key is on! - Attention : la touche Verr. Maj. est activée ! - - - - - Wallet encrypted - Portefeuille crypté - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - L'application BitBean va désormais se terminer afin de finaliser le processus de cryptage. Merci de noter que le cryptage du portefeuille ne garantit pas de se prémunir du vol via l'utilisation de malware, qui auraient pu infecter votre ordinateur. - - - - - - - Wallet encryption failed - Le cryptage du portefeuille a échoué - - - - Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Le cryptage du portefeuille a échoué en raison d'une erreur interne. Votre portefeuille n'a pas été crypté. - - - - - 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écrypter le portefeuille était incorrecte. - - - - Wallet decryption failed - Le décryptage du portefeuille a échoué - - - - Wallet passphrase was successfully changed. - La phrase de passe du portefeuille a été modifiée avec succès. - - - - BitcoinGUI - - - Sign &message... - Signer le &message... - - - - Synchronizing with network... - Synchronisation avec le réseau en cours… - - - - &Overview - &Vue d'ensemble - - - - Show general overview of wallet - Afficher une vue d’ensemble du portefeuille - - - - &Transactions - &Transactions - - - - Browse transaction history - Parcourir l'historique des transactions - - - - &Address Book - Carnet d'adresses - - - - Edit the list of stored addresses and labels - Éditer la liste d'adresses et libellés - - - - &Receive coins - &Recevoir des monnaies - - - - Show the list of addresses for receiving payments - Montrer la liste d'adresses de réception des paiements - - - - &Send coins - &Envoyer des monnaies - - - - E&xit - Q&uitter - - - - Quit application - Quitter l’application - - - - Show information about BitBean - Afficher des informations au sujet du BitBean - - - - About &Qt - À propos de &Qt - - - - Show information about Qt - Afficher des informations sur Qt - - - - &Options... - &Options… - - - - &Encrypt Wallet... - &Crypter le portefeuille... - - - - &Backup Wallet... - Sauvegarder le &portefeuille... - - - - &Change Passphrase... - &Changer la phrase de passe... - - - - ~%n block(s) remaining - ~%n blocks restants~%n blocs restants - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Téléchargement des blocks de l'historique des transactions : 1% sur 2% (%3% effectués). - - - - &Export... - &Export... - - - - Send coins to a BitBean address - Envoyer des monnaies vers une adresse BitBean - - - - Modify configuration options for BitBean - Modification des options de configuration de BitBean - - - - Export the data in the current tab to a file - Export des données de l'onglet courant vers un fichier - - - - Encrypt or decrypt wallet - Crypter ou décrypter le portefeuille - - - - 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 cryptage 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... - - - - BitBean - BitBean - - - - Wallet - Portefeuille - - - - &About BitBean - A propos de BitBean - - - - &Show / Hide - &Afficher / Cacher - - - - Unlock wallet - Déverrouiller le portefeuille - - - - &Lock Wallet - &Verrouiller le portefeuille - - - - Lock wallet - Verrouiller le portefeuille - - - - &File - &Fichier - - - - &Settings - &Réglages - - - - &Help - &Aide - - - - Tabs toolbar - Barre d'outils des onglets - - - - Actions toolbar - Barre d'actions - - - - - [testnet] - [testnet] - - - - - BitBean client - Client BitBean - - - - %n active connection(s) to BitBean network - %n connexion active au réseau BitBean%n connexions actives au réseau BitBean - - - - Downloaded %1 blocks of transaction history. - Téléchargement de blocs de l'historique de transactions : 1% blocks - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - Staking.<br>Votre poids est de %1<br>Le poids du réseau est de %2<br>Temps estimé avant récompense %3 - - - - Not staking because wallet is locked - Ne stack pas, votre portefeuilles est verouillé - - - - Not staking because wallet is offline - Ne stack pas, votre portefeuilles est hors ligne - - - - Not staking because wallet is syncing - Ne stack pas, votre portefeuille est en cours de synchronisation - - - - Not staking because you don't have mature coins - Ne stack pas, vos monnaies ne sont pas encore matures - - - - %n second(s) ago - il y a %n secondeil y a %n secondes - - - - &Unlock Wallet... - &Déverrouiller le portefeuille - - - - %n minute(s) ago - il y a %n minuteil y a %n minutes - - - - %n hour(s) ago - il y a %n heureil y a %n heures - - - - %n day(s) ago - il y a %n jouril y a %n jours - - - - Up to date - À jour - - - - Catching up... - Rattrapage en cours… - - - - Last received block was generated %1. - Le dernier block reçu à été généré %1. - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Cette transaction dépasse la limite autorisée. Vous pouvez tout de même effectuer cette opération, moyennant %1 de frais, qui seront envoyés aux noeuds qui valideront cette transaction, et dont l'objectif vise à supporter le réseau. Etes-vous d'accord pour payer ces frais ? - - - - Confirm transaction fee - Confirmer le Paiement des frais de transaction - - - - Sent transaction - Transaction envoyée - - - - Incoming transaction - Transaction entrante - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Date : %1 -Montant : %2 -Type : %3 -Adresse : %4 - - - - - - URI handling - Prise en charge de l'URL - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - L'adresse du portefeuille BitBean n'as pas pu être correctement identifiée, car invalide ou malformée. - - - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Le portefeuille est <b>crypté</b> et est actuellement <b>déverrouillé</b> - - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Le portefeuille est <b>crypté</b> et actuellement <b>verrouillé</b> - - - - Backup Wallet - Sauvegarder le portefeuille - - - - Wallet Data (*.dat) - Données liées au portefeuille (*.dat) - - - - Backup Failed - Echec de la sauvegarde - - - - There was an error trying to save the wallet data to the new location. - Une erreur a été rencontrée lors de la tentative de sauvegarde du portefeuille vers la nouvelle destination. - - - - %n second(s) - %n seconde%n secondes - - - - %n minute(s) - %n minute%n minutes - - - - %n hour(s) - %n heure%n heures - - - - %n day(s) - %n jour%n jours - - - - Not staking - Pas de stacking - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - Une erreur fatale a été rencontrée. L'application BitBean ne peut plus être s'exécuter de façon correcte et doit se terminer. - - - - ClientModel - - - Network Alert - Alerte réseau - - - - CoinControlDialog - - - Coin Control - Fonctions de contrôle des monnaies - - - - Quantity: - Quantité : - - - - Bytes: - Octets : - - - - Amount: - Montant : - - - - Priority: - Priorité : - - - - Fee: - Frais : - - - - Low Output: - Sortie faible : - - - - no - non - - - - 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 - - - - Label - Intitulé - - - - 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 - - - - 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 - - - - high - élevée - - - - medium-high - moyennement-élevée - - - - medium - moyenne - - - - low-medium - moyennement-basse - - - - low - basse - - - - lowest - la plus basse - - - - DUST - DUST - - - - yes - oui - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - Cet intitulé passe au rouge, si la taille de la transaction est supérieure à 10000 bytes. - -Cela implique que des frais à hauteur d'au moins %1 par kb seront nécessaires. - -Ceux-ci Peuvent varier de +/- 1 Byte par entrée. - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - Les transactions avec une priorité haute ont plus de chances d'être traitées en un block. - - Rouge si votre priorité est plus petite que "moyenne". - -Cela veut dire que des frais d'un minimum de %1 par kb sont requis - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - Ce label passe au rouge, Lorsqu'un destinataire reçoit un montant inférieur à %1. - - Cela implique que des frais à hauteur de %2 seront nécessaire - -Les montants inférieurs à 0.546 fois les frais minimum de relais apparaissent en tant que DUST. - - - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - Ce label passe au rouge, lorsque la différence est inférieure à %1. - - Cela implique que des frais à hauteur d'au moins %2 seront nécessaires. - - - - - (no label) - (aucune étiquette) - - - - change from %1 (%2) - monnaie de %1 (%2) - - - - (change) - (monnaie) - - - - EditAddressDialog - - - Edit Address - Modifier l'adresse - - - - &Label - &Étiquette - - - - The label associated with this address book entry - L'intitulé associé à cette entrée du carnet d'adresse - - - - &Address - &Adresse - - - - The address associated with this address book entry. This can only be modified for sending addresses. - L'intitulé associé à cette entrée du carnet d'adresse. Seules les adresses d'envoi peuvent être modifiées. - - - - 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 BitBean address. - L'adresse "%1" renseignée n'est pas une adresse BitBean valide. - - - - Could not unlock wallet. - Impossible de déverrouiller le portefeuille. - - - - New key generation failed. - Échec de génération de la nouvelle clef. - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - BitBean-Qt - - - - version - version - - - - Usage: - Utilisation: - - - - command-line options - Options de ligne de commande - - - - UI options - Options graphiques - - - - Set language, for example "de_DE" (default: system locale) - Définir la langue, par exemple « fr_FR » (par défaut : la langue du système) - - - - Start minimized - Démarrer en mode réduit - - - - Show splash screen on startup (default: 1) - Affichage de l'écran de démarrage (défaut: 1) - - - - 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. Fee 5.00 recommended. - Frais de transaction optionnels par kB afin d'assurer la rapidité de traitement de votre transaction. La plupart des transactions sont de 1 kB. Frais de 0.01 recommandés. - - - - Pay transaction &fee - Payer des &frais de transaction - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - Montant réservé qui ne "stake" pas est reste utilisable pour réalisés des envois à tout moment. - - - - Reserve - Réserve - - - - Automatically start BitBean after logging in to the system. - Démarrage automatique du client BitBean lors de la connexion au système - - - - &Start BitBean on system login - &Démarrage du client BitBean à la connexion au système - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - Détacher la base des block et adresses à la fermeture. Vous pourrez les utiliser dans un autre dossier mais cela ralenti la fermeture. Le portefeuille est lui toujours détaché. - - - - &Detach databases at shutdown - &Détacher la base de données à la fermeture - - - - &Network - &Réseau - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - Ouverture automatique du port client de BitBean sur le routeur. Ceci ne fonctionne que dans le cas où le support UPnP sur votre routeur existe et est actif. - - - - Map port using &UPnP - Mapper le port avec l'&UPnP - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - Connexion au réseau BitBean à travers un proxy SOCKS (e.g. Connexion via le réseau Tor). - - - - &Connect through SOCKS proxy: - &Connexion à travers du proxy SOCKS: - - - - Proxy &IP: - &IP du serveur mandataire : - - - - IP address of the proxy (e.g. 127.0.0.1) - Addresse IP du proxy (e.g. 127.0.0.1) - - - - &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 BitBean. - La langue d'interface de de l'utilisateur peut être définie ici. Ces modification seront effectives après redémarrage de l'application BitBean - - - - &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 BitBean addresses in the transaction list or not. - Afficher les adresses BitBean au sein de la liste de 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 options de monnaie & contrôle (mode expert) - - - - &OK - &OK - - - - &Cancel - &Annuler - - - - &Apply - &Exécuter - - - - default - par défaut - - - - - Warning - Avertissement - - - - - This setting will take effect after restarting BitBean. - Les paramètres prendront effet après redémarrage du client BitBean - - - - The supplied proxy address is invalid. - L'adresse de serveur mandataire -proxy- fournie est invalide. - - - - OverviewPage - - - Form - Formulaire - - - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - Les informations affichées peuvent être obsolètes. Votre portefeuille se synchronise automatiquement avec le réseau BitBean mais ce processus n'est pas encore terminé. - - - - Stake: - Stake: - - - - Unconfirmed: - Non confirmé: - - - - Wallet - Portefeuille - - - - Spendable: - Disponible pour dépense: - - - - Your current spendable balance - Votre solde actuel pouvant être dépensé - - - - Immature: - Immature : - - - - Mined balance that has not yet matured - Le solde généré n'est pas encore mature - - - - Total: - Total : - - - - Your current total balance - Votre solde total actuel - - - - <b>Recent transactions</b> - <b>Transactions récentes</b> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Montant total des transactions nécessitant confirmation, et ne figurant pas encore dans la balance actuelle - - - - Total of coins that was staked, and do not yet count toward the current balance - Montant total des transactions en "staking" et ne figurant pas encore dans la balance actuelle - - - - - out of sync - désynchronisé - - - - QRCodeDialog - - - QR Code Dialog - Boîte de dialogue QR Code - - - - Request Payment - Demander un paiement - - - - Amount: - Montant : - - - - Label: - Intitulé: - - - - Message: - Message: - - - - &Save As... - &Enregistrer sous... - - - - Error encoding URI into QR Code. - Erreur d'encodage de l'URI en code QR. - - - - The entered amount is invalid, please check. - Le montant indiqué est invalide, veuillez vérifier. - - - - 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. - - - - Save QR Code - Sauvegarder le QR Code - - - - PNG Images (*.png) - Images PNG (*.png) - - - - RPCConsole - - - Client name - Nom du client - - - - - - - - - - - - - N/A - N.D. - - - - Client version - Version du client - - - - &Information - &Informations - - - - Using OpenSSL version - Version d'OpenSSL utilisée - - - - Startup time - Heure de démarrage - - - - Network - Réseau - - - - Number of connections - Nombre de connexions - - - - On testnet - Sur testnet - - - - Block chain - Chaîne de blocks - - - - Current number of blocks - Nombre actuel de blocks - - - - Estimated total blocks - Nombre total estimé de blocks - - - - Last block time - Horodatage du dernier block - - - - &Open - &Ouvrir - - - - Command-line options - Options de ligne de commande - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - Afficher le message d'aide BitBean-Qt afin d'obtenir la liste des options de de L'outil en ligne de commande BitBean - - - - &Show - &Afficher - - - - &Console - &Console - - - - Build date - Date de compilation - - - - BitBean - Debug window - BitBean - Fenêtre de déboggage - - - - BitBean Core - BitBean Core - - - - Debug log file - Journal de débogage - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - Ouvrir le fichier journal de debug BitBean au sein du répertoire courant. Cette opération peut prendre quelques secondes dans le cas de fichiers journaux volumineux. - - - - Clear console - Nettoyer la console - - - - Welcome to the BitBean RPC console. - Bienvenue sur la console BitBean RPC. - - - - 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. - - - - SendCoinsDialog - - - - - - - - - - Send Coins - Envoyer des monnaies - - - - Coin Control Features - Fonctions de contrôle des monnaies - - - - Inputs... - Entrants... - - - - automatically selected - choisi automatiquement - - - - Insufficient funds! - Fonds insuffisants ! - - - - Quantity: - Quantité : - - - - - 0 - 0 - - - - Bytes: - Octets : - - - - Amount: - Montant : - - - - - - - 0.00 BC - 123.456 BC {0.00 ?} - - - - Priority: - Priorité : - - - - medium - medium - - - - Fee: - Frais : - - - - Low Output: - Sortie faible - - - - no - non - - - - After Fee: - Après les frais : - - - - Change - Monnaie : - - - - custom change address - adresse de change personnalisée - - - - Send to multiple recipients at once - Envoyer à plusieurs destinataires à la fois - - - - Add &Recipient - Ajouter un &destinataire - - - - Remove all transaction fields - Réinitialiser tous les champs liés à la transaction - - - - Clear &All - &Tout nettoyer - - - - Balance: - Solde : - - - - 123.456 BC - 123.456 BC - - - - Confirm the send action - Confirmer l’action d'envoi - - - - S&end - E&nvoyer - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Entrer une adresse BitBean (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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 - - - - <b>%1</b> to %2 (%3) - <b>%1</b> to %2 (%3) - - - - Confirm send coins - Confirmer l’envoi des pièces - - - - Are you sure you want to send %1? - Etes-vous sûr de vouloir envoyer %1? - - - - and - et - - - - 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. - - - - Error: Transaction creation failed. - Erreur: Echec lors de la création de la transaction - - - - 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. Cela peut se produire si une quantité d'argent de votre portefeuille a déjà été dépensée, comme dans le cas où une copie du fichier wallet.dat aurait été utilisée afin d'effectuer des dépenses, à la place du fichier courant. - - - - WARNING: Invalid BitBean address - AVERTISSEMENT: Adresse BitBean Invalide - - - - (no label) - (pas d'étiquette) - - - - WARNING: unknown change address - AVERTISSEMET: Adresse BitBean Invalide - - - - SendCoinsEntry - - - Form - Formulaire - - - - A&mount: - &Montant : - - - - Pay &To: - &Payer à : - - - - - 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 : - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Adresse destinataire du paiement ( ex : 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Choose address from address book - Choisir une adresse du carnet d'adresse - - - - Alt+A - Alt+A - - - - Paste address from clipboard - Coller l'adresse depuis le presse-papier - - - - Alt+P - Alt+P - - - - Remove this recipient - Supprimer ce destinataire - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Entrer une adresse BitBean (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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 rien signer de suspect 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Entrer une adresse BitBean (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose an address from the address book - Choisir une adresse du carnet d'adresse - - - - - 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 - - - - Copy the current signature to the system clipboard - Copier la signature actuelle dans le presse-papier - - - - Sign the message to prove you own this BitBean address - Signer le message afin de prouver l'identité de votre adresse BitBean - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - L'adresse avec laquelle le message à été signé (ex: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Verify the message to ensure it was signed with the specified BitBean address - Vérifier un message pour s'assurer qu'il vient d'un adresse BitBean spécifique. - - - - Reset all verify message fields - Réinitialiser tous les champs de vérification de message - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Entrer une adresse BitBean (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Click "Sign Message" to generate signature - Cliquez sur « Signer le message » pour générer la signature - - - - Enter BitBean signature - Entrer une signature BitBean - - - - - 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é. - - - - TransactionDesc - - - Open until %1 - Ouvert jusqu'à %1 - - - - Open for %n block(s) - Ouvert pour %n blocOuvert pour %n blocks - - - - 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 blocks supplémentaires - - - - 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 - - - - Generated coins must mature 110 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 de monnaie générées nécessitent une maturation de 110 blocks avant de pouvoir être utilisées. Lors de la génération d'un blokc, celui-ci est diffusé sur le réseau afin d'être ajouté à la chaîne de blocks. En cas d'échec, son état passera en "non accepté" et celui-ci ne pourra pas être dépensé. Cela peut occasionnellement se produire, lorsqu'un noeud différent génère un block à quelques secondes d'intervalle du vôtre. - - - - 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 - - - - unknown - inconnu - - - - 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 - - - - TransactionTableModel - - - Date - Date - - - - Type - Type - - - - Address - Adresse - - - - Amount - Montant - - - - Open until %1 - Ouvert jusqu'à %1 - - - - Confirmed (%1 confirmations) - Confirmée (%1 confirmations) - - - - Open for %n more block(s) - Ouvert pour %n bloc de plusOuvert pour %n blocs de plus - - - - Offline - Hors ligne - - - - Unconfirmed - Non confirmé - - - - Confirming (%1 of %2 recommended confirmations) - Confirmation (%1 sur %2 confirmations recommandées) - - - - Conflicted - En conflit - - - - Immature (%1 confirmations, will be available after %2) - Immature (%1 confirmations, sera disponible après %2) - - - - 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é - - - - 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. - - - - 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 Data - Exporter les données de la transaction - - - - 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 - - - - Error exporting - Erreur lors de l'export - - - - Could not write to file %1. - Impossible d'écrire dans le fichier %1 - - - - Range: - Intervalle : - - - - to - à - - - - WalletModel - - - Sending... - Envoi... - - - - bitcoin-core - - - BitBean version - Version BitBean - - - - Usage: - Utilisation : - - - - Send command to -server or BitBeand - Envoyer commande à -server ou BitBeand - - - - List commands - Lister les commandes - - - - Get help for a command - Obtenir de l’aide pour une commande - - - - Options: - Options : - - - - Specify configuration file (default: BitBean.conf) - Spécifier le fichier de configuration (defaut: BitBean.conf) - - - - Specify pid file (default: BitBeand.pid) - Spécifier le fichier pid (defaut: BitBeand.pid) - - - - - Specify wallet file (within data directory) - Spécifiez le fichier de portefeuille (dans le répertoire de données) - - - - 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) - - - - Set database disk log size in megabytes (default: 100) - Définir la taille du tampon en mégaoctets (par défaut : 100) - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - Écouter les connexions sur le <port> (default: 15714 or testnet: 25714) - - - - 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 - - - - Bind to given address. Use [host]:port notation for IPv6 - Connexion à l'adresse fournie. Utiliser la notation [machine]:port pour les adresses IPv6 - - - - Stake your coins to support network and gain reward (default: 1) - Stacker vos monnaies afin de soutenir le réseau et d'obtenir des intérêts (default: 1) - - - - 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 - - - - Detach block and address databases. Increases shutdown time (default: 0) - Détacher la base de donnée des blocks et adresses. Augmente le temps de fermeture (default: 0) - - - - 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. Cela peut se produire si une quantité d'argent de votre portefeuille a déjà été dépensée, comme dans le cas où une copie du fichier wallet.dat aurait été utilisée afin d'effectuer des dépenses, à la place du fichier courant. - - - - 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 requière des frais minimum de %s a cause de son montant, de sa complexité ou de l'utilisation de fonds récemment reçus. - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - Écouter les connexions JSON-RPC sur le <port> (default: 15715 or testnet: 25715) - - - - Accept command line and JSON-RPC commands - Accepter les commandes de JSON-RPC et de la ligne de commande - - - - Error: Transaction creation failed - Erreur: La création de cette transaction à échouée - - - - Error: Wallet locked, unable to create transaction - Erreur: Portefeuille verrouillé, impossible d'effectuer cette transaction - - - - Importing blockchain data file. - Importation du fichier blockchain - - - - Importing bootstrap blockchain data file. - Importation du fichier blockchain - - - - 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 ) - - - - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - Erreur lors de l'initialisation de l'environnement de base de données %s! Afin de procéder à la récupération, une SAUVEGARDE DE CE REPERTOIRE est nécessaire, puis, supprimez le contenu entier de ce répertoire, à l'exception du fichier wallet.dat - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - Fixer la taille maximale d'un block en bytes (default: 27000) - - - - 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 BitBean will not work properly. - Avertissement: Veuillez vérifier la date et l'heure de votre ordinateur. BitBean ne pourra pas fonctionner correctement si l'horloge est réglée de façon incorrecte - - - - 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. - - - - Attempt to recover private keys from a corrupt wallet.dat - Tenter de récupérer les clefs privées d'un wallet.dat corrompu - - - - Block creation options: - Options de création de bloc : - - - - Connect only to the specified node(s) - Ne se connecter qu'au(x) nœud(s) spécifié(s) - - - - 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) - - - - 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. - - - - Find peers using DNS lookup (default: 1) - Trouvez des peers utilisant DNS lookup (default: 1) - - - - Sync checkpoints policy (default: strict) - Politique de synchronisation des checkpoints (default: strict) - - - - Invalid -tor address: '%s' - Adresse -tor invalide: '%s' - - - - Invalid amount for -reservebalance=<amount> - Montant incorrect pour -reservebalance=<montant> - - - - 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) - Se connecter uniquement aux nœuds du réseau <net> (IPv4, IPv6 ou Tor) - - - - Output extra debugging information. Implies all other -debug* options - Voir les autres informations de débogage. Implique toutes les autres options -debug* - - - - Output extra network debugging information - Voir les autres informations de débogage du réseau - - - - Prepend debug output with timestamp - Horodater les messages de debug - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Options SSL : (voir le Wiki de Bitcoin pour les instructions de configuration du SSL) - - - - Select the version of socks proxy to use (4-5, default: 5) - Sélectionner la version du proxy socks à utiliser (4-5, par défaut: 5) - - - - 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 - - - - Send trace/debug info to debugger - Envoyer les informations de débogage/trace à la console au lieu du fichier debug.log - - - - Set maximum block size in bytes (default: 250000) - Fixer la taille maximale d'un block en bytes (default: 250000) - - - - 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) - - - - Specify connection timeout in milliseconds (default: 5000) - Spécifier le délai d'expiration de la connexion en millisecondes (par défaut : 5 000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - Impossible de "signer" le checkpoint, mauvaise clef de checkpoint? - - - - - 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - Utiliser un proxy pour atteindre les services cachés (défaut: équivalent à -proxy) - - - - Username for JSON-RPC connections - Nom d'utilisateur pour les connexions JSON-RPC - - - - Verifying database integrity... - Vérification d'intégrité de la base de données... - - - - WARNING: syncronized checkpoint violation detected, but skipped! - ATTENTION : violation du checkpoint de synchronisation, mais ignorée! - - - - Warning: Disk space is low! - Avertissement: Espace disque faible! - - - - Warning: This version is obsolete, upgrade required! - Avertissement : cette version est obsolète, une mise à niveau est nécessaire ! - - - - 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 - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - %s, vous devez définir un mot de passe rpc 'rpcpassword' au sein du fichier de configuration: - %s -Il est recommandé d'utiliser le mot de passe aléatoire suivant: -rpcuser=BitBeanrpc -rpcpassword=%s -(il n'est pas nécessaire de retenir ce mot de passe) -Le nom d'utilisateur et le mot de passe doivent IMPERATIVEMENT être différents. -Si le fichier n'existe pas, il est nécessaire de le créer, avec les droit de lecture au propriétaire seulement. -Il est également recommandé d'utiliser l'option alertnotify afin d'être notifié des problèmes; -par exemple: alertnotify=echo %%s | mail -s "Alerte BitBean" admin@foo.com - - - - - Find peers using internet relay chat (default: 0) - Find peers using internet relay chat (default: 1) {0)?} - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - Synchronisation de l'horloge avec d'autres noeuds. Désactiver si votre serveur est déjà synchronisé avec le protocole NTP (défaut: 1) - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - Lors de la création de transactions, ignore les entrées dont la valeur sont inférieures (défaut: 0.01) - - - - 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) - - - - 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) - - - - Require a confirmations for change (default: 0) - Nécessite a confirmations pour modification (défaut: 0) - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - Force les scripts de transaction à utiliser des opérateurs PUSH canoniques (défaut: 1) - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - Exécute une commande lorsqu'une alerte correspondante est reçue (%s dans la commande est remplacé par message) - - - - 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - Nombre de blocs à vérifier loes du démarrage (défaut: 2500, 0 = tous) - - - - How thorough the block verification is (0-6, default: 1) - Niveau d'approfondissement de la vérification des blocs (0-6, default: 1) - - - - Imports blocks from external blk000?.dat file - Importe les blocs d'un fichier externe blk000?.dat - - - - 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Algorithmes de chiffrements acceptés (défaut: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - Error: Wallet unlocked for staking only, unable to create transaction. - Erreur: Portefeuille déverrouillé uniquement pour "stacking" , impossible d'effectuer cette transaction - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - AVERTISSEMENT: point de contrôle invalide! Les transactions affichées peuvent être incorrectes! Il est peut-être nécessaire d'effectuer une mise à jour, ou d'avertir les développeurs du projet. - - - - This help message - Ce message d'aide - - - - Wallet %s resides outside data directory %s. - Le portefeuille %s réside en dehors répertoire de données %s - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - Echec lors de la tentative de verrouillage des données du répertoire %s. L'application BitBean est probablement déjà en cours d'exécution - - - - BitBean - BitBean - - - - 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) - - - - Connect through socks proxy - Se connecter à travers un proxy socks - - - - Allow DNS lookups for -addnode, -seednode and -connect - Autoriser les recherches DNS pour -addnode, -seednode et -connect - - - - Loading addresses... - Chargement des adresses… - - - - Error loading blkindex.dat - Erreur de chargement du fichier blkindex.dat - - - - Error loading wallet.dat: Wallet corrupted - Erreur lors du chargement de wallet.dat : portefeuille corrompu - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - Erreur de chargement du fichier wallet.dat: le portefeuille nécessite une version plus récente de l'application BitBean - - - - Wallet needed to be rewritten: restart BitBean to complete - le portefeuille nécessite d'être réédité : Merci de relancer l'application BitBean - - - - 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 » - - - - Error: could not start node - Erreur: Impossible de démarrer le noeud - - - - Sending... - Envoi... - - - - 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. BitBean is probably already running. - Connexion au port %s impossible. L'application BitBean est probablement déjà en cours d'exécution - - - - Fee per KB to add to transactions you send - Frais par KB à ajouter à vos transactions sortantes - - - - Invalid amount for -mininput=<amount>: '%s' - Montant invalide pour -mininput=<amount>: '%s' - - - - Loading wallet... - Chargement du portefeuille… - - - - Cannot downgrade wallet - Impossible de revenir à une version inférieure du portefeuille - - - - Cannot initialize keypool - Impossible d'initialiser la "keypool" - - - - 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. - Vous devez ajouter la ligne rpcpassword=<mot-de-passe> au fichier de configuration : -%s -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_gl.qm b/src/qt/locale/bitcoin_gl.qm deleted file mode 100644 index 1da10f1..0000000 Binary files a/src/qt/locale/bitcoin_gl.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_he.qm b/src/qt/locale/bitcoin_he.qm deleted file mode 100644 index 63c70c2..0000000 Binary files a/src/qt/locale/bitcoin_he.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_hr.qm b/src/qt/locale/bitcoin_hr.qm deleted file mode 100644 index 30ef8a7..0000000 Binary files a/src/qt/locale/bitcoin_hr.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_id_ID.qm b/src/qt/locale/bitcoin_id_ID.qm deleted file mode 100644 index d0b1ef9..0000000 Binary files a/src/qt/locale/bitcoin_id_ID.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_ja.qm b/src/qt/locale/bitcoin_ja.qm deleted file mode 100644 index cf0894d..0000000 Binary files a/src/qt/locale/bitcoin_ja.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_ja.ts b/src/qt/locale/bitcoin_ja.ts deleted file mode 100644 index aa2f175..0000000 --- a/src/qt/locale/bitcoin_ja.ts +++ /dev/null @@ -1,3312 +0,0 @@ - - - AboutDialog - - - About BitBean - ブラックコインについて - - - - <b>BitBean</b> version - <b>ブラックコイン</b>バージョン - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - コピーライト © 2009-2014 The Bitcoin developers -コピーライト © 2012-2014 The NovaCoin developers -コピーライト © 2014 The BitBean developers - - - - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - -これは実験的なソフトウェアです。 - -MIT/X11 ソフトウェア ライセンスの下で配布されています。詳しくは添付の COPYING ファイルやhttp://www.opensource.org/licenses/mit-license.php を参照してください。 - -この製品は OpenSSL Toolkit (http://www.openssl.org/) に用いられる Eric Young (eay@cryptsoft.com) が開発した暗号化ソフトウェアと Thomas Bernard が開発した UPnP ソフトウェアを含んでいます。 - - - - AddressBookPage - - - Address Book - アドレス帳 - - - - Double-click to edit address or label - アドレスまたはラベルを編集するにはダブルクリック - - - - Create a new address - 新規アドレスの作成 - - - - Copy the currently selected address to the system clipboard - 現在選択されているアドレスをシステムのクリップボードにコピーする - - - - &New Address - 新しいアドレス - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - これは支払いを受けるためのブラックコインのアドレス。支払い管理をするのため、各送信者へ、それぞれのアドレスを伝えたほうがいいです。 - - - - &Copy Address - アドレスをコピー (&C) - - - - Show &QR Code - QRコードを表す - - - - Sign a message to prove you own a BitBean address - 所有権の証明するためのメサッジを署名する。 - - - - Sign &Message - メサッジを署名する。 - - - - Delete the currently selected address from the list - 選択されたアドレスを一覧から削除する - - - - Verify a message to ensure it was signed with a specified BitBean address - 受け取ったメッセージの署名を確保のため、メッセージを確認する。 - - - - &Verify Message - メッセージを確認する。 - - - - &Delete - 削除 - - - - Copy &Label - ラベルをコピー (&L) - - - - &Edit - 編集 (&E) - - - - Export Address Book Data - アドレス帳のデータを書き出す - - - - Comma separated file (*.csv) - CSVファイル (*.csv) - - - - Error exporting - エラーを書き出す - - - - Could not write to file %1. - ファイルを書き込めなかった。%1 - - - - AddressTableModel - - - Label - ラベル - - - - Address - アドレス - - - - (no label) - (ラベル無し) - - - - AskPassphraseDialog - - - Passphrase Dialog - パスフレーズ ダイアログ - - - - Enter passphrase - パスフレーズを入力 - - - - New passphrase - 新しいパスフレーズ - - - - Repeat new passphrase - 新しいパスフレーズをもう一度 - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - ユーザアカウントはハッキングされたばい、瑣末のsendmoney無効にする。機密保護には効果はない。 - - - - For staking only - 賭けるのみ - - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - ウォレットの新しいパスフレーズを入力してください。<br/><b>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 COINS</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 - ウォレットは暗号化されました - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - ただいま、暗号化手順を完成するため、ブラックコインQTは閉じます。尚、ウォレットを暗号化をされたにしても、PCのウイルスから盗難防止の報償できないことを、ご理解をお願い足します。 - - - - - - - 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. - ウォレットのパスフレーズの変更が成功しました。 - - - - BitcoinGUI - - - Sign &message... - メッセージの署名... (&m) - - - - Synchronizing with network... - ネットワークに同期中…… - - - - &Overview - 概要(&O) - - - - Show general overview of wallet - ウォレットの概要を見る - - - - &Transactions - 処理(&T) - - - - Browse transaction history - 処理履歴を閲覧 - - - - &Address Book - アドレス帳 - - - - Edit the list of stored addresses and labels - 保存されたアドレスとラベルの編集 - - - - &Receive coins - コインを受け取る - - - - Show the list of addresses for receiving payments - 支払いを受けるためのアドレスリストを表示 - - - - &Send coins - コインを送る - - - - E&xit - 終了(&E) - - - - Quit application - アプリケーションを終了 - - - - Show information about BitBean - ブラックコインの情報を表示 - - - - About &Qt - Qt について(&Q) - - - - Show information about Qt - Qt の情報を表示 - - - - &Options... - オプション... (&O) - - - - &Encrypt Wallet... - ウォレットの暗号化... (&E) - - - - &Backup Wallet... - ウォレットのバックアップ... (&B) - - - - &Change Passphrase... - パスフレーズの変更... (&C) - - - - ~%n block(s) remaining - ~%n ブロックが残っている - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - 処理の履歴の%1 / %2 ブロックをダウンロードしました。(%3% 完成) - - - - &Export... - (&E)書き出す... - - - - Send coins to a BitBean address - ブラックコインアドレスへコインを送る - - - - Modify configuration options for BitBean - ブラックコインの設定を変化する - - - - Export the data in the current tab to a file - 現在のタブのデータをファイルへ書き出す - - - - Encrypt or decrypt wallet - ウォレットを暗号化か暗号化を解除する - - - - Backup wallet to another location - ウォレットを他の場所にバックアップ - - - - Change the passphrase used for wallet encryption - ウォレット暗号化用パスフレーズの変更 - - - - &Debug window - デバッグ ウインドウ (&D) - - - - Open debugging and diagnostic console - デバッグと診断コンソールを開く - - - - &Verify message... - メッセージの検証... (&V) - - - - BitBean - ブラックコイン - - - - Wallet - ウォレット - - - - &About BitBean - ブラックコインについて - - - - &Show / Hide - 見る/隠す (&S) - - - - Unlock wallet - ウォレットをアンロックする - - - - &Lock Wallet - (&L)ウォレットをロックする - - - - Lock wallet - ウォレットをロックする - - - - &File - ファイル(&F) - - - - &Settings - 設定(&S) - - - - &Help - ヘルプ(&H) - - - - Tabs toolbar - タブツールバー - - - - Actions toolbar - 活動ツールバー - - - - - [testnet] - [testnet] - - - - - BitBean client - ブラックコインクライアントソフトウェア - - - - %n active connection(s) to BitBean network - ブラックコインネットワークへの%n アクティブな接続 - - - - Downloaded %1 blocks of transaction history. - 処理履歴の%1ブロックをダウンロードしました。 - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - 賭けている。<br>重さは%1<br>ネットワークの重さは%2<br>報酬をもらう時間の推測は%3 - - - - Not staking because wallet is locked - ウォレットをロックされたため、賭けていません - - - - Not staking because wallet is offline - ウォレットはオフラインで、賭けていません - - - - Not staking because wallet is syncing - ウォレットは同期最中ため、賭けていません。 - - - - Not staking because you don't have mature coins - コインはまだ成長できていないため、賭けていません。 - - - - %n second(s) ago - %n 秒前 - - - - &Unlock Wallet... - &ウォレットをアンロック... - - - - %n minute(s) ago - %n 分前 - - - - %n hour(s) ago - %n 時間前 - - - - %n day(s) ago - %n 日間前 - - - - Up to date - バージョンは最新です - - - - Catching up... - 追跡中... - - - - Last received block was generated %1. - 最新ブロックは%1に生成されました。 - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - この処理は大きさの制限を超えている。%1料金を払ったばい、通信可能性です。料金は手続きをするノードへ支払って、ネットワークのサッポートになります。料金を払いますか。 - - - - Confirm transaction fee - 処理手数料を確認する - - - - Sent transaction - 送金処理 - - - - Incoming transaction - 着金処理 - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - 日付: %1 -総額: %2 -種類: %3 -アドレス: %4 - - - - - URI handling - URIの取り扱い - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - URIのパーズができませんでした!。原因は無効なブラックコインアドレスか不正なURIパラメータ。 - - - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - ウォレットは<b>暗号化されて、アンロックされています</b> - - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - ウォレットは<b>暗号化されて、ロックされています</b> - - - - Backup Wallet - ウォレットのバックアップ - - - - Wallet Data (*.dat) - ウォレットのデータ (*.dat) - - - - Backup Failed - バックアップは失敗しました - - - - There was an error trying to save the wallet data to the new location. - ウォレットのデータが新しい場所へ保存するにはエラーになりました。 - - - - %n second(s) - %n 秒 - - - - %n minute(s) - %n 分 - - - - %n hour(s) - %n 時間 - - - - %n day(s) - %n 日間 - - - - Not staking - 賭けていません - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - 致命的エラー。安全に続きができないため、バラックコインQTは閉じます。 - - - - ClientModel - - - Network Alert - ネットワーク警告 - - - - CoinControlDialog - - - Coin Control - コインのコントロール - - - - Quantity: - 数量: - - - - Bytes: - バイト - - - - Amount: - 総額: - - - - Priority: - 優先: - - - - Fee: - 料金: - - - - Low Output: - アウトプット低い: - - - - no - いいえ - - - - After Fee: - 料金の後 - - - - Change: - お釣り: - - - - (un)select all - すべてを選択か選択を解除 - - - - Tree mode - 木モード - - - - List mode - リストモード - - - - Amount - 総額 - - - - Label - レベル - - - - Address - アドレス - - - - Date - 日付 - - - - Confirmations - 検証済みの数 - - - - Confirmed - 検証済 - - - - Priority - 優先 - - - - Copy address - アドレスをコピー - - - - Copy label - ラベルをコピー - - - - - Copy amount - 総額のコピー - - - - Copy transaction ID - 処理のIDをコピー - - - - Copy quantity - 数量をコピー - - - - Copy fee - 料金をコピー - - - - Copy after fee - 料金の後をコピー - - - - Copy bytes - バイトをコピー - - - - Copy priority - 優先をコピー - - - - Copy low output - アウトプット低いをコピー - - - - Copy change - お釣りをコピー - - - - highest - 最高 - - - - high - 高い - - - - medium-high - 中高 - - - - medium - - - - - low-medium - 中低 - - - - low - 低い - - - - lowest - 最低 - - - - DUST - ほこり - - - - yes - はい - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - このラベルが赤くなったら、処理の大きさは10000バイトより大きいです。 - -少なくとも%1 KBあたりの料金は必要となります。 - -入力データによって、料金の+/-1 バイトが可能です。 - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - 高い優先ありの処理の方はブロックに書き込み可能性が高い。 - -このラベルは優先の設定は中より低いです。 - -少なくとも%1 KBあたりの料金は必要となります。 - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - 任意の受信者は%1より少ない額をもらったばい、このラベルは赤くなる。 - -少なくとも%2の料金は必要となります。 - -最小なリレー料金 x 0.546より下の額は、ほこりになります。 - - - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - このラベルが赤くなたら、お釣りは%1より少ない。 - -少なくとも%2の料金は必要となります。 - - - - - (no label) - (ラベル無し) - - - - change from %1 (%2) - %1 (%2)からお釣り - - - - (change) - (お釣り) - - - - EditAddressDialog - - - Edit Address - アドレスの編集 - - - - &Label - ラベル(&L) - - - - The label associated with this address book entry - このアドレス帳の入力のラベル - - - - &Address - アドレス帳 (&A) - - - - The address associated with this address book entry. This can only be modified for sending addresses. - このアドレス帳の入力のアドレス。通信アドレスした変更ができない。 - - - - New receiving address - 新しい受信アドレス - - - - New sending address - 新しい送信アドレス - - - - Edit receiving address - 受信アドレスを編集 - - - - Edit sending address - 送信アドレスを編集 - - - - The entered address "%1" is already in the address book. - 入力されたアドレス "%1" は既にアドレス帳にあります。 - - - - The entered address "%1" is not a valid BitBean address. - 入力されたアドレス "%1" 、有効なブラックコインアドレスではない。 - - - - Could not unlock wallet. - ウォレットをアンロックできませんでした。 - - - - New key generation failed. - 新しいキーの生成に失敗しました。 - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - ブラックコインQT - - - - version - バージョン - - - - Usage: - 使用法 - - - - command-line options - コマンドラインのオプション - - - - UI options - UIのオプション - - - - Set language, for example "de_DE" (default: system locale) - 言語の設定、例: "de_DE" (デフォルト:システムのロケール) - - - - Start minimized - 最小化でスタート - - - - Show splash screen on startup (default: 1) - スタートでスプラッシュスクリーンを表示(デフォルト:1) - - - - OptionsDialog - - - Options - 設定 - - - - &Main - メイン (&M) - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - 手続きを早めるためのオプショナル料金。だいたいの処理は1KB。料金の0.01が勧めです。 - - - - Pay transaction &fee - 支払う取引手数料 (&f) - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - 貯金は賭ける参加しないため、いつでも支出できる。 - - - - Reserve - 貯金 - - - - Automatically start BitBean after logging in to the system. - システムのログイン次第、自動的にブラックコインをスタート。 - - - - &Start BitBean on system login - システムログイン次第、ブラックコインをスタート - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - シャットダウンするとき、ブロックとアドレスのデータベースを切り離す。すると、別のディレクトリへ移動できますが、シャットダウンは少し遅れます。ウォレットはいつも切り離します。 - - - - &Detach databases at shutdown - シャットダウンするとき、データベースを切り離す - - - - &Network - ネットワーク (&N) - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - 自動的にルーターでブラックコインクライエントソフトウェアのポートを開く。ルーターはUPnPのサポートあり、UPnPを有効にするならできる。 - - - - Map port using &UPnP - UPnP を使ってポートを割り当てる (&U) - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - ブラックコインのネットワークへSOCKSプロキシで接続する(例:TORで接続するばい) - - - - &Connect through SOCKS proxy: - SOCKSプロキシで接続する - - - - Proxy &IP: - プロキシの IP (&I) : - - - - IP address of the proxy (e.g. 127.0.0.1) - プロキシのIPアドレス (例:127.0.0.1) - - - - &Port: - ポート (&P) : - - - - Port of the proxy (e.g. 9050) - プロキシのポート番号 (例 9050) - - - - SOCKS &Version: - SOCKS バージョン (&V) : - - - - SOCKS version of the proxy (e.g. 5) - SOCKS プロキシのバージョン (例 5) - - - - &Window - ウインドウ (&W) - - - - Show only a tray icon after minimizing the window. - ウインドウを最小化したあとトレイ アイコンだけを表示する。 - - - - &Minimize to the tray instead of the taskbar - タスクバーの代わりにトレイに最小化 (&M) - - - - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - ウインドウが閉じられる時アプリケーションを終了せずに最小化します。このオプションが有効な時にアプリケーションを終了するにはメニューから終了を選択します。 - - - - M&inimize on close - 閉じる時に最小化 (&i) - - - - &Display - 表示 (&D) - - - - User Interface &language: - ユーザインターフェースの言語 (&l) : - - - - The user interface language can be set here. This setting will take effect after restarting BitBean. - ユーザのインターフェースの言語の設定です。リスタートの後、有効します。 - - - - &Unit to show amounts in: - 額を表示する単位 (&U) : - - - - Choose the default subdivision unit to show in the interface and when sending coins. - インターフェース上の表示とコインの送信で使用する単位を選択します。 - - - - Whether to show BitBean 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 - &OK - - - - &Cancel - キャンセル (&C) - - - - &Apply - 適用する - - - - default - 初期値 - - - - - Warning - 警告 - - - - - This setting will take effect after restarting BitBean. - この設定はブラックコインをリスタートした後に有効する。 - - - - The supplied proxy address is invalid. - プロキシアドレスが無効です。 - - - - OverviewPage - - - Form - フォーム - - - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - 表示されている情報は時間遅れている。接続したら、ウォレットは自動的にブラックコインネットワークと同期しますが過程は完了してません。 - - - - Stake: - 賭け金: - - - - Unconfirmed: - 未検証: - - - - Wallet - ウォレット - - - - Spendable: - 支出可能: - - - - Your current spendable balance - あなたの利用可能残高 - - - - Immature: - 未完成: - - - - Mined balance that has not yet matured - 完成していない採掘された残高 - - - - Total: - 合計: - - - - Your current total balance - あなたの現在の残高 - - - - <b>Recent transactions</b> - <b>最近の処理</b> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - 未確認の合計で、まだ現在の残高に含まれていない。 - - - - Total of coins that was staked, and do not yet count toward the current balance - 賭けているコインの合計で、まだ現在の残高に含まれていない。 - - - - - out of sync - 同期していない - - - - QRCodeDialog - - - QR Code Dialog - QRコードのダイアログ - - - - Request Payment - 支払いを要請する - - - - Amount: - 総額: - - - - Label: - レベル - - - - Message: - メッセージ: - - - - &Save As... - &S名前を付けて保存... - - - - Error encoding URI into QR Code. - URIからQRコードにエンコードするエラー。 - - - - The entered amount is invalid, please check. - 入力された額は無効です。確認してください。 - - - - Resulting URI too long, try to reduce the text for label / message. - URIは長過ぎて、ラベル文字の長さを短くしてください。 - - - - Save QR Code - QRコードを保存 - - - - PNG Images (*.png) - PNG イメージ (*.png) - - - - RPCConsole - - - Client name - クライアント名 - - - - - - - - - - - - - N/A - N/A - - - - Client version - クライアントのバージョン - - - - &Information - 情報 (&I) - - - - Using OpenSSL version - 使用中の OpenSSL のバージョン - - - - Startup time - 起動した日時 - - - - Network - ネットワーク - - - - Number of connections - 接続数 - - - - On testnet - testnetで - - - - Block chain - ブロック チェーン - - - - Current number of blocks - 現在のブロック数 - - - - Estimated total blocks - 推定総ブロック数 - - - - Last block time - 最終ブロックの日時 - - - - &Open - 開く (&O) - - - - Command-line options - コマンドラインのオプション - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - ブラックコインQTのコマンドラインのヘルプ情報を表示する。 - - - - &Show - (&S)表示 - - - - &Console - コンソール (&C) - - - - Build date - ビルドの日付 - - - - BitBean - Debug window - ブラックコイン:デバッグウインドウ - - - - BitBean Core - ブラックコインコア - - - - Debug log file - デバッグ用ログファイル - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - 現行のディレクトリからデバッグログファイルを開く。大きなファイルのばい、少し時間かかる。 - - - - Clear console - コンソールをクリア - - - - Welcome to the BitBean 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> と入力します。 - - - - SendCoinsDialog - - - - - - - - - - Send Coins - コインを送る - - - - Coin Control Features - コインのコントロールの設定 - - - - Inputs... - 入力... - - - - automatically selected - 自動的に選択 - - - - Insufficient funds! - 資金不足! - - - - Quantity: - 数量: - - - - - 0 - 0 - - - - Bytes: - バイト - - - - Amount: - 総額: - - - - - - - 0.00 BC - 123.456 BC {0.00 ?} - - - - Priority: - 優先: - - - - medium - - - - - Fee: - 料金: - - - - Low Output: - アウトプット低い: - - - - no - いいえ - - - - After Fee: - 料金の後 - - - - Change - お釣り: - - - - custom change address - カスタムのお釣りのアドレス - - - - Send to multiple recipients at once - 一度に複数の人に送る - - - - Add &Recipient - 受取人を追加 (&R) - - - - Remove all transaction fields - 全分の処理欄を削除する - - - - Clear &All - すべてクリア (&A) - - - - Balance: - 残高: - - - - 123.456 BC - 123.456 BC - - - - Confirm the send action - 送る操作を確認する - - - - S&end - 送る (&e) - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - ブラックコインアドレスの入力 (例;2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Copy quantity - 数量をコピー - - - - Copy amount - 総額のコピー - - - - Copy fee - 料金をコピー - - - - Copy after fee - 料金の後をコピー - - - - Copy bytes - バイトをコピー - - - - Copy priority - 優先をコピー - - - - Copy low output - アウトプット低いをコピー - - - - Copy change - お釣りをコピー - - - - <b>%1</b> to %2 (%3) - <b>%1</b> から %2 (%3)に - - - - Confirm send coins - コインを送る確認 - - - - Are you sure you want to send %1? - %1送付、よろしいですか? - - - - and - - - - - 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回の送信で同じアドレスに送ることは出来ません。 - - - - Error: Transaction creation failed. - エラー:処理を失敗しました。 - - - - 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のコピーで費やしたが、現行のwallet.datとはアップデートされていない。 - - - - WARNING: Invalid BitBean address - 警告:無効なブラックコインアドレス - - - - (no label) - (ラベル無し) - - - - WARNING: unknown change address - 警告:不明なお釣りのアドレス - - - - SendCoinsEntry - - - Form - フォーム - - - - A&mount: - 金額(&A): - - - - Pay &To: - 送り先(&T): - - - - - Enter a label for this address to add it to your address book - アドレス帳に追加するには、このアドレスのラベルを入力します - - - - &Label: - ラベル(&L): - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - 支払いへ送るアドレス (例:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Choose address from address book - アドレス帳からアドレスを選択する - - - - Alt+A - Alt+A - - - - Paste address from clipboard - クリップボードからアドレスを貼付ける - - - - Alt+P - Alt+P - - - - Remove this recipient - この受信者を外す - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - ブラックコインアドレスの入力 (例;2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - メッセージの署名するアドレス(例:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose an address from the address book - アドレス帳からアドレスを選ぶ - - - - - Alt+A - Alt+A - - - - Paste address from clipboard - クリップボードからアドレスを貼付ける - - - - Alt+P - Alt+P - - - - Enter the message you want to sign here - ここにあなたが署名するメッセージを入力します - - - - Copy the current signature to the system clipboard - 現在の署名をシステムのクリップボードにコピーする - - - - Sign the message to prove you own this BitBean address - 所有権の証明するためこのメサッジを署名する - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - メッセージの署名するアドレス(例:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Verify the message to ensure it was signed with the specified BitBean address - 受け取ったメッセージの署名を確保のため、メッセージを確認する。 - - - - Reset all verify message fields - 入力項目の内容をすべて消去します - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - ブラックコインのアドレスを入力(例:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Click "Sign Message" to generate signature - 署名を作成するには"メッセージの署名"をクリック - - - - Enter BitBean 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. - メッセージは検証されました。 - - - - TransactionDesc - - - Open until %1 - ユニット %1 を開く - - - - Open for %n block(s) - %n ブロックに開いている - - - - 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 - - - - Generated coins must mature 110 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. - コインを費やす前に発現されたコインは510ブロック間成熟しなければなりません。このブロックを発現させたときに、ブロックチェインに足すためにネットワークへ放送しました。ブロックチェインに追加失敗したばい、レベルは「受け入られていない」に変わって、費やせられない状況になります。自分のノードと他のノードと同時に新しいブロックを発現させたときに、時折に起こること。 - - - - Debug information - デバッグ情報 - - - - Transaction - 処理 - - - - Inputs - 入力 - - - - Amount - 総額 - - - - true - 正しい - - - - false - 正しくない - - - - , has not been successfully broadcast yet - まだブロードキャストが成功していません - - - - unknown - 未確認 - - - - TransactionDescDialog - - - Transaction details - 処理の詳細 - - - - This pane shows a detailed description of the transaction - ここでは処理の詳細を表示しています - - - - TransactionTableModel - - - Date - 日付 - - - - Type - タイプ - - - - Address - Helbidea - - - - Amount - 総額 - - - - Open until %1 - ユニット %1 を開く - - - - Confirmed (%1 confirmations) - 検証されました (%1 検証済み) - - - - Open for %n more block(s) - %n 以上のブロックを開く - - - - Offline - オフライン - - - - Unconfirmed - 未検証 - - - - Confirming (%1 of %2 recommended confirmations) - 検証最中 (%1 / %2 の進めている検証済み) - - - - Conflicted - 相違 - - - - Immature (%1 confirmations, will be available after %2) - 未熟 (%1 検証,%2の後可用ができる) - - - - This block was not received by any other nodes and will probably not be accepted! - このブロックは他のどのノードによっても受け取られないで、多分受け入れられないでしょう! - - - - Generated but not accepted - 生成されましたが承認されませんでした - - - - Received with - 受信元 - - - - Received from - 送り主 - - - - 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. - 残高に追加または削除された総額。 - - - - 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 Data - 処理のデータを書き出す - - - - Comma separated file (*.csv) - テキスト CSV (*.csv) - - - - Confirmed - 検証済み - - - - Date - 日付 - - - - Type - タイプ - - - - Label - ラベル - - - - Address - Helbidea - - - - Amount - 総額 - - - - ID - ID - - - - Error exporting - エラーを書き出す - - - - Could not write to file %1. - ファイルを書き込めなかった。%1 - - - - Range: - 期間: - - - - to - から - - - - WalletModel - - - Sending... - 通信中... - - - - bitcoin-core - - - BitBean version - ブラックコインバージョン - - - - Usage: - 使用法: - - - - Send command to -server or BitBeand - -server か BitBeandへコマンドを送る。 - - - - List commands - コマンド一覧 - - - - Get help for a command - コマンドのヘルプ - - - - Options: - オプション: - - - - Specify configuration file (default: BitBean.conf) - 設定ファイルを特定する (デファルト: BitBean.conf) - - - - Specify pid file (default: BitBeand.pid) - pid ファイルを特定する (デフォルト: BitBeand.pid) - - - - Specify wallet file (within data directory) - ウォレットのファイルを指定 (データ・ディレクトリの中に) - - - - Specify data directory - データ ディレクトリの指定 - - - - Set database cache size in megabytes (default: 25) - データベースのキャッシュサイズをメガバイトで設定 (初期値: 25) - - - - Set database disk log size in megabytes (default: 100) - メガバイトでのデータベースのログザイズの大きさの設定(デファルト:100) - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - <port> で 接続をリスン (デフォルト: 15714かtestnet は 25714) - - - - 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 - あなた自身のパブリックなアドレスを指定 - - - - Bind to given address. Use [host]:port notation for IPv6 - アドレスに結ぶ。IPv6のばい、[host]:port 表記法を使ってください。 - - - - Stake your coins to support network and gain reward (default: 1) - 褒奨金をもらうためと、ブラックコインネットワークをサッポートするために、コインを賭ける(デファルト:1) - - - - 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 - - - - Detach block and address databases. Increases shutdown time (default: 0) - ブロックとアドレスのデータベースを切り離す。この設定はシャットダウンの時間を伸ばさせます。(デファルト:0) - - - - 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のコピーで費やしたが、現行の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の料金が必要です。 - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - <port> で JSON-RPC 接続をリスン (デフォルト: 15715かtestnet は 25715) - - - - Accept command line and JSON-RPC commands - コマンドラインと JSON-RPC コマンドを許可 - - - - Error: Transaction creation failed - エラー:処理を失敗しました。 - - - - Error: Wallet locked, unable to create transaction - エラー:ウォレットはロックされたために、処理を作られなかった。 - - - - Importing blockchain data file. - ブロックチェインのファイルを読み込んでいる。 - - - - Importing bootstrap blockchain data file. - ブートストラップなブロックチェインのファイルを読み込んでいる。 - - - - 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) - - - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - IPv6 でリスンする RPC ポート %u の設定中にエラーが発生したので IPv4 に切り替えます: %s - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - データベース%sを初期化するにエラーになりました。直すためにディレクトリをバックアップして、そしてwallet.dat意外のファイルを取り除いてください。 - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - バイトで、最優先、低料金の処理の最大サイズの設定(デファルト:27000) - - - - 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 BitBean will not work properly. -  警告:コンピュータの日付と時間を調べてください。時間ずらしかったばい、ブラックコイン QTは正しく行動しない。 - - - - 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 に保存されました; もしもあなたの残高や処理が正しくないばい、バックアップから復元してください。 - - - - Attempt to recover private keys from a corrupt wallet.dat - 壊れた wallet.dat から秘密鍵を復旧することを試す - - - - Block creation options: - ブロック作成オプション: - - - - Connect only to the specified node(s) - 指定したノードだけに接続 - - - - Discover own IP address (default: 1 when listening and no -externalip) - 自分の IP アドレスを発見 (初期値: リスン中と -externalip を使用していない場合は1) - - - - Failed to listen on any port. Use -listen=0 if you want this. - ポートのリスンに失敗しました。必要であれば -listen=0 を使用してください。 - - - - Find peers using DNS lookup (default: 1) - DNSルックアップでピーアを探す(デファルト:1) - - - - Sync checkpoints policy (default: strict) - 同期チェックポイント方針(デファルト:厳しい) - - - - Invalid -tor address: '%s' - 無効なTORアドレス: '%s' - - - - Invalid amount for -reservebalance=<amount> - -reservebalance=<amount>の額は無効です - - - - 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) - <net> (IPv4, IPv6, Tor) ネットワーク内のノードだけに接続する - - - - Output extra debugging information. Implies all other -debug* options - 余分なデバッグ情報を出力する。この設定はすべてのdebug* の設定を有効にする。 - - - - Output extra network debugging information - 余分なネットワークのデバッグ情報を出力する - - - - Prepend debug output with timestamp - デバッグのアウトプットはタイムスタンプで先頭に追加する - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL オプション: (SSLのセットアップ手順は Bitcoin Wiki をご覧下さい) - - - - Select the version of socks proxy to use (4-5, default: 5) - SOCKSプロクシーのバージョンを選択する (4-5、 デファルト: 5) - - - - Send trace/debug info to console instead of debug.log file - トレース/デバッグ情報を debug.log ファイルの代わりにコンソールへ送る - - - - Send trace/debug info to debugger - デバッガへ追跡とデバッグ情報を送る。 - - - - Set maximum block size in bytes (default: 250000) - 最大ブロックサイズをバイトで設定 (初期値: 250000) - - - - Set minimum block size in bytes (default: 0) - 最小ブロックサイズをバイトで設定 (初期値: 0) - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - クライアント起動時に debug.log ファイルを縮小 (初期値: -debug オプションを指定しない場合は1) - - - - Specify connection timeout in milliseconds (default: 5000) - 接続のタイムアウトをミリセコンドで指定 (初期値: 5000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - チェックポイントを署名できません。checkpointkeyは違いますか。 - - - - - Use UPnP to map the listening port (default: 0) - リスン ポートの割当に UPnP を使用 (初期値: 0) - - - - Use UPnP to map the listening port (default: 1 when listening) - リスン ポートの割当に UPnP を使用 (初期値: リスン中は1) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - プロクシーでTORヒドゥンサービス(TOR Hidden Services)を接続する(デファルト:-proxyと同じ) - - - - Username for JSON-RPC connections - JSON-RPC 接続のユーザー名 - - - - Verifying database integrity... - データベースの保全性を確認最中... - - - - WARNING: syncronized checkpoint violation detected, but skipped! - 警告:シンクロナイズドチェックポイント違反を検出したが、チェックポイントを飛ばした。 - - - - Warning: Disk space is low! - 警告:ディスクの空き領域は少ない! - - - - Warning: This version is obsolete, upgrade required! - 警告: このバージョンは古いのでアップグレードが必要です! - - - - wallet.dat corrupt, salvage failed - wallet.dat が壊れ、復旧に失敗しました - - - - Password for JSON-RPC connections - JSON-RPC 接続のパスワード - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - %s, 設定ファイル:%sでrpcpasswordのパスワードを入力しなければならい - -このランダムパスワードのおすすめです: -rpcuser=BitBeanrpc -rpcpassword=%s -(このパサワードを覚えなくても大丈夫です) -ユーザ名とパスワードは同じであってはなりません。 -ファイルは存在しないばいは、所有者が読み取り可能な専用のファイルを作成してください。 -問題のことを知らせるために、alertnotifyの設定を有効にしたほうがいいです。 -例:alertnotify=echo %%s | mail -s "ブラックコイン警告" admin@foo.com - - - - - Find peers using internet relay chat (default: 0) - インターネットリレーチャット(IRC)でピアアを探す。(デファルト:1 {0}?) - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - 他のノードと時刻の同期する。確な時刻のコンピューターのばい、無効する。例:NTP同期設定有効ある(デファルト:1) - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - 処理を作ると、この額より少ない数字を無視する (デファルト:0.01) - - - - 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 はブロック ハッシュに置換される) - - - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - ウォレットの処理を変更する際にコマンドを実行 (cmd の %s は TxID に置換される) - - - - Require a confirmations for change (default: 0) - 変更するために、確認を必要とする (デファルト:0) - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - 処理のスクリプトコマンドで標準的なPUSHオペレータを施行する(デファルト:1) - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - 関連した警告をもらったら、コマンドを実行する (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 - 失ったウォレットの処理のブロック チェーンを再スキャン - - - - How many blocks to check at startup (default: 2500, 0 = all) - スタートのときに、いくつのブロックを調べます (デファルト:2500、 0 = すべて ) - - - - How thorough the block verification is (0-6, default: 1) - ブロック検証の徹底の程度 (0-6 、デファルト:1) - - - - Imports blocks from external blk000?.dat file - 外部 blk000?.dat ファイルからブロックを読み込む。 - - - - 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - 許容可能な暗号 (デフォルト: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - Error: Wallet unlocked for staking only, unable to create transaction. - エラー:アンロックされたウォレットは賭けるためだけで、処理を作られない。 - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - 警告:無効なチェックポイントを見つかりました!表示された処理は正しくない可能性がある!アップグレードするか、デベロッパーに報告する必要があります。 - - - - This help message - このヘルプ メッセージ - - - - Wallet %s resides outside data directory %s. - %sウォレットはディレクトリ%sの外にあります。 - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - %sディレクトリにをロックオンできない。ブラックコインQTは、もう発行してるでしょう。 - - - - BitBean - ブラックコイン - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - このコンピュータの %s にバインドすることができません (バインドが返したエラーは %d, %s) - - - - Connect through socks proxy - SOCKSプロキシで接続する - - - - Allow DNS lookups for -addnode, -seednode and -connect - -addnode, -seednode と -connect で DNS ルックアップを許可する - - - - Loading addresses... - アドレスを読み込んでいます... - - - - Error loading blkindex.dat - blkindex.dat 読み込みエラー - - - - Error loading wallet.dat: Wallet corrupted - wallet.dat 読み込みエラー: ウォレットが壊れました - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - wallet.dat 読み込みエラー:  ブラックコインQTの最新バージョンが必要です - - - - Wallet needed to be rewritten: restart BitBean to complete - ウォレットのデータをリライトしなければならい:ブラックコインQTをリスタートしてください - - - - 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' が無効です - - - - Error: could not start node - エラー:ノードの開始ができなった - - - - Sending... - 通信中... - - - - 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. BitBean is probably already running. - このコンピューターで%sに結ぶことができなかった。ブラックコインQTは、もう発行してるでしょう。 - - - - Fee per KB to add to transactions you send - 送る処理を足して、KBあたりの料金 - - - - Invalid amount for -mininput=<amount>: '%s' - -mininput=<amount>: '%s'の額は無効です - - - - Loading wallet... - ウォレットを読み込んでいます... - - - - Cannot downgrade wallet - ウォレットのダウングレードはできません - - - - Cannot initialize keypool - キースペースをイニシャライズをする - - - - 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. - rpcpassword=<password> を設定ファイルでセットしてください: -%s -ファイルが無い場合は、オーナーだけが読み取れる権限でファイルを作成してください。 - - - \ No newline at end of file diff --git a/src/qt/locale/bitcoin_ka.qm b/src/qt/locale/bitcoin_ka.qm deleted file mode 100644 index 04eacd9..0000000 Binary files a/src/qt/locale/bitcoin_ka.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_ko_KR.qm b/src/qt/locale/bitcoin_ko_KR.qm deleted file mode 100644 index c11b6b2..0000000 Binary files a/src/qt/locale/bitcoin_ko_KR.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_ky.qm b/src/qt/locale/bitcoin_ky.qm deleted file mode 100644 index df83eb2..0000000 Binary files a/src/qt/locale/bitcoin_ky.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_ky.ts b/src/qt/locale/bitcoin_ky.ts deleted file mode 100644 index 137875b..0000000 --- a/src/qt/locale/bitcoin_ky.ts +++ /dev/null @@ -1,3275 +0,0 @@ - - - AboutDialog - - - About BitBean - - - - - <b>BitBean</b> version - - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - - - - - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - - - - - AddressBookPage - - - Address Book - - - - - Double-click to edit address or label - - - - - Create a new address - Жаң даректи жасоо - - - - Copy the currently selected address to the system clipboard - - - - - &New Address - - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - - - - - &Copy Address - - - - - Show &QR Code - - - - - Sign a message to prove you own a BitBean address - - - - - Sign &Message - - - - - Delete the currently selected address from the list - - - - - Verify a message to ensure it was signed with a specified BitBean address - - - - - &Verify Message - - - - - &Delete - Ө&чүрүү - - - - Copy &Label - - - - - &Edit - - - - - Export Address Book Data - - - - - Comma separated file (*.csv) - - - - - Error exporting - - - - - Could not write to file %1. - - - - - AddressTableModel - - - Label - - - - - Address - Дарек - - - - (no label) - (аты жок) - - - - AskPassphraseDialog - - - Passphrase Dialog - - - - - Enter passphrase - - - - - New passphrase - - - - - Repeat new passphrase - - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - - - - - For staking only - - - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - - - - - 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 COINS</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 - - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins 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. - - - - - BitcoinGUI - - - Sign &message... - - - - - Synchronizing with network... - - - - - &Overview - - - - - Show general overview of wallet - - - - - &Transactions - &Транзакциялар - - - - Browse transaction history - - - - - &Address Book - - - - - Edit the list of stored addresses and labels - - - - - &Receive coins - - - - - Show the list of addresses for receiving payments - - - - - &Send coins - - - - - E&xit - - - - - Quit application - - - - - Show information about BitBean - - - - - About &Qt - - - - - Show information about Qt - - - - - &Options... - - - - - &Encrypt Wallet... - - - - - &Backup Wallet... - - - - - &Change Passphrase... - - - - - ~%n block(s) remaining - - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - - - - - &Export... - - - - - Send coins to a BitBean address - - - - - Modify configuration options for BitBean - - - - - Export the data in the current tab to a file - - - - - Encrypt or decrypt wallet - - - - - Backup wallet to another location - - - - - Change the passphrase used for wallet encryption - - - - - &Debug window - - - - - Open debugging and diagnostic console - - - - - &Verify message... - Билдирүүнү &текшерүү... - - - - BitBean - - - - - Wallet - Капчык - - - - &About BitBean - - - - - &Show / Hide - - - - - Unlock wallet - - - - - &Lock Wallet - - - - - Lock wallet - - - - - &File - &Файл - - - - &Settings - - - - - &Help - &Жардам - - - - Tabs toolbar - - - - - Actions toolbar - - - - - - [testnet] - - - - - - BitBean client - - - - - %n active connection(s) to BitBean network - - - - - Downloaded %1 blocks of transaction history. - - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - - - - - Not staking because wallet is locked - - - - - Not staking because wallet is offline - - - - - Not staking because wallet is syncing - - - - - Not staking because you don't have mature coins - - - - - %n second(s) ago - - - - - &Unlock Wallet... - - - - - %n minute(s) ago - - - - - %n hour(s) ago - - - - - %n day(s) ago - - - - - Up to date - Жаңыланган - - - - Catching up... - - - - - Last received block was generated %1. - - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - - - - - Confirm transaction fee - - - - - Sent transaction - - - - - Incoming transaction - - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - - - - - - URI handling - - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - - - - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - - - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - - - - - Backup Wallet - - - - - Wallet Data (*.dat) - - - - - Backup Failed - - - - - There was an error trying to save the wallet data to the new location. - - - - - %n second(s) - - - - - %n minute(s) - - - - - %n hour(s) - - - - - %n day(s) - - - - - Not staking - - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - - - - - ClientModel - - - Network Alert - - - - - CoinControlDialog - - - Coin Control - - - - - Quantity: - - - - - Bytes: - - - - - Amount: - - - - - Priority: - - - - - Fee: - - - - - Low Output: - - - - - no - - - - - After Fee: - - - - - Change: - - - - - (un)select all - - - - - Tree mode - - - - - List mode - - - - - Amount - - - - - Label - - - - - Address - Дарек - - - - Date - Дата - - - - Confirmations - - - - - Confirmed - - - - - Priority - - - - - Copy address - - - - - Copy label - - - - - - Copy amount - - - - - Copy transaction ID - - - - - Copy quantity - - - - - Copy fee - - - - - Copy after fee - - - - - Copy bytes - - - - - Copy priority - - - - - Copy low output - - - - - Copy change - - - - - highest - - - - - high - - - - - medium-high - - - - - medium - - - - - low-medium - - - - - low - - - - - lowest - - - - - DUST - - - - - yes - - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 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. - - This means a fee of at least %2 is required. - - - - - - (no label) - (аты жок) - - - - change from %1 (%2) - - - - - (change) - - - - - EditAddressDialog - - - Edit Address - - - - - &Label - - - - - The label associated with this address book entry - - - - - &Address - &Дарек - - - - The address associated with this address book entry. This can only be modified for sending addresses. - - - - - New receiving address - - - - - New sending address - - - - - Edit receiving address - - - - - Edit sending address - - - - - The entered address "%1" is already in the address book. - - - - - The entered address "%1" is not a valid BitBean address. - - - - - Could not unlock wallet. - - - - - New key generation failed. - - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - - - - - version - - - - - Usage: - - - - - command-line options - - - - - UI options - - - - - Set language, for example "de_DE" (default: system locale) - - - - - Start minimized - - - - - Show splash screen on startup (default: 1) - - - - - OptionsDialog - - - Options - - - - - &Main - - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - - Pay transaction &fee - - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - - - - - Reserve - - - - - Automatically start BitBean after logging in to the system. - - - - - &Start BitBean on system login - - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - - - - - &Detach databases at shutdown - - - - - &Network - &Тармак - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - - - - - Map port using &UPnP - - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - - - - - &Connect through SOCKS proxy: - - - - - Proxy &IP: - - - - - IP address of the proxy (e.g. 127.0.0.1) - - - - - &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 BitBean. - - - - - &Unit to show amounts in: - - - - - Choose the default subdivision unit to show in the interface and when sending coins. - - - - - Whether to show BitBean 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 - &Жокко чыгаруу - - - - &Apply - - - - - default - жарыяланбаган - - - - - Warning - - - - - - This setting will take effect after restarting BitBean. - - - - - The supplied proxy address is invalid. - - - - - OverviewPage - - - Form - - - - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - - - - - Stake: - - - - - Unconfirmed: - - - - - Wallet - Капчык - - - - Spendable: - - - - - Your current spendable balance - - - - - Immature: - - - - - Mined balance that has not yet matured - - - - - Total: - - - - - Your current total balance - - - - - <b>Recent transactions</b> - - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - - - - - Total of coins that was staked, and do not yet count toward the current balance - - - - - - out of sync - синхрондоштурулган эмес - - - - QRCodeDialog - - - QR Code Dialog - - - - - Request Payment - - - - - Amount: - - - - - Label: - - - - - Message: - - - - - &Save As... - - - - - Error encoding URI into QR Code. - - - - - The entered amount is invalid, please check. - - - - - Resulting URI too long, try to reduce the text for label / message. - - - - - Save QR Code - - - - - PNG Images (*.png) - - - - - RPCConsole - - - Client name - - - - - - - - - - - - - - N/A - - - - - Client version - - - - - &Information - - - - - Using OpenSSL version - - - - - Startup time - - - - - Network - - - - - Number of connections - - - - - On testnet - - - - - Block chain - - - - - Current number of blocks - - - - - Estimated total blocks - - - - - Last block time - - - - - &Open - &Ачуу - - - - Command-line options - - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - - - - - &Show - - - - - &Console - &Консоль - - - - Build date - - - - - BitBean - Debug window - - - - - BitBean Core - - - - - Debug log file - - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - - - - - Clear console - Консолду тазалоо - - - - Welcome to the BitBean 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. - - - - - SendCoinsDialog - - - - - - - - - - Send Coins - - - - - Coin Control Features - - - - - Inputs... - - - - - automatically selected - - - - - Insufficient funds! - - - - - Quantity: - - - - - - 0 - - - - - Bytes: - - - - - Amount: - - - - - - - - 0.00 BC - - - - - Priority: - - - - - medium - - - - - Fee: - - - - - Low Output: - - - - - no - - - - - After Fee: - - - - - Change - - - - - custom change address - - - - - Send to multiple recipients at once - - - - - Add &Recipient - - - - - Remove all transaction fields - - - - - Clear &All - &Бардыгын тазалоо - - - - Balance: - - - - - 123.456 BC - - - - - Confirm the send action - - - - - S&end - &Жөнөтүү - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Copy quantity - - - - - Copy amount - - - - - Copy fee - - - - - Copy after fee - - - - - Copy bytes - - - - - Copy priority - - - - - Copy low output - - - - - Copy change - - - - - <b>%1</b> to %2 (%3) - - - - - Confirm send coins - - - - - Are you sure you want to send %1? - - - - - and - - - - - 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. - - - - - Error: Transaction creation failed. - - - - - 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. - - - - - WARNING: Invalid BitBean address - - - - - (no label) - (аты жок) - - - - WARNING: unknown change address - - - - - SendCoinsEntry - - - Form - - - - - A&mount: - - - - - Pay &To: - - - - - - Enter a label for this address to add it to your address book - - - - - &Label: - - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose address from address book - - - - - Alt+A - - - - - Paste address from clipboard - Даректи алмашуу буферинен коюу - - - - Alt+P - - - - - Remove this recipient - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - - Choose an address from the address book - - - - - - Alt+A - - - - - Paste address from clipboard - Даректи алмашуу буферинен коюу - - - - Alt+P - - - - - Enter the message you want to sign here - - - - - Copy the current signature to the system clipboard - - - - - Sign the message to prove you own this BitBean address - - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Verify the message to ensure it was signed with the specified BitBean address - - - - - Reset all verify message fields - - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Click "Sign Message" to generate signature - - - - - Enter BitBean 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. - - - - - TransactionDesc - - - Open until %1 - - - - - Open for %n block(s) - - - - - 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 - - - - - Generated coins must mature 110 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 - - - - - unknown - - - - - TransactionDescDialog - - - Transaction details - - - - - This pane shows a detailed description of the transaction - - - - - TransactionTableModel - - - Date - Дата - - - - Type - - - - - Address - Дарек - - - - Amount - - - - - Open until %1 - - - - - Confirmed (%1 confirmations) - - - - - Open for %n more block(s) - - - - - Offline - - - - - Unconfirmed - - - - - Confirming (%1 of %2 recommended confirmations) - - - - - Conflicted - - - - - Immature (%1 confirmations, will be available after %2) - - - - - This block was not received by any other nodes and will probably not be accepted! - - - - - Generated but not accepted - - - - - 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. - - - - - 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 Data - - - - - Comma separated file (*.csv) - - - - - Confirmed - - - - - Date - Дата - - - - Type - - - - - Label - - - - - Address - Дарек - - - - Amount - - - - - ID - - - - - Error exporting - - - - - Could not write to file %1. - - - - - Range: - - - - - to - - - - - WalletModel - - - Sending... - - - - - bitcoin-core - - - BitBean version - - - - - Usage: - - - - - Send command to -server or BitBeand - - - - - List commands - - - - - Get help for a command - - - - - Options: - - - - - Specify configuration file (default: BitBean.conf) - - - - - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - - - - - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - - - - - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - - - - - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - - - - - 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 - - - - - Detach block and address databases. Increases shutdown time (default: 0) - - - - - 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 - - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - - - - - Accept command line and JSON-RPC commands - - - - - Error: Transaction creation failed - - - - - Error: Wallet locked, unable to create transaction - - - - - Importing blockchain data file. - - - - - Importing bootstrap blockchain data file. - - - - - 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) - - - - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - - - - - 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 BitBean will not work properly. - - - - - 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. - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Discover own IP address (default: 1 when listening and no -externalip) - - - - - Failed to listen on any port. Use -listen=0 if you want this. - - - - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Select the version of socks proxy to use (4-5, default: 5) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - Unable to sign checkpoint, wrong checkpointkey? - - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Use proxy to reach tor hidden services (default: same as -proxy) - - - - - Username for JSON-RPC connections - - - - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - - - - - Warning: This version is obsolete, upgrade required! - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - - - - - 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) - - - - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - - This help message - - - - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Connect through socks proxy - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading blkindex.dat - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - - - - - Wallet needed to be rewritten: restart BitBean 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' - - - - - Error: could not start node - - - - - Sending... - - - - - 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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - - - - - Loading wallet... - - - - - Cannot downgrade wallet - - - - - Cannot initialize keypool - - - - - 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_lt.qm b/src/qt/locale/bitcoin_lt.qm deleted file mode 100644 index 51e5c80..0000000 Binary files a/src/qt/locale/bitcoin_lt.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_nb.qm b/src/qt/locale/bitcoin_nb.qm deleted file mode 100644 index 5722dfc..0000000 Binary files a/src/qt/locale/bitcoin_nb.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_nl.qm b/src/qt/locale/bitcoin_nl.qm deleted file mode 100644 index 80237d6..0000000 Binary files a/src/qt/locale/bitcoin_nl.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts deleted file mode 100644 index 9e91651..0000000 --- a/src/qt/locale/bitcoin_nl.ts +++ /dev/null @@ -1,3312 +0,0 @@ - - - AboutDialog - - - About BitBean - Over BitBean - - - - <b>BitBean</b> version - <b>BitBean</b> versie - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - Copyright © 2009-2014 De Bitcoin ontwikkelaars -Copyright © 2012-2014 De NovaCoin ontwikkelaars -Copyright © 2014 De BitBean ontwikkelaars - - - - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - -Dit is experimentele software. - -Gedistribueerd onder de MIT/X11 software licentie, zie het bijgevoegde bestand COPYING of http://www.opensource.org/licenses/mit-license.php. - -Dit product bevat software ontwikkeld door het OpenSSL Project voor gebruik in de OpenSSL Toolkit (http://www.openssl.org/) en cryptografische software gemaakt door Eric Young (eay@cryptsoft.com) en UPnP software geschreven door Thomas Bernard. - - - - AddressBookPage - - - Address Book - Adresboek - - - - Double-click to edit address or label - Dubbelklik om het adres of label te wijzigen - - - - Create a new address - Maak een nieuw adres aan - - - - Copy the currently selected address to the system clipboard - Kopieer het huidig geselecteerde adres naar het klembord - - - - &New Address - &Nieuw adres - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - Dit zijn al jou BitBean adressen om betalingen mee te ontvangen. Je kunt iedere verzender een apart adres geven zodat je kunt volgen wie jou betaald. - - - - &Copy Address - &Kopiëer Adres - - - - Show &QR Code - Toon &QR Code - - - - Sign a message to prove you own a BitBean address - Teken een bericht om te bewijzen dat je een BitBean adres bezit. - - - - Sign &Message - Teken &Bericht - - - - Delete the currently selected address from the list - Verwijder het geselecteerde adres van de lijst - - - - Verify a message to ensure it was signed with a specified BitBean address - Verifieer een bericht om zeker te zijn dat deze is ondertekend met een specifiek BitBean adres - - - - &Verify Message - &Verifieer Bericht - - - - &Delete - &Verwijder - - - - Copy &Label - Kopiëer &Label - - - - &Edit - &Bewerk - - - - Export Address Book Data - Exporteer Adresboek Data - - - - Comma separated file (*.csv) - Kommagescheiden bestand (*.csv) - - - - Error exporting - Fout bij exporteren - - - - Could not write to file %1. - Kan niet schrijven naat bestand %1 - - - - AddressTableModel - - - Label - Label - - - - Address - Adres - - - - (no label) - (geen label) - - - - AskPassphraseDialog - - - Passphrase Dialog - Wachtwoordscherm - - - - Enter passphrase - Voer wachtwoord in - - - - New passphrase - Nieuw wachtwoord - - - - Repeat new passphrase - Herhaal wachtwoord - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - Bedoeld om het command 'sendmoney' uit te schakelen indien het OS niet meer veilig is. Geeft geen echte beveiliging. - - - - For staking only - Alleen voor staking - - - - 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 verschillende 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 COINS</b>! - Waarschuwing: Als je je portemonnee versleuteld en je verliest je wachtwoord zul je <b>AL JE MUNTEN 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! - - - - - Wallet encrypted - Portemonnee versleuteld - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - BitBean zal nu sluiten om het versleutel proces te voltooien. Onthou dat het versleutelen van je portemonnee je niet volledig beschermt tegen diefstal van munten door malware op je computer. - - - - - - - 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. - - - - BitcoinGUI - - - Sign &message... - &Onderteken bericht... - - - - Synchronizing with network... - Synchroniseren met netwerk... - - - - &Overview - &Overzicht - - - - Show general overview of wallet - Toon algemeen overzicht van de portemonnee - - - - &Transactions - &Transacties - - - - Browse transaction history - Blader door transactieverleden - - - - &Address Book - &Adresboek - - - - Edit the list of stored addresses and labels - Wijzig de lijst met bewaarde adressen en labels - - - - &Receive coins - &Ontvang munten - - - - Show the list of addresses for receiving payments - Toon de lijst aan adressen voor ontvangen betalingen - - - - &Send coins - Verstuur munten - - - - E&xit - &Afsluiten - - - - Quit application - Programma afsluiten - - - - Show information about BitBean - Toon informatie over BitBean - - - - About &Qt - Over &Qt - - - - Show information about Qt - Toon informatie over Qt - - - - &Options... - &Opties... - - - - &Encrypt Wallet... - &Versleutel Portemonnee... - - - - &Backup Wallet... - &Backup Portemonnee... - - - - &Change Passphrase... - &Wijzig Wachtwoord - - - - ~%n block(s) remaining - ~%n blok nodig~%n blokken nodig - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - %1 van %2 aan transactie historie blokken gedownload (%3% klaar). - - - - &Export... - &Exporteren... - - - - Send coins to a BitBean address - Verstuur munten naar een BitBean adres - - - - Modify configuration options for BitBean - Verander configuratie opties voor BitBean - - - - Export the data in the current tab to a file - Exporteer de data in de huidige tab naar een bestand - - - - Encrypt or decrypt wallet - Versleutel of ontsleutel de portemonnee - - - - 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... - - - - BitBean - BitBean - - - - Wallet - Portemonnee - - - - &About BitBean - &Over BitBean - - - - &Show / Hide - &Toon / Verberg - - - - Unlock wallet - Open portemonnee - - - - &Lock Wallet - &Sluit portemonnee - - - - Lock wallet - Sluit portemonnee - - - - &File - &Bestand - - - - &Settings - &Instellingen - - - - &Help - &Hulp - - - - Tabs toolbar - Tab-werkbalk - - - - Actions toolbar - Acties werkbalk - - - - - [testnet] - [testnetwerk] - - - - - BitBean client - BitBean client - - - - %n active connection(s) to BitBean network - %n actieve verbinding naar BitBean netwerk%n actieve verbindingen naar BitBean netwerk - - - - Downloaded %1 blocks of transaction history. - %1 blokken van transactie geschiedenis gedownload. - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - Staking. <br> Uw gewicht wordt %1 <br> Network gewicht is %2 <br> Verwachte tijd om beloning te verdienen is %3 - - - - Not staking because wallet is locked - Niet staking omdat portemonnee aan het beveiligd is - - - - Not staking because wallet is offline - Niet staking omdat portemonnee aan het offline is - - - - Not staking because wallet is syncing - Niet staking omdat portemonnee aan het synchroniseren is. - - - - Not staking because you don't have mature coins - Niet staking omdat je geen mature munten hebt - - - - %n second(s) ago - %n seconden geleden%n seconden geleden - - - - &Unlock Wallet... - Ontgrendel portemonnee... - - - - %n minute(s) ago - %n minuut geleden%n minuten geleden - - - - %n hour(s) ago - %n uur geleden%n uren geleden - - - - %n day(s) ago - %n dag geleden%n dagen geleden - - - - Up to date - Bijgewerkt - - - - Catching up... - Aan het bijwerken... - - - - Last received block was generated %1. - Laatst ontvangen blok is gegenereerd op %1. - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - De grootte van deze transactie overschrijdt de limiet. U kan deze transactie laten uitvoeren voor een meerkost van %1, dewelke doorgestuurd wordt naar de nodes die uw transactie verwerken, alsook ter ondersteuning van het netwerk. Wil u deze meerkost betalen? - - - - Confirm transaction fee - Bevestig transactie kosten - - - - Sent transaction - Verzonden transactie - - - - Incoming transaction - Binnenkomende transactie - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Datum: %1 -Bedrag: %2 -Type: %3 -Adres: %4 - - - - - - URI handling - URI-behandeling - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - URI kan niet ontleedt worden! Mogelijke oorzaken zijn een ongeldig BitBean adres of incorrecte URI parameters. - - - - 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> - - - - Backup Wallet - Backup Portemonnee - - - - Wallet Data (*.dat) - Portemonnee bestanden (*.dat) - - - - Backup Failed - Backup mislukt - - - - There was an error trying to save the wallet data to the new location. - Er was een fout opgetreden bij het opslaan van de wallet data naar de nieuwe locatie. - - - - %n second(s) - %n seconden%n seconden - - - - %n minute(s) - %n minuut%n minuten - - - - %n hour(s) - %n uur%n uur - - - - %n day(s) - %n dag%n dagen - - - - Not staking - Niet aan het staken. - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - Een fatale fout . BTestcoin kan niet langer veilig doorgaan en sluit af. - - - - ClientModel - - - Network Alert - Netwerkwaarschuwing - - - - CoinControlDialog - - - Coin Control - Coin controle opties - - - - Quantity: - Kwantiteit - - - - Bytes: - Bytes: - - - - Amount: - Bedrag: - - - - Priority: - Prioriteit: - - - - Fee: - Vergoeding: - - - - Low Output: - Lage uitvoer: - - - - no - nee - - - - After Fee: - Na vergoeding: - - - - Change: - Wijzigen: - - - - (un)select all - (de)selecteer alles - - - - Tree mode - Boom modus - - - - List mode - Lijst modus - - - - Amount - Bedrag - - - - Label - Label - - - - 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 - - - - Copy quantity - Kopieer aantal - - - - Copy fee - Kopieer vergoeding - - - - Copy after fee - Kopieer na vergoeding - - - - Copy bytes - Kopieer bytes - - - - Copy priority - Kopieer prioriteit - - - - Copy low output - Kopieer lage uitvoer - - - - Copy change - Kopieer wijzig - - - - highest - hoogste - - - - high - hoog - - - - medium-high - gemiddeld hoog - - - - medium - gemiddeld - - - - low-medium - laag gemiddeld - - - - low - laag - - - - lowest - laagste - - - - DUST - STOF - - - - yes - ja - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - Dit label wordt rood, als de transactie grootte groter is dan 10000 bytes.<br> - -Dit betekend een fee van minimaal %1 per kb is noodzakelijk.<br> - -Kan varieren van +/- 1 Byte per invulling - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - Transacties met hogere prioriteit komen sneller in een blok - -Dit label wordt rood, als de prioriteit kleiner is dan "normaal". - -Dit betekend een fee van minimaal %1 per kb is noodzakelijk. - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - Dit label wordt rood, als elke ontvanger ontvangt een bedrag dat kleiner is dan 1%. - -Dit betekent dat een vergoeding van ten minste 2% is vereist. - -Bedragen onder 0.546 keer het minimum vergoeding worden weergegeven als DUST. - - - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - Dit label wordt rood, als de verandering kleiner is dan %1. - -Dit betekend dat een fee van %2 is vereist. - - - - - (no label) - (geen label) - - - - change from %1 (%2) - wijzig van %1 (%2) - - - - (change) - (wijzig) - - - - EditAddressDialog - - - Edit Address - Bewerk Adres - - - - &Label - &Label - - - - The label associated with this address book entry - Het label geassocieerd met deze notitie in het adresboek - - - - &Address - &Adres - - - - The address associated with this address book entry. This can only be modified for sending addresses. - Het adres geassocieerd met deze notitie in het adresboek. Dit kan enkel aangepast worden bij verzend-adressen. - - - - New receiving address - Nieuw ontvangstadres - - - - New sending address - Nieuw adres om naar te verzenden - - - - Edit receiving address - Bewerk ontvangstadres - - - - Edit sending address - Bewerk adres om naar te verzenden - - - - The entered address "%1" is already in the address book. - Het opgegeven adres "%1" bestaat al in uw adresboek. - - - - The entered address "%1" is not a valid BitBean address. - Het ingevoerde adres "%1" is geen geldig BTestcoin adres. - - - - Could not unlock wallet. - Kon de portemonnee niet openen. - - - - New key generation failed. - Genereren nieuwe sleutel mislukt. - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - BitBean-Qt - - - - version - versie - - - - Usage: - Gebruik: - - - - command-line options - Commandoregel-opties - - - - UI options - Gebruikerinterface-opties - - - - Set language, for example "de_DE" (default: system locale) - Stel taal in, bijvoorbeeld "de_DE" (standaard: systeeminstellingen) - - - - Start minimized - Geminimaliseerd starten - - - - Show splash screen on startup (default: 1) - Laat laadscherm zien bij het opstarten. (standaard: 1) - - - - OptionsDialog - - - Options - Opties - - - - &Main - &Algemeen - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - Optioneel transactiekosten per kB dat helpt ervoor zorgen dat uw transacties worden snel verwerkt. De meeste transacties zijn 1 kB. Fee 0.01 aanbevolen. - - - - Pay transaction &fee - Betaal &transactiekosten - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - Gereserveerde hoeveelheid doet niet mee in staking en is daarom altijd uitgeefbaar. - - - - Reserve - Gereserveerd - - - - Automatically start BitBean after logging in to the system. - Automatisch starten van BTestcoin na inloggen van het systeem. - - - - &Start BitBean on system login - &Start BTestcoin bij systeem aanmelding - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - Los blok en adressenbestanden bij het afsluiten. Dit betekent dat ze naar een ander data-map worden verplaatst, maar het vertraagt ​​shutdown. De portemonnee is altijd vrijstaand. - - - - &Detach databases at shutdown - &Koppel database los bij afsluiten - - - - &Network - &Netwerk - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - De BitBean client poort automatisch openen op de router. Dit werkt alleen wanneer uw router UPnP ondersteunt en deze is ingeschakeld. - - - - Map port using &UPnP - Portmapping via &UPnP - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - Verbinding maken met het BitBean netwerk via een SOCKS proxy (bijvoorbeeld als U gebruik maakt van Tor) - - - - &Connect through SOCKS proxy: - &Verbind door SOCKS proxy: - - - - Proxy &IP: - Proxy &IP: - - - - IP address of the proxy (e.g. 127.0.0.1) - IP Adres van de proxy (bijv. 127.0.0.1) - - - - &Port: - &Poort: - - - - Port of the proxy (e.g. 9050) - Poort van de proxy (bijv. 9050) - - - - SOCKS &Version: - SOCKS-&Versie: - - - - SOCKS version of the proxy (e.g. 5) - SOCKS-versie van de proxy (bijv. 5) - - - - &Window - &Scherm - - - - Show only a tray icon after minimizing the window. - Laat alleen een systeemvak-icoon zien wanneer het venster geminimaliseerd is - - - - &Minimize to the tray instead of the taskbar - &Minimaliseer naar het systeemvak in plaats van de taakbalk - - - - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Minimaliseer het venster in de plaats van de applicatie af te sluiten als het venster gesloten wordt. Wanneer deze optie aan staan, kan de applicatie alleen worden afgesloten door Afsluiten te kiezen in het menu. - - - - M&inimize on close - Minimaliseer bij sluiten van het &venster - - - - &Display - &Interface - - - - User Interface &language: - Taal &Gebruikersinterface: - - - - The user interface language can be set here. This setting will take effect after restarting BitBean. - De user interface-taal kan hier ingesteld worden. Deze instelling word toegepast na BitBean opnieuw op te starten. - - - - &Unit to show amounts in: - &Eenheid om bedrag in te tonen: - - - - Choose the default subdivision unit to show in the interface and when sending coins. - Kies de standaard onderverdelingseenheid om weer te geven in uw programma, en voor het versturen van munten - - - - Whether to show BitBean addresses in the transaction list or not. - BitBean adressen in de transactielijst weergeven of niet - - - - &Display addresses in transaction list - Toon a&dressen in de transactielijst - - - - Whether to show coin control features or not. - Munt controle functies weergeven of niet. - - - - Display coin &control features (experts only!) - Laat coin & control functies zien (enkel voor gevorderden!) - - - - &OK - &OK - - - - &Cancel - Ann&uleren - - - - &Apply - &Toepassen - - - - default - standaard - - - - - Warning - Waarschuwing - - - - - This setting will take effect after restarting BitBean. - Deze instelling word toegepast na een restart van BitBean. - - - - The supplied proxy address is invalid. - Het opgegeven proxyadres is ongeldig. - - - - OverviewPage - - - Form - Vorm - - - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - De weergegeven informatie kan verouderd zijn, Je portemonnee synchroniseerd automatisch met het BitBean netwerk nadat er verbindig is gemaakt, maar dit proces is nog niet voltooid. - - - - Stake: - Stake: - - - - Unconfirmed: - Onbevestigd: - - - - Wallet - Portemonnee - - - - Spendable: - Uitgeefbaar: - - - - Your current spendable balance - 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> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Totaal van de transacties die nog moeten worden bevestigd, en nog niet mee voor het huidige balans - - - - Total of coins that was staked, and do not yet count toward the current balance - Totaal aantal munten dat was staked, en nog niet telt voor huidige balans. - - - - - out of sync - niet gesynchroniseerd - - - - QRCodeDialog - - - QR Code Dialog - QR Code Scherm - - - - Request Payment - Vraag betaling - - - - Amount: - Hoeveelheid: - - - - Label: - Label: - - - - Message: - Bericht: - - - - &Save As... - &Opslaan als... - - - - Error encoding URI into QR Code. - Fout tijdens encoderen URI in QR-code - - - - The entered amount is invalid, please check. - De ingevoerde hoeveel is ongeldig, controleer aub. - - - - 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. - - - - Save QR Code - Sla QR Code op. - - - - PNG Images (*.png) - PNG Afbeeldingen (*.png) - - - - RPCConsole - - - Client name - Clientnaam - - - - - - - - - - - - - N/A - N.v.t. - - - - Client version - Clientversie - - - - &Information - &Informatie - - - - Using OpenSSL version - Gebruikt OpenSSL versie - - - - Startup time - Opstarttijd - - - - Network - Netwerk - - - - Number of connections - Aantal connecties - - - - On testnet - Op testnetwerk - - - - Block chain - Blokketen - - - - Current number of blocks - Huidig aantal blokken - - - - Estimated total blocks - Geschat totaal aantal blokken - - - - Last block time - Tijd laatste blok - - - - &Open - &Open - - - - Command-line options - Commandoregel-opties - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - Laat het BTestcoin-QT help bericht zien om een lijst te krijgen met mogelijke BTestcoin command-regel opties. - - - - &Show - &Show - - - - &Console - &Console - - - - Build date - Bouwdatum - - - - BitBean - Debug window - BTestcoin - Debugscherm - - - - BitBean Core - BitBean Kern - - - - Debug log file - Debug-logbestand - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - Open het BitBean debug log bestand van de huidige data map. Dit kan een paar seconden duren voor grote log bestanden. - - - - Clear console - Maak console leeg - - - - Welcome to the BitBean RPC console. - Welkom bij de BitBean 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. - - - - SendCoinsDialog - - - - - - - - - - Send Coins - Verstuur munten - - - - Coin Control Features - Coin controle opties - - - - Inputs... - Invoer... - - - - automatically selected - automatisch geselecteerd - - - - Insufficient funds! - Onvoldoende fonds! - - - - Quantity: - Kwantiteit - - - - - 0 - 0 - - - - Bytes: - Bytes: - - - - Amount: - Bedrag: - - - - - - - 0.00 BC - 123.456 BC - - - - Priority: - Prioriteit: - - - - medium - gemiddeld - - - - Fee: - Vergoeding: - - - - Low Output: - Lage uitvoer: - - - - no - nee - - - - After Fee: - Na vergoeding: - - - - Change - Wijzigen - - - - custom change address - handmatig veranderen adres - - - - Send to multiple recipients at once - Verstuur aan verschillende ontvangers ineens - - - - Add &Recipient - Voeg &Ontvanger Toe - - - - Remove all transaction fields - Verwijder alles in de invulvelden - - - - Clear &All - Verwijder &Alles - - - - Balance: - Saldo: - - - - 123.456 BC - 123.456 BC - - - - Confirm the send action - Bevestig de verstuuractie - - - - S&end - &Verstuur - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Voeg een BTestcoin adres in (bijv. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Copy quantity - Kopieer aantal - - - - Copy amount - Kopieer bedrag - - - - Copy fee - Kopieer vergoeding - - - - Copy after fee - Kopieer na vergoeding - - - - Copy bytes - Kopieer bytes - - - - Copy priority - Kopieer prioriteit - - - - Copy low output - Kopieer lage uitvoer - - - - Copy change - Kopieer wijzig - - - - <b>%1</b> to %2 (%3) - <b> %1 </b> to %2 (%3) - - - - Confirm send coins - Bevestig versturen munten - - - - Are you sure you want to send %1? - Weet je zeker dat je %1 wilt verzenden? - - - - and - en - - - - The recipient address is not valid, please recheck. - Het ontvangstadres is niet geldig, controleer uw invoer. - - - - The amount to pay must be larger than 0. - Het ingevoerde bedrag moet groter zijn dan 0. - - - - The amount exceeds your balance. - Bedrag is hoger dan uw huidige saldo - - - - The total exceeds your balance when the %1 transaction fee is included. - Totaal overschrijdt uw huidige saldo wanneer de %1 transactiekosten worden meegerekend - - - - Duplicate address found, can only send to each address once per send operation. - Dubbel adres gevonden, u kunt slechts eenmaal naar een bepaald adres verzenden per verstuurtransactie - - - - Error: Transaction creation failed. - FOUT: Creëren van transactie mislukt. - - - - 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 geweigerd, Dit kan gebeuren als sommige munten in je portemonnee al gebruikt zijn, door het gebruik van een kopie van wallet.dat en de munten in de kopie zijn niet gemarkeerd als gebruikt. - - - - WARNING: Invalid BitBean address - WAARSCHUWING: Ongeldig BTestcoin adres - - - - (no label) - (geen label) - - - - WARNING: unknown change address - WAARSCHUWING: Onbekend adres - - - - SendCoinsEntry - - - Form - Vorm - - - - A&mount: - Bedra&g: - - - - Pay &To: - Betaal &Aan: - - - - - Enter a label for this address to add it to your address book - Vul een label in voor dit adres om het toe te voegen aan uw adresboek - - - - &Label: - &Label: - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Het adres om naar te betalen (bijv. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Choose address from address book - Kies adres uit adresboek - - - - Alt+A - Alt+A - - - - Paste address from clipboard - Plak adres vanuit klembord - - - - Alt+P - Alt+P - - - - Remove this recipient - Verwijder deze ontvanger - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Voeg een BTestcoin adres in (bijv. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - SignVerifyMessageDialog - - - Signatures - Sign / Verify a Message - Handtekeningen - Onderteken een bericht / Verifiëer een handtekening - - - - - &Sign Message - O&nderteken Bericht - - - - You can sign messages with your addresses to prove you own them. Be careful not to sign anything vague, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - U kunt berichten ondertekenen met een van uw adressen om te bewijzen dat u dit adres bezit. Pas op dat u geen onduidelijke dingen ondertekent, want phishingaanvallen zouden u kunnen misleiden om zo uw identiteit te stelen. Onderteken alleen berichten waarmee u het volledig eens bent. - - - - The address to sign the message with (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Het adres om het bericht te ondertekenen (bijv. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose an address from the address book - Kies een adres uit het adresboek - - - - - 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 - - - - Copy the current signature to the system clipboard - Kopieer de huidige handtekening naar het systeemklembord - - - - Sign the message to prove you own this BitBean address - Teken een bericht om te bewijzen dat je een BitBean adres bezit. - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Het adres van het bericht is ondertekend met (bijv. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Verify the message to ensure it was signed with the specified BitBean address - Verifieer een bericht om zeker te zijn dat deze is ondertekend met een specifiek BitBean adres - - - - Reset all verify message fields - Verwijder alles in de invulvelden - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Voeg een BTestcoin adres in (bijv. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Click "Sign Message" to generate signature - Klik "Onderteken Bericht" om de handtekening te genereren - - - - Enter BitBean signature - Voer BitBean handtekening in - - - - - 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. - - - - TransactionDesc - - - Open until %1 - Openen totdat %1 - - - - Open for %n block(s) - Open voor nog %n blokOpen voor nog %n blokken - - - - conflicted - conflicted - - - - %1/offline - %1/offline - - - - %1/unconfirmed - %1/onbevestigd - - - - %1 confirmations - %1 bevestigingen - - - - Status - Status - - - - , broadcast through %n node(s) - , 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: - - - - Generated coins must mature 110 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. - Gegenereerd munten moeten 510 blokken maturen voordat ze kunnen worden besteed. Wanneer je een blok genereerd, het naar het netwerk is verzonden en toegevoegd aan de blokketen, zal de status veranderen naar "niet geaccepteerd"and kan het niet uitgegeven worden. Dit kan soms gebeuren als een ander knooppunt genereert een blok binnen een paar seconden na jou. - - - - 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 uitgezonden - - - - unknown - onbekend - - - - TransactionDescDialog - - - Transaction details - Transactiedetails - - - - This pane shows a detailed description of the transaction - Dit venster laat een uitgebreide beschrijving van de transactie zien - - - - TransactionTableModel - - - Date - Datum - - - - Type - Type - - - - Address - Adres - - - - Amount - Bedrag - - - - Open until %1 - Open tot %1 - - - - Confirmed (%1 confirmations) - Bevestigd (%1 bevestigingen) - - - - Open for %n more block(s) - Open voor nog %n blokOpen voor nog %n blokken - - - - Offline - Offline - - - - Unconfirmed - Onbevestigd: - - - - Confirming (%1 of %2 recommended confirmations) - Bevestigen.. (%1 van de %2 bevestigingen) - - - - Conflicted - Conflicted - - - - Immature (%1 confirmations, will be available after %2) - Immature (%1 bevestiging, word beschikbaar na %2) - - - - This block was not received by any other nodes and will probably not be accepted! - Dit blok is niet ontvangen bij andere nodes en zal waarschijnlijk niet worden geaccepteerd! - - - - Generated but not accepted - Gegenereerd maar niet geaccepteerd - - - - Received with - Ontvangen met - - - - Received from - Ontvangen van - - - - 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 laten zien. - - - - Date and time that the transaction was received. - Datum en tijd waarop deze transactie is ontvangen. - - - - Type of transaction. - Type transactie. - - - - Destination address of transaction. - Ontvangend adres van transactie. - - - - Amount removed from or added to balance. - Bedrag verwijderd van of toegevoegd aan saldo - - - - TransactionView - - - - All - Alles - - - - Today - Vandaag - - - - This week - Deze week - - - - This month - Deze maand - - - - Last month - Vorige maand - - - - This year - Dit jaar - - - - Range... - Bereik... - - - - Received with - Ontvangen met - - - - Sent to - Verzonden aan - - - - 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 Data - Exporteer Transactie Data - - - - Comma separated file (*.csv) - Kommagescheiden bestand (*.csv) - - - - Confirmed - Bevestigd - - - - Date - Datum - - - - Type - Type - - - - Label - Label - - - - Address - Adres - - - - Amount - Bedrag - - - - ID - ID - - - - Error exporting - Fout bij exporteren - - - - Could not write to file %1. - Kan niet schrijven naar bestand %1 - - - - Range: - Bereik: - - - - to - naar - - - - WalletModel - - - Sending... - Versturen... - - - - bitcoin-core - - - BitBean version - BitBean versie - - - - Usage: - Gebruik: - - - - Send command to -server or BitBeand - Verstuur commando naar -server of BitBeand - - - - List commands - Lijst van commando's - - - - Get help for a command - Toon hulp voor een commando - - - - Options: - Opties: - - - - Specify configuration file (default: BitBean.conf) - Selecteer configuratie bestand (standaard: BitBean.conf) - - - - Specify pid file (default: BitBeand.pid) - Selecteer pid bestand (standaard: BitBean.conf) - - - - Specify wallet file (within data directory) - Specificeer het portemonnee bestand (vanuit de gegevensmap) - - - - Specify data directory - Stel datamap in - - - - Set database cache size in megabytes (default: 25) - Stel databankcachegrootte in in megabytes (standaard: 25) - - - - Set database disk log size in megabytes (default: 100) - Stel database cache grootte in in megabytes (standaard: 100) - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - Luister voor verbindingen op <poort> (standaard: 15714 of testnet: 25714) - - - - 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 adressen van anderen op te halen, en verbreek vervolgens de verbinding - - - - Specify your own public address - Specificeer uw eigen publieke adres - - - - Bind to given address. Use [host]:port notation for IPv6 - Koppel aan gegeven adres. Gebruik [host]:poort notatie voor IPv6 - - - - Stake your coins to support network and gain reward (default: 1) - Stake je munten om netwerk te supporten en krijg hiervoor beloning (standaard: 1) - - - - 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 - - - - Detach block and address databases. Increases shutdown time (default: 0) - Ontkoppel blok en adressenbestanden. Verhoogt shutdown tijd (standaard: 0) - - - - 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 geweigerd, Dit kan gebeuren als sommige munten in je portemonnee al gebruikt zijn, door het gebruik van een kopie van wallet.dat en de munten in de kopie zijn niet gemarkeerd als gebruikt. - - - - 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 een transactie vergoeding van ten minste %s vanwege de hoeveelheid, complexiteit, of het gebruik van recent ontvangen gelden - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - Wacht op JSON-RPC-connecties op <poort> (standaard: 15715 of testnet: 25715) - - - - Accept command line and JSON-RPC commands - Aanvaard commandoregel- en JSON-RPC-commando's - - - - Error: Transaction creation failed - Fout: Creëren van transactie mislukt. - - - - Error: Wallet locked, unable to create transaction - Fout: Portemonnee is op slot, niet mogelijk een transactie te creëren. - - - - Importing blockchain data file. - Importeren van blokketen data bestand. - - - - Importing bootstrap blockchain data file. - Importeren van blokketen data bestand. - - - - 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) - - - - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - Fout bij het ​​initialiseren van de database omgeving %s! Om te herstellen, BACKUP die directory, verwijder dan alles van behalve het wallet.dat. - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - Stel maximale grootte van high-priority/low-fee transacties in bytes (standaard: 27000) - - - - 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 versturen van een transactie. - - - - Warning: Please check that your computer's date and time are correct! If your clock is wrong BitBean will not work properly. - Waarschuwing: Controleer of de datum en tijd van de computer juist zijn! Als uw klok verkeerd is BitBean zal niet goed werken. - - - - 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. - - - - Attempt to recover private keys from a corrupt wallet.dat - Poog de geheime sleutels uit een corrupt wallet.dat bestand terug te halen - - - - Block creation options: - Blokcreatie-opties: - - - - Connect only to the specified node(s) - Verbind alleen naar de gespecificeerde node(s) - - - - 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) - - - - 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. - - - - Find peers using DNS lookup (default: 1) - Zoek peers doormiddel van DNS lookup (standaard: 1) - - - - Sync checkpoints policy (default: strict) - Sync checkpoints beleid (standaard: strikt) - - - - Invalid -tor address: '%s' - Ongeldig-tor adres: '%s' - - - - Invalid amount for -reservebalance=<amount> - Ongeldig bedrag voor -reservebalance = <bedrag> - - - - 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) - Verbind alleen naar nodes in netwerk <net> (IPv4, IPv6 of Tor) - - - - Output extra debugging information. Implies all other -debug* options - Geef extra debugging informatie weer. Impliceert alle andere debug * opties - - - - Output extra network debugging information - Geef extra netwerk debug informatie weer - - - - Prepend debug output with timestamp - Voeg een tijdstempel toe aan debug output - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL-opties: (zie de Bitcoin wiki voor SSL-instructies) - - - - Select the version of socks proxy to use (4-5, default: 5) - Selecteer de versie van socks proxy (4-5, default: 5) - - - - 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 - - - - Send trace/debug info to debugger - Stuur trace/debug info naar de debugger - - - - Set maximum block size in bytes (default: 250000) - Stel maximale block grootte in bytes in (standaard: 250000) - - - - Set minimum block size in bytes (default: 0) - Stel minimum blokgrootte in in bytes (standaard: 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) - - - - Specify connection timeout in milliseconds (default: 5000) - Specificeer de time-outtijd in milliseconden (standaard: 5000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - Kan checkpoint niet ondertekenen, verkeerde checkpoint sleutel? - - - - - 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - Gebruik proxy tor verborgen diensten (standaard: zelfde als -proxy) - - - - Username for JSON-RPC connections - Gebruikersnaam voor JSON-RPC-verbindingen - - - - Verifying database integrity... - Database integriteit wordt geverifieërd - - - - WARNING: syncronized checkpoint violation detected, but skipped! - WAARSCHUWING: gesynchroniseerd checkpoint overtreding is geconstateerd, maar overgeslagen! - - - - Warning: Disk space is low! - Waarschuwing: Hardeschijf raakt vol! - - - - Warning: This version is obsolete, upgrade required! - Waarschuwing: Deze versie is verouderd, een upgrade is vereist! - - - - wallet.dat corrupt, salvage failed - wallet.dat corrupt, veiligstellen mislukt - - - - Password for JSON-RPC connections - Wachtwoord voor JSON-RPC-verbindingen - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - %s, u moet een rpcpassword instellen in het configuratiebestand: -%s -Het wordt aanbevolen de volgende willekeurig wachtwoord gebruiken: -rpcuser = BitBeanrpc -rpcpassword = %s -(je hoeft niet dit wachtwoord te onthouden) -De gebruikersnaam en het wachtwoord MAG NIET hetzelfde zijn. -Als het bestand niet bestaat, maakt u met leesbare-alleen-eigenaar bestandsbeheermachtigingen. -Het wordt ook aanbevolen om alertnotify instellen zodat u een melding van problemen; -bijvoorbeeld: alertnotify = echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - Find peers using internet relay chat (default: 0) - Zoek peers door gebruik van Internet Relay Chat (standaard: 1) {? 0)} - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - Synchroniseer tijd met andere connecties. Uitschakelen als de tijd op uw systeem nauwkeurig is bijv. synchroniseren met NTP (standaard: 1) - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - Bij het maken van transacties, negeer ingangen met waarde minder dan dit (standaard: 0,01) - - - - 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) - - - - 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) - - - - Require a confirmations for change (default: 0) - Vereist een bevestiging voor verandering (standaard: 0) - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - Dwing transactie scripts gebruik van canonieke PUSH operatoren (standaard: 1) - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - Voer opdracht uit zodra een relevante waarschuwing wordt ontvangen (%s in cmd wordt vervangen door bericht) - - - - 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - Hoeveel blokken controleren bij opstarten (standaard: 2500, 0= alles) - - - - How thorough the block verification is (0-6, default: 1) - Hoe grondig het blokverificatie is (0-6, standaard: 1) - - - - Imports blocks from external blk000?.dat file - Importeer blokken van extern blk000?.dat bestand - - - - 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Aanvaardbare cijfers (standaard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - Error: Wallet unlocked for staking only, unable to create transaction. - Fout: Portemonnee ontgrendeld voor alleen staking, niet in staat om de transactie te maken. - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - WAARSCHUWING: Ongeldig controlepunt gevonden! Weergegeven transacties kunnen niet kloppen! Het is mogelijk dat je moet upgraden, of developers moet waarschuwen. - - - - This help message - Dit helpbericht - - - - Wallet %s resides outside data directory %s. - Portemonnee %s bevindt zich buiten de datamap %s. - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - Kan een slot op data directory %s niet verkrijgen. BitBean wordt waarschijnlijk al uitgevoerd. - - - - BitBean - BitBean - - - - 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) - - - - Connect through socks proxy - Verbind door socks proxy - - - - 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 blkindex.dat - Fout bij laden van blkindex.dat - - - - Error loading wallet.dat: Wallet corrupted - Fout bij laden wallet.dat: Portemonnee corrupt - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - Fout bij laden van wallet.dat: Portemonnee vereist een nieuwere versie van BitBean - - - - Wallet needed to be rewritten: restart BitBean to complete - Portemonnee moet herschreven worden: herstart BitBean 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' - - - - Error: could not start node - Fout: kan geen verbinding maken met node - - - - Sending... - Versturen... - - - - 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. BitBean is probably already running. - Niet mogelijk om %s op deze computer. BitBean is waarschijnlijk al geopened. - - - - Fee per KB to add to transactions you send - Vergoeding per KB toe te voegen aan de transacties die u verzendt - - - - Invalid amount for -mininput=<amount>: '%s' - Ongeldig bedrag voor -mininput = <bedrag>: '%s' - - - - Loading wallet... - Portemonnee aan het laden... - - - - Cannot downgrade wallet - Kan portemonnee niet downgraden - - - - Cannot initialize keypool - Kan keypool niet initialiseren - - - - 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. - U dient rpcpassword=<wachtwoord> in te stellen in het configuratiebestand: -%s -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_pl.qm b/src/qt/locale/bitcoin_pl.qm deleted file mode 100644 index 2b3466f..0000000 Binary files a/src/qt/locale/bitcoin_pl.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_pt_BR.qm b/src/qt/locale/bitcoin_pt_BR.qm deleted file mode 100644 index 4d62f6a..0000000 Binary files a/src/qt/locale/bitcoin_pt_BR.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_pt_PT.qm b/src/qt/locale/bitcoin_pt_PT.qm deleted file mode 100644 index ccff389..0000000 Binary files a/src/qt/locale/bitcoin_pt_PT.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_ro_RO.qm b/src/qt/locale/bitcoin_ro_RO.qm deleted file mode 100644 index de7481e..0000000 Binary files a/src/qt/locale/bitcoin_ro_RO.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_ro_RO.ts b/src/qt/locale/bitcoin_ro_RO.ts deleted file mode 100644 index 0a721f4..0000000 --- a/src/qt/locale/bitcoin_ro_RO.ts +++ /dev/null @@ -1,3311 +0,0 @@ - - - AboutDialog - - - About BitBean - Despre BitBean - - - - <b>BitBean</b> version - Versiune <b>BitBean</b> - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - - - - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - -Acesta este un software experimental. - -Distribuit sub licența MIT/X11, vezi fișierul însoțitor COPYING sau http://www.opensource.org/licenses/mit-license.php. - -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. - - - - AddressBookPage - - - Address Book - Agendă - - - - Double-click to edit address or label - Dublu-click pentru a edita adresa sau eticheta - - - - Create a new address - Creează o adresă nouă - - - - Copy the currently selected address to the system clipboard - Copiază adresa selectată în clipboard - - - - &New Address - Adresă nouă - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - Acestea sunt adresele BitBean pentru a primi plăți. Poate doriți sa dați o adresa noua fiecarui expeditor pentru a putea ține evidența la cine efectuează plăti. - - - - &Copy Address - &Copiază adresa - - - - Show &QR Code - Arată cod &QR - - - - Sign a message to prove you own a BitBean address - Semnează un mesaj pentru a dovedi că dețineti o adresă BitBean - - - - Sign &Message - Semnează &Mesajul - - - - Delete the currently selected address from the list - Sterge adresele curent selectate din lista - - - - Verify a message to ensure it was signed with a specified BitBean address - Verifică un mesaj pentru a vă asigura că a fost semnat cu o anumită adresă BitBean - - - - &Verify Message - &Verifică mesajul - - - - &Delete - Ște&rge - - - - Copy &Label - Copiază &eticheta - - - - &Edit - &Editează - - - - Export Address Book Data - Exportă datele din Agendă - - - - Comma separated file (*.csv) - Valori separate prin virgulă (*.csv) - - - - Error exporting - Eroare la exportare - - - - Could not write to file %1. - Nu s-a putut scrie în fișier %1. - - - - AddressTableModel - - - Label - Etichetă - - - - Address - Adresă - - - - (no label) - (fără etichetă) - - - - 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 - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - Servește pentru a dezactiva sendmoneyl atunci când sistemul de operare este compromis. Nu oferă nicio garanție reală. - - - - For staking only - Doar pentru staking - - - - 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 COINS</b>! - Atentie: Daca encriptezi portofelul si iti uiti parola, <b>VEI PIERDE TOATA MONEDELE</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 - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - BitBean se va inchide pentru a termina procesul de encriptie. Amintiți-vă, criptarea portofelul dumneavoastră nu poate proteja pe deplin monedele dvs. de a fi furate de infectarea cu malware a computerului. - - - - - - - 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ă. - - - - BitcoinGUI - - - Sign &message... - Semnează &mesaj... - - - - Synchronizing with network... - Se sincronizează cu rețeaua... - - - - &Overview - &Imagine de ansamblu - - - - 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 - - - - &Address Book - Agendă - - - - Edit the list of stored addresses and labels - Editează lista de adrese si etichete stocate - - - - &Receive coins - Primește monede - - - - Show the list of addresses for receiving payments - Arată lista de adrese pentru primire plăți - - - - &Send coins - &Trimite monede - - - - E&xit - &Ieșire - - - - Quit application - Închide aplicația - - - - Show information about BitBean - Arată informații despre BitBean - - - - 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... - - - - ~%n block(s) remaining - ~%n bloc rămas~%n blocuri rămase~%n blocuri rămase - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Descărcat %1 din %2 blocuri din istoricul tranzacțiilor(%3% terminat). - - - - &Export... - &Exportă - - - - Send coins to a BitBean address - Trimite monede către o adresă BitBean - - - - Modify configuration options for BitBean - Modifică opțiuni de configurare pentru BitBean - - - - Export the data in the current tab to a file - Exportă datele din tab-ul curent într-un fișier - - - - Encrypt or decrypt wallet - Criptează sau decriptează portofelul - - - - 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... - - - - BitBean - BitBean - - - - Wallet - Portofelul - - - - &About BitBean - Despre BitBean - - - - &Show / Hide - Arata/Ascunde - - - - Unlock wallet - Deblochează portofelul - - - - &Lock Wallet - Blochează portofelul - - - - Lock wallet - Blochează portofelul - - - - &File - &Fișier - - - - &Settings - &Setări - - - - &Help - A&jutor - - - - Tabs toolbar - Bara de file - - - - Actions toolbar - Bara de instrumente Actiuni - - - - - [testnet] - [testnet] - - - - - BitBean client - Clientul BitBean - - - - %n active connection(s) to BitBean network - %n conexiune activă la reteaua BitBean%n conexiuni active la reteaua BitBean%n conexiuni active la reteaua BitBean - - - - Downloaded %1 blocks of transaction history. - Descărcat %1 blocuri din istoricul tranzacțiilor. - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - Staking. <br>Greutatea este %1<br>Greutatea retelei este %2<br>Timp estimat pentru a castiga recompensa este %3 - - - - Not staking because wallet is locked - Nu este in modul stake deoarece portofelul este blocat - - - - Not staking because wallet is offline - Nu este in modul stake deoarece portofelul este offline - - - - Not staking because wallet is syncing - Nu este in modul stake deoarece portofelul se sincronizeaza - - - - Not staking because you don't have mature coins - Nu este in modul stake deoarece nu sunt destule monede maturate - - - - %n second(s) ago - %n secundă în urmă%n secunde în urmă%n secunde în urmă - - - - &Unlock Wallet... - &Deblochează portofelul - - - - %n minute(s) ago - %n minut în urmă%n minute în urmă%n minute în urmă - - - - %n hour(s) ago - %n oră în urmă%n ore în urmă%n ore în urmă - - - - %n day(s) ago - %n zi în urmă%n zile în urmă%n zile în urmă - - - - Up to date - Actualizat - - - - Catching up... - Se actualizează... - - - - Last received block was generated %1. - Ultimul bloc primit a fost generat %1. - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Această tranzactie este peste limita admisa. Puteți sa trimiteți pentru o taxa de 1%, care este pentru nodurile care proceseaza tranzactia si ajuta la sprijinirea retelei. Vrei să plătești taxa? - - - - Confirm transaction fee - Confirmă comisinoul tranzacției - - - - Sent transaction - Tranzacție expediată - - - - Incoming transaction - Tranzacție recepționată - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Data: %1 -Suma: %2 -Tipul: %3 -Adresa: %4 - - - - - - URI handling - Manipulare URI - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - URI nu poate fi parsatt! Cauza poate fi o adresa BitBean invalidă sau parametrii URI malformați. - - - - 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> - - - - 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 the new location. - Eroare la încercarea de a salva datele portofelului în noua locaţie. - - - - %n second(s) - %n secundă%n secunde%n secunde - - - - %n minute(s) - %n minut%n minute%n minute - - - - %n hour(s) - %n oră%n ore%n ore - - - - %n day(s) - %n zi%n zile%n zile - - - - Not staking - Not staking - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - A apărut o eroare fatală. BitBean nu mai poate continua în condiții de siguranță și va iesi. - - - - ClientModel - - - Network Alert - Alertă rețea - - - - CoinControlDialog - - - Coin Control - Controlează moneda - - - - Quantity: - Cantitate: - - - - Bytes: - Octeţi: - - - - Amount: - Sumă: - - - - Priority: - Prioritate: - - - - Fee: - Taxa: - - - - Low Output: - Ieşire minimă: - - - - no - nu - - - - After Fee: - După taxe: - - - - Change: - Schimb: - - - - (un)select all - (de)selectaţi tot - - - - Tree mode - Modul arborescent - - - - List mode - Modul lista - - - - Amount - Sumă - - - - Label - Etichetă - - - - 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 - - - - 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 - - - - high - mare - - - - medium-high - marime medie - - - - medium - mediu - - - - low-medium - mediu-scazut - - - - low - scazut - - - - lowest - cel mai scazut - - - - DUST - DUST - - - - yes - da - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - Aceasta eticheta se inroseste daca marimea tranzactiei este mai mare de 10000 bytes. - -Acest lucru inseamna ca este nevoie de o taxa de cel putin %1 pe kb - -Poate varia +/- 1 Byte pe imput. - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - Tranzacțiile cu prioritate mai mare ajunge mult mai probabil într-un bloc - -Aceasta eticheta se inroseste daca prioritatea este mai mica decat "medium" - -Acest lucru inseamna ca este necesar un comision cel putin de %1 pe kB - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - Aceasta eticheta se inroseste daca oricare din contacte primeste o suma mai mica decat %1. - -Acest lucru inseamna ca un comision de cel putin %2 este necesar. - -Sume mai mici decat 0.546 ori minimul comisionului de relay sunt afisate ca DUST - - - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - Această eticheta se înroseste dacă schimbul este mai mic de %1. - -Acest lucru înseamnă că o taxă de cel puțin %2 este necesară - - - - - (no label) - (fără etichetă) - - - - change from %1 (%2) - schimbă la %1(%2) - - - - (change) - (schimb) - - - - EditAddressDialog - - - Edit Address - Editează adresa - - - - &Label - &Etichetă - - - - The label associated with this address book entry - Eticheta asociată cu această intrare în agendă - - - - &Address - &Adresă - - - - The address associated with this address book entry. This can only be modified for sending addresses. - Adresa asociată cu această intrare în agendă. Acest lucru poate fi modificat numai pentru adresele de trimitere. - - - - 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 BitBean address. - Adresa introdusă "%1" nu este o adresă BitBean validă - - - - Could not unlock wallet. - Portofelul nu a putut fi deblocat. - - - - New key generation failed. - Generarea noii chei a eșuat. - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - BitBean-Qt - - - - version - versiune - - - - Usage: - Utilizare: - - - - command-line options - Optiuni linie de comanda - - - - UI options - Setări UI - - - - Set language, for example "de_DE" (default: system locale) - Setează limba, de exemplu: "de_DE" (inițial: setare locală) - - - - Start minimized - Pornește miniaturizat - - - - Show splash screen on startup (default: 1) - Afișează ecran splash la pornire (implicit: 1) - - - - 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. Fee 5.00 recommended. - Comision de tranzacție opțional pe kB, care vă ajută ca tranzacțiile sa fie procesate rapid. Majoritatea tranzactiilor sunt de 1 kB. Comision de 0.01 recomandat - - - - Pay transaction &fee - Plăteşte comision pentru tranzacţie &f - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - Suma rezervată nu participă la maturare și, prin urmare, se poate cheltui în orice moment. - - - - Reserve - Rezervă - - - - Automatically start BitBean after logging in to the system. - Pornește BitBean imdiat după logarea în sistem - - - - &Start BitBean on system login - $Pornește BitBean la logarea în sistem - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - Detașați bloc și baze de date de adrese la închidere. Acest lucru înseamnă că pot fi mutate într-u alt director de date, dar incetineste închiderea. Portofelul este întotdeauna detașat. - - - - &Detach databases at shutdown - &Detasaza baza de date la inchidere - - - - &Network - &Retea - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - Deschide automat portul pentru cientul BitBean pe router. Aces lucru este posibil doara daca routerul suporta UPnP si este activat - - - - Map port using &UPnP - Mapeaza portul folosind &UPnP - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - Conecteaza la reteaua BitBean prinr-un proxy SOCKS(ex. cand te conectezi prin Tor) - - - - &Connect through SOCKS proxy: - Conectează-te printr-un proxy socks - - - - Proxy &IP: - Proxy &IP: - - - - IP address of the proxy (e.g. 127.0.0.1) - Adresa IP a proxy-ului(ex. 127.0.0.1) - - - - &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 BitBean. - Limba interfeței utilizator poate fi setat aici. Această setare va avea efect după repornirea BitBean. - - - - &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 bitcoin. - - - - Whether to show BitBean addresses in the transaction list or not. - Dacă să arate adrese BitBean din 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!) - Afiseaza &caracteristiclei de control ale monedei(numai experti!) - - - - &OK - & OK - - - - &Cancel - & Renunta - - - - &Apply - &Aplica - - - - default - Initial - - - - - Warning - Avertizare - - - - - This setting will take effect after restarting BitBean. - Aceasta setare va avea efect dupa repornirea BitBean. - - - - The supplied proxy address is invalid. - 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 BitBean network after a connection is established, but this process has not completed yet. - Informatia afisata poate fi depasita. Portofel se sincronizează automat cu rețeaua BitBean după ce se stabilește o conexiune, dar acest proces nu s-a finalizat încă. - - - - Stake: - Stake: - - - - Unconfirmed: - Neconfirmat: - - - - Wallet - Portofel - - - - Spendable: - Cheltuibil: - - - - Your current spendable balance - Balanța ta curentă 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> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Total al tranzacțiilor care nu au fost confirmate încă și nu contează față de balanța curentă - - - - Total of coins that was staked, and do not yet count toward the current balance - Totalul de monede care au fost in stake si nu sunt numarate in balanta curenta - - - - - out of sync - Nu este sincronizat - - - - QRCodeDialog - - - QR Code Dialog - Dialog cod QR - - - - Request Payment - Cerere de plată - - - - Amount: - Cantitate: - - - - Label: - Etichetă - - - - Message: - Mesaj: - - - - &Save As... - &Salvează ca... - - - - Error encoding URI into QR Code. - Eroare la codarea URl-ului în cod QR. - - - - The entered amount is invalid, please check. - Suma introdusă nu este validă, vă rugăm să verificați. - - - - Resulting URI too long, try to reduce the text for label / message. - URI rezultat este prea lung, încearcă să reduci textul pentru etichetă / mesaj. - - - - Save QR Code - Salvează codul QR - - - - PNG Images (*.png) - Imagini PNG(*png) - - - - RPCConsole - - - Client name - Nume client - - - - - - - - - - - - - N/A - N/A - - - - Client version - Versiune client - - - - &Information - &Informație - - - - Using OpenSSL version - Foloseste versiunea OpenSSL - - - - Startup time - Durata pornirii - - - - Network - Rețea - - - - Number of connections - Numărul de conexiuni - - - - On testnet - Pe testnet - - - - 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 - - - - Command-line options - Optiuni linii de comandă - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - Afișa mesajul de ajutor BitBean-Qt pentru a obține o listă cu posibile opțiuni de linie de comandă BitBean. - - - - &Show - &Arată - - - - &Console - &Consolă - - - - Build date - Construit la data - - - - BitBean - Debug window - BitBean - fereastră depanare - - - - BitBean Core - BitBean Core - - - - Debug log file - Loguri debug - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - Deschideti fisierul de depanare BitBean din folderul curent. Acest lucru poate dura cateva secunde pentru fisiere de log mari. - - - - Clear console - Curăță consola - - - - Welcome to the BitBean RPC console. - Bine ati venit la consola BitBean 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 - - - - SendCoinsDialog - - - - - - - - - - Send Coins - Trimite monede - - - - Coin Control Features - Caracteristici control ale monedei - - - - Inputs... - Intrări - - - - automatically selected - Selectie automatică - - - - Insufficient funds! - Fonduri insuficiente! - - - - Quantity: - Cantitate: - - - - - 0 - 0 - - - - Bytes: - Octeţi: - - - - Amount: - Sumă: - - - - - - - 0.00 BC - 123.456 BC {0.00 ?} - - - - Priority: - Prioritate: - - - - medium - mediu - - - - Fee: - Taxa: - - - - Low Output: - Ieşire minimă: - - - - no - nu - - - - After Fee: - După taxe: - - - - Change - Schimbă: - - - - custom change address - personalizează schimbarea adresei - - - - Send to multiple recipients at once - Trimite simultan către mai mulți destinatari - - - - Add &Recipient - &Adaugă destinatar - - - - Remove all transaction fields - Scoateți toate câmpuirile de tranzacții - - - - Clear &All - Șterge &tot - - - - Balance: - Balanță: - - - - 123.456 BC - 123.456 BC - - - - Confirm the send action - Confirmă operațiunea de trimitere - - - - S&end - &S Trimite - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Introduceți o adresă BitBean(ex:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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 - - - - <b>%1</b> to %2 (%3) - <b>%1</b> to %2 (%3) - - - - Confirm send coins - Confirmă trimiterea de monede - - - - Are you sure you want to send %1? - Sunteți sigur că doriți să trimiteți %1? - - - - and - și - - - - 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. - - - - Error: Transaction creation failed. - Eroare: crearea tranzacției a eșuat. - - - - 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: tranzacția a fost respinsă. Acest lucru s-ar putea întâmpla în cazul în care unele dintre monedele din portofel au fost deja cheltuite, cum si cum ați utilizat o copie a wallet.dat și monedele au fost cheltuite în copie dar nu au fost marcate ca și cheltuite aici. - - - - WARNING: Invalid BitBean address - Atenție: Adresă BitBean invalidă - - - - (no label) - (fără etichetă) - - - - WARNING: unknown change address - ATENTIE: adresa schimb necunoscuta - - - - SendCoinsEntry - - - Form - Formular - - - - A&mount: - Su&mă: - - - - Pay &To: - Plătește că&tre: - - - - - 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ă: - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Adresa catre care trimiteti plata(ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Choose address from address book - Alegeti adresa din agenda - - - - Alt+A - Alt+A - - - - Paste address from clipboard - Lipește adresa din clipboard - - - - Alt+P - Alt+P - - - - Remove this recipient - Scoateti acest destinatar - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Introduceți o adresă BitBean(ex:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Adresa cu care semnati mesajul(ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose an address from the address book - Alegeti o adresa din agenda - - - - - 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. - - - - Copy the current signature to the system clipboard - Copiaza semnatura curenta in clipboard-ul sistemului - - - - Sign the message to prove you own this BitBean address - Semnează un mesaj pentru a dovedi că dețineti o adresă BitBean - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Adresa cu care a fost semnat mesajul(ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Verify the message to ensure it was signed with the specified BitBean address - Verifică un mesaj pentru a vă asigura că a fost semnat cu o anumită adresă BitBean - - - - Reset all verify message fields - Reseteaza toate spatiile mesajelor semnate. - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Introduceți o adresă BitBean(ex:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Click "Sign Message" to generate signature - Click "Semneaza msajul" pentru a genera semnatura - - - - Enter BitBean signature - Introduceti semnatura BitBean - - - - - 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 - - - - TransactionDesc - - - Open until %1 - Deschis până la %1 - - - - Open for %n block(s) - Deschde pentru încă %1 blocDeschde pentru încă %1 blocuriDeschde pentru încă %1 blocuri - - - - conflicted - conflictual - - - - %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 - - - - Generated coins must mature 110 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. - Monedele generate trebuie să se maturizeze 510 blocuri înainte de a fi cheltuite. Când ați generat acest bloc, a fost trimis la rețea pentru a fi adăugat la lanțul de blocuri. În cazul în care nu reușește să intre în lanț, starea sa se ​​va schimba in "nu a fost acceptat", și nu va putea fi cheltuit. Acest lucru se poate întâmpla din când în când, dacă un alt nod generează un bloc cu câteva secunde inaintea blocului 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ă - - - - unknown - necunoscut - - - - 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 - - - - TransactionTableModel - - - Date - Data - - - - Type - Tipul - - - - Address - Adresa - - - - Amount - Cantitate - - - - Open until %1 - Deschis până la %1 - - - - Confirmed (%1 confirmations) - Confirmat (%1 confirmări) - - - - Open for %n more block(s) - Deschis pentru încă %1 blocDeschis pentru încă %1 blocuriDeschis pentru încă %1 de blocuri - - - - Offline - Deconectat - - - - Unconfirmed - Neconfirmat - - - - Confirming (%1 of %2 recommended confirmations) - Confirmare (%1 dintre %2 confirmări recomandate) - - - - Conflicted - Conflictual - - - - Immature (%1 confirmations, will be available after %2) - Nematurate(%1 confirmari, vor fi valabile dupa %2) - - - - 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 - - - - 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. - - - - 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 Data - Exporta datele trazactiei - - - - 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 - - - - Error exporting - Eroare la exportare - - - - Could not write to file %1. - Nu s-a putut scrie în fișier %1. - - - - Range: - Interval: - - - - to - către - - - - WalletModel - - - Sending... - Se trimite... - - - - bitcoin-core - - - BitBean version - Versiune BitBean - - - - Usage: - Uz: - - - - Send command to -server or BitBeand - Trimite comanda catre server sau BitBeand - - - - List commands - Listă de comenzi - - - - Get help for a command - Ajutor pentru o comandă - - - - Options: - Setări: - - - - Specify configuration file (default: BitBean.conf) - Specifica fisier de configurare(implicit: BitBean.conf) - - - - Specify pid file (default: BitBeand.pid) - Speficica fisier pid(implicit: BitBean.pid) - - - - Specify wallet file (within data directory) - Specifică fișierul wallet (în dosarul de date) - - - - 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) - - - - Set database disk log size in megabytes (default: 100) - Setează mărimea cache a bazei de date în megabiți (implicit: 100) - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - Ascultă pentru conectări pe <port> (implicit: 15714 sau testnet: 25714) - - - - 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ă - - - - Bind to given address. Use [host]:port notation for IPv6 - Leaga la o adresa data. Utilizeaza notatie [host]:port pt IPv6 - - - - Stake your coins to support network and gain reward (default: 1) - Pune monedele in modul stake pentru a ajuta reteaua si a castiva bonusuri(implicit: 1) - - - - 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 - - - - Detach block and address databases. Increases shutdown time (default: 0) - Detaseaza bloc si baza de date de adrese. Creste timpul de inchidere(implicit:0) - - - - 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: tranzacția a fost respinsă. Acest lucru s-ar putea întâmpla în cazul în care unele dintre monedele din portofel au fost deja cheltuite, cum si cum ați utilizat o copie a wallet.dat și monedele au fost cheltuite în copie dar nu au fost marcate ca și cheltuite aici. - - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - Eroare: Această tranzacție necesită un comision de tranzacție de cel puțin %s din cauza valorii sale, complexitate, sau utilizarea de fonduri recent primite - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - Ascultă pentru conexiuni JSON-RPC pe <port> (implicit:15715 sau testnet: 25715) - - - - Accept command line and JSON-RPC commands - Se acceptă comenzi din linia de comandă și comenzi JSON-RPC - - - - Error: Transaction creation failed - Eroare: crearea tranzacției a eșuat. - - - - Error: Wallet locked, unable to create transaction - Eroare: portofel blocat, tranzactia nu s-a creat - - - - Importing blockchain data file. - Se importa fisierul blockchain - - - - Importing bootstrap blockchain data file. - Se importa fisierul bootstrap blockchain - - - - 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) - - - - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - Eroare la inițializarea mediu de baze de date %s! Pentru a recupera, SALVATI ACEL DIRECTORr, apoi scoateți totul din el, cu excepția wallet.dat. - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - Setati valoarea maxima a prioritate mare/taxa scazuta in bytes(implicit: 27000) - - - - 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 BitBean will not work properly. - Atentie: Va rugam verificati ca timpul si data calculatorului sunt corete. Daca timpul este gresit BitBean nu va functiona corect. - - - - 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. - - - - Attempt to recover private keys from a corrupt wallet.dat - Încearcă recuperarea cheilor private dintr-un wallet.dat corupt - - - - Block creation options: - Optiuni creare block - - - - Connect only to the specified node(s) - Conecteaza-te doar la nod(urile) specifice - - - - Discover own IP address (default: 1 when listening and no -externalip) - Descopera propria ta adresa IP (intial: 1) - - - - 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. - - - - Find peers using DNS lookup (default: 1) - Gaseste peers folosind cautare DNS(implicit: 1) - - - - Sync checkpoints policy (default: strict) - Sincronizeaza politica checkpoint(implicit: strict) - - - - Invalid -tor address: '%s' - Adresa -tor invalida: '%s' - - - - Invalid amount for -reservebalance=<amount> - Suma invalida pentru -reservebalance=<amount> - - - - 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) - Efectuează conexiuni doar către nodurile din rețeaua <net> (IPv4, IPv6 sau Tor) - - - - Output extra debugging information. Implies all other -debug* options - Extra informatii despre depanare. Implica toate optiunile -debug* - - - - Output extra network debugging information - Extra informatii despre depanare retea. - - - - Prepend debug output with timestamp - Ataseaza output depanare cu log de timp - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - Optiuni SSl (vezi Bitcoin wiki pentru intructiunile de instalare) - - - - Select the version of socks proxy to use (4-5, default: 5) - Selectati versiunea de proxy socks(4-5, implicit: 5) - - - - Send trace/debug info to console instead of debug.log file - Trimite informațiile trace/debug la consolă în locul fișierului debug.log - - - - Send trace/debug info to debugger - Trimite informațiile trace/debug la consolă - - - - Set maximum block size in bytes (default: 250000) - Setează mărimea maxima a blocului în bytes (implicit: 250000) - - - - Set minimum block size in bytes (default: 0) - Setează mărimea minimă a blocului în baiți (implicit: 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) - - - - Specify connection timeout in milliseconds (default: 5000) - Specifică intervalul maxim de conectare în milisecunde (implicit: 5000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - În imposibilitatea de a semna checkpoint-ul, checkpointkey greșit? - - - - - 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - Utilizati proxy pentru a ajunge la serviciile tor (implicit: la fel ca proxy) - - - - Username for JSON-RPC connections - Utilizator pentru conexiunile JSON-RPC - - - - Verifying database integrity... - Se verifica integritatea bazei de date... - - - - WARNING: syncronized checkpoint violation detected, but skipped! - ATENTIONARE: s-a detectat o violare a checkpoint-ului sincronizat, dar s-a ignorat! - - - - Warning: Disk space is low! - Avertisment: spațiul pe disc este scăzut! - - - - Warning: This version is obsolete, upgrade required! - Atenție: această versiune este depășită, este necesară actualizarea! - - - - wallet.dat corrupt, salvage failed - wallet.dat corupt, recuperare eșuată - - - - Password for JSON-RPC connections - Parola pentru conexiunile JSON-RPC - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - %s, trebuie să configurați o parolă rpc în fișierul de configurare: %s -Este recomandat să folosiți următoarea parolă generată aleator: rpcuser=BitBeanrpc -rpcpassword=%s -(nu trebuie să țineți minte această parolă) -Username-ul și parola NU TREBUIE să fie aceleași. -Dacă fișierul nu există, creați-l cu drepturi de citire doar de către deținător. -Este deasemenea recomandat să setați alertnotify pentru a fi notificat de probleme; -de exemplu: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - Find peers using internet relay chat (default: 0) - Gaseste noduri fosoling irc (implicit: 1) {0)?} - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - Sincronizează timp cu alte noduri. Dezactivează daca timpul de pe sistemul dumneavoastră este precis ex: sincronizare cu NTP (implicit: 1) - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - Când creați tranzacții, ignorați intrări cu valori mai mici decât aceasta (implicit: 0,01) - - - - 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) - - - - 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) - - - - Require a confirmations for change (default: 0) - Necesita confirmari pentru schimbare (implicit: 0) - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - Enforseaza tranzactiile script sa foloseasca operatori canonici PUSH(implicit: 1) - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - Execută o comandă când o alerta relevantâ este primitâ(%s in cmd este înlocuit de mesaj) - - - - 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ă - - - - How many blocks to check at startup (default: 2500, 0 = all) - Câte block-uri se verifică la initializare (implicit: 2500, 0 = toate) - - - - How thorough the block verification is (0-6, default: 1) - Cat de temeinica sa fie verificarea blocurilor( 0-6, implicit: 1) - - - - Imports blocks from external blk000?.dat file - Importă blocuri dintr-un fișier extern blk000?.dat - - - - 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Cifruri acceptabile (implicit: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - Error: Wallet unlocked for staking only, unable to create transaction. - Eroare: portofel blocat doar pentru staking, tranzactia nu s-a creat. - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - ATENTIONARE: checkpoint invalid! Trazatiile afisate pot fi incorecte! Posibil să aveți nevoie să faceți upgrade, sau să notificati dezvoltatorii. - - - - This help message - Acest mesaj de ajutor - - - - Wallet %s resides outside data directory %s. - Portofelul %s este in afara directorului %s - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - Nu se poate obtine un lock pe directorul de date &s. Testoin probabil ruleaza deja. - - - - BitBean - BitBean - - - - 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) - - - - Connect through socks proxy - Conectează-te printr-un proxy socks - - - - Allow DNS lookups for -addnode, -seednode and -connect - Permite căutări DNS pentru -addnode, -seednode și -connect - - - - Loading addresses... - Încarc adrese... - - - - Error loading blkindex.dat - Eroare la încărcarea blkindex.dat - - - - Error loading wallet.dat: Wallet corrupted - Eroare la încărcarea wallet.dat: Portofel corupt - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - Eroare la încărcarea wallet.dat: Portofelul necesita o versiune mai noua de BitBean - - - - Wallet needed to be rewritten: restart BitBean to complete - A fost nevoie de rescrierea portofelului: restartați BitBean pentru a finaliza - - - - 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' - - - - Error: could not start node - Eroare: nodul nu a putut fi pornit - - - - Sending... - Se trimite... - - - - 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. BitBean is probably already running. - Imposibil de conectat %s pe acest computer. Cel mai probabil BitBean ruleaza - - - - Fee per KB to add to transactions you send - Comision pe kB de adaugat la tranzactiile pe care le trimiti - - - - Invalid amount for -mininput=<amount>: '%s' - Suma invalida pentru -mininput=<amount>: '%s' - - - - Loading wallet... - Încarc portofel... - - - - Cannot downgrade wallet - Nu se poate retrograda portofelul - - - - Cannot initialize keypool - Nu se poate initializa keypool - - - - 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. - Trebuie sa setezi rpcpassword=<password> în fișierul de configurare:⏎ -%s⏎ -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.qm b/src/qt/locale/bitcoin_ru.qm deleted file mode 100644 index f1eefe5..0000000 Binary files a/src/qt/locale/bitcoin_ru.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts deleted file mode 100644 index 001f6fe..0000000 --- a/src/qt/locale/bitcoin_ru.ts +++ /dev/null @@ -1,3290 +0,0 @@ - - - AboutDialog - - - About BitBean - О BitBean - - - - <b>BitBean</b> version - <b>BitBean</b> версия - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - Все права защищены © 2009-2014 Разработчики Bitcoin -Все права защищены © 2012-2014 Разработчики NovaCoin -Все права защищены © 2014 Разработчики BitBean - - - - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - -Это экспериментальная программа. - -Распространяется на правах лицензии MIT/X11, см. файл license.txt или http://www.opensource.org/licenses/mit-license.php. - -Этот продукт включает ПО, разработанное OpenSSL Project для использования в OpenSSL Toolkit (http://www.openssl.org/) и криптографическое ПО, написанное Eric Young (eay@cryptsoft.com) и ПО для работы с UPnP, написанное Thomas Bernard. - - - - AddressBookPage - - - Address Book - Адресная книга - - - - Double-click to edit address or label - Для того, чтобы изменить адрес или метку давжды кликните по изменяемому объекту - - - - Create a new address - Создать новый адрес - - - - Copy the currently selected address to the system clipboard - Копировать текущий выделенный адрес в буфер обмена - - - - &New Address - &Новый адрес - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - Это Ваши адреса для получения платежей. Вы можете дать разные адреса отправителям, чтобы отслеживать, кто именно вам платит. - - - - &Copy Address - &Копировать адрес - - - - Show &QR Code - Показать &QR код - - - - Sign a message to prove you own a BitBean address - Подписать сообщение, чтобы доказать владение адресом BitBean - - - - Sign &Message - &Подписать сообщение - - - - Delete the currently selected address from the list - Удалить выбранный адрес из списка - - - - Verify a message to ensure it was signed with a specified BitBean address - Проверить сообщение, чтобы убедиться, что оно было подписано указанным адресом BitBean - - - - &Verify Message - &Проверить сообщение - - - - &Delete - &Удалить - - - - Copy &Label - Копировать &метку - - - - &Edit - &Правка - - - - Export Address Book Data - Экспортировать адресную книгу - - - - Comma separated file (*.csv) - Текст, разделённый запятыми (*.csv) - - - - Error exporting - Ошибка экспорта - - - - Could not write to file %1. - Невозможно записать в файл %1. - - - - AddressTableModel - - - Label - Метка - - - - Address - Адрес - - - - (no label) - [нет метки] - - - - AskPassphraseDialog - - - Passphrase Dialog - Диалог ввода пароля - - - - Enter passphrase - Введите пароль - - - - New passphrase - Новый пароль - - - - Repeat new passphrase - Повторите новый пароль - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - Служит для предотвращения тривиальной отправки монет, если ваша система скомпрометирована. Не предоставляет реальной безопасности. - - - - For staking only - Только для участия в доле - - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Введите новый пароль для бумажника. <br/> Пожалуйста, используйте фразы из <b>10 или более случайных символов,</b> или <b>восьми и более слов.</b> - - - - Encrypt wallet - Зашифровать бумажник - - - - This operation needs your wallet passphrase to unlock the wallet. - Для выполнения операции требуется пароль вашего бумажника. - - - - Unlock wallet - Разблокировать бумажник - - - - This operation needs your wallet passphrase to decrypt the wallet. - Для выполнения операции требуется пароль вашего бумажника. - - - - Decrypt wallet - Расшифровать бумажник - - - - Change passphrase - Сменить пароль - - - - Enter the old and new passphrase to the wallet. - Введите старый и новый пароль для бумажника. - - - - Confirm wallet encryption - Подтвердите шифрование бумажника - - - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</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 - Бумажник зашифрован - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins 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. - Пароль бумажника успешно изменён. - - - - BitcoinGUI - - - Sign &message... - &Подписать сообщение - - - - Synchronizing with network... - Синхронизация с сетью... - - - - &Overview - О&бзор - - - - Show general overview of wallet - Показать общий обзор действий с бумажником - - - - &Transactions - &Транзакции - - - - Browse transaction history - Показать историю транзакций - - - - &Address Book - &Адресная книга - - - - Edit the list of stored addresses and labels - Изменить список сохранённых адресов и меток к ним - - - - &Receive coins - &Получение монет - - - - Show the list of addresses for receiving payments - Показать список адресов для получения платежей - - - - &Send coins - Отп&равка монет - - - - E&xit - В&ыход - - - - Quit application - Закрыть приложение - - - - Show information about BitBean - Показать информацию о BitBean'е - - - - About &Qt - О &Qt - - - - Show information about Qt - Показать информацию о Qt - - - - &Options... - Оп&ции... - - - - &Encrypt Wallet... - &Зашифровать бумажник - - - - &Backup Wallet... - &Сделать резервную копию бумажника - - - - &Change Passphrase... - &Изменить пароль - - - - ~%n block(s) remaining - остался ~%n блокосталось ~%n блоковосталось ~%n блоков - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Загружено %1 из %2 блоков истории операций (%3% завершено). - - - - &Export... - &Экспорт... - - - - Send coins to a BitBean address - Отправить монеты на указанный адрес BitBean - - - - Modify configuration options for BitBean - Изменить параметры конфигурации BitBean - - - - Export the data in the current tab to a file - Экспортировать данные из вкладки в файл - - - - Encrypt or decrypt wallet - Зашифровать или расшифровать бумажник - - - - Backup wallet to another location - Сделать резервную копию бумажника в другом месте - - - - Change the passphrase used for wallet encryption - Изменить пароль шифрования бумажника - - - - &Debug window - &Окно отладки - - - - Open debugging and diagnostic console - Открыть консоль отладки и диагностики - - - - &Verify message... - &Проверить сообщение... - - - - BitBean - BitBean - - - - Wallet - Бумажник - - - - &About BitBean - &О BitBean - - - - &Show / Hide - &Показать / Скрыть - - - - Unlock wallet - Разблокировать бумажник - - - - &Lock Wallet - &Заблокировать бумажник - - - - Lock wallet - Заблокировать бумажник - - - - &File - &Файл - - - - &Settings - &Настройки - - - - &Help - &Помощь - - - - Tabs toolbar - Панель вкладок - - - - Actions toolbar - Панель действий - - - - - [testnet] - [тестовая сеть] - - - - - BitBean client - BitBean клиент - - - - %n active connection(s) to BitBean network - %n активное соединение с сетью%n активных соединений с сетью%n активных соединений с сетью - - - - Downloaded %1 blocks of transaction history. - Загружено %1 блоков истории транзакций. - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - Участвуем в доле.<br>Ваш вес %1<br>Вес сети %2<br>Ожидаемое время получения награды %3 - - - - Not staking because wallet is locked - Не участвуем в доле, так как кошелёк заблокирован - - - - Not staking because wallet is offline - Не участвуем в доле, так как кошелёк оффлайн - - - - Not staking because wallet is syncing - Не участвуем в доле, так как кошелёк синхронизируется - - - - Not staking because you don't have mature coins - Не участвуем в доле, так как нет зрелых монет - - - - %n second(s) ago - %n секунду назад%n секунды назад%n секунд назад - - - - &Unlock Wallet... - &Разблокировать бумажник - - - - %n minute(s) ago - %n минуту назад%n минуты назад%n минут назад - - - - %n hour(s) ago - %n час назад%n часа назад%n часов назад - - - - %n day(s) ago - %n день назад%n дня назад%n дней назад - - - - Up to date - Синхронизировано - - - - Catching up... - Синхронизируется... - - - - Last received block was generated %1. - Последний полученный блок был сгенерирован %1. - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Данная транзакция превышает предельно допустимый размер. Но Вы можете всё равно совершить её, добавив комиссию в %1, которая отправится тем узлам, которые обработают Вашу транзакцию, и поможет поддержать сеть. Вы хотите добавить комиссию? - - - - Confirm transaction fee - Подтвердите комиссию - - - - Sent transaction - Исходящая транзакция - - - - Incoming transaction - Входящая транзакция - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Дата: %1 -Количество: %2 -Тип: %3 -Адрес: %4 - - - - - - URI handling - Обработка URI - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - Не удалось обработать URI! Это может быть связано с неверным адресом BitBean или неправильными параметрами URI. - - - - 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> - - - - Backup Wallet - Сделать резервную копию бумажника - - - - Wallet Data (*.dat) - Данные бумажника (*.dat) - - - - Backup Failed - Резервное копирование не удалось - - - - There was an error trying to save the wallet data to the new location. - При попытке сохранения данных бумажника в новое место произошла ошибка. - - - - %n second(s) - %n секунда%n секунды%n секунд - - - - %n minute(s) - %n минута%n минуты%n минут - - - - %n hour(s) - %n час%n часа%n часов - - - - %n day(s) - %n день%n дня%n дней - - - - Not staking - Не участвуем в доле - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - Произошла неисправимая ошибка. BitBean не может безопасно продолжать работу и будет закрыт. - - - - ClientModel - - - Network Alert - Сетевая Тревога - - - - CoinControlDialog - - - Coin Control - Выбор входов - - - - Quantity: - Количество: - - - - Bytes: - Размер: - - - - Amount: - Сумма: - - - - Priority: - Приоритет: - - - - Fee: - Комиссия: - - - - Low Output: - Мелкие входы: - - - - no - нет - - - - After Fee: - С комиссией: - - - - Change: - Сдача: - - - - (un)select all - Выбрать все - - - - Tree mode - Дерево - - - - List mode - Список - - - - Amount - Сумма - - - - Label - Метка - - - - Address - Адрес - - - - Date - Дата - - - - Confirmations - Подтверждения - - - - Confirmed - Подтверждено - - - - Priority - Приоритет - - - - Copy address - Копировать адрес - - - - Copy label - Копировать метку - - - - - Copy amount - Копировать сумму - - - - Copy transaction ID - Скопировать ID транзакции - - - - Copy quantity - Копировать количество - - - - Copy fee - Копировать комиссию - - - - Copy after fee - Копировать с комиссией - - - - Copy bytes - Копировать объем - - - - Copy priority - Копировать приоритет - - - - Copy low output - - - - - Copy change - Копировать сдачу - - - - highest - наивысший - - - - high - высокий - - - - medium-high - выше среднего - - - - medium - средний - - - - low-medium - ниже среднего - - - - low - низкий - - - - lowest - наименьший - - - - DUST - - - - - yes - да - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 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. - - This means a fee of at least %2 is required. - - - - - - (no label) - (нет метки) - - - - change from %1 (%2) - - - - - (change) - (сдача) - - - - EditAddressDialog - - - Edit Address - Изменить адрес - - - - &Label - &Метка - - - - The label associated with this address book entry - Метка, связанная с данной записью - - - - &Address - &Адрес - - - - The address associated with this address book entry. This can only be modified for sending addresses. - Адрес, связанный с данной записью. - - - - New receiving address - Новый адрес для получения - - - - New sending address - Новый адрес для отправки - - - - Edit receiving address - Изменение адреса для получения - - - - Edit sending address - Изменение адреса для отправки - - - - The entered address "%1" is already in the address book. - Введённый адрес «%1» уже находится в адресной книге. - - - - The entered address "%1" is not a valid BitBean address. - Введённый адрес "%1" не является правильным BitBean-адресом. - - - - Could not unlock wallet. - Не удается разблокировать бумажник. - - - - New key generation failed. - Генерация нового ключа не удалась. - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - BitBean-Qt - - - - version - версия - - - - Usage: - Использование: - - - - command-line options - параметры командной строки - - - - UI options - Опции интерфейса - - - - Set language, for example "de_DE" (default: system locale) - Выберите язык, например "de_DE" (по умолчанию: как в системе) - - - - Start minimized - Запускать свёрнутым - - - - Show splash screen on startup (default: 1) - Показывать сплэш при запуске (по умолчанию: 1) - - - - OptionsDialog - - - Options - Опции - - - - &Main - &Главная - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - Опциональная комиссия за каждый КБ транзакции, которая позволяет быть уверенным, что Ваша транзакция будет обработана быстро. Большинство транзакций занимают 1КБ. Рекомендуется комиссия 0.01. - - - - Pay transaction &fee - Заплатить ко&миссию - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - Зарезервированная сумма не участвует в доле, и поэтому может быть потрачена в любое время. - - - - Reserve - Зарезервировать - - - - Automatically start BitBean after logging in to the system. - Автоматически запускать BitBean после входа в систему - - - - &Start BitBean on system login - &Запускать BitBean при входе в систему - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - Отключить базы данных блоков и адресов при выходе. Это означает, что их можно будет переместить в другой каталог данных, но завершение работы будет медленнее. Бумажник всегда отключается. - - - - &Detach databases at shutdown - &Отключать базы данных при выходе - - - - &Network - &Сеть - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - Автоматически открыть порт для BitBean-клиента на роутере. Работает только если Ваш роутер поддерживает UPnP, и данная функция включена. - - - - Map port using &UPnP - Пробросить порт через &UPnP - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - Подключаться к сети BitBean через прокси SOCKS (например, при подключении через Tor). - - - - &Connect through SOCKS proxy: - &Подключаться через SOCKS прокси: - - - - Proxy &IP: - &IP Прокси: - - - - IP address of the proxy (e.g. 127.0.0.1) - IP-адрес прокси (например 127.0.0.1) - - - - &Port: - По&рт: - - - - Port of the proxy (e.g. 9050) - Порт прокси-сервера (например, 9050) - - - - SOCKS &Version: - &Версия SOCKS: - - - - SOCKS version of the proxy (e.g. 5) - Версия SOCKS-прокси (например, 5) - - - - &Window - &Окно - - - - Show only a tray icon after minimizing the window. - Показывать только иконку в системном лотке после сворачивания окна. - - - - &Minimize to the tray instead of the taskbar - &Cворачивать в системный лоток вместо панели задач - - - - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Сворачивать вместо закрытия. Если данная опция будет выбрана — приложение закроется только после выбора соответствующего пункта в меню. - - - - M&inimize on close - С&ворачивать при закрытии - - - - &Display - О&тображение - - - - User Interface &language: - &Язык интерфейса: - - - - The user interface language can be set here. This setting will take effect after restarting BitBean. - Здесь можно выбрать язык интерфейса. Настройки вступят в силу после перезапуска BitBean. - - - - &Unit to show amounts in: - &Отображать суммы в единицах: - - - - Choose the default subdivision unit to show in the interface and when sending coins. - Выберите единицу измерения монет при отображении и отправке. - - - - Whether to show BitBean addresses in the transaction list or not. - Показывать ли адреса BitBean в списке транзакций. - - - - &Display addresses in transaction list - &Показывать адреса в списке транзакций - - - - Whether to show coin control features or not. - Выключает и включает отображение панели выбора входов. - - - - Display coin &control features (experts only!) - Управление &входами (только для продвинутых пользователей!) - - - - &OK - О&К - - - - &Cancel - &Отмена - - - - &Apply - &Применить - - - - default - по умолчанию - - - - - Warning - Внимание - - - - - This setting will take effect after restarting BitBean. - Эта настройка вступит в силу после перезапуска BitBean - - - - The supplied proxy address is invalid. - Адрес прокси неверен. - - - - OverviewPage - - - Form - Форма - - - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - Отображаемая информация может быть устаревшей. Ваш бумажник автоматически синхронизируется с сетью BitBean после подключения, но этот процесс пока не завершён. - - - - Stake: - Доля: - - - - Unconfirmed: - Не подтверждено: - - - - Wallet - Бумажник - - - - Spendable: - Доступно: - - - - Your current spendable balance - Баланс, доступный в настоящее время - - - - Immature: - Незрелые: - - - - Mined balance that has not yet matured - Баланс добытых монет, который ещё не созрел - - - - Total: - Итого: - - - - Your current total balance - Ваш суммарный баланс - - - - <b>Recent transactions</b> - <b>Последние транзакции</b> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Общая сумма всех транзакций, которые до сих пор не подтверждены, и до сих пор не учитываются в текущем балансе - - - - Total of coins that was staked, and do not yet count toward the current balance - Общая сумма всех монет, используемых для Proof-of-Stake, и не учитывающихся на балансе - - - - - out of sync - не синхронизировано - - - - QRCodeDialog - - - QR Code Dialog - Диалог QR-кода - - - - Request Payment - Запросить платёж - - - - Amount: - Количество: - - - - Label: - Метка: - - - - Message: - Сообщение: - - - - &Save As... - &Сохранить как... - - - - Error encoding URI into QR Code. - Ошибка кодирования URI в QR-код - - - - The entered amount is invalid, please check. - Введено неверное количество, проверьте ещё раз. - - - - Resulting URI too long, try to reduce the text for label / message. - Получившийся URI слишком длинный, попробуйте сократить текст метки / сообщения. - - - - Save QR Code - Сохранить QR-код - - - - PNG Images (*.png) - PNG Изображения (*.png) - - - - RPCConsole - - - Client name - Имя клиента - - - - - - - - - - - - - N/A - Н/Д - - - - Client version - Версия клиента - - - - &Information - &Информация - - - - Using OpenSSL version - Используется версия OpenSSL - - - - Startup time - Время запуска - - - - Network - Сеть - - - - Number of connections - Число подключений - - - - On testnet - В тестовой сети - - - - Block chain - Цепь блоков - - - - Current number of blocks - Текущее число блоков - - - - Estimated total blocks - Расчётное число блоков - - - - Last block time - Время последнего блока - - - - &Open - &Открыть - - - - Command-line options - Параметры командной строки - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - Показать помощь по BitBean-Qt, чтобы получить список доступных параметров командной строки. - - - - &Show - &Показать - - - - &Console - Консоль - - - - Build date - Дата сборки - - - - BitBean - Debug window - BitBean - Окно отладки - - - - BitBean Core - Ядро BitBean - - - - Debug log file - Отладочный лог-файл - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - Открыть отладочный лог-файл BitBean из текущего каталога данных. Это может занять несколько секунд для больших лог-файлов. - - - - Clear console - Очистить консоль - - - - Welcome to the BitBean RPC console. - Добро пожаловать в RPC-консоль BitBean. - - - - 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> для просмотра доступных команд. - - - - SendCoinsDialog - - - - - - - - - - Send Coins - Отправка - - - - Coin Control Features - Выбор входов - - - - Inputs... - Входы... - - - - automatically selected - автоматический выбор - - - - Insufficient funds! - Недостаточно средств! - - - - Quantity: - Количество: - - - - - 0 - - - - - Bytes: - - - - - Amount: - Сумма: - - - - - - - 0.00 BC - - - - - Priority: - Приоритет: - - - - medium - средний - - - - Fee: - Комиссия: - - - - Low Output: - - - - - no - нет - - - - After Fee: - - - - - Change - - - - - custom change address - адрес для сдачи - - - - Send to multiple recipients at once - Отправить нескольким получателям одновременно - - - - Add &Recipient - &Добавить получателя - - - - Remove all transaction fields - Удалить все поля транзакции - - - - Clear &All - Очистить &всё - - - - Balance: - Баланс: - - - - 123.456 BC - 123.456 BC - - - - Confirm the send action - Подтвердить отправку - - - - S&end - &Отправить - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Введите BitBean-адрес (например 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Copy quantity - Копировать количество - - - - Copy amount - Копировать сумму - - - - Copy fee - Копировать комиссию - - - - Copy after fee - - - - - Copy bytes - Копировать количество байтов - - - - Copy priority - Копировать приоритет - - - - Copy low output - - - - - Copy change - Копировать сдачу - - - - <b>%1</b> to %2 (%3) - <b>%1</b> адресату %2 (%3) - - - - Confirm send coins - Подтвердите отправку монет - - - - Are you sure you want to send %1? - Вы уверены, что хотите отправить %1? - - - - and - и - - - - 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. - Обнаружен дублирующийся адрес. Отправка на один и тот же адрес возможна только один раз за одну операцию отправки - - - - Error: Transaction creation failed. - Ошибка: не удалось создать транзакцию. - - - - 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, а монеты были потрачены из другой копии, но не были отмечены как потраченные в этой. - - - - WARNING: Invalid BitBean address - - - - - (no label) - (нет метки) - - - - WARNING: unknown change address - ПРЕДУПРЕЖДЕНИЕ: неизвестный адрес для сдачи - - - - SendCoinsEntry - - - Form - Форма - - - - A&mount: - Ко&личество: - - - - Pay &To: - Полу&чатель: - - - - - Enter a label for this address to add it to your address book - Введите метку для данного адреса (для добавления в адресную книгу) - - - - &Label: - &Метка: - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Адрес получателя платежа (например 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Choose address from address book - Выберите адрес из адресной книги - - - - Alt+A - Alt+A - - - - Paste address from clipboard - Вставить адрес из буфера обмена - - - - Alt+P - Alt+P - - - - Remove this recipient - Удалить этого получателя - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Введите BitBean-адрес (например 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Адрес, которым вы хотите подписать сообщение (напр. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose an address from the address book - Выберите адрес из адресной книги - - - - - Alt+A - Alt+A - - - - Paste address from clipboard - Вставить адрес из буфера обмена - - - - Alt+P - Alt+P - - - - Enter the message you want to sign here - Введите сообщение для подписи - - - - Copy the current signature to the system clipboard - Скопировать текущую подпись в системный буфер обмена - - - - Sign the message to prove you own this BitBean address - Подписать сообщение, чтобы доказать владение адресом BitBean - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Адрес, которым было подписано сообщение (напр. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Verify the message to ensure it was signed with the specified BitBean address - Проверить сообщение, чтобы убедиться, что оно было подписано указанным адресом BitBean - - - - Reset all verify message fields - Сбросить все поля проверки сообщения - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Введите адрес BitBean (напр. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Click "Sign Message" to generate signature - Нажмите "Подписать сообщение" для создания подписи - - - - Enter BitBean signature - Введите подпись BitBean - - - - - 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. - Сообщение проверено. - - - - TransactionDesc - - - Open until %1 - Открыто до %1 - - - - Open for %n block(s) - Открыто для %n блокаОткрыто для %n блоковОткрыто для %n блоков - - - - 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 транзакции - - - - Generated coins must mature 110 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. - Сгенерированные монеты должны подождать 510 блоков, прежде чем они могут быть потрачены. Когда Вы сгенерировали этот блок, он был отправлен в сеть для добавления в цепочку блоков. Если данная процедура не удастся, статус изменится на «не подтверждено», и монеты будут недействительны. Это иногда происходит в случае, если другой узел сгенерирует блок на несколько секунд раньше вас. - - - - Debug information - Отладочная информация - - - - Transaction - Транзакция - - - - Inputs - Входы - - - - Amount - Количество - - - - true - истина - - - - false - ложь - - - - , has not been successfully broadcast yet - , ещё не было успешно разослано - - - - unknown - неизвестно - - - - TransactionDescDialog - - - Transaction details - Детали транзакции - - - - This pane shows a detailed description of the transaction - Данный диалог показывает детализированную статистику по выбранной транзакции - - - - TransactionTableModel - - - Date - Дата - - - - Type - Тип - - - - Address - Адрес - - - - Amount - Количество - - - - Open until %1 - Открыто до %1 - - - - Confirmed (%1 confirmations) - Подтверждено (%1 подтверждений) - - - - Open for %n more block(s) - Открыто для ещё %n блокаОткрыто для ещё %n блоковОткрыто для ещё %n блоков - - - - Offline - Оффлайн - - - - Unconfirmed - Не подтверждено - - - - Confirming (%1 of %2 recommended confirmations) - Подтверждается (%1 из %2 рекомендованных подтверждений) - - - - Conflicted - Конфликт - - - - Immature (%1 confirmations, will be available after %2) - Незрелые (%1 подтверждений, будут доступны после %2) - - - - This block was not received by any other nodes and will probably not be accepted! - Этот блок не был получен другими узлами и, возможно, не будет принят! - - - - Generated but not accepted - Сгенерировано, но не принято - - - - Received with - Получено - - - - Received from - Получено от - - - - 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. - Сумма, добавленная, или снятая с баланса. - - - - 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 Data - Экспортировать данные транзакций - - - - Comma separated file (*.csv) - Текст, разделённый запятыми (*.csv) - - - - Confirmed - Подтверждено - - - - Date - Дата - - - - Type - Тип - - - - Label - Метка - - - - Address - Адрес - - - - Amount - Количество - - - - ID - ID - - - - Error exporting - Ошибка экспорта - - - - Could not write to file %1. - Невозможно записать в файл %1. - - - - Range: - Промежуток от: - - - - to - до - - - - WalletModel - - - Sending... - Отправка.... - - - - bitcoin-core - - - BitBean version - Версия - - - - Usage: - Использование: - - - - Send command to -server or BitBeand - Отправить команду на -server или BitBeand - - - - List commands - Список команд - - - - - Get help for a command - Получить помощь по команде - - - - Options: - Опции: - - - - Specify configuration file (default: BitBean.conf) - Указать конфигурационный файл (по умолчанию: BitBean.conf) - - - - Specify pid file (default: BitBeand.pid) - Указать pid-файл (по умолчанию: BitBeand.pid) - - - - Specify wallet file (within data directory) - Указать файл кошелька (в пределах DATA директории) - - - - Specify data directory - Укажите каталог данных - - - - Set database cache size in megabytes (default: 25) - Установить размер кэша базы данных в мегабайтах (по умолчанию: 25) - - - - Set database disk log size in megabytes (default: 100) - Установить размер лога базы данных в мегабайтах (по умолчанию: 100) - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - Принимать входящие подключения на <port> (по умолчанию: 15714 или 25714 в тестовой сети) - - - - 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 - Укажите ваш собственный публичный адрес - - - - Bind to given address. Use [host]:port notation for IPv6 - Привязаться (bind) к указанному адресу. Используйте запись вида [хост]:порт для IPv6 - - - - Stake your coins to support network and gain reward (default: 1) - - - - - 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 - - - - Detach block and address databases. Increases shutdown time (default: 0) - Отключить базы данных блоков и адресов. Увеличивает время завершения работы (по умолчанию: 0) - - - - 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 из-за её объёма, сложности или использования недавно полученных средств - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - Прослушивать подключения JSON-RPC на <порту> (по умолчанию: 15715 или для testnet: 25715) - - - - Accept command line and JSON-RPC commands - Принимать командную строку и команды JSON-RPC - - - - Error: Transaction creation failed - Ошибка: Создание транзакции не удалось - - - - Error: Wallet locked, unable to create transaction - Ошибка: бумажник заблокирован, невозможно создать транзакцию - - - - Importing blockchain data file. - Импортируется файл цепи блоков. - - - - Importing bootstrap blockchain data file. - Импортируется bootstrap-файл цепи блоков. - - - - 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) - - - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - Произошла ошибка при открытии на прослушивание IPv6 RCP-порта %u, возвращаемся к IPv4: %s - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - Ошибка инициализации окружения БД %s! Для восстановления СДЕЛАЙТЕ РЕЗЕРВНУЮ КОПИЮ этой директории, затем удалите из нее все, кроме wallet.dat. - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - Максимальный размер высокоприоритетных/низкокомиссионных транзакций в байтах (по умолчанию: 27000) - - - - 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 BitBean will not work properly. - Внимание: убедитесь, что дата и время на Вашем компьютере выставлены верно. Если Ваши часы идут неправильно, BitBean будет работать некорректно. - - - - 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;, если ваши транзакции или баланс отображаются неправильно, следует восстановить его из данной копии. - - - - Attempt to recover private keys from a corrupt wallet.dat - Попытка восстановления ключей из поврежденного wallet.dat - - - - Block creation options: - Параметры создания блоков: - - - - Connect only to the specified node(s) - Подключаться только к указанному узлу(ам) - - - - Discover own IP address (default: 1 when listening and no -externalip) - Определить свой IP (по умолчанию: 1 при прослушивании и если не используется -externalip) - - - - Failed to listen on any port. Use -listen=0 if you want this. - Не удалось начать прослушивание на порту. Используйте -listen=0 если вас это устраивает. - - - - Find peers using DNS lookup (default: 1) - Искать узлы с помощью DNS (по умолчанию: 1) - - - - Sync checkpoints policy (default: strict) - Политика синхронизированных меток (по умолчанию: strict) - - - - Invalid -tor address: '%s' - Неверный адрес -tor: '%s' - - - - Invalid amount for -reservebalance=<amount> - - - - - 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) - Подключаться только к узлам из сети <net> (IPv4, IPv6 или Tor) - - - - Output extra debugging information. Implies all other -debug* options - Выводить больше отладочной информации. Включает все остальные опции -debug* - - - - Output extra network debugging information - Выводить дополнительную сетевую отладочную информацию - - - - Prepend debug output with timestamp - Дописывать отметки времени к отладочному выводу - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - -Параметры SSL: (см. Bitcoin Wiki для инструкций по настройке SSL) - - - - Select the version of socks proxy to use (4-5, default: 5) - Выберите версию SOCKS-прокси (4-5, по умолчанию: 5) - - - - Send trace/debug info to console instead of debug.log file - Выводить информацию трассировки/отладки на консоль вместо файла debug.log - - - - Send trace/debug info to debugger - Отправлять информацию трассировки/отладки в отладчик - - - - Set maximum block size in bytes (default: 250000) - Максимальный размер блока в байтах (по умолчанию: 250000) - - - - Set minimum block size in bytes (default: 0) - Минимальный размер блока в байтах (по умолчанию: 0) - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - Сжимать файл debug.log при запуске клиента (по умолчанию: 1, если нет -debug) - - - - Specify connection timeout in milliseconds (default: 5000) - Таймаут соединения в миллисекундах (по умолчанию: 5000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - - - - - Use UPnP to map the listening port (default: 0) - Использовать UPnP для проброса порта (по умолчанию: 0) - - - - Use UPnP to map the listening port (default: 1 when listening) - Использовать UPnP для проброса порта (по умолчанию: 1, если используется прослушивание) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - Использовать прокси для скрытых сервисов (по умолчанию: тот же, что и в -proxy) - - - - Username for JSON-RPC connections - Имя для подключений JSON-RPC - - - - Verifying database integrity... - Проверка целостности базы данных... - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - Внимание: мало места на диске! - - - - Warning: This version is obsolete, upgrade required! - Внимание: эта версия устарела, требуется обновление! - - - - wallet.dat corrupt, salvage failed - wallet.dat поврежден, восстановление не удалось - - - - Password for JSON-RPC connections - Пароль для подключений JSON-RPC - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - - - - - 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 в команде заменяется на хэш блока) - - - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Выполнить команду, когда получена новая транзакция (%s в команде заменяется на ID транзакции) - - - - Require a confirmations for change (default: 0) - Требовать подтверждения для сдачи (по умолчанию: 0) - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - - - - - Upgrade wallet to latest format - Обновить бумажник до последнего формата - - - - Set key pool size to <n> (default: 100) - Установить размер запаса ключей в <n> (по умолчанию: 100) - - - - Rescan the block chain for missing wallet transactions - Перепроверить цепь блоков на предмет отсутствующих в бумажнике транзакций - - - - How many blocks to check at startup (default: 2500, 0 = all) - Сколько блоков проверять при запуске (по умолчанию: 2500, 0 = все) - - - - How thorough the block verification is (0-6, default: 1) - Насколько тщательно проверять блоки (0-6, по умолчанию: 1) - - - - Imports blocks from external blk000?.dat file - Импортировать блоки из внешнего файла blk000?.dat - - - - 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Разрешённые алгоритмы (по умолчанию: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - Error: Wallet unlocked for staking only, unable to create transaction. - - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - - This help message - Эта справка - - - - Wallet %s resides outside data directory %s. - Кошелек %s находится вне рабочей директории %s. - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - Невозможно установить блокировку на рабочую директорию %s. Возможно, бумажник уже запущен. - - - - BitBean - BitBean - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - Невозможно привязаться к %s на этом компьютере (bind вернул ошибку %d, %s) - - - - Connect through socks proxy - Подключаться через socks прокси - - - - Allow DNS lookups for -addnode, -seednode and -connect - Разрешить поиск в DNS для -addnode, -seednode и -connect - - - - Loading addresses... - Загрузка адресов... - - - - Error loading blkindex.dat - Ошибка чтения blkindex.dat - - - - Error loading wallet.dat: Wallet corrupted - Ошибка загрузки wallet.dat: Бумажник поврежден - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - Ошибка загрузки wallet.dat: бумажник требует более новую версию BitBean - - - - Wallet needed to be rewritten: restart BitBean to complete - Необходимо перезаписать бумажник, перезапустите BitBean для завершения операции - - - - 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' - - - - Error: could not start node - Ошибка: не удалось запустить узел - - - - Sending... - Отправка... - - - - 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. BitBean is probably already running. - Невозможно привязаться к %s на этом компьютере. Возможно, BitBean уже работает. - - - - Fee per KB to add to transactions you send - Комиссия на килобайт, добавляемая к вашим транзакциям - - - - Invalid amount for -mininput=<amount>: '%s' - - - - - Loading wallet... - Загрузка бумажника... - - - - Cannot downgrade wallet - Не удаётся понизить версию бумажника - - - - Cannot initialize keypool - Не удаётся инициализировать массив ключей - - - - 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. - Вы должны установить rpcpassword=<password> в конфигурационном файле: -%s -Если файл не существует, создайте его и установите права доступа только для владельца. - - - \ No newline at end of file diff --git a/src/qt/locale/bitcoin_sk.qm b/src/qt/locale/bitcoin_sk.qm deleted file mode 100644 index 4c159ad..0000000 Binary files a/src/qt/locale/bitcoin_sk.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_sl_SI.qm b/src/qt/locale/bitcoin_sl_SI.qm deleted file mode 100644 index d55af13..0000000 Binary files a/src/qt/locale/bitcoin_sl_SI.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_sv.qm b/src/qt/locale/bitcoin_sv.qm deleted file mode 100644 index 8a7287a..0000000 Binary files a/src/qt/locale/bitcoin_sv.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_sv.ts b/src/qt/locale/bitcoin_sv.ts deleted file mode 100644 index e53cbce..0000000 --- a/src/qt/locale/bitcoin_sv.ts +++ /dev/null @@ -1,3314 +0,0 @@ - - - AboutDialog - - - About BitBean - Vad du behöver veta om BTestcoin - - - - <b>BitBean</b> version - <b>BitBean</b> version - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - - - - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - -Detta är experimentell mjukvara. - - -Distribuerad under mjukvarulicensen MIT/X11, se den medföljande filen COPYING eller http://www.opensource.org/licenses/mit-license.php. - -Denna 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. - - - - AddressBookPage - - - Address Book - Adressbok - - - - Double-click to edit address or label - Dubbel-klicka för att ändra adressen eller etiketten - - - - Create a new address - Skapa ny adress - - - - Copy the currently selected address to the system clipboard - Kopiera den markerade adressen till systemets Urklipp - - - - &New Address - Ny adress - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - Dessa är dina BitBean adesser för att mottaga betalningsförsändelser. Du kan även använda olika adresser för varje avsändare för att enkelt hålla koll på vem som har skickat en betalning. - - - - &Copy Address - &Kopiera adress - - - - Show &QR Code - Visa &QR kod - - - - Sign a message to prove you own a BitBean address - Signera ett meddelande för att bevisa att du äger BitBean adressen - - - - Sign &Message - Signera &Meddelande - - - - Delete the currently selected address from the list - Ta bort den valda adressen från listan - - - - Verify a message to ensure it was signed with a specified BitBean address - Verifiera ett meddelande för att försäkra dig över att det var signerat av en specifik BitBean adress - - - - &Verify Message - &Verifiera meddelande - - - - &Delete - &Radera - - - - Copy &Label - Kopiera &etikett - - - - &Edit - &Editera - - - - Export Address Book Data - Exportera adressboken - - - - Comma separated file (*.csv) - Kommaseparerad fil (*.csv) - - - - Error exporting - Exportera felmeddelanden - - - - Could not write to file %1. - Kunde inte skriva till fil %1 - - - - AddressTableModel - - - Label - Etikett - - - - Address - Adress - - - - (no label) - (Ingen etikett) - - - - AskPassphraseDialog - - - Passphrase Dialog - Lösenords Dialog - - - - Enter passphrase - Ange lösenord - - - - New passphrase - Nytt lösenord - - - - Repeat new passphrase - Upprepa nytt lösenord - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - Avaktiverar "sendmoney" om ditt operativsystem har blivit äventyrat. ger ingen verklig säkerhet. - - - - For staking only - Endast för "staking" - - - - 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 COINS</b>! - Varning: Om du krypterar plånboken och glömmer lösenordet, kommer du att <b>FÖRLORA ALLA COINS</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 - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - BTestcoin plånboken kommer nu att stängas för att slutföra krypteringen: Kom ihåg att även en krypterad plånboks säkerhet kan äventyras genom keyloggers eller dylika malwares. - - - - - - - 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. - - - - BitcoinGUI - - - Sign &message... - Signera &meddelande... - - - - Synchronizing with network... - Synkroniserar med nätverk... - - - - &Overview - &Översikt - - - - Show general overview of wallet - Visa översiktsvy av plånbok - - - - &Transactions - &Transaktioner - - - - Browse transaction history - Bläddra i transaktionshistorik - - - - &Address Book - &Adress bok - - - - Edit the list of stored addresses and labels - Editera listan över sparade adresser och deras namn - - - - &Receive coins - &Ta emot coins - - - - Show the list of addresses for receiving payments - Visa adresslista för att mottaga betalningar - - - - &Send coins - &Skicka coins - - - - E&xit - &Avsluta - - - - Quit application - Avsluta programmet - - - - Show information about BitBean - Visa information om BitBean - - - - 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... - - - - ~%n block(s) remaining - ~%n block remaining~%n block kvar - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - Laddat ner %1 av %2 block av transaktions-historiken (%3% klart) - - - - &Export... - &Exportera... - - - - Send coins to a BitBean address - Skicka coins till en BitBean adress - - - - Modify configuration options for BitBean - Modifiera konfigurations-alternativ för BitBean - - - - Export the data in the current tab to a file - Exportera datan i tabben till en fil - - - - Encrypt or decrypt wallet - Kryptera eller avkryptera plånbok - - - - 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... - - - - BitBean - BitBean - - - - Wallet - Plånbok - - - - &About BitBean - &Om BitBean - - - - &Show / Hide - &Visa / Göm - - - - Unlock wallet - Lås upp plånbok - - - - &Lock Wallet - &Lås plånbok - - - - Lock wallet - Lås plånbok - - - - &File - &Arkiv - - - - &Settings - &Inställningar - - - - &Help - &Hjälp - - - - Tabs toolbar - Verktygsfält för Tabbar - - - - Actions toolbar - Verktygsfält för handlingar - - - - - [testnet] - [testnet] - - - - - BitBean client - BitBean klient - - - - %n active connection(s) to BitBean network - %n aktiv anslutning till BitBean nätverket%n aktiva anslutning till BitBean nätverket - - - - Downloaded %1 blocks of transaction history. - Laddade ner %1 block av transaktionshistoriken. - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - Staking.<br>Din vikt är %1<br>Nätverkets vikt är %2<br>Uppskattad tid för att få belöning är %3 - - - - Not staking because wallet is locked - Ingen staking för att plånboken är låst - - - - Not staking because wallet is offline - Ingen staking för att plånboken är offline - - - - Not staking because wallet is syncing - Ingen staking för att plånboken synkroniseras - - - - Not staking because you don't have mature coins - Ingen staking för att dina coins är ännu inte föråldrade - - - - %n second(s) ago - %n sekund sen%n sekunder sen - - - - &Unlock Wallet... - Lås &Upp plånboken - - - - %n minute(s) ago - %n minut sen%n minuter sen - - - - %n hour(s) ago - %n timme sen%n timmar sen - - - - %n day(s) ago - %n dag sen%n dagar sen - - - - Up to date - Uppdaterad - - - - Catching up... - Hämtar senaste... - - - - Last received block was generated %1. - Senaste mottagna block genererades %1. - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Denna transaktion är över gränsen. Du kan ändå skicka den med en %1 avgift, som går till noderna som processerar din transaktion och hjälper till med att upprätthålla nätverket. Vill du betala denna avgift? - - - - Confirm transaction fee - Bekräfta transaktionsavgiften - - - - Sent transaction - Transaktion skickad - - - - Incoming transaction - Inkommande transaktion - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Datum: %1 -Belopp: %2 -Typ: %3 -Adress: %4 - - - - - - URI handling - URI hantering - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - URI:n kan inte tolkas! Detta kan bero på en ogiltig BitBean adress eller felaktiga URI parametrar. - - - - 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> - - - - Backup Wallet - Säkerhetskopiera plånbok - - - - Wallet Data (*.dat) - Plånboksdata (*.dat) - - - - Backup Failed - Säkerhetskopieringen misslyckades - - - - There was an error trying to save the wallet data to the new location. - Ett fel uppstod vid sparandet av plånboken till den nya platsen. - - - - %n second(s) - %n sekund%n sekunder - - - - %n minute(s) - %n minut%n minuter - - - - %n hour(s) - %n timme%n timmar - - - - %n day(s) - %n dag%n dagar - - - - Not staking - Ingen staking - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - Ett fatalt fel uppstod. BTestcoin kan inte fortsätta och stänger programmet. - - - - ClientModel - - - Network Alert - Nätverkslarm - - - - CoinControlDialog - - - Coin Control - Coin kontroll - - - - Quantity: - Antal: - - - - Bytes: - Bytes: - - - - Amount: - Belopp: - - - - Priority: - Prioritet: - - - - Fee: - Avgift: - - - - Low Output: - Låg utskrift: - - - - no - nej - - - - After Fee: - Efter avgift: - - - - Change: - Ändra: - - - - (un)select all - välj/avvälj alla - - - - Tree mode - Träd visning - - - - List mode - List visning - - - - Amount - Mängd - - - - Label - etikett - - - - Address - Adress - - - - Date - Datum - - - - Confirmations - Bekräftelser - - - - Confirmed - Bekräftad - - - - Priority - Prioritet - - - - Copy address - Kopiera adress - - - - Copy label - Kopiera etikett - - - - - Copy amount - Kopiera belopp - - - - Copy transaction ID - Kopiera transaktions ID - - - - Copy quantity - Kopiera antal - - - - Copy fee - Kopiera avgift - - - - Copy after fee - Kopiera efter avgift - - - - Copy bytes - Kopiera bytes - - - - Copy priority - Kopiera prioritet - - - - Copy low output - Kopiera låg utskrift - - - - Copy change - Kopiera förändringarna - - - - highest - högst - - - - high - hög - - - - medium-high - medium-hög - - - - medium - medium - - - - low-medium - låg-medium - - - - low - låg - - - - lowest - lägsta - - - - DUST - STOFT - - - - yes - ja - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - Denna label blir röd, om storleken på transaktionen är över 10000 bytes. - - Detta betyder att en avgift på %1 per kb måste betalas. - - Kan variera +/- 1 Byte per ingång. - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - Transaktioner med en högre prioritet har en större sannolikhet att bli adderat till ett block. - -Denna label blir röd, om prioriteten är lägre än "medium". - -Detta betyder att en avgift på minst %1 krävs. - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - Denna label blir röd, om en mottagare får en mängd mindre än %1 - -Detta betyder att en avgift på minst %2 krävs. - -Mängder under 0,546 gånger minimiavgiften visas som DUST. - - - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - Denna label blir röd, om ändringen är mindre än %1. - -Detta betyder att en avgift på minst %2 krävs. - - - - - (no label) - (Ingen etikett) - - - - change from %1 (%2) - ändra från %1(%2) - - - - (change) - (ändra) - - - - EditAddressDialog - - - Edit Address - Redigera Adress - - - - &Label - &Etikett - - - - The label associated with this address book entry - Namnet som kopplats till denna BTestcoin-adress - - - - &Address - &Adress - - - - The address associated with this address book entry. This can only be modified for sending addresses. - Adressen är kopplad till detta inlägg i adressboken. Denna kan endast ändras för skickande adresser. - - - - 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 BitBean address. - Den inslagna adressen "%1" är inte en giltig BTestcoin adress. - - - - Could not unlock wallet. - Plånboken kunde inte låsas upp. - - - - New key generation failed. - Misslyckades med generering av ny nyckel. - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - BitBean-Qt - - - - version - version - - - - Usage: - Användning: - - - - command-line options - Command-line alternativ - - - - UI options - UI alternativ - - - - Set language, for example "de_DE" (default: system locale) - Ställ in språk, t.ex. "de_DE" (förval: systemets språk) - - - - Start minimized - Starta som minimerad - - - - Show splash screen on startup (default: 1) - Visa startscreen vid start (förval: 1) - - - - 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. Fee 5.00 recommended. - Valfri transaktionsavgift per kB som försäkrar att transaktionen behandlas snabbt. De flesta transaktionerna är 1 kB. En avgift på 0,01 är rekommenderad. - - - - Pay transaction &fee - Betala överförings&avgift - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - Reserverad mängd deltar inte i stake-processen och kan därför spenderas när som helst. - - - - Reserve - Reservera - - - - Automatically start BitBean after logging in to the system. - Starta BTestcoin automatiskt vid inloggning. - - - - &Start BitBean on system login - &Starta BTestcoin vid inloggning - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - Koppla ifrån block och adress-databaserna vid nedstängning. Detta betyder att det kan flyttas till en annan datamapp men saktar ner avstängningen. Plånboken är alltid frånkopplad. - - - - &Detach databases at shutdown - Koppla bort &databaserna vid nedkörning - - - - &Network - &Nätverk - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - Öppna automatiskt BitBean klientens port på routern. Detta fungerar endast om din router stödjer UPnP och det är aktiverat. - - - - Map port using &UPnP - Tilldela port med hjälp av &UPnP - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - Anslut till BitBean nätverket via en SOCKS proxy (t.ex. när du ansluter genom Tor). - - - - &Connect through SOCKS proxy: - &Anslut genom en SOCKS proxy: - - - - Proxy &IP: - Proxy-&IP: - - - - IP address of the proxy (e.g. 127.0.0.1) - Proxyns IP-adress (t.ex. 127.0.0.1) - - - - &Port: - &Port: - - - - Port of the proxy (e.g. 9050) - Proxyns port (t.ex. 9050) - - - - SOCKS &Version: - SOCKS &Version: - - - - SOCKS version of the proxy (e.g. 5) - SOCKS version av proxyn (t.ex. 5) - - - - &Window - &Fönster - - - - Show only a tray icon after minimizing the window. - Visa endast en systemfältsikon vid 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 BitBean. - Användargränssnittets språk kan ställas in här. Inställningen börjar gälla efter omstart av BitBean. - - - - &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 BitBean addresses in the transaction list or not. - Om BitBean adresser skall visas i transaktionslistan eller inte. - - - - &Display addresses in transaction list - &Visa adresser i transaktionslistan - - - - Whether to show coin control features or not. - Om coin kontrollinställningar skall visas eller inte. - - - - Display coin &control features (experts only!) - Visa coin kontrollinställningar (endast avancerade användare!) - - - - &OK - &OK - - - - &Cancel - &Avbryt - - - - &Apply - &Verkställ - - - - default - standard - - - - - Warning - Varning - - - - - This setting will take effect after restarting BitBean. - Inställningen börjar gälla efter omstart av BitBean. - - - - The supplied proxy address is invalid. - Den medföljande proxy adressen är ogiltig. - - - - OverviewPage - - - Form - Formulär - - - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - Den visade informationen kan vara gammal. Din plånbok synkroniseras automatiskt med BitBean nätverket efter att en anslutning skapats, men denna process är inte klar än. - - - - Stake: - Stake: - - - - Unconfirmed: - Obekräftat: - - - - Wallet - Plånbok - - - - Spendable: - Spenderbart: - - - - Your current spendable balance - Ditt tillgängliga 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> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Totala antalet transaktioner inte har blivit bekräftade än och därför inte räknas mot det totala saldot - - - - Total of coins that was staked, and do not yet count toward the current balance - Antal coins som var i stake-processen, och räknas ännu inte till nuvarande saldo - - - - - out of sync - osynkroniserad - - - - QRCodeDialog - - - QR Code Dialog - QR-Kod Dialog - - - - Request Payment - Begär Betalning - - - - Amount: - Belopp: - - - - Label: - Etikett: - - - - Message: - Meddelande: - - - - &Save As... - &Spara Som... - - - - Error encoding URI into QR Code. - Fel vid skapande av QR-kod från URI. - - - - The entered amount is invalid, please check. - Den angivna mängden är felaktig, var vänlig kontrollera. - - - - Resulting URI too long, try to reduce the text for label / message. - URI:n är för lång, försök minska texten för etikett / meddelande. - - - - Save QR Code - Spara QR-kod - - - - PNG Images (*.png) - PNG Bilder (*.png) - - - - RPCConsole - - - Client name - Klientnamn - - - - - - - - - - - - - N/A - ej tillgänglig - - - - Client version - Klient-version - - - - &Information - &Information - - - - Using OpenSSL version - Använder OpenSSL version - - - - Startup time - Uppstartstid - - - - Network - Nätverk - - - - Number of connections - Antalet anslutningar - - - - On testnet - På testnet - - - - Block chain - Blockkedja - - - - Current number of blocks - Aktuellt antal block - - - - Estimated total blocks - Beräknade totala block - - - - Last block time - Sista blocktid - - - - &Open - &Öppna - - - - Command-line options - Kommandoradsalternativ - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - Visa BitBean-Qt hjälp meddelandet för att få en lista över möjliga BitBean kommandoradsalternativ. - - - - &Show - &Visa - - - - &Console - &Konsol - - - - Build date - Kompileringsdatum - - - - BitBean - Debug window - BitBean - Felsökningsfönster - - - - BitBean Core - BitBean Core - - - - Debug log file - Debugloggfil - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - Öppna BitBean felsöknings-loggfilen från nuvarande data mapp. Detta kan kan ta ett par minuter för stora log filer. - - - - Clear console - Rensa konsollen - - - - Welcome to the BitBean RPC console. - Välkommen till BitBean RPC konsoll. - - - - 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. - - - - SendCoinsDialog - - - - - - - - - - Send Coins - Skicka pengar - - - - Coin Control Features - Coin kontrollinställningar - - - - Inputs... - Ingångar... - - - - automatically selected - automatiskt vald - - - - Insufficient funds! - Otillräckligt saldo! - - - - Quantity: - Antal: - - - - - 0 - 0 - - - - Bytes: - Bytes: - - - - Amount: - Belopp: - - - - - - - 0.00 BC - 123.456 BC {0.00 ?} - - - - Priority: - Prioritet: - - - - medium - mellan - - - - Fee: - Avgift: - - - - Low Output: - Låg utmatning: - - - - no - nej - - - - After Fee: - Efter avgift: - - - - Change - Ändra - - - - custom change address - egen ändringsadress - - - - Send to multiple recipients at once - Skicka till flera mottagare samtidigt - - - - Add &Recipient - Lägg till &mottagare - - - - Remove all transaction fields - Ta bort alla transaktionsfält - - - - Clear &All - Rensa &alla - - - - Balance: - Balans: - - - - 123.456 BC - 123.456 BC - - - - Confirm the send action - Bekräfta sändordern - - - - S&end - &Skicka - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Fyll i en BitBean adress (t.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Copy quantity - Kopiera antal - - - - Copy amount - Kopiera belopp - - - - Copy fee - Kopiera avgift - - - - Copy after fee - Kopiera efter avgift - - - - Copy bytes - Kopiera bytes - - - - Copy priority - Kopiera prioritet - - - - Copy low output - Kopiera låg utmatning - - - - Copy change - Kopiera ändring - - - - <b>%1</b> to %2 (%3) - <b>%1</b> till %2 (%3) - - - - Confirm send coins - Bekräfta skickade mynt - - - - Are you sure you want to send %1? - Är du säker att du vill skicka %1? - - - - and - och - - - - 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. - - - - Error: Transaction creation failed. - Fel: Transaktionen kunde inte skapas. - - - - 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 nekades. Detta kan hända om vissa av mynten i din plånbok redan är använda, t.ex om du använder en kopia av wallet.dat och mynten redan var använda i kopia men inte markerade som använda här. - - - - WARNING: Invalid BitBean address - VARNING: Ogiltig BitBean adress - - - - (no label) - (Ingen etikett) - - - - WARNING: unknown change address - VARNING: okänd ändringsadress - - - - SendCoinsEntry - - - Form - Formulär - - - - A&mount: - &Belopp: - - - - Pay &To: - Betala &Till: - - - - - 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: - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Adressen att skicka betalningen till (t.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Choose address from address book - Välj adress från adressbok - - - - Alt+A - Alt+A - - - - Paste address from clipboard - Klistra in adress från Urklipp - - - - Alt+P - Alt+P - - - - Remove this recipient - Ta bort denna mottagare - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Fyll i en BitBean adress (t.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Adressen att signera meddelandet med (t.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose an address from the address book - Välj en adress från adressboken - - - - - 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 - - - - Copy the current signature to the system clipboard - Kopiera signaturen till systemets Urklipp - - - - Sign the message to prove you own this BitBean address - Signera meddelandet för att verifiera att du äger denna BitBean adressen - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Adressen meddelandet var signerad med (t.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Verify the message to ensure it was signed with the specified BitBean address - Verifiera meddelandet för att vara säker på att det var signerat med den angivna BitBean adressen - - - - Reset all verify message fields - Rensa alla fält - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Fyll i en BitBean adress (t.ex. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Click "Sign Message" to generate signature - Klicka "Signera Meddelande" för att få en signatur - - - - Enter BitBean signature - Fyll i BitBean 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. - - - - TransactionDesc - - - Open until %1 - Öppet till %1 - - - - Open for %n block(s) - Öppen för %n blockÖppen för %n block - - - - conflicted - konflikt - - - - %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 - - - - Generated coins must mature 110 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. - Genererad mynt måste mogna i 510 block före de kan användas. När du genererade detta blocket sändes det ut till nätverket för att läggas till i blockkedjan. Om det inte kan läggas till i kedjan kommer dess status att ändras till "Ej accepterat" och det kommer inte gå att använda. Detta kan hända imellanåt om en annan klient genererar ett block inom ett par sekunder från ditt. - - - - 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 - - - - unknown - okänd - - - - TransactionDescDialog - - - Transaction details - Transaktionsdetaljer - - - - This pane shows a detailed description of the transaction - Den här panelen visar en detaljerad beskrivning av transaktionen - - - - TransactionTableModel - - - Date - Datum - - - - Type - Typ - - - - Address - Adress - - - - Amount - Mängd - - - - Open until %1 - Öppet till %1 - - - - Confirmed (%1 confirmations) - Bekräftad (%1 bekräftelser) - - - - Open for %n more block(s) - Öppet för %n mer blockÖppet för %n mer block - - - - Offline - Nerkopplad - - - - Unconfirmed - Obekräftad - - - - Confirming (%1 of %2 recommended confirmations) - Bekräftar (%1 av %2 rekommenderade bekräftelser) - - - - Conflicted - Konflikt - - - - Immature (%1 confirmations, will be available after %2) - Omogen (%1 bekräftningar, kommer bli tillgänglig efter %2) - - - - This block was not received by any other nodes and will probably not be accepted! - Det här blocket togs inte emot av några andra noder och kommer antagligen inte att bli godkänt. - - - - Generated but not accepted - Genererad men inte accepterad - - - - 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. - - - - 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 Data - Exportera transaktionsdata - - - - Comma separated file (*.csv) - Kommaseparerad fil (*. csv) - - - - Confirmed - Bekräftad - - - - Date - Datum - - - - Type - Typ - - - - Label - Etikett - - - - Address - Adress - - - - Amount - Mängd - - - - ID - ID - - - - Error exporting - Fel vid exportering - - - - Could not write to file %1. - Kan inte skriva till fil %1. - - - - Range: - Intervall: - - - - to - till - - - - WalletModel - - - Sending... - Skickar... - - - - bitcoin-core - - - BitBean version - BitBean version - - - - Usage: - Användning: - - - - Send command to -server or BitBeand - Skicka kommando till -server eller BitBeand - - - - List commands - Lista kommandon - - - - Get help for a command - Få hjälp med ett kommando - - - - Options: - Inställningar: - - - - Specify configuration file (default: BitBean.conf) - Ange konfigurationsfilen (standard: BitBean.conf) - - - - Specify pid file (default: BitBeand.pid) - Ange pid filen (standard BitBeand.pid) - - - - Specify wallet file (within data directory) - Ange plånboksfil (inom datakatalogen) - - - - 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) - - - - Set database disk log size in megabytes (default: 100) - Sätt databas logg storleken i MB (standard: 100) - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - Lyssna efter anslutningar på <port> (standard: 15714 eller testnät: 25714) - - - - 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 - - - - Bind to given address. Use [host]:port notation for IPv6 - Bind till angiven adress. Använd [host]:port för IPv6 - - - - Stake your coins to support network and gain reward (default: 1) - Använd dina coins för stake-processen, du upprätthåller då nätverket och får belöning (förval: 1) - - - - 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 - - - - Detach block and address databases. Increases shutdown time (default: 0) - Koppla ifrån block och adress databaser. Ökar nedstängningstid (standard: 0) - - - - 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 nekades. Detta kan hända om vissa av mynten i din plånbok redan är använda, t.ex om du använder en kopia av wallet.dat och mynten redan var använda i kopia men inte markerade som använda 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: Transaktionen kräver en transaktionsavgift på min %s på grund av dess storlek, komplexitet eller användning av nyligen mottagna kapital - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - Lyssna efter JSON-RPC anslutningar på <port> (standard: 15715 eller testnät: 25715) - - - - Accept command line and JSON-RPC commands - Tillåt kommandon från kommandotolken och JSON-RPC-kommandon - - - - Error: Transaction creation failed - Fel: Skapandet av transaktion misslyckades - - - - Error: Wallet locked, unable to create transaction - Fel: Plånboken låst, kan inte utföra transaktion - - - - Importing blockchain data file. - Importerar blockchain data fil. - - - - Importing bootstrap blockchain data file. - Importerar bootstrap blockchain data fil. - - - - 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) - - - - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - Ett fel uppstod vid initialiseringen av databasen %s! För att återställa, SÄKERHETSKOPIERA MAPPEN, radera sedan allt från mappen förutom wallet.dat. - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - Ställ in max storlek för hög prioritet/lågavgifts transaktioner i bytes (förval: 27000) - - - - 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 BitBean will not work properly. - Varning: Kolla att din dators tid och datum är rätt. BTestcoin kan inte fungera ordentligt om tiden i datorn är fel. - - - - 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. - - - - 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 - - - - Block creation options: - Block skapande inställningar: - - - - Connect only to the specified node(s) - Koppla enbart upp till den/de specificerade noden/noder - - - - Discover own IP address (default: 1 when listening and no -externalip) - Hitta egen IP-adress (förvalt: 1 under lyssning och utan -externalip) - - - - 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. - - - - Find peers using DNS lookup (default: 1) - Hitta andra klienter via DNS uppsökning (standard: 1) - - - - Sync checkpoints policy (default: strict) - Synka kontrollpunkts policy (standard: strict) - - - - Invalid -tor address: '%s' - Fel -tor adress: '%s' - - - - Invalid amount for -reservebalance=<amount> - Fel mängd för -reservebalance=<amount> - - - - 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) - Anslut enbart till noder i nätverket <net> (IPv4, IPv6 eller Tor) - - - - Output extra debugging information. Implies all other -debug* options - Skriv ut extra debug information. Betyder alla andra -debug* alternativ - - - - Output extra network debugging information - Skriv ut extra nätverks debug information - - - - Prepend debug output with timestamp - Tidstämpla debug utskriften - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL-inställningar: (se Bitcoin-wikin för SSL-setup instruktioner) - - - - Select the version of socks proxy to use (4-5, default: 5) - Välj version av socks proxy (4-5, förval 5) - - - - Send trace/debug info to console instead of debug.log file - Skicka trace-/debuginformation till terminalen istället för till debug.log - - - - Send trace/debug info to debugger - Skicka trace/debug till debuggern - - - - Set maximum block size in bytes (default: 250000) - Sätt största blockstorlek i bytes (förvalt: 250000) - - - - Set minimum block size in bytes (default: 0) - Sätt minsta blockstorlek i byte (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) - - - - Specify connection timeout in milliseconds (default: 5000) - Ange timeout för uppkoppling i millisekunder (förvalt: 5000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - Kan inte signera checkpoint, fel checkpointkey? - - - - - 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) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - Använd proxy för att nå Tor gömda servicer (standard: samma som -proxy) - - - - Username for JSON-RPC connections - Användarnamn för JSON-RPC-anslutningar - - - - Verifying database integrity... - Verifierar integriteten i databasen... - - - - WARNING: syncronized checkpoint violation detected, but skipped! - VARNING: synkroniserad kontrollpunkts brott upptäckt, men hoppades över! - - - - Warning: Disk space is low! - Varning: Lågt skivutrymme - - - - Warning: This version is obsolete, upgrade required! - Varning: denna version är föråldrad, uppgradering krävs! - - - - wallet.dat corrupt, salvage failed - wallet.dat korrupt, räddning misslyckades - - - - Password for JSON-RPC connections - Lösenord för JSON-RPC-anslutningar - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - %s, du måste sätta rpcpassword i konfigurationsfilen: - %s -Det är rekommenderat att du använder följande slumpmässiga lösenord: -rpcuser=BitBeanrpc -rpcpassword=%s -(du behöver inte komma ihåg detta lösenord) -Användarnamnet och lösenordet FÅR INTE vara samma. -Om filen inte finns, skapa den med endast ägarrättigheter. -Det är också rekommenderat att sätta alertnotify så du blir notifierad om problem; -till exempel: alertnotify=echo %%s | mail -s "BitBean Varning" admin@foo.com - - - - - Find peers using internet relay chat (default: 0) - Hitta andra klienter genom internet relay chat (standard: 1) {0)?} - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - Synkronisera tiden med andra noder. Avaktivera om klockan i ditt sytem är exakt som t.ex. synkroniserad med NTP (förval: 1) - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - När transaktioner skapas, ignorera värden som är lägre än detta (standard: 0.01) - - - - 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) - - - - 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) - - - - Require a confirmations for change (default: 0) - Kräv bekräftelse för ändring (förval: 0) - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - Tvinga transaktionsskript att använda kanoniska PUSH operatörer (standard: 1) - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - Kör kommando när en relevant alert är mottagen (%s i cmd är ersatt av meddelandet) - - - - 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - Antal block som kollas vid start (standard: 2500, 0=alla) - - - - How thorough the block verification is (0-6, default: 1) - Hur genomförlig blockverifikationen är (0-6, standard: 1) - - - - Imports blocks from external blk000?.dat file - Importera block från en extern blk000?.dat fil - - - - 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - Godtagbara chiffer (standard: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - Error: Wallet unlocked for staking only, unable to create transaction. - Fel: Plånboken öppnad endast för stake-process, kan inte skapa transaktion. - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - VARNING: Felaktig kontrollpunkt hittad! Visade transaktioner kan vara felaktiga! Du kan behöva uppgradera eller kontakta utvecklarna. - - - - This help message - Det här hjälp medelandet - - - - Wallet %s resides outside data directory %s. - Plånbok %s ligger utanför datamappen %s. - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - Kan inte låsa datan i mappen %s. BTestcoin är kanske redan startad. - - - - BitBean - BitBean - - - - 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) - - - - Connect through socks proxy - Koppla genom en socks proxy - - - - 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 blkindex.dat - Fel vid laddande av blkindex.dat - - - - 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 BitBean - Kunde inte ladda wallet.dat: En nyare version av BTestcoin krävs - - - - Wallet needed to be rewritten: restart BitBean to complete - Plånboken måste skrivas om: Starta om BTestcoin för att slutföra - - - - 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' - - - - Error: could not start node - Fel: kunde inte starta noden - - - - Sending... - Skickar... - - - - Invalid amount - Ogiltig mängd - - - - Insufficient funds - 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. BitBean is probably already running. - Kan inte binda till %s på denna dator. BTestcoin är sannolikt redan startad. - - - - Fee per KB to add to transactions you send - Avgift per KB som adderas till transaktionen du sänder - - - - Invalid amount for -mininput=<amount>: '%s' - Fel mängd för -mininput=<amount>: '%s' - - - - Loading wallet... - Laddar plånbok... - - - - Cannot downgrade wallet - Kan inte nedgradera plånboken - - - - Cannot initialize keypool - Kan inte initialisera keypool - - - - 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. - Du behöver välja ett rpclösensord i konfigurationsfilen: -%s -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_tr.qm b/src/qt/locale/bitcoin_tr.qm deleted file mode 100644 index ec25ccd..0000000 Binary files a/src/qt/locale/bitcoin_tr.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_tr.ts b/src/qt/locale/bitcoin_tr.ts deleted file mode 100644 index 0531b7d..0000000 --- a/src/qt/locale/bitcoin_tr.ts +++ /dev/null @@ -1,3311 +0,0 @@ - - - AboutDialog - - - About BitBean - BitBean Hakkında - - - - <b>BitBean</b> version - <b>BitBean</b> versiyonu - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - - - - - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - - Bu, deneysel bir yazılımdır. - - MIT/X11 yazılım lisansı kapsamında yayınlanmıştır, beraberindeki COPYING dosyasına ya da http://www.opensource.org/licenses/mit-license.php sayfasına bakınız. - - Bu ürün, OpenSSL Araç Takımı'nda (http://www.openssl.org/) kullanılmak üzere OpenSSL projesi tarafından geliştirilen yazılımı, Eric Young (eay@cryptsoft.com) tarafından hazırlanmış kriptografik yazılımı ve Thomas Bernard tarafından yazılmış UPnP yazılımı içerir. - - - - AddressBookPage - - - Address Book - Adres Defteri - - - - 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 - - - - Copy the currently selected address to the system clipboard - Seçili adresi sistem panosuna kopyala - - - - &New Address - &Yeni Adres - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - Bunlar, ödeme almak için BitBean adreslerinizdir. Her bir göndericiye farklı birini verebilir, böylece size kimin ödeme yaptığını takip edebilirsiniz. - - - - &Copy Address - Adresi &Kopyala - - - - Show &QR Code - &QR Kodunu Göster - - - - Sign a message to prove you own a BitBean address - Bir BitBean adresine sahip olduğunu ispatlamak için bir mesaj imzala - - - - Sign &Message - &Mesaj İmzala - - - - Delete the currently selected address from the list - Seçili adresi listeden sil - - - - Verify a message to ensure it was signed with a specified BitBean address - Mesajın, belirli bir BitBean adresiyle imzalandığından emin olmak için onu doğrula - - - - &Verify Message - Mesajı &Doğrula - - - - &Delete - &Sil - - - - Copy &Label - &Etiketi Kopyala - - - - &Edit - &Düzenle - - - - Export Address Book Data - Adres Defteri Verisini Dışarı Aktar - - - - Comma separated file (*.csv) - Virgülle ayrılmış değerler dosyası (*.csv) - - - - Error exporting - Dışarı aktarım hatası - - - - Could not write to file %1. - %1 dosyasına yazılamadı. - - - - AddressTableModel - - - Label - Etiket - - - - Address - Adres - - - - (no label) - (boş etiket) - - - - AskPassphraseDialog - - - Passphrase Dialog - Parola Diyaloğu - - - - Enter passphrase - Parolayı giriniz - - - - New passphrase - Yeni parola - - - - Repeat new passphrase - Yeni parolayı tekrarlayınız - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - OS hesabı tehlike girdiğinde önemsiz para gönderme özelliğini devre dışı bırakmayı sağlar. Gerçek anlamda bir güvenlik sağlamaz. - - - - For staking only - Sadece pay almak için - - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - Cüzdanınız için yeni parolayı giriniz.<br/>Lütfen <b>10 ya da daha fazla rastgele karakter</b> veya <b>sekiz ya da daha fazla kelime</b> içeren bir parola seçiniz. - - - - Encrypt wallet - Cüzdanı şifrele - - - - This operation needs your wallet passphrase to unlock the wallet. - Bu işlem cüzdan kilidini açmak için cüzdan parolanızı gerektirir. - - - - Unlock wallet - Cüzdan kilidini aç - - - - This operation needs your wallet passphrase to decrypt the wallet. - Bu işlem, cüzdan şifresini açmak için cüzdan parolasını gerektirir. - - - - Decrypt wallet - Cüzdan şifresini aç - - - - Change passphrase - Parolayı değiştir - - - - Enter the old and new passphrase to the wallet. - Cüzdan için eski ve yeni parolaları giriniz. - - - - Confirm wallet encryption - Cüzdan şifrelenmesini teyit eder - - - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>! - Uyarı: Eğer cüzdanınızı şifreleyip parolanızı kaybederseniz, <b> TÜM COINLERİNİZİ KAYBEDECEKSİ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 gerekmektedir. Güvenlik nedenleriyle yeni, şifrelenmiş cüzdanı kullanmaya başladığınızda, şifrelenmemiş cüzdan dosyasının önceki yedekleri işe yaramaz hale gelecektir. - - - - - Warning: The Caps Lock key is on! - Uyarı: Caps Lock tuşu faal durumda! - - - - - Wallet encrypted - Cüzdan şifrelendi - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins from being stolen by malware infecting your computer. - BitBean, şifreleme işlemini tamamlamak için şimdi kapatılacak. Cüzdanınızı şifrelemenin; coinlerinizin, bilgisayarınızı etkileyen zararlı yazılımlar tarafından çalınmasını bütünüyle engelleyemeyebileceğini 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 eşleşmiyor. - - - - 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. - - - - BitcoinGUI - - - Sign &message... - &Mesaj imzala... - - - - Synchronizing with network... - Ağ ile senkronizasyon... - - - - &Overview - &Genel bakış - - - - Show general overview of wallet - Cüzdana genel bakışı göster - - - - &Transactions - &İşlemler - - - - Browse transaction history - İşlem geçmişine göz at - - - - &Address Book - &Adres Defteri - - - - Edit the list of stored addresses and labels - Kayıtlı adresler ve etiketler listesini düzenle - - - - &Receive coins - Coin &al - - - - Show the list of addresses for receiving payments - Ödeme almak için kullanılan adres listesini göster - - - - &Send coins - Coin &gönder - - - - E&xit - &Çık - - - - Quit application - Uygulamadan çık - - - - Show information about BitBean - BitBean hakkındaki bilgiyi göster - - - - About &Qt - &Qt hakkında - - - - Show information about Qt - Qt hakkındaki bilgiyi göster - - - - &Options... - &Seçenekler... - - - - &Encrypt Wallet... - Cüzdanı &Şifrele... - - - - &Backup Wallet... - Cüzdanı &Yedekle... - - - - &Change Passphrase... - Parolayı &Değiştir... - - - - ~%n block(s) remaining - ~%n blok kaldı~%n blok kaldı - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - İşlem geçmişindeki %2 bloğun %1'i indirildi (%3% tamamlandı). - - - - &Export... - &Dışarı aktar... - - - - Send coins to a BitBean address - Bir BitBean adresine coin gönder - - - - Modify configuration options for BitBean - BitBean yapılandırma seçeneklerini değiştir - - - - Export the data in the current tab to a file - Mevcut sekmedeki veriyi bir dosyaya aktar - - - - Encrypt or decrypt wallet - Cüzdanı şifrele veya cüzdanın şifresini aç - - - - Backup wallet to another location - Cüzdanı başka bir konuma 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ı &doğrula... - - - - BitBean - BitBean - - - - Wallet - Cüzdan - - - - &About BitBean - BitBean &Hakkında - - - - &Show / Hide - &Göster / Gizle - - - - Unlock wallet - Cüzdanın kilidini aç - - - - &Lock Wallet - Cüzdanı &Kilitle - - - - Lock wallet - Cüzdanı kilitle - - - - &File - &Dosya - - - - &Settings - &Ayarlar - - - - &Help - &Yardım - - - - Tabs toolbar - Sekme araç çubuğu - - - - Actions toolbar - Eylem araç çubuğu - - - - - [testnet] - [testnet] - - - - - BitBean client - BitBean istemcisi - - - - %n active connection(s) to BitBean network - BitBean ağına %n etkin bağlantıBitBean ağına %n etkin bağlantı - - - - Downloaded %1 blocks of transaction history. - İşlem geçmişinin %1 bloğu indirildi. - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - Pay alınıyor.<br>Sizin ağırlığınız %1<br>Ağın ağırlığı %2<br>Ödül almak için tahmini süre %3 - - - - Not staking because wallet is locked - Pay alınmıyor çünkü cüzdan kilitlidir - - - - Not staking because wallet is offline - Pay alınmıyor çünkü cüzdan çevrimdışıdır - - - - Not staking because wallet is syncing - Pay alınmıyor çünkü cüzdan senkronize ediliyor - - - - Not staking because you don't have mature coins - Pay alınmıyor çünkü olgunlaşmış coininiz yoktur - - - - %n second(s) ago - %n saniye önce%n saniye önce - - - - &Unlock Wallet... - Cüzdanı &Kilitle... - - - - %n minute(s) ago - %n dakika önce%n dakika önce - - - - %n hour(s) ago - %n saat önce%n saat önce - - - - %n day(s) ago - %n gün önce%n gün önce - - - - Up to date - Güncel - - - - Catching up... - Aralık kapatılıyor... - - - - Last received block was generated %1. - Son alınan blok, üretildi %1. - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - Bu işlem, büyüklük sınırının üzerindedir. İşleminizi gerçekleştirecek devrelere gidecek ve ağı desteklemeye yardımcı olacak %1 ücretle coin gönderebilirsiniz. Ücreti ödemek istiyor musunuz? - - - - Confirm transaction fee - İşlem ücretini onayla - - - - Sent transaction - İşlem gerçekleştirildi - - - - Incoming transaction - Gelen işlem - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - Tarih: %1 -Miktar: %2 -Tür: %3 -Adres: %4 - - - - - - URI handling - URI işleme - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - URI ayrıştırılamadı! Bu, geçersiz bir BitBean adresi veya hatalı URI parametreleri nedeniyle olabilir. - - - - 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> - - - - Backup Wallet - Cüzdanı Yedekle - - - - Wallet Data (*.dat) - Cüzdan Verisi (*.dat) - - - - Backup Failed - Yedekleme Başarısız Oldu - - - - There was an error trying to save the wallet data to the new location. - Cüzdan verisi, yeni bir konuma kaydedilmeye çalışılırken bir hata oluştu. - - - - %n second(s) - %n saniye%n saniye - - - - %n minute(s) - %n dakika%n dakika - - - - %n hour(s) - %n saat%n saat - - - - %n day(s) - %n gün%n gün - - - - Not staking - Pay alınmıyor - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - Önemli bir hata oluştu. BitBean artık güvenli bir şekilde devam edemez ve şimdi kapatılacak. - - - - ClientModel - - - Network Alert - Ağ Uyarısı - - - - CoinControlDialog - - - Coin Control - Coin Kontrolü - - - - Quantity: - Adet: - - - - Bytes: - Bayt: - - - - Amount: - Miktar: - - - - Priority: - Öncelik: - - - - Fee: - Ücret: - - - - Low Output: - Düşük Çıktı: - - - - no - hayır - - - - 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 - Miktar - - - - Label - Etiket - - - - Address - Adres - - - - Date - Tarih - - - - Confirmations - Onaylar - - - - Confirmed - Onaylandı - - - - Priority - Öncelik - - - - Copy address - Adresi kopyala - - - - Copy label - Etiketi kopyala - - - - - Copy amount - Miktarı kopyala - - - - Copy transaction ID - İşlem Numarasını Kopyala - - - - Copy quantity - Adedi 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 - en yüksek - - - - high - yüksek - - - - medium-high - orta-yüksek - - - - medium - orta - - - - low-medium - düşük-orta - - - - low - düşük - - - - lowest - en düşük - - - - DUST - BOZUKLUK - - - - yes - evet - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - İşlem büyüklüğü 10000 bayttan büyükse, bu etiket kırmızıya dönüşür. - - Bu, kb başına en az %1 ücret gerektiği anlamına gelir. - - Girdi başına +/- 1 Byte değişkenlik gösterebilir. - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - Yüksek öncelikli işlemler, daha yüksek ihtimalle bir bloğa düşer. - -Öncelik "orta" seviyeden düşükse, bu etiket kırmızıya döner. - - Bu, kb başına en az %1 ücret gerektiği anlamına gelir. - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - Eğer herhangi bir alıcı, %1'den daha küçük bir miktar alırsa, bu etiket kırmızıya dönüşür. - - Bu, en az %2 bir ücretin gerektiği anlamına gelir. - - Minimum aktarım ücretinin 0.546 katından düşük miktarlar, BOZUKLUK olarak gösterilir. - - - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - Eğer para üstü %1'den küçükse, bu etiket kırmızıya dönüşür. - - Bu, en az %2 bir ücretin gerektiği anlamına gelir. - - - - - (no label) - (boş etiket) - - - - change from %1 (%2) - %1 unsurundan para üstü (%2) - - - - (change) - (para üstü) - - - - EditAddressDialog - - - Edit Address - Adresi düzenle - - - - &Label - &Etiket - - - - The label associated with this address book entry - Bu adres defteri kaydıyla ilişkili etiket - - - - &Address - &Adres - - - - The address associated with this address book entry. This can only be modified for sending addresses. - Bu adres defteri kaydıyla ilişkili etiket. Bu, sadece gönderi adresleri için değiştirilebilir. - - - - New receiving address - Yeni alım adresi - - - - New sending address - Yeni gönderi adresi - - - - Edit receiving address - Alım adresini düzenle - - - - Edit sending address - Gönderi adresini düzenle - - - - The entered address "%1" is already in the address book. - Girilen "%1" adresi hâlihazırda adres defterinde mevcuttur. - - - - The entered address "%1" is not a valid BitBean address. - Girilen %1 adresi, geçerli bir BitBean 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. - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - BitBean-Qt - - - - version - versiyon - - - - Usage: - Kullanım: - - - - command-line options - komut satırı seçenekleri - - - - UI options - GA seçenekleri - - - - Set language, for example "de_DE" (default: system locale) - Dili ayarla, örneğin "de_DE" (varsayılan: sistem yerel ayarları) - - - - Start minimized - Simge durumunda başlat - - - - Show splash screen on startup (default: 1) - Başlangıçta açılış ekranını göster (varsayılan: 1) - - - - 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. Fee 5.00 recommended. - İşlemlerinizin hızlıca gerçekleştirilmesini sağlayan kB başına opsiyonel işlem ücreti. Birçok işlem 1 kB'tır. Tavsiye edilen ücret 0.01'dir. - - - - Pay transaction &fee - Muamele ücreti &öde - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - Ayrılan miktar, pay almaya katılamıyor ve bu yüzden herhangi bir anda harcanabilir. - - - - Reserve - Ayrılan - - - - Automatically start BitBean after logging in to the system. - Sisteme giriş yaptıktan sonra BitBean'i otomatik olarak başlat - - - - &Start BitBean on system login - Sisteme girişte BitBean'i &başlat - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - Kapanışta blok ve adres veritabanlarını birbirinden ayır. Bu, onların başka bir veri klasörüne taşınabileceği anlamına gelir ancak bu işlem kapanışı yavaşlatır. Cüzdan ise her zaman ayrılmıştır. - - - - &Detach databases at shutdown - Kapanışta veritabanlarını &ayır - - - - &Network - &Şebeke - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - Yönelticide BitBean istemci portunu otomatik olarak aç. Bu, sadece yönelticiniz UPnP'i desteklediğinde ve etkin olduğunda çalışır. - - - - Map port using &UPnP - Portları &UPnP kullanarak haritala - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - BitBean ağına bir SOCKS vekil sunucusu yoluyla bağlan (örn. Tor yoluyla bağlanıldığında) - - - - &Connect through SOCKS proxy: - SOCKS vekil sunucusu yoluyla &bağlan: - - - - Proxy &IP: - Vekil &İP: - - - - IP address of the proxy (e.g. 127.0.0.1) - Vekil sunucunun IP adresi (örn. 127.0.0.1) - - - - &Port: - &Port: - - - - Port of the proxy (e.g. 9050) - Vekil sunucunun portu (mesela 9050) - - - - SOCKS &Version: - SOCKS &sürümü: - - - - SOCKS version of the proxy (e.g. 5) - Vekil sunucunun SOCKS sürümü (mesela 5) - - - - &Window - &Pencere - - - - Show only a tray icon after minimizing the window. - Küçültüldükten sonra sadece çekmece ikonu göster. - - - - &Minimize to the tray instead of the taskbar - İşlem çubuğu yerine sistem çekmecesine &küçült - - - - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - Pencere kapatıldığında uygulamadan çıkmak yerine uygulamayı küçültür. Bu seçenek etkinleştirildiğinde, uygulama sadece menüden çıkış seçildiğinde kapanacaktır. - - - - M&inimize on close - Kapatma sırasında k&üçült - - - - &Display - &Görünüm - - - - User Interface &language: - Kullanıcı arayüzü &lisanı: - - - - The user interface language can be set here. This setting will take effect after restarting BitBean. - Kullanıcı arabirimi dili buradan ayarlanabilir. Ayar, BitBean yeniden başlatıldığında etkin olacaktır. - - - - &Unit to show amounts in: - Meblağları göstermek için &birim: - - - - Choose the default subdivision unit to show in the interface and when sending coins. - Bitcoin gönderildiğinde arayüzde gösterilecek varsayılan alt birimi seçiniz. - - - - Whether to show BitBean addresses in the transaction list or not. - BitBean adresinin işlem listesinde gösterilmesi veya gösterilmemesi - - - - &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!) - Coin &kontrol özelliklerini göster (sadece uzman kişiler!) - - - - &OK - &Tamam - - - - &Cancel - &İptal - - - - &Apply - &Uygula - - - - default - varsayılan - - - - - Warning - Uyarı - - - - - This setting will take effect after restarting BitBean. - Bu ayar, BitBean'i yeniden başlattıktan sonra etkin olacaktır. - - - - The supplied proxy address is invalid. - Girilen vekil sunucu adresi geçersizdir. - - - - OverviewPage - - - Form - Form - - - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - Görüntülenen bilginin tarihi geçmiş olabilir. Cüzdanınız, bağlantı kurulduktan sonra otomatik olarak BitBean ağı ile senkronize olur ancak bu süreç, henüz tamamlanmamıştır. - - - - Stake: - Pay: - - - - Unconfirmed: - Doğrulanmamış: - - - - Wallet - Cüzdan - - - - Spendable: - Harcanabilir: - - - - Your current spendable balance - Güncel harcanabilir bakiyeniz - - - - 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> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - Henüz onaylanmamış ve mevcut bakiyede yer almayan işlemler toplamı - - - - Total of coins that was staked, and do not yet count toward the current balance - Pay alınmış ve mevcut bakiyede yer almayan coin toplamı - - - - - out of sync - eşleşme dışı - - - - QRCodeDialog - - - QR Code Dialog - QR Kodu İletisi - - - - Request Payment - Ödeme Talep Et - - - - Amount: - Miktar: - - - - Label: - Etiket: - - - - Message: - Mesaj: - - - - &Save As... - &Farklı Kaydet... - - - - Error encoding URI into QR Code. - URI'nin QR koduna kodlanmasında hata oluştu. - - - - The entered amount is invalid, please check. - Girilen miktar geçersizdir, lütfen kontrol ediniz. - - - - Resulting URI too long, try to reduce the text for label / message. - Sonuç URI'si çok uzundur, etiket / mesaj için olan metni kısaltmaya çalışın. - - - - Save QR Code - QR Kodu'nu Kaydet - - - - PNG Images (*.png) - PNG İmgeleri (*.png) - - - - RPCConsole - - - Client name - İstemci ismi - - - - - - - - - - - - - N/A - Mevcut değil - - - - Client version - İstemci sürümü - - - - &Information - &Malumat - - - - Using OpenSSL version - Kullanılan OpenSSL sürümü - - - - Startup time - Başlama zamanı - - - - Network - Şebeke - - - - Number of connections - Bağlantı sayısı - - - - On testnet - Testnet üzerinde - - - - 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ç - - - - Command-line options - Komut satırı seçenekleri - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - Muhtemel BitBean komut satırı seçeneklerinin bir listesini getirmek için BitBean-Qt yardım mesajını göster - - - - &Show - &Göster - - - - &Console - &Konsol - - - - Build date - Derleme tarihi - - - - BitBean - Debug window - BitBean - Hata ayıklama penceresi - - - - BitBean Core - BitBean Core - - - - Debug log file - Hata ayıklama kütük dosyası - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - BitBean hata ayıklama günlük kütüğü dosyasını, mevcut veri klasöründen aç. Bu işlem, büyük günlük kütüğü dosyaları için birkaç saniye sürebilir. - - - - Clear console - Konsolu temizle - - - - Welcome to the BitBean RPC console. - BitBean 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. - - - - SendCoinsDialog - - - - - - - - - - Send Coins - Bitcoin yolla - - - - Coin Control Features - Para kontrolü özellikleri - - - - Inputs... - Girdiler... - - - - automatically selected - otomatik seçilmiş - - - - Insufficient funds! - Yetersiz fon! - - - - Quantity: - Miktar: - - - - - 0 - 0 - - - - Bytes: - Bayt: - - - - Amount: - Meblağ: - - - - - - - 0.00 BC - 123.456 BC {0.00 ?} - - - - Priority: - Öncelik: - - - - medium - orta - - - - Fee: - Ücret: - - - - Low Output: - Düşük çıktı: - - - - no - hayır - - - - After Fee: - Ücretten sonra: - - - - Change - Değiştir - - - - custom change address - özel adres değişikliği - - - - Send to multiple recipients at once - Birçok alıcıya aynı anda gönder - - - - Add &Recipient - &Alıcı ekle - - - - Remove all transaction fields - Tüm işlem alanlarını kaldır - - - - Clear &All - Tümünü &temizle - - - - Balance: - Bakiye: - - - - 123.456 BC - 123.456 BC - - - - Confirm the send action - Yollama etkinliğini teyit ediniz - - - - S&end - G&önder - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Bir BitBean adresi gir (örn: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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 - - - - <b>%1</b> to %2 (%3) - <b>%1</b> %2'ye (%3) - - - - Confirm send coins - Gönderiyi teyit ediniz - - - - Are you sure you want to send %1? - %1 göndermek istediğinizden emin misiniz? - - - - and - ve - - - - 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. - - - - Error: Transaction creation failed. - Hata: İşlem yaratma başarısız oldu. - - - - 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: İşlem reddedildi. Bu, örneğin wallet.dat dosyasının bir kopyasını kullandıysanız ve coinler, kopyada harcanmış ve burada harcanmış olarak işaretlenmemişse, cüzdanınızdaki coinlerin bir bölümünün harcanması nedeniyle olabilir. - - - - WARNING: Invalid BitBean address - UYARI: Geçersiz BitBean adresi - - - - (no label) - (boş etiket) - - - - WARNING: unknown change address - UYARI: bilinmeyen adres değişikliği - - - - SendCoinsEntry - - - Form - Form - - - - A&mount: - Mebla&ğ: - - - - Pay &To: - &Şu adrese öde: - - - - - 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: - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Ödemenin gönderileceği adres (örn: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Choose address from address book - Adres defterinden adres seç - - - - Alt+A - Alt+A - - - - Paste address from clipboard - Panodan adres yapıştır - - - - Alt+P - Alt+P - - - - Remove this recipient - Bu alıcıyı kaldır - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Bir BitBean adresi girin (örn: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Mesajın imzalanacağı adres (örn: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose an address from the address book - Adres defterinden 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 - - - - Copy the current signature to the system clipboard - Güncel imzayı sistem panosuna kopyala - - - - Sign the message to prove you own this BitBean address - Bu BitBean adresine sahip olduğunuzu ispatlamak için 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Mesajın imzalandığı adres (örn: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Verify the message to ensure it was signed with the specified BitBean address - Mesajın, belirtilen BitBean adresiyle imzalandığından emin olmak için onu doğrula - - - - Reset all verify message fields - Tüm mesaj kontrolü alanlarını sıfırla - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - Bir BitBean adresi girin (örn: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Click "Sign Message" to generate signature - İmzayı oluşturmak için "Mesaj İmzala" unsurunu tıklayın - - - - Enter BitBean signature - BitBean 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ı. - - - - TransactionDesc - - - Open until %1 - %1 değerine dek açık - - - - Open for %n block(s) - %n blok için aç%n blok için aç - - - - 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 devre üzerinde yayınlama, %n devre üzerinde yayınlama - - - - 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 blok içerisinde olgunlaşıyor%n blok içerisinde olgunlaşıyor - - - - not accepted - kabul edilmedi - - - - - - - Debit - Gelir - - - - Transaction fee - Muamele ücreti - - - - Net amount - Net meblağ - - - - Message - Mesaj - - - - Comment - Yorum - - - - Transaction ID - Muamele tanımlayıcı - - - - Generated coins must mature 110 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. - Üretilen coinler, harcanmaya başlamadan önce 510 blokta olgunlaşmalıdır. Bu bloğu ürettiğinizde, blok zincirine eklenmek üzere ağda yayınlanır. Eğer blok, zincire girmede başarısız olursa, bloğun durumu "kabul edilmedi"ye dönüşür ve harcanamaz. Bu, başka bir devre sizden birkaç saniye önce bir blok ürettiyse gerçekleşebilir. - - - - 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ı - - - - unknown - bilinmiyor - - - - TransactionDescDialog - - - Transaction details - Muamele detayları - - - - This pane shows a detailed description of the transaction - Bu pano muamelenin ayrıntılı açıklamasını gösterir - - - - TransactionTableModel - - - Date - Tarih - - - - Type - Tür - - - - Address - Adres - - - - Amount - Meblağ - - - - Open until %1 - %1 değerine dek açık - - - - Confirmed (%1 confirmations) - Doğrulandı (%1 teyit) - - - - Open for %n more block(s) - %n blok için aç%n blok için aç - - - - 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 - - - - Immature (%1 confirmations, will be available after %2) - Olgunlaşmamış (%1 teyit, %2 teyit ardından kullanılabilir olacaktır) - - - - This block was not received by any other nodes and will probably not be accepted! - Bu blok başka hiçbir düğüm tarafından alınmamıştır ve muhtemelen kabul edilmeyecektir! - - - - Generated but not accepted - Oluşturuldu ama kabul edilmedi - - - - Received with - Şununla alındı - - - - Received from - Alındığı kişi - - - - 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ğ. - - - - 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 Data - İşlem Verisini Dışarı Aktar - - - - Comma separated file (*.csv) - Virgülle ayrılmış değerler dosyası (*.csv) - - - - Confirmed - Doğrulandı - - - - Date - Tarih - - - - Type - Tür - - - - Label - Etiket - - - - Address - Adres - - - - Amount - Meblağ - - - - ID - Tanımlayıcı - - - - Error exporting - Dışarı aktarmada hata - - - - Could not write to file %1. - %1 dosyasına yazılamadı. - - - - Range: - Aralık: - - - - to - ilâ - - - - WalletModel - - - Sending... - Gönderiyor... - - - - bitcoin-core - - - BitBean version - BitBean versiyonu - - - - Usage: - Kullanım: - - - - Send command to -server or BitBeand - -sunucu veya BitBeand'ye komut gönder - - - - List commands - Komutları listele - - - - Get help for a command - Bir komut için yardım al - - - - Options: - Seçenekler: - - - - Specify configuration file (default: BitBean.conf) - Konfigürasyon dosyasını belirt (varsayılan: BitBean.conf) - - - - Specify pid file (default: BitBeand.pid) - pid dosyasını belirt (varsayılan: BitBean.pid) - - - - Specify wallet file (within data directory) - Cüzdan dosyası belirtiniz (veri klasörünün içinde) - - - - Specify data directory - Veri dizinini belirt - - - - Set database cache size in megabytes (default: 25) - Veritabanı önbellek boyutunu megabayt olarak belirt (varsayılan: 25) - - - - Set database disk log size in megabytes (default: 100) - Veritabanı disk log boyutunu megabayt olarak ayarla (varsayılan: 100) - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - <port> üzerinde bağlantıları dinle (varsayılan: 15714 veya testnet: 25714) - - - - 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 - - - - Bind to given address. Use [host]:port notation for IPv6 - Belirtilen adrese bağlı. IPv6 için [host]:port notasyonunu kullan - - - - Stake your coins to support network and gain reward (default: 1) - Ağı desteklemek için coinlerinizden pay alın ve ödül kazanın (varsayılan: 1) - - - - 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 - - - - Detach block and address databases. Increases shutdown time (default: 0) - Blok ve adres veritabanlarını birbirinden ayır. Kapanma süresini arttırır (varsayılan: 0) - - - - 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: İşlem reddedildi. Bu; cüzdanınızdaki bazı coinler, önceden harcanmışsa, örneğin wallet.dat dosyasının bir kopyasını kullandıysanız ve bu kopyadaki coinler harcanmış ve burada harcanmış olarak işaretlenmediyse gerçekleşebilir. - - - - Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds - Hata: Bu işlem; miktarı, karmaşıklığı veya son alınan miktarın kullanımı nedeniyle en az %s işlem ücreti gerektirir - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - <port> üzerinde JSON-RPC bağlantılarını dinle (varsayılan: 15715 veya testnet: 25715) - - - - Accept command line and JSON-RPC commands - Konut satırı ve JSON-RPC komutlarını kabul et - - - - Error: Transaction creation failed - Hata: İşlem yaratma başarısız oldu - - - - Error: Wallet locked, unable to create transaction - Hata: Cüzdan kilitli, işlem yaratılamıyor - - - - Importing blockchain data file. - Blok zinciri veri dosyası içeri aktarılıyor. - - - - Importing bootstrap blockchain data file. - Önyükleme blok zinciri veri dosyası içeri aktarılıyor. - - - - 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) - - - - 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 - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - Veritabanı ortamı %s başlatılırken hata oluştu! Kurtarmak için, İLGİLİ KLASÖRÜ YEDEKLEYİN, ardından wallet.dat dışındaki her şeyi silin. - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - Bayt olarak yüksek öncelikli/düşük ücretli işlemlerin maksimum boyutunu belirle (varsayılan: 27000) - - - - 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 BitBean will not work properly. - Uyarı: Lütfen bilgisayarınızın tarih ve saatinin doğru olduğunu kontrol ediniz! Saatiniz yanlış ise, BitBean düzgün çalışmayacaktır. - - - - 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. - - - - Attempt to recover private keys from a corrupt wallet.dat - Bozuk bir wallet.dat dosyasından özel anahtarları geri kazanmayı dene - - - - Block creation options: - Blok oluşturma seçenekleri: - - - - Connect only to the specified node(s) - Sadece belirtilen düğüme veya düğümlere bağlan - - - - Discover own IP address (default: 1 when listening and no -externalip) - Kendi IP adresini keşfet (varsayılan: dinlenildiğinde ve -externalip yoksa 1) - - - - 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. - - - - Find peers using DNS lookup (default: 1) - DNS arama kullanarak eşleri bul (varsayılan: 1) - - - - Sync checkpoints policy (default: strict) - Kontrol noktası politikasını senkronize et (varsayılan: sıkı) - - - - Invalid -tor address: '%s' - Geçersiz -tor adresi: '%s' - - - - Invalid amount for -reservebalance=<amount> - -reservebalance=<amount> için geçersiz miktar - - - - 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) - Sadece <net> şebekesindeki düğümlere bağlan (IPv4, IPv6 ya da Tor) - - - - Output extra debugging information. Implies all other -debug* options - Ekstra hata ayıklama bilgisini çıktı al. Diğer tüm -debug* seçeneklerini kapsar - - - - Output extra network debugging information - Ekstra ağ hata ayıklama bilgisini çıktı al - - - - Prepend debug output with timestamp - Tarih bilgisini, hata ayıklama çıktısının başına ekle - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL seçenekleri: (SSL kurulum bilgisi için Bitcoin vikisine bakınız) - - - - Select the version of socks proxy to use (4-5, default: 5) - Kullanılacak socks vekil sunucusunun versiyonunu seç (4-5, varsayılan: 5) - - - - Send trace/debug info to console instead of debug.log file - Trace/hata ayıklama verilerini debug.log dosyası yerine konsola gönder - - - - Send trace/debug info to debugger - Hata ayıklayıcıya iz sürme/hata ayıklama bilgisi gönder - - - - Set maximum block size in bytes (default: 250000) - Bayt olarak maksimum blok boyutunu belirle (varsayılan: 250000) - - - - Set minimum block size in bytes (default: 0) - Bayt olarak asgari blok boyutunu tanımla (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) - - - - Specify connection timeout in milliseconds (default: 5000) - Bağlantı zaman aşım süresini milisaniye olarak belirt (varsayılan: 5000) - - - - Unable to sign checkpoint, wrong checkpointkey? - - Kontrol noktası imzalanamadı, bu bir hatalı kontrol noktası anahtarı mı? - - - - - Use UPnP to map the listening port (default: 0) - Dinlenecek portu haritalamak için UPnP kullan (varsayılan: 0) - - - - Use UPnP to map the listening port (default: 1 when listening) - Dinlenecek portu haritalamak için UPnP kullan (varsayılan: dinlenildiğinde 1) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - Tor gizli servisine erişim için vekil sunucu kullan (varsayılan: -proxy ile aynı) - - - - Username for JSON-RPC connections - JSON-RPC bağlantıları için kullanıcı ismi - - - - Verifying database integrity... - Veritabanı bütünlüğü doğrulanıyor... - - - - WARNING: syncronized checkpoint violation detected, but skipped! - UYARI: senkronize edilen kontrol noktası ihlali tespit edildi ancak atlandı! - - - - Warning: Disk space is low! - Uyarı: Disk alanı düşüktür! - - - - Warning: This version is obsolete, upgrade required! - Uyarı: Bu sürüm çok eskidir, güncellemeniz gerekir! - - - - 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 - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - %s, konfigürasyon dosyasında bir rpcpassword belirlemelisiniz: - %s -Aşağıdaki rastgele parolayı kullanmanız tavsiye edilir: -rpcuser=BitBeanrpc -rpcpassword=%s -(bu parolayı hatırlamanız gerekmemektedir) -Kullanıcı adı ve parola aynı OLMAMALIDIR. -Dosya mevcut değilse, dosyayı sadece-kullanıcı-okuyabilir dosya izniyle yaratınız. -alertnotify ayarlamanız da ayrıca tavsiye edilir böylece sorunlar, size bildirilir; -örneğin: alertnotify=echo %%s | mail -s "BitBean Uyarısı" admin@foo.com - - - - - Find peers using internet relay chat (default: 0) - Internet aktarımlı söyleşi kullanarak eşleri bul (varsayılan: 1) {0)?} - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - Diğer devrelerle saati senkronize et. Sisteminizdeki saat doğru ise devre dışı bırakın, örn: NTC ile senkronize etme (varsayılan: 1) - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - - - - - 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) - - - - 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) - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - - - - - 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 - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - - - - - 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) - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - - This help message - Bu yardım mesajı - - - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - - - - - 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) - - - - Connect through socks proxy - - - - - 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 blkindex.dat - - - - - 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 BitBean - - - - - Wallet needed to be rewritten: restart BitBean to complete - - - - - 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' - - - - Error: could not start node - - - - - Sending... - - - - - 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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - - - - - Loading wallet... - Cüzdan yükleniyor... - - - - Cannot downgrade wallet - Cüzdan eski biçime geri alınamaz - - - - Cannot initialize keypool - - - - - 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. - rpcpassword=<parola> şu yapılandırma dosyasında belirtilmelidir: -%s -Dosya mevcut değilse, sadece sahibi için okumayla sınırlı izin ile oluşturunuz. - - - \ No newline at end of file diff --git a/src/qt/locale/bitcoin_uk.qm b/src/qt/locale/bitcoin_uk.qm deleted file mode 100644 index 87d3982..0000000 Binary files a/src/qt/locale/bitcoin_uk.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_vi_VN.ts b/src/qt/locale/bitcoin_vi_VN.ts deleted file mode 100644 index 779474d..0000000 --- a/src/qt/locale/bitcoin_vi_VN.ts +++ /dev/null @@ -1,3275 +0,0 @@ - - - AboutDialog - - - About BitBean - - - - - <b>BitBean</b> version - - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - - - - - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - - - - - AddressBookPage - - - Address Book - - - - - Double-click to edit address or label - - - - - Create a new address - Tạo một địa chỉ mới - - - - Copy the currently selected address to the system clipboard - - - - - &New Address - - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - - - - - &Copy Address - - - - - Show &QR Code - - - - - Sign a message to prove you own a BitBean address - - - - - Sign &Message - - - - - Delete the currently selected address from the list - - - - - Verify a message to ensure it was signed with a specified BitBean address - - - - - &Verify Message - - - - - &Delete - - - - - Copy &Label - - - - - &Edit - - - - - Export Address Book Data - - - - - Comma separated file (*.csv) - - - - - Error exporting - - - - - Could not write to file %1. - - - - - AddressTableModel - - - Label - - - - - Address - - - - - (no label) - - - - - AskPassphraseDialog - - - Passphrase Dialog - - - - - Enter passphrase - - - - - New passphrase - - - - - Repeat new passphrase - - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - - - - - For staking only - - - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - - - - - 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 COINS</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 - - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins 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. - - - - - BitcoinGUI - - - Sign &message... - - - - - Synchronizing with network... - - - - - &Overview - - - - - Show general overview of wallet - - - - - &Transactions - - - - - Browse transaction history - - - - - &Address Book - - - - - Edit the list of stored addresses and labels - - - - - &Receive coins - - - - - Show the list of addresses for receiving payments - - - - - &Send coins - - - - - E&xit - - - - - Quit application - - - - - Show information about BitBean - - - - - About &Qt - - - - - Show information about Qt - - - - - &Options... - - - - - &Encrypt Wallet... - - - - - &Backup Wallet... - - - - - &Change Passphrase... - - - - - ~%n block(s) remaining - - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - - - - - &Export... - - - - - Send coins to a BitBean address - - - - - Modify configuration options for BitBean - - - - - Export the data in the current tab to a file - - - - - Encrypt or decrypt wallet - - - - - Backup wallet to another location - - - - - Change the passphrase used for wallet encryption - - - - - &Debug window - - - - - Open debugging and diagnostic console - - - - - &Verify message... - - - - - BitBean - - - - - Wallet - - - - - &About BitBean - - - - - &Show / Hide - - - - - Unlock wallet - - - - - &Lock Wallet - - - - - Lock wallet - - - - - &File - - - - - &Settings - - - - - &Help - - - - - Tabs toolbar - - - - - Actions toolbar - - - - - - [testnet] - - - - - - BitBean client - - - - - %n active connection(s) to BitBean network - - - - - Downloaded %1 blocks of transaction history. - - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - - - - - Not staking because wallet is locked - - - - - Not staking because wallet is offline - - - - - Not staking because wallet is syncing - - - - - Not staking because you don't have mature coins - - - - - %n second(s) ago - - - - - &Unlock Wallet... - - - - - %n minute(s) ago - - - - - %n hour(s) ago - - - - - %n day(s) ago - - - - - Up to date - - - - - Catching up... - - - - - Last received block was generated %1. - - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - - - - - Confirm transaction fee - - - - - Sent transaction - - - - - Incoming transaction - - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - - - - - - URI handling - - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - - - - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - - - - - Wallet is <b>encrypted</b> and currently <b>locked</b> - - - - - Backup Wallet - - - - - Wallet Data (*.dat) - - - - - Backup Failed - - - - - There was an error trying to save the wallet data to the new location. - - - - - %n second(s) - - - - - %n minute(s) - - - - - %n hour(s) - - - - - %n day(s) - - - - - Not staking - - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - - - - - ClientModel - - - Network Alert - - - - - CoinControlDialog - - - Coin Control - - - - - Quantity: - - - - - Bytes: - - - - - Amount: - - - - - Priority: - - - - - Fee: - - - - - Low Output: - - - - - no - - - - - After Fee: - - - - - Change: - - - - - (un)select all - - - - - Tree mode - - - - - List mode - - - - - Amount - - - - - Label - - - - - Address - - - - - Date - - - - - Confirmations - - - - - Confirmed - - - - - Priority - - - - - Copy address - - - - - Copy label - - - - - - Copy amount - - - - - Copy transaction ID - - - - - Copy quantity - - - - - Copy fee - - - - - Copy after fee - - - - - Copy bytes - - - - - Copy priority - - - - - Copy low output - - - - - Copy change - - - - - highest - - - - - high - - - - - medium-high - - - - - medium - - - - - low-medium - - - - - low - - - - - lowest - - - - - DUST - - - - - yes - - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 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. - - This means a fee of at least %2 is required. - - - - - - (no label) - - - - - change from %1 (%2) - - - - - (change) - - - - - EditAddressDialog - - - Edit Address - - - - - &Label - - - - - The label associated with this address book entry - - - - - &Address - - - - - The address associated with this address book entry. This can only be modified for sending addresses. - - - - - New receiving address - - - - - New sending address - - - - - Edit receiving address - - - - - Edit sending address - - - - - The entered address "%1" is already in the address book. - - - - - The entered address "%1" is not a valid BitBean address. - - - - - Could not unlock wallet. - - - - - New key generation failed. - - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - - - - - version - - - - - Usage: - - - - - command-line options - - - - - UI options - - - - - Set language, for example "de_DE" (default: system locale) - - - - - Start minimized - - - - - Show splash screen on startup (default: 1) - - - - - OptionsDialog - - - Options - - - - - &Main - - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - - - - - Pay transaction &fee - - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - - - - - Reserve - - - - - Automatically start BitBean after logging in to the system. - - - - - &Start BitBean on system login - - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - - - - - &Detach databases at shutdown - - - - - &Network - - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - - - - - Map port using &UPnP - - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - - - - - &Connect through SOCKS proxy: - - - - - Proxy &IP: - - - - - IP address of the proxy (e.g. 127.0.0.1) - - - - - &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 BitBean. - - - - - &Unit to show amounts in: - - - - - Choose the default subdivision unit to show in the interface and when sending coins. - - - - - Whether to show BitBean 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 - - - - - &Apply - - - - - default - - - - - - Warning - - - - - - This setting will take effect after restarting BitBean. - - - - - The supplied proxy address is invalid. - - - - - OverviewPage - - - Form - - - - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - - - - - Stake: - - - - - Unconfirmed: - - - - - Wallet - - - - - Spendable: - - - - - Your current spendable balance - - - - - Immature: - - - - - Mined balance that has not yet matured - - - - - Total: - - - - - Your current total balance - - - - - <b>Recent transactions</b> - - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - - - - - Total of coins that was staked, and do not yet count toward the current balance - - - - - - out of sync - - - - - QRCodeDialog - - - QR Code Dialog - - - - - Request Payment - - - - - Amount: - - - - - Label: - - - - - Message: - - - - - &Save As... - - - - - Error encoding URI into QR Code. - - - - - The entered amount is invalid, please check. - - - - - Resulting URI too long, try to reduce the text for label / message. - - - - - Save QR Code - - - - - PNG Images (*.png) - - - - - RPCConsole - - - Client name - - - - - - - - - - - - - - N/A - - - - - Client version - - - - - &Information - - - - - Using OpenSSL version - - - - - Startup time - - - - - Network - - - - - Number of connections - - - - - On testnet - - - - - Block chain - - - - - Current number of blocks - - - - - Estimated total blocks - - - - - Last block time - - - - - &Open - - - - - Command-line options - - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - - - - - &Show - - - - - &Console - - - - - Build date - - - - - BitBean - Debug window - - - - - BitBean Core - - - - - Debug log file - - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - - - - - Clear console - - - - - Welcome to the BitBean 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. - - - - - SendCoinsDialog - - - - - - - - - - Send Coins - - - - - Coin Control Features - - - - - Inputs... - - - - - automatically selected - - - - - Insufficient funds! - - - - - Quantity: - - - - - - 0 - - - - - Bytes: - - - - - Amount: - - - - - - - - 0.00 BC - - - - - Priority: - - - - - medium - - - - - Fee: - - - - - Low Output: - - - - - no - - - - - After Fee: - - - - - Change - - - - - custom change address - - - - - Send to multiple recipients at once - - - - - Add &Recipient - - - - - Remove all transaction fields - - - - - Clear &All - - - - - Balance: - - - - - 123.456 BC - - - - - Confirm the send action - - - - - S&end - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Copy quantity - - - - - Copy amount - - - - - Copy fee - - - - - Copy after fee - - - - - Copy bytes - - - - - Copy priority - - - - - Copy low output - - - - - Copy change - - - - - <b>%1</b> to %2 (%3) - - - - - Confirm send coins - - - - - Are you sure you want to send %1? - - - - - and - - - - - 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. - - - - - Error: Transaction creation failed. - - - - - 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. - - - - - WARNING: Invalid BitBean address - - - - - (no label) - - - - - WARNING: unknown change address - - - - - SendCoinsEntry - - - Form - - - - - A&mount: - - - - - Pay &To: - - - - - - Enter a label for this address to add it to your address book - - - - - &Label: - - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose address from address book - - - - - Alt+A - - - - - Paste address from clipboard - - - - - Alt+P - - - - - Remove this recipient - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - - Choose an address from the address book - - - - - - Alt+A - - - - - Paste address from clipboard - - - - - Alt+P - - - - - Enter the message you want to sign here - - - - - Copy the current signature to the system clipboard - - - - - Sign the message to prove you own this BitBean address - - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Verify the message to ensure it was signed with the specified BitBean address - - - - - Reset all verify message fields - - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Click "Sign Message" to generate signature - - - - - Enter BitBean 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. - - - - - TransactionDesc - - - Open until %1 - - - - - Open for %n block(s) - - - - - 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 - - - - - Generated coins must mature 110 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 - - - - - unknown - - - - - TransactionDescDialog - - - Transaction details - - - - - This pane shows a detailed description of the transaction - - - - - TransactionTableModel - - - Date - - - - - Type - - - - - Address - - - - - Amount - - - - - Open until %1 - - - - - Confirmed (%1 confirmations) - - - - - Open for %n more block(s) - - - - - Offline - - - - - Unconfirmed - - - - - Confirming (%1 of %2 recommended confirmations) - - - - - Conflicted - - - - - Immature (%1 confirmations, will be available after %2) - - - - - This block was not received by any other nodes and will probably not be accepted! - - - - - Generated but not accepted - - - - - 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. - - - - - 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 Data - - - - - Comma separated file (*.csv) - - - - - Confirmed - - - - - Date - - - - - Type - - - - - Label - - - - - Address - - - - - Amount - - - - - ID - - - - - Error exporting - - - - - Could not write to file %1. - - - - - Range: - - - - - to - - - - - WalletModel - - - Sending... - - - - - bitcoin-core - - - BitBean version - - - - - Usage: - - - - - Send command to -server or BitBeand - - - - - List commands - - - - - Get help for a command - - - - - Options: - - - - - Specify configuration file (default: BitBean.conf) - - - - - Specify pid file (default: BitBeand.pid) - - - - - Specify wallet file (within data directory) - - - - - Specify data directory - - - - - Set database cache size in megabytes (default: 25) - - - - - Set database disk log size in megabytes (default: 100) - - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - - - - - Maintain at most <n> connections to peers (default: 125) - - - - - Connect to a node to retrieve peer addresses, and disconnect - - - - - Specify your own public address - - - - - Bind to given address. Use [host]:port notation for IPv6 - - - - - Stake your coins to support network and gain reward (default: 1) - - - - - 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 - - - - - Detach block and address databases. Increases shutdown time (default: 0) - - - - - 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 - - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - - - - - Accept command line and JSON-RPC commands - - - - - Error: Transaction creation failed - - - - - Error: Wallet locked, unable to create transaction - - - - - Importing blockchain data file. - - - - - Importing bootstrap blockchain data file. - - - - - 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) - - - - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - - - - - 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 BitBean will not work properly. - - - - - 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. - - - - - Attempt to recover private keys from a corrupt wallet.dat - - - - - Block creation options: - - - - - Connect only to the specified node(s) - - - - - Discover own IP address (default: 1 when listening and no -externalip) - - - - - Failed to listen on any port. Use -listen=0 if you want this. - - - - - Find peers using DNS lookup (default: 1) - - - - - Sync checkpoints policy (default: strict) - - - - - Invalid -tor address: '%s' - - - - - Invalid amount for -reservebalance=<amount> - - - - - Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000) - - - - - Maximum per-connection send buffer, <n>*1000 bytes (default: 1000) - - - - - Only connect to nodes in network <net> (IPv4, IPv6 or Tor) - - - - - Output extra debugging information. Implies all other -debug* options - - - - - Output extra network debugging information - - - - - Prepend debug output with timestamp - - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - - - - - Select the version of socks proxy to use (4-5, default: 5) - - - - - Send trace/debug info to console instead of debug.log file - - - - - Send trace/debug info to debugger - - - - - Set maximum block size in bytes (default: 250000) - - - - - Set minimum block size in bytes (default: 0) - - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - - - - - Specify connection timeout in milliseconds (default: 5000) - - - - - Unable to sign checkpoint, wrong checkpointkey? - - - - - - Use UPnP to map the listening port (default: 0) - - - - - Use UPnP to map the listening port (default: 1 when listening) - - - - - Use proxy to reach tor hidden services (default: same as -proxy) - - - - - Username for JSON-RPC connections - - - - - Verifying database integrity... - - - - - WARNING: syncronized checkpoint violation detected, but skipped! - - - - - Warning: Disk space is low! - - - - - Warning: This version is obsolete, upgrade required! - - - - - wallet.dat corrupt, salvage failed - - - - - Password for JSON-RPC connections - - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - - Find peers using internet relay chat (default: 0) - - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - - - - - 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) - - - - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - - - - - Require a confirmations for change (default: 0) - - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - - - - - Upgrade wallet to latest format - - - - - Set key pool size to <n> (default: 100) - - - - - Rescan the block chain for missing wallet transactions - - - - - How many blocks to check at startup (default: 2500, 0 = all) - - - - - How thorough the block verification is (0-6, default: 1) - - - - - Imports blocks from external blk000?.dat file - - - - - Use OpenSSL (https) for JSON-RPC connections - - - - - Server certificate file (default: server.cert) - - - - - Server private key (default: server.pem) - - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - - Error: Wallet unlocked for staking only, unable to create transaction. - - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - - - - - This help message - - - - - Wallet %s resides outside data directory %s. - - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - - - - - BitBean - - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - - - - - Connect through socks proxy - - - - - Allow DNS lookups for -addnode, -seednode and -connect - - - - - Loading addresses... - - - - - Error loading blkindex.dat - - - - - Error loading wallet.dat: Wallet corrupted - - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - - - - - Wallet needed to be rewritten: restart BitBean 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' - - - - - Error: could not start node - - - - - Sending... - - - - - 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. BitBean is probably already running. - - - - - Fee per KB to add to transactions you send - - - - - Invalid amount for -mininput=<amount>: '%s' - - - - - Loading wallet... - - - - - Cannot downgrade wallet - - - - - Cannot initialize keypool - - - - - 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.qm b/src/qt/locale/bitcoin_zh_CN.qm deleted file mode 100644 index bdaa45d..0000000 Binary files a/src/qt/locale/bitcoin_zh_CN.qm and /dev/null differ diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts deleted file mode 100644 index bfc2895..0000000 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ /dev/null @@ -1,3318 +0,0 @@ - - - AboutDialog - - - About BitBean - 关于黑币 - - - - <b>BitBean</b> version - <b>黑币客户端</b> 版本 - - - - Copyright © 2009-2014 The Bitcoin developers -Copyright © 2012-2014 The NovaCoin developers -Copyright © 2014 The BitBean developers - 版权所有 © 2009-2014 比特币Bitcoin开发组 -版权所有 © 2012-2014 新星币Novacoin开发组 -版权所有 © 2014 黑币BitBean开发组 - - - - -This is experimental software. - -Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. - -This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard. - -测试版软件 - -经MIT/X11软件授权发布, 具体参见http://www.opensource.org/licenses/mit-license.php. - -本产品包括由OpenSSL Project (http://www.openssl.org/)开发的OpenSSL工具包 ,由 Eric Young (eay@cryptsoft.com) 撰写的密码学软件以及由 Thomas Bernard 撰写的UPnP软件. - - - - AddressBookPage - - - Address Book - 地址簿 - - - - Double-click to edit address or label - 双击编辑地址或标签 - - - - Create a new address - 创建新地址 - - - - Copy the currently selected address to the system clipboard - 复制当前选中的地址到系统剪贴板 - - - - &New Address - 新建地址(&N) - - - - These are your BitBean addresses for receiving payments. You may want to give a different one to each sender so you can keep track of who is paying you. - 这是您用来接收支付的黑币地址列表。为不同的支付方建立不同的地址以便于了解支付来源。 - - - - &Copy Address - 复制地址(&C) - - - - Show &QR Code - 显示二维码(&Q) - - - - Sign a message to prove you own a BitBean address - 对信息进行签名以证明您对该黑币地址的所有权 - - - - Sign &Message - 签名(&M) - - - - Delete the currently selected address from the list - 从列表中删除选中的地址 - - - - Verify a message to ensure it was signed with a specified BitBean address - 验证信息以保证其经过指定黑币地址的签名 - - - - &Verify Message - 验证消息(&V) - - - - &Delete - 删除(&D) - - - - Copy &Label - 复制标签(&L) - - - - &Edit - 编辑(&E) - - - - Export Address Book Data - 导出地址簿数据 - - - - Comma separated file (*.csv) - 逗号分隔文件 (*.csv) - - - - Error exporting - 导出时发生错误 - - - - Could not write to file %1. - 无法写入文件 %1 。 - - - - AddressTableModel - - - Label - 标签 - - - - Address - 地址 - - - - (no label) - (没有标签) - - - - AskPassphraseDialog - - - Passphrase Dialog - 密码对话框 - - - - Enter passphrase - 输入密码 - - - - New passphrase - 新密码 - - - - Repeat new passphrase - 重复新密码 - - - - Serves to disable the trivial sendmoney when OS account compromised. Provides no real security. - 在系统允许的情况下用于防止sendmoney欺诈,并未提供真正的安全防护措施。 - - - - For staking only - 仅用于权益增值 - - - - Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>. - 输入钱包的新密码。<br/>使用的密码请至少包含<b>10个以上随机字符</>,或者是<b>8个以上的单词</b>。 - - - - Encrypt wallet - 加密钱包 - - - - This operation needs your wallet passphrase to unlock the wallet. - 此操作需要您首先使用密码解锁该钱包。 - - - - Unlock wallet - 解锁钱包 - - - - This operation needs your wallet passphrase to decrypt the wallet. - 该操作需要您首先使用密码解密钱包。 - - - - Decrypt wallet - 解密钱包 - - - - Change passphrase - 更改密码 - - - - Enter the old and new passphrase to the wallet. - 请输入该钱包的旧密码与新密码。 - - - - Confirm wallet encryption - 确认加密钱包 - - - - Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</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 - 钱包已加密 - - - - BitBean will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your coins 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. - 修改钱包密码成功。 - - - - BitcoinGUI - - - Sign &message... - 消息签名(&M)... - - - - Synchronizing with network... - 正在与网络同步... - - - - &Overview - 概况(&O) - - - - Show general overview of wallet - 显示钱包概况 - - - - &Transactions - 交易记录(&T) - - - - Browse transaction history - 查看交易历史 - - - - &Address Book - 地址簿(&A) - - - - Edit the list of stored addresses and labels - 管理已储存的地址和标签 - - - - &Receive coins - 接收黑币(&R) - - - - Show the list of addresses for receiving payments - 显示用于接收支付的地址列表 - - - - &Send coins - 发送黑币(&S) - - - - E&xit - 退出(&X) - - - - Quit application - 退出程序 - - - - Show information about BitBean - 显示关于黑币的信息 - - - - About &Qt - 关于 &Qt - - - - Show information about Qt - 显示 Qt 相关信息 - - - - &Options... - 选项(&O)... - - - - &Encrypt Wallet... - 加密钱包(&E)... - - - - &Backup Wallet... - 备份钱包(&B)... - - - - &Change Passphrase... - 更改密码(&C)... - - - - ~%n block(s) remaining - ~%n 个区块未完成 - - - - Downloaded %1 of %2 blocks of transaction history (%3% done). - 交易记录已下载%3% (%1 / %2 个区块) - - - - &Export... - 导出(&E) - - - - Send coins to a BitBean address - 向指定的地址发送黑币 - - - - Modify configuration options for BitBean - 更改设置选项 - - - - Export the data in the current tab to a file - 导出当前标签页的数据 - - - - Encrypt or decrypt wallet - 加密/解密钱包 - - - - Backup wallet to another location - 备份钱包到其他文件夹 - - - - Change the passphrase used for wallet encryption - 更改钱包加密口令 - - - - &Debug window - 调试窗口(&D) - - - - Open debugging and diagnostic console - 打开调试和诊断控制台 - - - - &Verify message... - 验证消息(&V)... - - - - BitBean - 黑币 - - - - Wallet - 钱包 - - - - &About BitBean - 关于黑币(&A) - - - - &Show / Hide - 显示 / 隐藏(&S) - - - - Unlock wallet - 解锁钱包 - - - - &Lock Wallet - 锁定钱包(&L) - - - - Lock wallet - 锁定钱包 - - - - &File - 文件(&F) - - - - &Settings - 设置(&S) - - - - &Help - 帮助(&H) - - - - Tabs toolbar - 分页工具栏 - - - - Actions toolbar - 工具栏 - - - - - [testnet] - [测试网络] - - - - - BitBean client - 黑币客户端 - - - - %n active connection(s) to BitBean network - 与黑币网络建立了 %n 个连接 - - - - Downloaded %1 blocks of transaction history. - 已下载 %1 个区块的交易记录 - - - - Staking.<br>Your weight is %1<br>Network weight is %2<br>Expected time to earn reward is %3 - 权益增值中 <br>您的权重为 %1 <br>网络总权重为 %2<br>预计将在 %3 之后获得收益 - - - - Not staking because wallet is locked - 未进行权益增值,因为钱包已锁定 - - - - Not staking because wallet is offline - 未进行权益增值,因为钱包处于离线状态 - - - - Not staking because wallet is syncing - 未进行权益增值,因为钱包正在同步 - - - - Not staking because you don't have mature coins - 未进行权益增值,因为钱包中没有成熟的黑币 - - - - %n second(s) ago - %n 秒前 - - - - &Unlock Wallet... - 解锁钱包(&U) - - - - %n minute(s) ago - %n 分钟前 - - - - %n hour(s) ago - %n 小时前 - - - - %n day(s) ago - %n 天前 - - - - Up to date - 已是最新 - - - - Catching up... - 更新中... - - - - Last received block was generated %1. - 最近生成的区块接收于%1 - - - - This transaction is over the size limit. You can still send it for a fee of %1, which goes to the nodes that process your transaction and helps to support the network. Do you want to pay the fee? - 该笔交易数据量太大,需支付%1手续费给执行该笔交易的网络结点。您愿意支付吗? - - - - Confirm transaction fee - 手续费确认 - - - - Sent transaction - 发送交易 - - - - Incoming transaction - 流入交易 - - - - Date: %1 -Amount: %2 -Type: %3 -Address: %4 - - 日期: %1 -金额: %2 -类别: %3 -地址: %4 - - - - - - URI handling - URI处理 - - - - - URI can not be parsed! This can be caused by an invalid BitBean address or malformed URI parameters. - 无法解析URI:无效的黑币地址或错误的URI参数。 - - - - 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>状态 - - - - Backup Wallet - 备份钱包 - - - - Wallet Data (*.dat) - 钱包数据文件(*.dat) - - - - Backup Failed - 备份失败 - - - - There was an error trying to save the wallet data to the new location. - 试图将钱包地址保存到新位置时出现错误 - - - - %n second(s) - %n秒 - - - - %n minute(s) - %n 分钟 - - - - %n hour(s) - %n 小时 - - - - %n day(s) - %n 天 - - - - Not staking - 未进行权益增值 - - - - A fatal error occurred. BitBean can no longer continue safely and will quit. - 发生严重错误,黑币客户端即将关闭。 - - - - ClientModel - - - Network Alert - 网络警报 - - - - CoinControlDialog - - - Coin Control - 黑币控制 - - - - Quantity: - 总量: - - - - Bytes: - 字节: - - - - Amount: - 金额: - - - - Priority: - 优先级: - - - - Fee: - 费用: - - - - Low Output: - 低输出 - - - - no - - - - - After Fee: - 加上交易费用后: - - - - Change: - 变更 : - - - - (un)select all - (不)全选 - - - - Tree mode - 树状模式 - - - - List mode - 列表模式 - - - - Amount - 金额 - - - - Label - 标签 - - - - Address - 地址 - - - - Date - 日期 - - - - Confirmations - 确认 - - - - Confirmed - 已确认 - - - - Priority - 优先级 - - - - Copy address - 复制地址 - - - - Copy label - 复制标签 - - - - - Copy amount - 复制金额 - - - - Copy transaction ID - 复制交易编号 - - - - Copy quantity - 复制金额 - - - - Copy fee - 复制交易费 - - - - Copy after fee - 复制含交易费的金额 - - - - Copy bytes - 复制字节 - - - - Copy priority - 复制优先级 - - - - Copy low output - 复制低输出 - - - - Copy change - 复制零钱 - - - - highest - 最高 - - - - high - - - - - medium-high - 中高 - - - - medium - 中等 - - - - low-medium - 中低 - - - - low - - - - - lowest - 最低 - - - - DUST - DUST - - - - yes - - - - - This label turns red, if the transaction size is bigger than 10000 bytes. - - This means a fee of at least %1 per kb is required. - - Can vary +/- 1 Byte per input. - 交易数据量超过10000字节时,该标签变为红色。 -此时每kb数据量将会收取 %1 的手续费。 -可能有+/-1字节的误差。 - - - - Transactions with higher priority get more likely into a block. - -This label turns red, if the priority is smaller than "medium". - - This means a fee of at least %1 per kb is required. - 优先度较高的交易有更高可能进入到区块中。 -当优先度为中级以下时,该标签变为红色。 -此时需要收取每kb %1 的手续费。 - - - - This label turns red, if any recipient receives an amount smaller than %1. - - This means a fee of at least %2 is required. - - Amounts below 0.546 times the minimum relay fee are shown as DUST. - 如果收款人所收款项少于 %1,该标签变为红色。 -此时需收取 %2 的手续费。 -低于该手续费的0.546倍的款项将被显示为DUST。 - - - - This label turns red, if the change is smaller than %1. - - This means a fee of at least %2 is required. - 如果零钱少于 %1,该标签变为红色。 -此时需收取 %2 的手续费。 - - - - - (no label) - (没有标签) - - - - change from %1 (%2) - 来自%1的零钱 (%2) - - - - (change) - (零钱) - - - - EditAddressDialog - - - Edit Address - 编辑地址 - - - - &Label - 标签(&L) - - - - The label associated with this address book entry - 地址簿内该项目对应的标签 - - - - &Address - 地址(&A) - - - - The address associated with this address book entry. This can only be modified for sending addresses. - 地址簿内该项目对应的地址。只有“收款人地址”分类下的地址可以修改。 - - - - New receiving address - 新建接收地址 - - - - New sending address - 新建发送地址 - - - - Edit receiving address - 编辑接收地址 - - - - Edit sending address - 编辑发送地址 - - - - The entered address "%1" is already in the address book. - 输入的地址“%1”已经存在于地址簿中。 - - - - The entered address "%1" is not a valid BitBean address. - “%1” 不是有效的黑币地址。 - - - - Could not unlock wallet. - 无法解锁钱包 - - - - New key generation failed. - 新的密钥生成失败。 - - - - GUIUtil::HelpMessageBox - - - - BitBean-Qt - 黑币客户端BitBean-Qt - - - - version - 版本 - - - - Usage: - 使用 - - - - command-line options - 命令行选项 - - - - UI options - 用户界面选项 - - - - Set language, for example "de_DE" (default: system locale) - 设定语言,例如 “de_DE" (默认语言为本地操作系统语言) - - - - Start minimized - 启动时最小化 - - - - Show splash screen on startup (default: 1) - 登录时显示Logo界面 (默认开启) - - - - OptionsDialog - - - Options - 选项 - - - - &Main - 主要(&M) - - - - Optional transaction fee per kB that helps make sure your transactions are processed quickly. Most transactions are 1 kB. Fee 5.00 recommended. - 支付可选的交易手续费以加速交易(每kB)。大多数交易的数据量为1kB。推荐额0.01。 - - - - Pay transaction &fee - 支付交易费用(&F) - - - - Reserved amount does not participate in staking and is therefore spendable at any time. - 保留金额不参与权益累积,可以随时使用。 - - - - Reserve - 保留 - - - - Automatically start BitBean after logging in to the system. - 开机自动启动黑币客户端 - - - - &Start BitBean on system login - 开机时自动启动黑币客户端(&S) - - - - Detach block and address databases at shutdown. This means they can be moved to another data directory, but it slows down shutdown. The wallet is always detached. - 关机时断开区块和地址数据连接使得它们可以被移动到其他目录。这样做会使关机速度变慢。钱包数据总是断开存储的。 - - - - &Detach databases at shutdown - 关机时断开区块和地址数据库连接(&D) - - - - &Network - 网络(&N) - - - - Automatically open the BitBean client port on the router. This only works when your router supports UPnP and it is enabled. - 路由器自动打开黑币客户端端口。该功能仅在路由器开启UPnP支持时有效。 - - - - Map port using &UPnP - 使用 &UPnP 映射端口 - - - - Connect to the BitBean network through a SOCKS proxy (e.g. when connecting through Tor). - 经SOCKS代理连接到黑币网络(例如使用Tor) - - - - &Connect through SOCKS proxy: - 经SOCKS代理连接(&C) - - - - Proxy &IP: - 代理服务器 &IP: - - - - IP address of the proxy (e.g. 127.0.0.1) - 代理地址(如:127.0.0.1) - - - - &Port: - 端口(&P): - - - - Port of the proxy (e.g. 9050) - 代理端口(例如 9050) - - - - SOCKS &Version: - Socks 版本(&V): - - - - SOCKS version of the proxy (e.g. 5) - Socks 代理版本(例如 5) - - - - &Window - 窗口(&W) - - - - Show only a tray icon after minimizing the window. - 最小化窗口后仅显示托盘图标 - - - - &Minimize to the tray instead of the taskbar - 最小化到托盘(&M) - - - - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Quit in the menu. - 当窗口关闭时程序最小化而不是退出。当使用该选项时,程序只能通过在菜单中选择退出来关闭 - - - - M&inimize on close - 单击关闭按钮最小化(&I) - - - - &Display - 显示(&D) - - - - User Interface &language: - 用户界面语言(&L): - - - - The user interface language can be set here. This setting will take effect after restarting BitBean. - 在此设置用户界面语言。重启黑币客户端后设置生效。 - - - - &Unit to show amounts in: - 黑币金额单位(&U): - - - - Choose the default subdivision unit to show in the interface and when sending coins. - 选择黑币单位。 - - - - Whether to show BitBean 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) - - - - &Apply - 应用(&A) - - - - default - 默认 - - - - - Warning - 警告 - - - - - This setting will take effect after restarting BitBean. - 重启客户端后设置生效 - - - - The supplied proxy address is invalid. - 提供的代理服务器地址无效。 - - - - OverviewPage - - - Form - 表单 - - - - - The displayed information may be out of date. Your wallet automatically synchronizes with the BitBean network after a connection is established, but this process has not completed yet. - 所显示的信息尚未更新,建立连接后钱包客户端会自动和网络进行同步,但目前该过程尚未完成。 - - - - Stake: - 用于权益累积: - - - - Unconfirmed: - 未确认: - - - - Wallet - 钱包 - - - - Spendable: - 可用金额: - - - - Your current spendable balance - 您当前可使用的余额 - - - - Immature: - 未成熟的: - - - - Mined balance that has not yet matured - 尚未成熟的挖矿收入余额 - - - - Total: - 总额: - - - - Your current total balance - 您当前的总余额 - - - - <b>Recent transactions</b> - <b>最近交易记录</b> - - - - Total of transactions that have yet to be confirmed, and do not yet count toward the current balance - 尚未确认的交易总额(不计入目前钱包余额) - - - - Total of coins that was staked, and do not yet count toward the current balance - 正在进行权益累积的货币总额(不计入目前钱包余额) - - - - - out of sync - 数据未同步 - - - - QRCodeDialog - - - QR Code Dialog - QR二维码对话框 - - - - Request Payment - 请求支付 - - - - Amount: - 金额: - - - - Label: - 标签: - - - - Message: - 信息: - - - - &Save As... - 另存为(&S)... - - - - Error encoding URI into QR Code. - URI编为QR二维码时出错。 - - - - The entered amount is invalid, please check. - 输入的金额无效,请检查。 - - - - Resulting URI too long, try to reduce the text for label / message. - 生成的URI过长,请减短标签或消息的长度。 - - - - Save QR Code - 保存QR二维码 - - - - PNG Images (*.png) - PNG图片(*.png) - - - - RPCConsole - - - Client name - 客户端名称 - - - - - - - - - - - - - N/A - 不可用 - - - - Client version - 客户端版本 - - - - &Information - 信息(&I) - - - - Using OpenSSL version - 使用 OpenSSL 版本 - - - - Startup time - 启动时间 - - - - Network - 网络 - - - - Number of connections - 连接数 - - - - On testnet - 测试网 - - - - Block chain - 数据链 - - - - Current number of blocks - 当前数据块数量 - - - - Estimated total blocks - 预计数据块数量 - - - - Last block time - 上一数据块时间 - - - - &Open - 打开(&O) - - - - Command-line options - 命令行选项 - - - - Show the BitBean-Qt help message to get a list with possible BitBean command-line options. - 显示关于命令行选项的帮助信息。 - - - - &Show - 显示(&S) - - - - &Console - 控制台(&C) - - - - Build date - 创建时间 - - - - BitBean - Debug window - 黑币客户端-调试窗口 - - - - BitBean Core - 黑币核心进程 - - - - Debug log file - 调试日志文件 - - - - Open the BitBean debug log file from the current data directory. This can take a few seconds for large log files. - 打开调试日志文件,对于较大的文件,这可能持续几秒钟。 - - - - Clear console - 清空控制台 - - - - Welcome to the BitBean 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> 命令显示帮助信息。 - - - - SendCoinsDialog - - - - - - - - - - Send Coins - 发送货币 - - - - Coin Control Features - 交易源地址控制功能 - - - - Inputs... - 输入... - - - - automatically selected - 自动选择 - - - - Insufficient funds! - 存款不足! - - - - Quantity: - 总量: - - - - - 0 - 0 - - - - Bytes: - 字节: - - - - Amount: - 金额: - - - - - - - 0.00 BC - 123.456 BC {0.00 ?} - - - - Priority: - 优先级: - - - - medium - 中等 - - - - Fee: - 费用: - - - - Low Output: - 低输出 - - - - no - no - - - - After Fee: - 加上交易费用后: - - - - Change - 零钱 - - - - custom change address - 自定义零钱地址 - - - - Send to multiple recipients at once - 一次发送给多个接收者 - - - - Add &Recipient - 添加收款人(&R) - - - - Remove all transaction fields - 删除所有交易区域 - - - - Clear &All - 清除所有(&A) - - - - Balance: - 余额: - - - - 123.456 BC - 123.456 BC - - - - Confirm the send action - 确认并发送货币 - - - - S&end - 发送(&E) - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - 输入黑币地址(例如:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Copy quantity - 复制金额 - - - - Copy amount - 复制金额 - - - - Copy fee - 复制交易费 - - - - Copy after fee - 复制含交易费的金额 - - - - Copy bytes - 复制字节 - - - - Copy priority - 复制优先级 - - - - Copy low output - 复制低输出 - - - - Copy change - 复制零钱 - - - - <b>%1</b> to %2 (%3) - <b>%1</b> 至 %2 (%3) - - - - Confirm send coins - 确认发送货币 - - - - Are you sure you want to send %1? - 确认要发送 %1 ? - - - - and - - - - - 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. - 发现重复的地址, 每次只能对同一地址发送一次。 - - - - Error: Transaction creation failed. - 错误:交易创建失败。 - - - - 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. - 错误:交易被拒绝。可能由于钱包中部分金额已被使用,例如您使用了钱包数据的副本,在副本中某些金额已被使用,但在此处尚未被标记为已使用。 - - - - WARNING: Invalid BitBean address - 警告:无效的黑币地址 - - - - (no label) - (没有标签) - - - - WARNING: unknown change address - 警告:未知的零钱地址 - - - - SendCoinsEntry - - - Form - 表单 - - - - A&mount: - 金额(&M) - - - - Pay &To: - 付给(&T): - - - - - Enter a label for this address to add it to your address book - 为这个地址输入一个标签,以便将它添加到您的地址簿 - - - - &Label: - 标签(&L): - - - - The address to send the payment to (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - 收款人地址(例:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Choose address from address book - 从地址簿选择地址 - - - - Alt+A - Alt+A - - - - Paste address from clipboard - 从剪贴板粘贴地址 - - - - Alt+P - Alt+P - - - - Remove this recipient - 删除收款人 - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - 输入一个黑币地址 (例:2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - 用来签名该消息的地址(例: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - - Choose an address from the address book - 从地址簿里选择一个地址 - - - - - Alt+A - Alt+A - - - - Paste address from clipboard - 从剪贴板粘贴地址 - - - - Alt+P - Alt+P - - - - Enter the message you want to sign here - 请输入您要发送的签名消息 - - - - Copy the current signature to the system clipboard - 复制当前签名至剪切板 - - - - Sign the message to prove you own this BitBean address - 对该消息进行签名以证明您对该黑币地址的所有权 - - - - 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. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - 用来签名该消息的黑币地址(例: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Verify the message to ensure it was signed with the specified BitBean address - 确认该消息以保证它经由指定的黑币地址签名 - - - - Reset all verify message fields - 清空所有验证消息栏 - - - - - Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - 输入黑币地址(例: 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci) - - - - Click "Sign Message" to generate signature - 单击“签名消息“产生签名。 - - - - Enter BitBean 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. - 消息验证成功。 - - - - TransactionDesc - - - Open until %1 - 至 %1 个数据块时开启 - - - - Open for %n block(s) - 为 %n 个数据块开启 - - - - 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 - - - - Generated coins must mature 110 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. - 通过权益累积获得的金额需要在510个块确认后方可使用。此数据块生成时,将被广播到网络并加入区块链。如果未能成功加入区块链,其状态会显示为“未接受”,该部分金额也不可被使用。如果其他节点在您生成区块后的几秒钟内也生成了区块,这种情况会偶尔发生。 - - - - Debug information - 调试信息 - - - - Transaction - 交易 - - - - Inputs - 输入 - - - - Amount - 金额 - - - - true - 正确 - - - - false - 错误 - - - - , has not been successfully broadcast yet - ,未被成功广播 - - - - unknown - 未知 - - - - TransactionDescDialog - - - Transaction details - 交易细节 - - - - This pane shows a detailed description of the transaction - 当前面板显示了交易的详细信息 - - - - TransactionTableModel - - - Date - 日期 - - - - Type - 类型 - - - - Address - 地址 - - - - Amount - 数量 - - - - Open until %1 - 至 %1 个数据块时开启 - - - - Confirmed (%1 confirmations) - 已确认 (%1 条确认信息) - - - - Open for %n more block(s) - 为 %n 个更多的区块开启 - - - - Offline - 掉线 - - - - Unconfirmed - 未确认的 - - - - Confirming (%1 of %2 recommended confirmations) - 确认中 (推荐 %2个确认,已经有 %1个确认) - - - - Conflicted - 冲突的 - - - - Immature (%1 confirmations, will be available after %2) - 未成熟 (%1 个确认,将在 %2 个后可用) - - - - This block was not received by any other nodes and will probably not be accepted! - 此数据块未被任何其他节点接收,可能不被接受! - - - - Generated but not accepted - 已生成但未被接受 - - - - Received with - 接收于 - - - - Received from - 收款来自 - - - - 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. - 从余额添加或移除的金额。 - - - - 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 Data - 输出交易数据 - - - - Comma separated file (*.csv) - 逗号分隔文件 (*.csv) - - - - Confirmed - 已确认 - - - - Date - 日期 - - - - Type - 类别 - - - - Label - 标签 - - - - Address - 地址 - - - - Amount - 金额 - - - - ID - ID - - - - Error exporting - 导出出现错误 - - - - Could not write to file %1. - 无法写入文件 %1 。 - - - - Range: - 范围: - - - - to - - - - - WalletModel - - - Sending... - 正在发送 - - - - bitcoin-core - - - BitBean version - 黑币客户端 版本 - - - - Usage: - 使用: - - - - Send command to -server or BitBeand - 向-server服务器或BitBeand发送命令 - - - - List commands - 列出命令 - - - - - Get help for a command - 获得某条命令的帮助 - - - - - Options: - 选项: - - - - - Specify configuration file (default: BitBean.conf) - 指定配置文件(默认: BitBean.conf) - - - - Specify pid file (default: BitBeand.pid) - 指定pid文件(默认: BitBeand.pid) - - - - Specify wallet file (within data directory) - 指定钱包文件(数据目录内) - - - - Specify data directory - 指定数据目录 - - - - - Set database cache size in megabytes (default: 25) - 设置数据库缓冲区大小 (缺省: 25MB) - - - - Set database disk log size in megabytes (default: 100) - 设置数据库日志文件大小(单位MB,默认值100) - - - - Listen for connections on <port> (default: 15714 or testnet: 25714) - 监听<port>端口的连接 (默认: 15714 测试网: 25714) - - - - 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 - 指定您的公共地址 - - - - Bind to given address. Use [host]:port notation for IPv6 - 以IPv6 [host]:端口绑定给定地址 - - - - Stake your coins to support network and gain reward (default: 1) - 进行权益累积以支持黑币网络并获得报酬(默认: 1) - - - - 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) - - - - An error occurred while setting up the RPC port %u for listening on IPv4: %s - 设置RPC监听端口%u时发生错误, IPv4:%s - - - - Detach block and address databases. Increases shutdown time (default: 0) - 离线保存区块和地址数据库. 增加关机时间。 (默认: 0) - - - - 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 的手续费。 - - - - Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715) - 监听 <port> 端口的JSON-RPC连接 (默认: 15715 测试网: 25715) - - - - Accept command line and JSON-RPC commands - 接受命令行和 JSON-RPC 命令 - - - - - Error: Transaction creation failed - 错误:交易创建失败。 - - - - Error: Wallet locked, unable to create transaction - 错误:钱包已锁定,无法创建交易。 - - - - Importing blockchain data file. - 正在导入区块链数据文件 - - - - Importing bootstrap blockchain data file. - 正在导入高速区块链数据文件 - - - - 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) - - - - An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s - 在IPv6模式下设置RPC监听端口 %u 失败,返回到IPv4模式: %s - - - - Error initializing database environment %s! To recover, BACKUP THAT DIRECTORY, then remove everything from it except for wallet.dat. - 数据库环境 %s 初始化错误。要修复,备份该目录并将其下除wallet.dat以外的文件全部删除。 - - - - Set maximum size of high-priority/low-fee transactions in bytes (default: 27000) - 设置高优先度/低手续费交易的最大字节数 (默认: 27000) - - - - 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 BitBean will not work properly. - 警告:请确认您计算机的本地时间。如果时钟错误,黑币客户端将不能正常工作。 - - - - 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 。如果您的账户余额或者交易记录不正确,请使用您的钱包备份文件恢复。 - - - - Attempt to recover private keys from a corrupt wallet.dat - 尝试从损坏的钱包文件wallet.dat中恢复私钥 - - - - Block creation options: - 数据块创建选项: - - - - Connect only to the specified node(s) - 仅连接到指定节点 - - - - Discover own IP address (default: 1 when listening and no -externalip) - 发现自己的IP地址(缺省:不带 -externalip 参数监听时设置为1) - - - - Failed to listen on any port. Use -listen=0 if you want this. - 监听端口失败。请使用 -listen=0 参数。 - - - - Find peers using DNS lookup (default: 1) - 以DNS查找方式寻找节点 (默认:1) - - - - Sync checkpoints policy (default: strict) - 同步检测点政策 (默认:严格) - - - - Invalid -tor address: '%s' - 无效的 -tor 地址: '%s' - - - - Invalid amount for -reservebalance=<amount> - -reservebalance=<amount> 金额无效 - - - - 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 connect to nodes in network <net> (IPv4, IPv6 or Tor) - 仅连接至指定网络的节点<net>(IPv4, IPv6 或者 Tor) - - - - Output extra debugging information. Implies all other -debug* options - 输出额外的调试信息。相当于开启了其它所有-debug选项 - - - - Output extra network debugging information - 输出额外的网络调试信息 - - - - Prepend debug output with timestamp - 将时间信息加入调试输出中 - - - - SSL options: (see the Bitcoin Wiki for SSL setup instructions) - SSL选项:(参见Bitcoin Wiki关于SSL设置栏目) - - - - Select the version of socks proxy to use (4-5, default: 5) - 选择要使用的SOCKS代理版本 (4-5, 默认 5) - - - - Send trace/debug info to console instead of debug.log file - 跟踪/调试信息输出到控制台,不输出到 debug.log 文件 - - - - Send trace/debug info to debugger - 发送跟踪/调试信息给调试者 - - - - Set maximum block size in bytes (default: 250000) - 设置最大区块大小 (默认:250000) - - - - Set minimum block size in bytes (default: 0) - 设置最小数据块大小(缺省:0) - - - - Shrink debug.log file on client startup (default: 1 when no -debug) - 客户端启动时压缩debug.log文件(缺省:no-debug模式时为1) - - - - Specify connection timeout in milliseconds (default: 5000) - 设置连接超时时间(缺省:5000毫秒) - - - - Unable to sign checkpoint, wrong checkpointkey? - - 无法为记录点签名,错误的记录点密钥。 - - - - Use UPnP to map the listening port (default: 0) - 使用UPnP映射监听端口 (缺省: 0) - - - - Use UPnP to map the listening port (default: 1 when listening) - 使用UPnp映射监听端口(缺省: 监听状态设为1) - - - - Use proxy to reach tor hidden services (default: same as -proxy) - 开启代理以使用隐藏服务 (默认: 和-proxy设置相同) - - - - Username for JSON-RPC connections - JSON-RPC 连接用户名 - - - - Verifying database integrity... - 正在检查数据库完整性... - - - - WARNING: syncronized checkpoint violation detected, but skipped! - 警告:检测到同步记录点错误,已跳过。 - - - - Warning: Disk space is low! - 警告:磁盘空间低。 - - - - Warning: This version is obsolete, upgrade required! - 警告:该软件版本已过时,请升级! - - - - wallet.dat corrupt, salvage failed - 钱包文件wallet.dat损坏,抢救备份失败 - - - - Password for JSON-RPC connections - JSON-RPC 连接密码 - - - - - %s, you must set a rpcpassword in the configuration file: - %s -It is recommended you use the following random password: -rpcuser=BitBeanrpc -rpcpassword=%s -(you do not need to remember this password) -The username and password MUST NOT be the same. -If the file does not exist, create it with owner-readable-only file permissions. -It is also recommended to set alertnotify so you are notified of problems; -for example: alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - %s, 必须在配置文件里设置rpc密码: - %s -建议使用如下的随机密码: -rpcuser=BitBeanrpc -rpcpassword=%s -(不需要记住该密码) -用户名和密码不能重复。 -如果该文件不存在,请自行创建并设为用户本身只读权限。 -建议创建提示以监测可能的问题,如: -alertnotify=echo %%s | mail -s "BitBean Alert" admin@foo.com - - - - - Find peers using internet relay chat (default: 0) - 寻找使用互联网接力聊天的节点 (默认: 1) {0)?} - - - - Sync time with other nodes. Disable if time on your system is precise e.g. syncing with NTP (default: 1) - 自动和其它节点同步时间。如果本地计算机世界是准确的,建议关闭。(默认: 1) - - - - When creating transactions, ignore inputs with value less than this (default: 0.01) - 创建交易时自动忽略该值以下的数额 (默认:0.01) - - - - 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 会被替换成数据块哈希值) - - - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - 当最佳区块变化时执行命令 (命令行中的 %s 会被替换成区块哈希值) - - - - Require a confirmations for change (default: 0) - 要求对零钱进行确认 (默认:0) - - - - Enforce transaction scripts to use canonical PUSH operators (default: 1) - 强制要求交易脚本使用标准PUSH算子 (默认:1) - - - - Execute command when a relevant alert is received (%s in cmd is replaced by message) - 收到相关提示时执行命令 (命令中的%s将被信息替换) - - - - Upgrade wallet to latest format - 将钱包升级到最新的格式 - - - - Set key pool size to <n> (default: 100) - 设置密钥池大小为 <n> (缺省: 100) - - - - - Rescan the block chain for missing wallet transactions - 重新扫描区块链以查找遗漏的钱包交易 - - - - How many blocks to check at startup (default: 2500, 0 = all) - 启动时检测的区块数量 (默认: 2500, 0表示检测全部) - - - - How thorough the block verification is (0-6, default: 1) - 区块确认的彻底程度 (0-6, 默认: 1) - - - - Imports blocks from external blk000?.dat file - 从外部 blk000?.dat 文件导入区块 - - - - 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) - - - - - Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - 可用加密算法 (默认: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH) - - - - Error: Wallet unlocked for staking only, unable to create transaction. - 错误:无法创建交易,已解锁的钱包仅用于权益累积。 - - - - WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers. - 警告:发现无效的记录点。所显示的交易信息未必正确!请升级客户端或联系开发者。 - - - - This help message - 本帮助信息 - - - - - Wallet %s resides outside data directory %s. - 钱包 %s 位于数据目录 %s 之外. - - - - Cannot obtain a lock on data directory %s. BitBean is probably already running. - 无法从数据目录 %s 获得锁定. 黑币客户端可能已在运行中. - - - - BitBean - 黑币 - - - - Unable to bind to %s on this computer (bind returned error %d, %s) - 无法绑定本机端口 %s (返回错误消息 %d, %s) - - - - Connect through socks proxy - 通过socks代理连接 - - - - Allow DNS lookups for -addnode, -seednode and -connect - 使用 -addnode, -seednode 和 -connect 选项时允许查询DNS - - - - Loading addresses... - 正在加载地址簿... - - - - Error loading blkindex.dat - blkindex.dat 文件加载出错 - - - - Error loading wallet.dat: Wallet corrupted - wallet.dat 钱包文件加载出错:钱包损坏 - - - - Error loading wallet.dat: Wallet requires newer version of BitBean - wallet.dat 钱包文件加载出错:需要新版本的客户端 - - - - Wallet needed to be rewritten: restart BitBean 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' - 无法解析 -bind 端口地址: '%s' - - - - Cannot resolve -externalip address: '%s' - 无法解析 -externalip 地址: '%s' - - - - Invalid amount for -paytxfee=<amount>: '%s' - 非法金额 -paytxfee=<amount>: '%s' - - - - Error: could not start node - 错误:无法启动节点 - - - - Sending... - 正在发送 - - - - 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. BitBean is probably already running. - 无法绑定到该计算机上的 %s. 黑币客户端可能已在运行中。 - - - - Fee per KB to add to transactions you send - 每kB交易所支付的手续费 - - - - Invalid amount for -mininput=<amount>: '%s' - 无效的数量。 -mininput=<amount>: '%s' - - - - Loading wallet... - 正在加载钱包... - - - - Cannot downgrade wallet - 无法降级钱包 - - - - Cannot initialize keypool - 无法初始化密钥池。 - - - - 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. - 您必须在配置文件中加入选项 rpcpassword : - %s -如果配置文件不存在,请新建,并将文件权限设置为仅允许文件所有者读取. - - - \ No newline at end of file diff --git a/src/qt/locale/bitcoin_zh_TW.qm b/src/qt/locale/bitcoin_zh_TW.qm deleted file mode 100644 index 82b0d98..0000000 Binary files a/src/qt/locale/bitcoin_zh_TW.qm and /dev/null differ diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index ee83d0d..a4dc5f7 100644 --- a/src/qt/optionsdialog.cpp +++ b/src/qt/optionsdialog.cpp @@ -1,7 +1,7 @@ #include "optionsdialog.h" #include "ui_optionsdialog.h" -#include "bitcoinunits.h" +#include "bitbeanunits.h" #include "monitoreddatamapper.h" #include "netbase.h" #include "optionsmodel.h" @@ -80,7 +80,7 @@ OptionsDialog::OptionsDialog(QWidget *parent) : } } - ui->unit->setModel(new BitcoinUnits(this)); + ui->unit->setModel(new BitbeanUnits(this)); /* Widget-to-option mapper */ mapper = new MonitoredDataMapper(this); @@ -113,7 +113,7 @@ void OptionsDialog::setModel(OptionsModel *model) mapper->toFirst(); } - /* update the display unit, to not use the default ("BTC") */ + /* update the display unit, to not use the default ("BitB") */ updateDisplayUnit(); /* warn only when language selection changes by user action (placed here so init via mapper doesn't trigger this) */ @@ -128,7 +128,7 @@ void OptionsDialog::setMapper() /* Main */ mapper->addMapping(ui->transactionFee, OptionsModel::Fee); mapper->addMapping(ui->reserveBalance, OptionsModel::ReserveBalance); - mapper->addMapping(ui->bitcoinAtStartup, OptionsModel::StartAtStartup); + mapper->addMapping(ui->bitbeanAtStartup, OptionsModel::StartAtStartup); mapper->addMapping(ui->detachDatabases, OptionsModel::DetachDatabases); /* Network */ @@ -149,7 +149,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->beanControlFeatures, OptionsModel::BeanControlFeatures); } void OptionsDialog::enableApplyButton() diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index a826c6c..075c9ea 100644 --- a/src/qt/optionsmodel.cpp +++ b/src/qt/optionsmodel.cpp @@ -1,5 +1,5 @@ #include "optionsmodel.h" -#include "bitcoinunits.h" +#include "bitbeanunits.h" #include #include "init.h" @@ -39,16 +39,16 @@ void OptionsModel::Init() QSettings settings; // These are Qt-only settings: - nDisplayUnit = settings.value("nDisplayUnit", BitcoinUnits::BTC).toInt(); + nDisplayUnit = settings.value("nDisplayUnit", BitbeanUnits::BitB).toInt(); bDisplayAddresses = settings.value("bDisplayAddresses", false).toBool(); fMinimizeToTray = settings.value("fMinimizeToTray", false).toBool(); fMinimizeOnClose = settings.value("fMinimizeOnClose", false).toBool(); - fCoinControlFeatures = settings.value("fCoinControlFeatures", false).toBool(); + fBeanControlFeatures = settings.value("fBeanControlFeatures", false).toBool(); nTransactionFee = settings.value("nTransactionFee").toLongLong(); nReserveBalance = settings.value("nReserveBalance").toLongLong(); language = settings.value("language", "").toString(); - // These are shared with core Bitcoin; we want + // These are shared with core Bitbean; we want // command-line options to override the GUI settings: if (settings.contains("fUseUPnP")) SoftSetBoolArg("-upnp", settings.value("fUseUPnP").toBool()); @@ -112,8 +112,8 @@ QVariant OptionsModel::data(const QModelIndex & index, int role) const return QVariant(bitdb.GetDetach()); case Language: return settings.value("language", ""); - case CoinControlFeatures: - return QVariant(fCoinControlFeatures); + case BeanControlFeatures: + return QVariant(fBeanControlFeatures); default: return QVariant(); } @@ -208,10 +208,10 @@ bool OptionsModel::setData(const QModelIndex & index, const QVariant & value, in case Language: settings.setValue("language", value); break; - case CoinControlFeatures: { - fCoinControlFeatures = value.toBool(); - settings.setValue("fCoinControlFeatures", fCoinControlFeatures); - emit coinControlFeaturesChanged(fCoinControlFeatures); + case BeanControlFeatures: { + fBeanControlFeatures = value.toBool(); + settings.setValue("fBeanControlFeatures", fBeanControlFeatures); + emit beanControlFeaturesChanged(fBeanControlFeatures); } break; default: @@ -233,9 +233,9 @@ qint64 OptionsModel::getReserveBalance() return nReserveBalance; } -bool OptionsModel::getCoinControlFeatures() +bool OptionsModel::getBeanControlFeatures() { - return fCoinControlFeatures; + return fBeanControlFeatures; } bool OptionsModel::getMinimizeToTray() diff --git a/src/qt/optionsmodel.h b/src/qt/optionsmodel.h index be49951..f27396b 100644 --- a/src/qt/optionsmodel.h +++ b/src/qt/optionsmodel.h @@ -3,7 +3,7 @@ #include -/** Interface from Qt to configuration data structure for Bitcoin client. +/** Interface from Qt to configuration data structure for Bitbean client. To Qt, the options are presented as a list with the different options laid out vertically. This can be changed to a tree once the settings become sufficiently @@ -27,11 +27,11 @@ class OptionsModel : public QAbstractListModel ProxySocksVersion, // int Fee, // qint64 ReserveBalance, // qint64 - DisplayUnit, // BitcoinUnits::Unit + DisplayUnit, // BitbeanUnits::Unit DisplayAddresses, // bool DetachDatabases, // bool Language, // QString - CoinControlFeatures, // bool + BeanControlFeatures, // bool OptionIDRowCount, }; @@ -48,7 +48,7 @@ class OptionsModel : public QAbstractListModel bool getMinimizeOnClose(); int getDisplayUnit(); bool getDisplayAddresses(); - bool getCoinControlFeatures(); + bool getBeanControlFeatures(); QString getLanguage() { return language; } private: @@ -56,14 +56,14 @@ class OptionsModel : public QAbstractListModel bool bDisplayAddresses; bool fMinimizeToTray; bool fMinimizeOnClose; - bool fCoinControlFeatures; + bool fBeanControlFeatures; QString language; signals: void displayUnitChanged(int unit); void transactionFeeChanged(qint64); void reserveBalanceChanged(qint64); - void coinControlFeaturesChanged(bool); + void beanControlFeaturesChanged(bool); }; #endif // OPTIONSMODEL_H diff --git a/src/qt/overviewpage.cpp b/src/qt/overviewpage.cpp index 73f8c2d..9835c31 100644 --- a/src/qt/overviewpage.cpp +++ b/src/qt/overviewpage.cpp @@ -2,24 +2,41 @@ #include "ui_overviewpage.h" #include "walletmodel.h" -#include "bitcoinunits.h" +#include "bitbeanunits.h" #include "optionsmodel.h" #include "transactiontablemodel.h" #include "transactionfilterproxy.h" #include "guiutil.h" #include "guiconstants.h" +#include "bitbeanrpc.h" +#include "init.h" +#include "base58.h" +#include "main.h" +#include "wallet.h" +#include "bitbeanrpc.h" #include #include +#include +#include +#include +#include +#include +#include +#include + #define DECORATION_SIZE 64 -#define NUM_ITEMS 3 +#define NUM_ITEMS 6 + +extern CWallet* pwalletMain; +double GetPoSKernelPS(); class TxViewDelegate : public QAbstractItemDelegate { Q_OBJECT public: - TxViewDelegate(): QAbstractItemDelegate(), unit(BitcoinUnits::BTC) + TxViewDelegate(): QAbstractItemDelegate(), unit(BitbeanUnits::BitB) { } @@ -66,7 +83,7 @@ class TxViewDelegate : public QAbstractItemDelegate foreground = option.palette.color(QPalette::Text); } painter->setPen(foreground); - QString amountText = BitcoinUnits::formatWithUnit(unit, amount, true); + QString amountText = BitbeanUnits::formatWithUnit(unit, amount, true); if(!confirmed) { amountText = QString("[") + amountText + QString("]"); @@ -123,11 +140,6 @@ void OverviewPage::handleTransactionClicked(const QModelIndex &index) emit transactionClicked(filter->mapToSource(index)); } -OverviewPage::~OverviewPage() -{ - delete ui; -} - void OverviewPage::setBalance(qint64 balance, qint64 stake, qint64 unconfirmedBalance, qint64 immatureBalance) { int unit = model->getOptionsModel()->getDisplayUnit(); @@ -135,11 +147,11 @@ void OverviewPage::setBalance(qint64 balance, qint64 stake, qint64 unconfirmedBa currentStake = stake; currentUnconfirmedBalance = unconfirmedBalance; currentImmatureBalance = immatureBalance; - ui->labelBalance->setText(BitcoinUnits::formatWithUnit(unit, balance)); - ui->labelStake->setText(BitcoinUnits::formatWithUnit(unit, stake)); - ui->labelUnconfirmed->setText(BitcoinUnits::formatWithUnit(unit, unconfirmedBalance)); - ui->labelImmature->setText(BitcoinUnits::formatWithUnit(unit, immatureBalance)); - ui->labelTotal->setText(BitcoinUnits::formatWithUnit(unit, balance + stake + unconfirmedBalance + immatureBalance)); + ui->labelSpendable->setText(BitbeanUnits::formatWithUnit(unit, balance)); + ui->labelSprouting->setText(BitbeanUnits::formatWithUnit(unit, stake)); + ui->labelUnconfirmed->setText(BitbeanUnits::formatWithUnit(unit, unconfirmedBalance)); + ui->labelImmature->setText(BitbeanUnits::formatWithUnit(unit, immatureBalance)); + ui->labelTotal->setText(BitbeanUnits::formatWithUnit(unit, balance + stake + unconfirmedBalance + immatureBalance)); // only show immature (newly mined) balance if it's non-zero, so as not to complicate things // for the non-mining users @@ -173,7 +185,17 @@ void OverviewPage::setModel(WalletModel *model) } // update the display unit, to not use the default ("BTC") + // - no longer needed - updateDisplayUnit(); + + // update BitBean Network Information + + updateNetworkinfo(); + + // BitBean Network Information Update Timer (every minute) + QTimer *timerNetworkStats = new QTimer(); + connect (timerNetworkStats, SIGNAL(timeout()), this, SLOT(updateNetworkinfo())); + timerNetworkStats->start(60 * 1000); } void OverviewPage::updateDisplayUnit() @@ -195,3 +217,118 @@ void OverviewPage::showOutOfSyncWarning(bool fShow) ui->labelWalletStatus->setVisible(fShow); ui->labelTransactionsStatus->setVisible(fShow); } + +void OverviewPage::updateNetworkinfo() +{ + // StalkHeight + int stalkHeight = pindexBest->nHeight; + + // Bean Network Weight + int beanWeight = GetPoSKernelPS(); + + // Sprouting Difficulty + double sproutingDifficulty = GetDifficulty(GetLastBlockIndex(pindexBest, true)); + + // Connections + int otherStalks = this->modelNetworkinfo->getNumConnections(); + + // Total Beans + int64_t Beans = ((pindexBest->nMoneySupply)/100000000); + + + QString height = QString::number(stalkHeight); + QString weight = QString::number(beanWeight); + QString difficulty = QString::number(sproutingDifficulty, 'f', 6); + QString connections = QString::number(otherStalks); + QString totalbeans = QLocale::system().toString((qlonglong)Beans); + + // Display StalkHeight + if(stalkHeight > heightPrevious) + { + ui->stalkBox->setText("" + height + ""); + } + else + { + ui->stalkBox->setText(height); + } + + // Display Bean Weight on the Network + if(beanWeight > weightPrevious) + { + ui->weightBox->setText("" + weight + ""); + } + else if (beanWeight < weightPrevious) + { + ui->weightBox->setText("" + weight + ""); + } + else + { + ui->weightBox->setText(weight); + } + + // Display Sprouting Difficulty + if(sproutingDifficulty > difficultyPrevious) + { + ui->sproutBox->setText("" + difficulty + ""); + } + else if(sproutingDifficulty < difficultyPrevious) + { + ui->sproutBox->setText("" + difficulty + ""); + } + else + { + ui->sproutBox->setText(difficulty); + } + + // Display Connections + if(otherStalks > connectionsPrevious) + { + ui->connectionBox->setText("" + connections + ""); + } + else if(otherStalks < connectionsPrevious) + { + ui->connectionBox->setText("" + connections + ""); + } + else + { + ui->connectionBox->setText(connections); + } + + // Display Total Beans + if(Beans > totalbeansPrevious) + { + ui->beanBox->setText("" + totalbeans + ""); + } + else if(Beans < totalbeansPrevious) + { + ui->beanBox->setText("" + totalbeans + ""); + } + else + { + ui->beanBox->setText(totalbeans); + } + + + updatePrevious(stalkHeight, beanWeight, sproutingDifficulty, otherStalks, Beans); + +} + +void OverviewPage::updatePrevious(int stalkHeight, int beanWeight, double sproutingDifficulty, int otherStalks, double Beans) +{ + heightPrevious = stalkHeight; + weightPrevious = beanWeight; + difficultyPrevious = sproutingDifficulty; + connectionsPrevious = otherStalks; + totalbeansPrevious = Beans; +} + +void OverviewPage::setNetworkinfo(ClientModel *modelNetworkinfo) +{ + updateNetworkinfo(); + this->modelNetworkinfo = modelNetworkinfo; +} + +OverviewPage::~OverviewPage() +{ + delete ui; +} diff --git a/src/qt/overviewpage.h b/src/qt/overviewpage.h index 5e7aa08..152155c 100644 --- a/src/qt/overviewpage.h +++ b/src/qt/overviewpage.h @@ -2,6 +2,23 @@ #define OVERVIEWPAGE_H #include +#include "clientmodel.h" +#include "main.h" +#include "wallet.h" +#include "base58.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE +class QModelIndex; QT_BEGIN_NAMESPACE class QModelIndex; @@ -26,8 +43,20 @@ class OverviewPage : public QWidget void setModel(WalletModel *model); void showOutOfSyncWarning(bool fShow); + int heightPrevious; + int weightPrevious; + int difficultyPrevious; + int connectionsPrevious; + int totalbeansPrevious; + + + + public slots: void setBalance(qint64 balance, qint64 stake, qint64 unconfirmedBalance, qint64 immatureBalance); + void setNetworkinfo(ClientModel *modelNetworkinfo); + void updateNetworkinfo(); + void updatePrevious(int, int, double, int, double); signals: void transactionClicked(const QModelIndex &index); @@ -35,6 +64,7 @@ public slots: private: Ui::OverviewPage *ui; WalletModel *model; + ClientModel *modelNetworkinfo; qint64 currentBalance; qint64 currentStake; qint64 currentUnconfirmedBalance; diff --git a/src/qt/qrcodedialog.cpp b/src/qt/qrcodedialog.cpp index c93c4cb..270efbe 100644 --- a/src/qt/qrcodedialog.cpp +++ b/src/qt/qrcodedialog.cpp @@ -1,7 +1,7 @@ #include "qrcodedialog.h" #include "ui_qrcodedialog.h" -#include "bitcoinunits.h" +#include "bitbeanunits.h" #include "guiconstants.h" #include "guiutil.h" #include "optionsmodel.h" @@ -44,7 +44,7 @@ void QRCodeDialog::setModel(OptionsModel *model) if (model) connect(model, SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit())); - // update the display unit, to not use the default ("BTC") + // update the display unit, to not use the default ("BitB") updateDisplayUnit(); } @@ -92,8 +92,8 @@ QString QRCodeDialog::getURI() { if (ui->lnReqAmount->validate()) { - // even if we allow a non BTC unit input in lnReqAmount, we generate the URI with BTC as unit (as defined in BIP21) - ret += QString("?amount=%1").arg(BitcoinUnits::format(BitcoinUnits::BTC, ui->lnReqAmount->value())); + // even if we allow a non BitB unit input in lnReqAmount, we generate the URI with BitB as unit (as defined in BIP21) + ret += QString("?amount=%1").arg(BitbeanUnits::format(BitbeanUnits::BitB, ui->lnReqAmount->value())); paramCount++; } else diff --git a/src/qt/qtipcserver.cpp b/src/qt/qtipcserver.cpp index dbdaaec..9dee838 100644 --- a/src/qt/qtipcserver.cpp +++ b/src/qt/qtipcserver.cpp @@ -1,4 +1,5 @@ // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -46,7 +47,7 @@ static bool ipcScanCmd(int argc, char *argv[], bool fRelay) { const char *strURI = argv[i]; try { - boost::interprocess::message_queue mq(boost::interprocess::open_only, BITCOINURI_QUEUE_NAME); + boost::interprocess::message_queue mq(boost::interprocess::open_only, BITBEANURI_QUEUE_NAME); if (mq.try_send(strURI, strlen(strURI), 0)) fSent = true; else if (fRelay) @@ -112,7 +113,7 @@ static void ipcThread2(void* pArg) } // Remove message queue - message_queue::remove(BITCOINURI_QUEUE_NAME); + message_queue::remove(BITBEANURI_QUEUE_NAME); // Cleanup allocated memory delete mq; } @@ -125,9 +126,9 @@ void ipcInit(int argc, char *argv[]) unsigned int nPriority = 0; try { - mq = new message_queue(open_or_create, BITCOINURI_QUEUE_NAME, 2, MAX_URI_LENGTH); + mq = new message_queue(open_or_create, BITBEANURI_QUEUE_NAME, 2, MAX_URI_LENGTH); - // Make sure we don't lose any bitcoin: URIs + // Make sure we don't lose any bitbean: URIs for (int i = 0; i < 2; i++) { ptime d = boost::posix_time::microsec_clock::universal_time() + millisec(1); @@ -139,11 +140,11 @@ void ipcInit(int argc, char *argv[]) break; } - // Make sure only one bitcoin instance is listening - message_queue::remove(BITCOINURI_QUEUE_NAME); + // Make sure only one bitbean instance is listening + message_queue::remove(BITBEANURI_QUEUE_NAME); delete mq; - mq = new message_queue(open_or_create, BITCOINURI_QUEUE_NAME, 2, MAX_URI_LENGTH); + mq = new message_queue(open_or_create, BITBEANURI_QUEUE_NAME, 2, MAX_URI_LENGTH); } catch (interprocess_exception &ex) { printf("ipcInit() - boost interprocess exception #%d: %s\n", ex.get_error_code(), ex.what()); diff --git a/src/qt/qtipcserver.h b/src/qt/qtipcserver.h index 7bc5324..1491c32 100644 --- a/src/qt/qtipcserver.h +++ b/src/qt/qtipcserver.h @@ -2,7 +2,7 @@ #define QTIPCSERVER_H // Define BitBean-Qt message queue name -#define BITCOINURI_QUEUE_NAME "BitBeanURI" +#define BITBEANURI_QUEUE_NAME "BitBeanURI" void ipcScanRelay(int argc, char *argv[]); void ipcInit(int argc, char *argv[]); diff --git a/src/qt/res/bitcoin-qt.rc b/src/qt/res/bitbean-qt.rc similarity index 90% rename from src/qt/res/bitcoin-qt.rc rename to src/qt/res/bitbean-qt.rc index 9cba611..2749dd1 100644 --- a/src/qt/res/bitcoin-qt.rc +++ b/src/qt/res/bitbean-qt.rc @@ -18,11 +18,11 @@ BEGIN BEGIN BLOCK "040904E4" // U.S. English - multilingual (hex) BEGIN - VALUE "CompanyName", "BitBean" + VALUE "CompanyName", "Bean Core" VALUE "FileDescription", "BitBean-Qt (OSS GUI client for BitBean)" VALUE "FileVersion", VER_FILEVERSION_STR VALUE "InternalName", "BitBean-qt" - VALUE "LegalCopyright", "2009-2014 The Bitcoin developers, 2012-2014 The NovaCoin & PPCoin developers, 2014 The BitBean developers" + VALUE "LegalCopyright", "2009-2014 The Bitcoin developers, 2012-2014 The NovaCoin & PPCoin developers, 2015 The BitBean developers, 2015 Bean Core www.bitbean.org" VALUE "LegalTrademarks1", "Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php." VALUE "OriginalFilename", "BitBean-qt.exe" VALUE "ProductName", "BitBean-Qt" diff --git a/src/qt/res/icons/add.png b/src/qt/res/icons/add.png index f98e2a8..2908617 100644 Binary files a/src/qt/res/icons/add.png and b/src/qt/res/icons/add.png differ diff --git a/src/qt/res/icons/address-book.png b/src/qt/res/icons/address-book.png index d41dbe6..1c318f3 100644 Binary files a/src/qt/res/icons/address-book.png and b/src/qt/res/icons/address-book.png differ diff --git a/src/qt/res/icons/beans-confirmed.png b/src/qt/res/icons/beans-confirmed.png new file mode 100644 index 0000000..641d760 Binary files /dev/null and b/src/qt/res/icons/beans-confirmed.png differ diff --git a/src/qt/res/icons/bitbean-16.png b/src/qt/res/icons/bitbean-16.png new file mode 100644 index 0000000..8255c0e Binary files /dev/null and b/src/qt/res/icons/bitbean-16.png differ diff --git a/src/qt/res/icons/bitbean-80.png b/src/qt/res/icons/bitbean-80.png new file mode 100644 index 0000000..9ca554b Binary files /dev/null and b/src/qt/res/icons/bitbean-80.png differ diff --git a/src/qt/res/icons/bitbean.ico b/src/qt/res/icons/bitbean.ico new file mode 100644 index 0000000..1a69c21 Binary files /dev/null and b/src/qt/res/icons/bitbean.ico differ diff --git a/src/qt/res/icons/bitcoin.icns b/src/qt/res/icons/bitcoin.icns deleted file mode 100644 index f91b1ac..0000000 Binary files a/src/qt/res/icons/bitcoin.icns and /dev/null differ diff --git a/src/qt/res/icons/bitcoin_testnet.png b/src/qt/res/icons/bitcoin_testnet.png deleted file mode 100644 index ee2dc40..0000000 Binary files a/src/qt/res/icons/bitcoin_testnet.png and /dev/null differ diff --git a/src/qt/res/icons/checkmark.png b/src/qt/res/icons/checkmark.png new file mode 100644 index 0000000..641d760 Binary files /dev/null and b/src/qt/res/icons/checkmark.png differ diff --git a/src/qt/res/icons/clock1.png b/src/qt/res/icons/clock1.png index 448e47f..b6c1eb8 100644 Binary files a/src/qt/res/icons/clock1.png and b/src/qt/res/icons/clock1.png differ diff --git a/src/qt/res/icons/clock2.png b/src/qt/res/icons/clock2.png index c1a6e99..56d4cac 100644 Binary files a/src/qt/res/icons/clock2.png and b/src/qt/res/icons/clock2.png differ diff --git a/src/qt/res/icons/clock3.png b/src/qt/res/icons/clock3.png index e429a40..bbd9601 100644 Binary files a/src/qt/res/icons/clock3.png and b/src/qt/res/icons/clock3.png differ diff --git a/src/qt/res/icons/clock4.png b/src/qt/res/icons/clock4.png index ba036f4..6ff4206 100644 Binary files a/src/qt/res/icons/clock4.png and b/src/qt/res/icons/clock4.png differ diff --git a/src/qt/res/icons/clock5.png b/src/qt/res/icons/clock5.png index 411d7a7..20ddf58 100644 Binary files a/src/qt/res/icons/clock5.png and b/src/qt/res/icons/clock5.png differ diff --git a/src/qt/res/icons/configure.png b/src/qt/res/icons/configure.png index 95bd319..e52cc6e 100644 Binary files a/src/qt/res/icons/configure.png and b/src/qt/res/icons/configure.png differ diff --git a/src/qt/res/icons/connect0_16.png b/src/qt/res/icons/connect0_16.png index 66f3ae4..0573422 100644 Binary files a/src/qt/res/icons/connect0_16.png and b/src/qt/res/icons/connect0_16.png differ diff --git a/src/qt/res/icons/connect1_16.png b/src/qt/res/icons/connect1_16.png index 76000be..eef1d2b 100644 Binary files a/src/qt/res/icons/connect1_16.png and b/src/qt/res/icons/connect1_16.png differ diff --git a/src/qt/res/icons/connect2_16.png b/src/qt/res/icons/connect2_16.png index 6d9a372..238a63a 100644 Binary files a/src/qt/res/icons/connect2_16.png and b/src/qt/res/icons/connect2_16.png differ diff --git a/src/qt/res/icons/connect3_16.png b/src/qt/res/icons/connect3_16.png index a211700..d809bf1 100644 Binary files a/src/qt/res/icons/connect3_16.png and b/src/qt/res/icons/connect3_16.png differ diff --git a/src/qt/res/icons/connect4_16.png b/src/qt/res/icons/connect4_16.png index c1232f5..55d211c 100644 Binary files a/src/qt/res/icons/connect4_16.png and b/src/qt/res/icons/connect4_16.png differ diff --git a/src/qt/res/icons/debugwindow.png b/src/qt/res/icons/debugwindow.png index 1712adf..a43722b 100644 Binary files a/src/qt/res/icons/debugwindow.png and b/src/qt/res/icons/debugwindow.png differ diff --git a/src/qt/res/icons/edit.png b/src/qt/res/icons/edit.png index 1d69145..a0ca87f 100644 Binary files a/src/qt/res/icons/edit.png and b/src/qt/res/icons/edit.png differ diff --git a/src/qt/res/icons/editcopy.png b/src/qt/res/icons/editcopy.png index f882aa2..0710d08 100644 Binary files a/src/qt/res/icons/editcopy.png and b/src/qt/res/icons/editcopy.png differ diff --git a/src/qt/res/icons/editpaste.png b/src/qt/res/icons/editpaste.png index a192060..6901d77 100644 Binary files a/src/qt/res/icons/editpaste.png and b/src/qt/res/icons/editpaste.png differ diff --git a/src/qt/res/icons/export.png b/src/qt/res/icons/export.png index 1df9c23..e9c324e 100644 Binary files a/src/qt/res/icons/export.png and b/src/qt/res/icons/export.png differ diff --git a/src/qt/res/icons/filesave.png b/src/qt/res/icons/filesave.png index ae13a15..4567137 100644 Binary files a/src/qt/res/icons/filesave.png and b/src/qt/res/icons/filesave.png differ diff --git a/src/qt/res/icons/history.png b/src/qt/res/icons/history.png index 10ac0e1..40aaba1 100644 Binary files a/src/qt/res/icons/history.png and b/src/qt/res/icons/history.png differ diff --git a/src/qt/res/icons/key.png b/src/qt/res/icons/key.png index ece0164..ed0f6ee 100644 Binary files a/src/qt/res/icons/key.png and b/src/qt/res/icons/key.png differ diff --git a/src/qt/res/icons/lock_closed.png b/src/qt/res/icons/lock_closed.png index c566510..f2e818d 100644 Binary files a/src/qt/res/icons/lock_closed.png and b/src/qt/res/icons/lock_closed.png differ diff --git a/src/qt/res/icons/lock_open.png b/src/qt/res/icons/lock_open.png index c98ca86..555710f 100644 Binary files a/src/qt/res/icons/lock_open.png and b/src/qt/res/icons/lock_open.png differ diff --git a/src/qt/res/icons/notsynced.png b/src/qt/res/icons/notsynced.png index c9e7118..b711090 100644 Binary files a/src/qt/res/icons/notsynced.png and b/src/qt/res/icons/notsynced.png differ diff --git a/src/qt/res/icons/novacoin-128.png b/src/qt/res/icons/novacoin-128.png deleted file mode 100644 index 2ee4735..0000000 Binary files a/src/qt/res/icons/novacoin-128.png and /dev/null differ diff --git a/src/qt/res/icons/novacoin-16.png b/src/qt/res/icons/novacoin-16.png deleted file mode 100644 index 9f91fa3..0000000 Binary files a/src/qt/res/icons/novacoin-16.png and /dev/null differ diff --git a/src/qt/res/icons/novacoin-32.png b/src/qt/res/icons/novacoin-32.png deleted file mode 100644 index 96c2b9b..0000000 Binary files a/src/qt/res/icons/novacoin-32.png and /dev/null differ diff --git a/src/qt/res/icons/novacoin-48.png b/src/qt/res/icons/novacoin-48.png deleted file mode 100644 index e7d9608..0000000 Binary files a/src/qt/res/icons/novacoin-48.png and /dev/null differ diff --git a/src/qt/res/icons/novacoin-80.png b/src/qt/res/icons/novacoin-80.png deleted file mode 100644 index 73f558d..0000000 Binary files a/src/qt/res/icons/novacoin-80.png and /dev/null differ diff --git a/src/qt/res/icons/novacoin.ico b/src/qt/res/icons/novacoin.ico deleted file mode 100644 index 557e625..0000000 Binary files a/src/qt/res/icons/novacoin.ico and /dev/null differ diff --git a/src/qt/res/icons/novacoin.png b/src/qt/res/icons/novacoin.png deleted file mode 100644 index be6a248..0000000 Binary files a/src/qt/res/icons/novacoin.png and /dev/null differ diff --git a/src/qt/res/icons/overview.png b/src/qt/res/icons/overview.png index ee2511f..b9f2eae 100644 Binary files a/src/qt/res/icons/overview.png and b/src/qt/res/icons/overview.png differ diff --git a/src/qt/res/icons/quit.png b/src/qt/res/icons/quit.png index 0dde6f3..64cb7ba 100644 Binary files a/src/qt/res/icons/quit.png and b/src/qt/res/icons/quit.png differ diff --git a/src/qt/res/icons/receive.png b/src/qt/res/icons/receive.png index 53ad1d1..8aeb018 100644 Binary files a/src/qt/res/icons/receive.png and b/src/qt/res/icons/receive.png differ diff --git a/src/qt/res/icons/remove.png b/src/qt/res/icons/remove.png index a44b6d1..e4ab42b 100644 Binary files a/src/qt/res/icons/remove.png and b/src/qt/res/icons/remove.png differ diff --git a/src/qt/res/icons/send.png b/src/qt/res/icons/send.png index ceb91ea..e785656 100644 Binary files a/src/qt/res/icons/send.png and b/src/qt/res/icons/send.png differ diff --git a/src/qt/res/icons/signmessage.png b/src/qt/res/icons/signmessage.png new file mode 100644 index 0000000..e2f769e Binary files /dev/null and b/src/qt/res/icons/signmessage.png differ diff --git a/src/qt/res/icons/sprout.png b/src/qt/res/icons/sprout.png new file mode 100644 index 0000000..a74e857 Binary files /dev/null and b/src/qt/res/icons/sprout.png differ diff --git a/src/qt/res/icons/staking_off.png b/src/qt/res/icons/staking_off.png index 91e570e..088a09b 100644 Binary files a/src/qt/res/icons/staking_off.png and b/src/qt/res/icons/staking_off.png differ diff --git a/src/qt/res/icons/staking_on.png b/src/qt/res/icons/staking_on.png index 1a5e8c2..d259df1 100644 Binary files a/src/qt/res/icons/staking_on.png and b/src/qt/res/icons/staking_on.png differ diff --git a/src/qt/res/icons/synced.png b/src/qt/res/icons/synced.png deleted file mode 100644 index 4d7e0e8..0000000 Binary files a/src/qt/res/icons/synced.png and /dev/null differ diff --git a/src/qt/res/icons/transaction0.png b/src/qt/res/icons/transaction0.png index 4578666..dab4a0f 100644 Binary files a/src/qt/res/icons/transaction0.png and b/src/qt/res/icons/transaction0.png differ diff --git a/src/qt/res/icons/transaction2.png b/src/qt/res/icons/transaction2.png deleted file mode 100644 index 01bb558..0000000 Binary files a/src/qt/res/icons/transaction2.png and /dev/null differ diff --git a/src/qt/res/icons/transaction_conflicted.png b/src/qt/res/icons/transaction_conflicted.png index 51fff64..f6b5758 100644 Binary files a/src/qt/res/icons/transaction_conflicted.png and b/src/qt/res/icons/transaction_conflicted.png differ diff --git a/src/qt/res/icons/tx_inout.png b/src/qt/res/icons/tx_inout.png index 5f092f9..c2c825f 100644 Binary files a/src/qt/res/icons/tx_inout.png and b/src/qt/res/icons/tx_inout.png differ diff --git a/src/qt/res/icons/tx_input.png b/src/qt/res/icons/tx_input.png index 0f5fea3..2b839d3 100644 Binary files a/src/qt/res/icons/tx_input.png and b/src/qt/res/icons/tx_input.png differ diff --git a/src/qt/res/icons/tx_mined.png b/src/qt/res/icons/tx_mined.png deleted file mode 100644 index 613f30f..0000000 Binary files a/src/qt/res/icons/tx_mined.png and /dev/null differ diff --git a/src/qt/res/icons/tx_output.png b/src/qt/res/icons/tx_output.png index 9ae39fb..0914d85 100644 Binary files a/src/qt/res/icons/tx_output.png and b/src/qt/res/icons/tx_output.png differ diff --git a/src/qt/res/icons/verifymessage.png b/src/qt/res/icons/verifymessage.png new file mode 100644 index 0000000..e61f05b Binary files /dev/null and b/src/qt/res/icons/verifymessage.png differ diff --git a/src/qt/res/images/Bean2Moon.png b/src/qt/res/images/Bean2Moon.png new file mode 100644 index 0000000..3e7fa70 Binary files /dev/null and b/src/qt/res/images/Bean2Moon.png differ diff --git a/src/qt/res/images/BeanSky.png b/src/qt/res/images/BeanSky.png new file mode 100644 index 0000000..12b9e93 Binary files /dev/null and b/src/qt/res/images/BeanSky.png differ diff --git a/src/qt/res/images/about.png b/src/qt/res/images/about.png index 3f8bab2..e23e7d5 100644 Binary files a/src/qt/res/images/about.png and b/src/qt/res/images/about.png differ diff --git a/src/qt/res/images/splash2.jpg b/src/qt/res/images/splash2.jpg deleted file mode 100644 index 4ea92f0..0000000 Binary files a/src/qt/res/images/splash2.jpg and /dev/null differ diff --git a/src/qt/res/images/splash3.jpg b/src/qt/res/images/splash3.jpg deleted file mode 100644 index 2c19edf..0000000 Binary files a/src/qt/res/images/splash3.jpg and /dev/null differ diff --git a/src/qt/res/images/splash3.png b/src/qt/res/images/splash3.png deleted file mode 100644 index fdbd01f..0000000 Binary files a/src/qt/res/images/splash3.png and /dev/null differ diff --git a/src/qt/res/movies/bitbean_spinner.mng b/src/qt/res/movies/bitbean_spinner.mng new file mode 100644 index 0000000..738b779 Binary files /dev/null and b/src/qt/res/movies/bitbean_spinner.mng differ diff --git a/src/qt/res/movies/update_spinner.mng b/src/qt/res/movies/update_spinner.mng deleted file mode 100644 index 7df3baa..0000000 Binary files a/src/qt/res/movies/update_spinner.mng and /dev/null differ diff --git a/src/qt/res/src/bitcoin.svg b/src/qt/res/src/bitcoin.svg deleted file mode 100644 index 96f1017..0000000 --- a/src/qt/res/src/bitcoin.svg +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/qt/res/src/clock1.svg b/src/qt/res/src/clock1.svg deleted file mode 100644 index 793dc7f..0000000 --- a/src/qt/res/src/clock1.svg +++ /dev/null @@ -1,261 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/qt/res/src/clock2.svg b/src/qt/res/src/clock2.svg deleted file mode 100644 index 6a78adf..0000000 --- a/src/qt/res/src/clock2.svg +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/qt/res/src/clock3.svg b/src/qt/res/src/clock3.svg deleted file mode 100644 index 09ccc25..0000000 --- a/src/qt/res/src/clock3.svg +++ /dev/null @@ -1,261 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/qt/res/src/clock4.svg b/src/qt/res/src/clock4.svg deleted file mode 100644 index 7d9dc37..0000000 --- a/src/qt/res/src/clock4.svg +++ /dev/null @@ -1,261 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/qt/res/src/clock5.svg b/src/qt/res/src/clock5.svg deleted file mode 100644 index 9fd58d9..0000000 --- a/src/qt/res/src/clock5.svg +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/qt/res/src/clock_green.svg b/src/qt/res/src/clock_green.svg deleted file mode 100644 index e31f0e7..0000000 --- a/src/qt/res/src/clock_green.svg +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/qt/res/src/inout.svg b/src/qt/res/src/inout.svg deleted file mode 100644 index bfab8ef..0000000 --- a/src/qt/res/src/inout.svg +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/src/qt/res/src/questionmark.svg b/src/qt/res/src/questionmark.svg deleted file mode 100644 index c03c159..0000000 --- a/src/qt/res/src/questionmark.svg +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - ? - ? - - - ? - - diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 9853c7a..4b17489 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -2,7 +2,7 @@ #include "ui_rpcconsole.h" #include "clientmodel.h" -#include "bitcoinrpc.h" +#include "bitbeanrpc.h" #include "guiutil.h" #include @@ -194,6 +194,7 @@ RPCConsole::RPCConsole(QWidget *parent) : #ifndef Q_OS_MAC ui->openDebugLogfileButton->setIcon(QIcon(":/icons/export")); + ui->openConfigfileButton->setIcon(QIcon(":/icons/export")); ui->showCLOptionsButton->setIcon(QIcon(":/icons/options")); #endif @@ -424,6 +425,11 @@ void RPCConsole::on_openDebugLogfileButton_clicked() GUIUtil::openDebugLogfile(); } +void RPCConsole::on_openConfigfileButton_clicked() +{ + GUIUtil::openConfigfile(); +} + void RPCConsole::scrollToEnd() { QScrollBar *scrollbar = ui->messagesWidget->verticalScrollBar(); @@ -435,3 +441,8 @@ void RPCConsole::on_showCLOptionsButton_clicked() GUIUtil::HelpMessageBox help; help.exec(); } + +void RPCConsole::on_closeButton_clicked() +{ + close(); +} diff --git a/src/qt/rpcconsole.h b/src/qt/rpcconsole.h index 3c38b4b..a294ebd 100644 --- a/src/qt/rpcconsole.h +++ b/src/qt/rpcconsole.h @@ -8,7 +8,7 @@ namespace Ui { } class ClientModel; -/** Local Bitcoin RPC console. */ +/** Local Bitbean RPC console. */ class RPCConsole: public QDialog { Q_OBJECT @@ -35,8 +35,11 @@ private slots: void on_tabWidget_currentChanged(int index); /** open the debug.log from the current datadir */ void on_openDebugLogfileButton_clicked(); - /** display messagebox with program parameters (same as bitcoin-qt --help) */ + //** open bitbean.conf from current datadir */ + void on_openConfigfileButton_clicked(); + /** display messagebox with program parameters (same as bitbean-qt --help) */ void on_showCLOptionsButton_clicked(); + void on_closeButton_clicked(); public slots: void clear(); diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendbeansdialog.cpp similarity index 51% rename from src/qt/sendcoinsdialog.cpp rename to src/qt/sendbeansdialog.cpp index 734afbe..c27930f 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendbeansdialog.cpp @@ -1,20 +1,20 @@ -#include "sendcoinsdialog.h" -#include "ui_sendcoinsdialog.h" +#include "sendbeansdialog.h" +#include "ui_sendbeansdialog.h" #include "init.h" #include "walletmodel.h" #include "addresstablemodel.h" #include "addressbookpage.h" -#include "bitcoinunits.h" +#include "bitbeanunits.h" #include "addressbookpage.h" #include "optionsmodel.h" -#include "sendcoinsentry.h" +#include "sendbeansentry.h" #include "guiutil.h" #include "askpassphrasedialog.h" -#include "coincontrol.h" -#include "coincontroldialog.h" +#include "beancontrol.h" +#include "beancontroldialog.h" #include #include @@ -22,9 +22,9 @@ #include #include -SendCoinsDialog::SendCoinsDialog(QWidget *parent) : +SendBeansDialog::SendBeansDialog(QWidget *parent) : QDialog(parent), - ui(new Ui::SendCoinsDialog), + ui(new Ui::SendBeansDialog), model(0) { ui->setupUi(this); @@ -37,7 +37,7 @@ SendCoinsDialog::SendCoinsDialog(QWidget *parent) : #if QT_VERSION >= 0x040700 /* Do not move this to the XML file, Qt before 4.7 will choke on it */ - ui->lineEditCoinControlChange->setPlaceholderText(tr("Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci)")); + ui->lineEditBeanControlChange->setPlaceholderText(tr("Enter a BitBean address (e.g. 2JhbfkAFvXqYkreSgJfrRLS9DepUcxbQci)")); #endif addEntry(); @@ -45,13 +45,13 @@ SendCoinsDialog::SendCoinsDialog(QWidget *parent) : connect(ui->addButton, SIGNAL(clicked()), this, SLOT(addEntry())); connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear())); - // Coin Control - ui->lineEditCoinControlChange->setFont(GUIUtil::bitcoinAddressFont()); - connect(ui->pushButtonCoinControl, SIGNAL(clicked()), this, SLOT(coinControlButtonClicked())); - connect(ui->checkBoxCoinControlChange, SIGNAL(stateChanged(int)), this, SLOT(coinControlChangeChecked(int))); - connect(ui->lineEditCoinControlChange, SIGNAL(textEdited(const QString &)), this, SLOT(coinControlChangeEdited(const QString &))); + // Bean Control + ui->lineEditBeanControlChange->setFont(GUIUtil::bitbeanAddressFont()); + connect(ui->pushButtonBeanControl, SIGNAL(clicked()), this, SLOT(beanControlButtonClicked())); + connect(ui->checkBoxBeanControlChange, SIGNAL(stateChanged(int)), this, SLOT(beanControlChangeChecked(int))); + connect(ui->lineEditBeanControlChange, SIGNAL(textEdited(const QString &)), this, SLOT(beanControlChangeEdited(const QString &))); - // Coin Control: clipboard actions + // Bean Control: clipboard actions QAction *clipboardQuantityAction = new QAction(tr("Copy quantity"), this); QAction *clipboardAmountAction = new QAction(tr("Copy amount"), this); QAction *clipboardFeeAction = new QAction(tr("Copy fee"), this); @@ -60,33 +60,33 @@ SendCoinsDialog::SendCoinsDialog(QWidget *parent) : QAction *clipboardPriorityAction = new QAction(tr("Copy priority"), this); QAction *clipboardLowOutputAction = new QAction(tr("Copy low output"), this); QAction *clipboardChangeAction = new QAction(tr("Copy change"), this); - connect(clipboardQuantityAction, SIGNAL(triggered()), this, SLOT(coinControlClipboardQuantity())); - connect(clipboardAmountAction, SIGNAL(triggered()), this, SLOT(coinControlClipboardAmount())); - connect(clipboardFeeAction, SIGNAL(triggered()), this, SLOT(coinControlClipboardFee())); - connect(clipboardAfterFeeAction, SIGNAL(triggered()), this, SLOT(coinControlClipboardAfterFee())); - connect(clipboardBytesAction, SIGNAL(triggered()), this, SLOT(coinControlClipboardBytes())); - connect(clipboardPriorityAction, SIGNAL(triggered()), this, SLOT(coinControlClipboardPriority())); - connect(clipboardLowOutputAction, SIGNAL(triggered()), this, SLOT(coinControlClipboardLowOutput())); - connect(clipboardChangeAction, SIGNAL(triggered()), this, SLOT(coinControlClipboardChange())); - ui->labelCoinControlQuantity->addAction(clipboardQuantityAction); - ui->labelCoinControlAmount->addAction(clipboardAmountAction); - ui->labelCoinControlFee->addAction(clipboardFeeAction); - ui->labelCoinControlAfterFee->addAction(clipboardAfterFeeAction); - ui->labelCoinControlBytes->addAction(clipboardBytesAction); - ui->labelCoinControlPriority->addAction(clipboardPriorityAction); - ui->labelCoinControlLowOutput->addAction(clipboardLowOutputAction); - ui->labelCoinControlChange->addAction(clipboardChangeAction); + connect(clipboardQuantityAction, SIGNAL(triggered()), this, SLOT(beanControlClipboardQuantity())); + connect(clipboardAmountAction, SIGNAL(triggered()), this, SLOT(beanControlClipboardAmount())); + connect(clipboardFeeAction, SIGNAL(triggered()), this, SLOT(beanControlClipboardFee())); + connect(clipboardAfterFeeAction, SIGNAL(triggered()), this, SLOT(beanControlClipboardAfterFee())); + connect(clipboardBytesAction, SIGNAL(triggered()), this, SLOT(beanControlClipboardBytes())); + connect(clipboardPriorityAction, SIGNAL(triggered()), this, SLOT(beanControlClipboardPriority())); + connect(clipboardLowOutputAction, SIGNAL(triggered()), this, SLOT(beanControlClipboardLowOutput())); + connect(clipboardChangeAction, SIGNAL(triggered()), this, SLOT(beanControlClipboardChange())); + ui->labelBeanControlQuantity->addAction(clipboardQuantityAction); + ui->labelBeanControlAmount->addAction(clipboardAmountAction); + ui->labelBeanControlFee->addAction(clipboardFeeAction); + ui->labelBeanControlAfterFee->addAction(clipboardAfterFeeAction); + ui->labelBeanControlBytes->addAction(clipboardBytesAction); + ui->labelBeanControlPriority->addAction(clipboardPriorityAction); + ui->labelBeanControlLowOutput->addAction(clipboardLowOutputAction); + ui->labelBeanControlChange->addAction(clipboardChangeAction); fNewRecipientAllowed = true; } -void SendCoinsDialog::setModel(WalletModel *model) +void SendBeansDialog::setModel(WalletModel *model) { this->model = model; for(int i = 0; i < ui->entries->count(); ++i) { - SendCoinsEntry *entry = qobject_cast(ui->entries->itemAt(i)->widget()); + SendBeansEntry *entry = qobject_cast(ui->entries->itemAt(i)->widget()); if(entry) { entry->setModel(model); @@ -98,23 +98,23 @@ void SendCoinsDialog::setModel(WalletModel *model) connect(model, SIGNAL(balanceChanged(qint64, qint64, qint64, qint64)), this, SLOT(setBalance(qint64, qint64, qint64, qint64))); connect(model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit())); - // Coin Control - connect(model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(coinControlUpdateLabels())); - connect(model->getOptionsModel(), SIGNAL(coinControlFeaturesChanged(bool)), this, SLOT(coinControlFeatureChanged(bool))); - connect(model->getOptionsModel(), SIGNAL(transactionFeeChanged(qint64)), this, SLOT(coinControlUpdateLabels())); - ui->frameCoinControl->setVisible(model->getOptionsModel()->getCoinControlFeatures()); - coinControlUpdateLabels(); + // Bean Control + connect(model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(beanControlUpdateLabels())); + connect(model->getOptionsModel(), SIGNAL(beanControlFeaturesChanged(bool)), this, SLOT(beanControlFeatureChanged(bool))); + connect(model->getOptionsModel(), SIGNAL(transactionFeeChanged(qint64)), this, SLOT(beanControlUpdateLabels())); + ui->frameBeanControl->setVisible(model->getOptionsModel()->getBeanControlFeatures()); + beanControlUpdateLabels(); } } -SendCoinsDialog::~SendCoinsDialog() +SendBeansDialog::~SendBeansDialog() { delete ui; } -void SendCoinsDialog::on_sendButton_clicked() +void SendBeansDialog::on_sendButton_clicked() { - QList recipients; + QList recipients; bool valid = true; if(!model) @@ -122,7 +122,7 @@ void SendCoinsDialog::on_sendButton_clicked() for(int i = 0; i < ui->entries->count(); ++i) { - SendCoinsEntry *entry = qobject_cast(ui->entries->itemAt(i)->widget()); + SendBeansEntry *entry = qobject_cast(ui->entries->itemAt(i)->widget()); if(entry) { if(entry->validate()) @@ -143,14 +143,14 @@ void SendCoinsDialog::on_sendButton_clicked() // Format confirmation message QStringList formatted; - foreach(const SendCoinsRecipient &rcp, recipients) + foreach(const SendBeansRecipient &rcp, recipients) { - formatted.append(tr("%1 to %2 (%3)").arg(BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, rcp.amount), Qt::escape(rcp.label), rcp.address)); + formatted.append(tr("%1 to %2 (%3)").arg(BitbeanUnits::formatWithUnit(BitbeanUnits::BitB, rcp.amount), Qt::escape(rcp.label), rcp.address)); } fNewRecipientAllowed = false; - QMessageBox::StandardButton retval = QMessageBox::question(this, tr("Confirm send coins"), + QMessageBox::StandardButton retval = QMessageBox::question(this, tr("Confirm send beans"), tr("Are you sure you want to send %1?").arg(formatted.join(tr(" and "))), QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Cancel); @@ -169,63 +169,63 @@ void SendCoinsDialog::on_sendButton_clicked() return; } - WalletModel::SendCoinsReturn sendstatus; + WalletModel::SendBeansReturn sendstatus; - if (!model->getOptionsModel() || !model->getOptionsModel()->getCoinControlFeatures()) - sendstatus = model->sendCoins(recipients); + if (!model->getOptionsModel() || !model->getOptionsModel()->getBeanControlFeatures()) + sendstatus = model->sendBeans(recipients); else - sendstatus = model->sendCoins(recipients, CoinControlDialog::coinControl); + sendstatus = model->sendBeans(recipients, BeanControlDialog::beanControl); switch(sendstatus.status) { case WalletModel::InvalidAddress: - QMessageBox::warning(this, tr("Send Coins"), + QMessageBox::warning(this, tr("Send Beans"), tr("The recipient address is not valid, please recheck."), QMessageBox::Ok, QMessageBox::Ok); break; case WalletModel::InvalidAmount: - QMessageBox::warning(this, tr("Send Coins"), + QMessageBox::warning(this, tr("Send Beans"), tr("The amount to pay must be larger than 0."), QMessageBox::Ok, QMessageBox::Ok); break; case WalletModel::AmountExceedsBalance: - QMessageBox::warning(this, tr("Send Coins"), + QMessageBox::warning(this, tr("Send Beans"), tr("The amount exceeds your balance."), QMessageBox::Ok, QMessageBox::Ok); break; case WalletModel::AmountWithFeeExceedsBalance: - QMessageBox::warning(this, tr("Send Coins"), + QMessageBox::warning(this, tr("Send Beans"), tr("The total exceeds your balance when the %1 transaction fee is included."). - arg(BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, sendstatus.fee)), + arg(BitbeanUnits::formatWithUnit(BitbeanUnits::BitB, sendstatus.fee)), QMessageBox::Ok, QMessageBox::Ok); break; case WalletModel::DuplicateAddress: - QMessageBox::warning(this, tr("Send Coins"), + QMessageBox::warning(this, tr("Send Beans"), tr("Duplicate address found, can only send to each address once per send operation."), QMessageBox::Ok, QMessageBox::Ok); break; case WalletModel::TransactionCreationFailed: - QMessageBox::warning(this, tr("Send Coins"), + QMessageBox::warning(this, tr("Send Beans"), tr("Error: Transaction creation failed."), QMessageBox::Ok, QMessageBox::Ok); break; case WalletModel::TransactionCommitFailed: - QMessageBox::warning(this, tr("Send Coins"), - tr("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."), + QMessageBox::warning(this, tr("Send Beans"), + tr("Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here."), QMessageBox::Ok, QMessageBox::Ok); break; case WalletModel::Aborted: // User aborted, nothing to do break; case WalletModel::OK: accept(); - CoinControlDialog::coinControl->UnSelectAll(); - coinControlUpdateLabels(); + BeanControlDialog::beanControl->UnSelectAll(); + beanControlUpdateLabels(); break; } fNewRecipientAllowed = true; } -void SendCoinsDialog::clear() +void SendBeansDialog::clear() { // Remove entries until only one left while(ui->entries->count()) @@ -239,23 +239,23 @@ void SendCoinsDialog::clear() ui->sendButton->setDefault(true); } -void SendCoinsDialog::reject() +void SendBeansDialog::reject() { clear(); } -void SendCoinsDialog::accept() +void SendBeansDialog::accept() { clear(); } -SendCoinsEntry *SendCoinsDialog::addEntry() +SendBeansEntry *SendBeansDialog::addEntry() { - SendCoinsEntry *entry = new SendCoinsEntry(this); + SendBeansEntry *entry = new SendBeansEntry(this); entry->setModel(model); ui->entries->addWidget(entry); - connect(entry, SIGNAL(removeEntry(SendCoinsEntry*)), this, SLOT(removeEntry(SendCoinsEntry*))); - connect(entry, SIGNAL(payAmountChanged()), this, SLOT(coinControlUpdateLabels())); + connect(entry, SIGNAL(removeEntry(SendBeansEntry*)), this, SLOT(removeEntry(SendBeansEntry*))); + connect(entry, SIGNAL(payAmountChanged()), this, SLOT(beanControlUpdateLabels())); updateRemoveEnabled(); @@ -270,33 +270,33 @@ SendCoinsEntry *SendCoinsDialog::addEntry() return entry; } -void SendCoinsDialog::updateRemoveEnabled() +void SendBeansDialog::updateRemoveEnabled() { // Remove buttons are enabled as soon as there is more than one send-entry bool enabled = (ui->entries->count() > 1); for(int i = 0; i < ui->entries->count(); ++i) { - SendCoinsEntry *entry = qobject_cast(ui->entries->itemAt(i)->widget()); + SendBeansEntry *entry = qobject_cast(ui->entries->itemAt(i)->widget()); if(entry) { entry->setRemoveEnabled(enabled); } } setupTabChain(0); - coinControlUpdateLabels(); + beanControlUpdateLabels(); } -void SendCoinsDialog::removeEntry(SendCoinsEntry* entry) +void SendBeansDialog::removeEntry(SendBeansEntry* entry) { delete entry; updateRemoveEnabled(); } -QWidget *SendCoinsDialog::setupTabChain(QWidget *prev) +QWidget *SendBeansDialog::setupTabChain(QWidget *prev) { for(int i = 0; i < ui->entries->count(); ++i) { - SendCoinsEntry *entry = qobject_cast(ui->entries->itemAt(i)->widget()); + SendBeansEntry *entry = qobject_cast(ui->entries->itemAt(i)->widget()); if(entry) { prev = entry->setupTabChain(prev); @@ -307,16 +307,16 @@ QWidget *SendCoinsDialog::setupTabChain(QWidget *prev) return ui->sendButton; } -void SendCoinsDialog::pasteEntry(const SendCoinsRecipient &rv) +void SendBeansDialog::pasteEntry(const SendBeansRecipient &rv) { if(!fNewRecipientAllowed) return; - SendCoinsEntry *entry = 0; + SendBeansEntry *entry = 0; // Replace the first entry if it is still unused if(ui->entries->count() == 1) { - SendCoinsEntry *first = qobject_cast(ui->entries->itemAt(0)->widget()); + SendBeansEntry *first = qobject_cast(ui->entries->itemAt(0)->widget()); if(first->isClear()) { entry = first; @@ -330,13 +330,13 @@ void SendCoinsDialog::pasteEntry(const SendCoinsRecipient &rv) entry->setValue(rv); } -bool SendCoinsDialog::handleURI(const QString &uri) +bool SendBeansDialog::handleURI(const QString &uri) { - SendCoinsRecipient rv; + SendBeansRecipient rv; // URI has to be valid - if (GUIUtil::parseBitcoinURI(uri, &rv)) + if (GUIUtil::parseBitbeanURI(uri, &rv)) { - CBitcoinAddress address(rv.address.toStdString()); + CBitbeanAddress address(rv.address.toStdString()); if (!address.IsValid()) return false; pasteEntry(rv); @@ -346,7 +346,7 @@ bool SendCoinsDialog::handleURI(const QString &uri) return false; } -void SendCoinsDialog::setBalance(qint64 balance, qint64 stake, qint64 unconfirmedBalance, qint64 immatureBalance) +void SendBeansDialog::setBalance(qint64 balance, qint64 stake, qint64 unconfirmedBalance, qint64 immatureBalance) { Q_UNUSED(stake); Q_UNUSED(unconfirmedBalance); @@ -355,166 +355,166 @@ void SendCoinsDialog::setBalance(qint64 balance, qint64 stake, qint64 unconfirme return; int unit = model->getOptionsModel()->getDisplayUnit(); - ui->labelBalance->setText(BitcoinUnits::formatWithUnit(unit, balance)); + ui->labelBalance->setText(BitbeanUnits::formatWithUnit(unit, balance)); } -void SendCoinsDialog::updateDisplayUnit() +void SendBeansDialog::updateDisplayUnit() { if(model && model->getOptionsModel()) { // Update labelBalance with the current balance and the current unit - ui->labelBalance->setText(BitcoinUnits::formatWithUnit(model->getOptionsModel()->getDisplayUnit(), model->getBalance())); + ui->labelBalance->setText(BitbeanUnits::formatWithUnit(model->getOptionsModel()->getDisplayUnit(), model->getBalance())); } } -// Coin Control: copy label "Quantity" to clipboard -void SendCoinsDialog::coinControlClipboardQuantity() +// Bean Control: copy label "Quantity" to clipboard +void SendBeansDialog::beanControlClipboardQuantity() { - QApplication::clipboard()->setText(ui->labelCoinControlQuantity->text()); + QApplication::clipboard()->setText(ui->labelBeanControlQuantity->text()); } -// Coin Control: copy label "Amount" to clipboard -void SendCoinsDialog::coinControlClipboardAmount() +// Bean Control: copy label "Amount" to clipboard +void SendBeansDialog::beanControlClipboardAmount() { - QApplication::clipboard()->setText(ui->labelCoinControlAmount->text().left(ui->labelCoinControlAmount->text().indexOf(" "))); + QApplication::clipboard()->setText(ui->labelBeanControlAmount->text().left(ui->labelBeanControlAmount->text().indexOf(" "))); } -// Coin Control: copy label "Fee" to clipboard -void SendCoinsDialog::coinControlClipboardFee() +// Bean Control: copy label "Fee" to clipboard +void SendBeansDialog::beanControlClipboardFee() { - QApplication::clipboard()->setText(ui->labelCoinControlFee->text().left(ui->labelCoinControlFee->text().indexOf(" "))); + QApplication::clipboard()->setText(ui->labelBeanControlFee->text().left(ui->labelBeanControlFee->text().indexOf(" "))); } -// Coin Control: copy label "After fee" to clipboard -void SendCoinsDialog::coinControlClipboardAfterFee() +// Bean Control: copy label "After fee" to clipboard +void SendBeansDialog::beanControlClipboardAfterFee() { - QApplication::clipboard()->setText(ui->labelCoinControlAfterFee->text().left(ui->labelCoinControlAfterFee->text().indexOf(" "))); + QApplication::clipboard()->setText(ui->labelBeanControlAfterFee->text().left(ui->labelBeanControlAfterFee->text().indexOf(" "))); } -// Coin Control: copy label "Bytes" to clipboard -void SendCoinsDialog::coinControlClipboardBytes() +// Bean Control: copy label "Bytes" to clipboard +void SendBeansDialog::beanControlClipboardBytes() { - QApplication::clipboard()->setText(ui->labelCoinControlBytes->text()); + QApplication::clipboard()->setText(ui->labelBeanControlBytes->text()); } -// Coin Control: copy label "Priority" to clipboard -void SendCoinsDialog::coinControlClipboardPriority() +// Bean Control: copy label "Priority" to clipboard +void SendBeansDialog::beanControlClipboardPriority() { - QApplication::clipboard()->setText(ui->labelCoinControlPriority->text()); + QApplication::clipboard()->setText(ui->labelBeanControlPriority->text()); } -// Coin Control: copy label "Low output" to clipboard -void SendCoinsDialog::coinControlClipboardLowOutput() +// Bean Control: copy label "Low output" to clipboard +void SendBeansDialog::beanControlClipboardLowOutput() { - QApplication::clipboard()->setText(ui->labelCoinControlLowOutput->text()); + QApplication::clipboard()->setText(ui->labelBeanControlLowOutput->text()); } -// Coin Control: copy label "Change" to clipboard -void SendCoinsDialog::coinControlClipboardChange() +// Bean Control: copy label "Change" to clipboard +void SendBeansDialog::beanControlClipboardChange() { - QApplication::clipboard()->setText(ui->labelCoinControlChange->text().left(ui->labelCoinControlChange->text().indexOf(" "))); + QApplication::clipboard()->setText(ui->labelBeanControlChange->text().left(ui->labelBeanControlChange->text().indexOf(" "))); } -// Coin Control: settings menu - coin control enabled/disabled by user -void SendCoinsDialog::coinControlFeatureChanged(bool checked) +// Bean Control: settings menu - bean control enabled/disabled by user +void SendBeansDialog::beanControlFeatureChanged(bool checked) { - ui->frameCoinControl->setVisible(checked); + ui->frameBeanControl->setVisible(checked); - if (!checked && model) // coin control features disabled - CoinControlDialog::coinControl->SetNull(); + if (!checked && model) // bean control features disabled + BeanControlDialog::beanControl->SetNull(); } -// Coin Control: button inputs -> show actual coin control dialog -void SendCoinsDialog::coinControlButtonClicked() +// Bean Control: button inputs -> show actual bean control dialog +void SendBeansDialog::beanControlButtonClicked() { - CoinControlDialog dlg; + BeanControlDialog dlg; dlg.setModel(model); dlg.exec(); - coinControlUpdateLabels(); + beanControlUpdateLabels(); } -// Coin Control: checkbox custom change address -void SendCoinsDialog::coinControlChangeChecked(int state) +// Bean Control: checkbox custom change address +void SendBeansDialog::beanControlChangeChecked(int state) { if (model) { if (state == Qt::Checked) - CoinControlDialog::coinControl->destChange = CBitcoinAddress(ui->lineEditCoinControlChange->text().toStdString()).Get(); + BeanControlDialog::beanControl->destChange = CBitbeanAddress(ui->lineEditBeanControlChange->text().toStdString()).Get(); else - CoinControlDialog::coinControl->destChange = CNoDestination(); + BeanControlDialog::beanControl->destChange = CNoDestination(); } - ui->lineEditCoinControlChange->setEnabled((state == Qt::Checked)); - ui->labelCoinControlChangeLabel->setEnabled((state == Qt::Checked)); + ui->lineEditBeanControlChange->setEnabled((state == Qt::Checked)); + ui->labelBeanControlChangeLabel->setEnabled((state == Qt::Checked)); } -// Coin Control: custom change address changed -void SendCoinsDialog::coinControlChangeEdited(const QString & text) +// Bean Control: custom change address changed +void SendBeansDialog::beanControlChangeEdited(const QString & text) { if (model) { - CoinControlDialog::coinControl->destChange = CBitcoinAddress(text.toStdString()).Get(); + BeanControlDialog::beanControl->destChange = CBitbeanAddress(text.toStdString()).Get(); // label for the change address - ui->labelCoinControlChangeLabel->setStyleSheet("QLabel{color:Test;}"); + ui->labelBeanControlChangeLabel->setStyleSheet("QLabel{color:Test;}"); if (text.isEmpty()) - ui->labelCoinControlChangeLabel->setText(""); - else if (!CBitcoinAddress(text.toStdString()).IsValid()) + ui->labelBeanControlChangeLabel->setText(""); + else if (!CBitbeanAddress(text.toStdString()).IsValid()) { - ui->labelCoinControlChangeLabel->setStyleSheet("QLabel{color:red;}"); - ui->labelCoinControlChangeLabel->setText(tr("WARNING: Invalid BitBean address")); + ui->labelBeanControlChangeLabel->setStyleSheet("QLabel{color:red;}"); + ui->labelBeanControlChangeLabel->setText(tr("WARNING: Invalid BitBean address")); } else { QString associatedLabel = model->getAddressTableModel()->labelForAddress(text); if (!associatedLabel.isEmpty()) - ui->labelCoinControlChangeLabel->setText(associatedLabel); + ui->labelBeanControlChangeLabel->setText(associatedLabel); else { CPubKey pubkey; CKeyID keyid; - CBitcoinAddress(text.toStdString()).GetKeyID(keyid); + CBitbeanAddress(text.toStdString()).GetKeyID(keyid); if (model->getPubKey(keyid, pubkey)) - ui->labelCoinControlChangeLabel->setText(tr("(no label)")); + ui->labelBeanControlChangeLabel->setText(tr("(no label)")); else { - ui->labelCoinControlChangeLabel->setStyleSheet("QLabel{color:red;}"); - ui->labelCoinControlChangeLabel->setText(tr("WARNING: unknown change address")); + ui->labelBeanControlChangeLabel->setStyleSheet("QLabel{color:red;}"); + ui->labelBeanControlChangeLabel->setText(tr("WARNING: unknown change address")); } } } } } -// Coin Control: update labels -void SendCoinsDialog::coinControlUpdateLabels() +// Bean Control: update labels +void SendBeansDialog::beanControlUpdateLabels() { - if (!model || !model->getOptionsModel() || !model->getOptionsModel()->getCoinControlFeatures()) + if (!model || !model->getOptionsModel() || !model->getOptionsModel()->getBeanControlFeatures()) return; // set pay amounts - CoinControlDialog::payAmounts.clear(); + BeanControlDialog::payAmounts.clear(); for(int i = 0; i < ui->entries->count(); ++i) { - SendCoinsEntry *entry = qobject_cast(ui->entries->itemAt(i)->widget()); + SendBeansEntry *entry = qobject_cast(ui->entries->itemAt(i)->widget()); if(entry) - CoinControlDialog::payAmounts.append(entry->getValue().amount); + BeanControlDialog::payAmounts.append(entry->getValue().amount); } - if (CoinControlDialog::coinControl->HasSelected()) + if (BeanControlDialog::beanControl->HasSelected()) { - // actual coin control calculation - CoinControlDialog::updateLabels(model, this); + // actual bean control calculation + BeanControlDialog::updateLabels(model, this); - // show coin control stats - ui->labelCoinControlAutomaticallySelected->hide(); - ui->widgetCoinControl->show(); + // show bean control stats + ui->labelBeanControlAutomaticallySelected->hide(); + ui->widgetBeanControl->show(); } else { - // hide coin control stats - ui->labelCoinControlAutomaticallySelected->show(); - ui->widgetCoinControl->hide(); - ui->labelCoinControlInsuffFunds->hide(); + // hide bean control stats + ui->labelBeanControlAutomaticallySelected->show(); + ui->widgetBeanControl->hide(); + ui->labelBeanControlInsuffFunds->hide(); } } diff --git a/src/qt/sendbeansdialog.h b/src/qt/sendbeansdialog.h new file mode 100644 index 0000000..aae8abc --- /dev/null +++ b/src/qt/sendbeansdialog.h @@ -0,0 +1,68 @@ +#ifndef SENDbeanSDIALOG_H +#define SENDbeanSDIALOG_H + +#include +#include + +namespace Ui { + class SendBeansDialog; +} +class WalletModel; +class SendBeansEntry; +class SendBeansRecipient; + +QT_BEGIN_NAMESPACE +class QUrl; +QT_END_NAMESPACE + +/** Dialog for sending bitbeans */ +class SendBeansDialog : public QDialog +{ + Q_OBJECT + +public: + explicit SendBeansDialog(QWidget *parent = 0); + ~SendBeansDialog(); + + void setModel(WalletModel *model); + + /** Set up the tab chain manually, as Qt messes up the tab chain by default in some cases (issue https://bugreports.qt-project.org/browse/QTBUG-10907). + */ + QWidget *setupTabChain(QWidget *prev); + + void pasteEntry(const SendBeansRecipient &rv); + bool handleURI(const QString &uri); + +public slots: + void clear(); + void reject(); + void accept(); + SendBeansEntry *addEntry(); + void updateRemoveEnabled(); + void setBalance(qint64 balance, qint64 stake, qint64 unconfirmedBalance, qint64 immatureBalance); + +private: + Ui::SendBeansDialog *ui; + WalletModel *model; + bool fNewRecipientAllowed; + +private slots: + void on_sendButton_clicked(); + void removeEntry(SendBeansEntry* entry); + void updateDisplayUnit(); + void beanControlFeatureChanged(bool); + void beanControlButtonClicked(); + void beanControlChangeChecked(int); + void beanControlChangeEdited(const QString &); + void beanControlUpdateLabels(); + void beanControlClipboardQuantity(); + void beanControlClipboardAmount(); + void beanControlClipboardFee(); + void beanControlClipboardAfterFee(); + void beanControlClipboardBytes(); + void beanControlClipboardPriority(); + void beanControlClipboardLowOutput(); + void beanControlClipboardChange(); +}; + +#endif // SENDbeanSDIALOG_H diff --git a/src/qt/sendcoinsentry.cpp b/src/qt/sendbeansentry.cpp similarity index 77% rename from src/qt/sendcoinsentry.cpp rename to src/qt/sendbeansentry.cpp index dcd062b..a09a007 100644 --- a/src/qt/sendcoinsentry.cpp +++ b/src/qt/sendbeansentry.cpp @@ -1,7 +1,7 @@ -#include "sendcoinsentry.h" -#include "ui_sendcoinsentry.h" +#include "sendbeansentry.h" +#include "ui_sendbeansentry.h" #include "guiutil.h" -#include "bitcoinunits.h" +#include "bitbeanunits.h" #include "addressbookpage.h" #include "walletmodel.h" #include "optionsmodel.h" @@ -10,9 +10,9 @@ #include #include -SendCoinsEntry::SendCoinsEntry(QWidget *parent) : +SendBeansEntry::SendBeansEntry(QWidget *parent) : QFrame(parent), - ui(new Ui::SendCoinsEntry), + ui(new Ui::SendBeansEntry), model(0) { ui->setupUi(this); @@ -31,18 +31,18 @@ SendCoinsEntry::SendCoinsEntry(QWidget *parent) : GUIUtil::setupAddressWidget(ui->payTo, this); } -SendCoinsEntry::~SendCoinsEntry() +SendBeansEntry::~SendBeansEntry() { delete ui; } -void SendCoinsEntry::on_pasteButton_clicked() +void SendBeansEntry::on_pasteButton_clicked() { // Paste text from clipboard into recipient field ui->payTo->setText(QApplication::clipboard()->text()); } -void SendCoinsEntry::on_addressBookButton_clicked() +void SendBeansEntry::on_addressBookButton_clicked() { if(!model) return; @@ -55,7 +55,7 @@ void SendCoinsEntry::on_addressBookButton_clicked() } } -void SendCoinsEntry::on_payTo_textChanged(const QString &address) +void SendBeansEntry::on_payTo_textChanged(const QString &address) { if(!model) return; @@ -65,7 +65,7 @@ void SendCoinsEntry::on_payTo_textChanged(const QString &address) ui->addAsLabel->setText(associatedLabel); } -void SendCoinsEntry::setModel(WalletModel *model) +void SendBeansEntry::setModel(WalletModel *model) { this->model = model; @@ -77,27 +77,27 @@ void SendCoinsEntry::setModel(WalletModel *model) clear(); } -void SendCoinsEntry::setRemoveEnabled(bool enabled) +void SendBeansEntry::setRemoveEnabled(bool enabled) { ui->deleteButton->setEnabled(enabled); } -void SendCoinsEntry::clear() +void SendBeansEntry::clear() { ui->payTo->clear(); ui->addAsLabel->clear(); ui->payAmount->clear(); ui->payTo->setFocus(); - // update the display unit, to not use the default ("BTC") + // update the display unit, to not use the default ("BitB") updateDisplayUnit(); } -void SendCoinsEntry::on_deleteButton_clicked() +void SendBeansEntry::on_deleteButton_clicked() { emit removeEntry(this); } -bool SendCoinsEntry::validate() +bool SendBeansEntry::validate() { // Check input validity bool retval = true; @@ -110,7 +110,7 @@ bool SendCoinsEntry::validate() { if(ui->payAmount->value() <= 0) { - // Cannot send 0 coins or less + // Cannot send 0 beans or less ui->payAmount->setValid(false); retval = false; } @@ -126,9 +126,9 @@ bool SendCoinsEntry::validate() return retval; } -SendCoinsRecipient SendCoinsEntry::getValue() +SendBeansRecipient SendBeansEntry::getValue() { - SendCoinsRecipient rv; + SendBeansRecipient rv; rv.address = ui->payTo->text(); rv.label = ui->addAsLabel->text(); @@ -137,7 +137,7 @@ SendCoinsRecipient SendCoinsEntry::getValue() return rv; } -QWidget *SendCoinsEntry::setupTabChain(QWidget *prev) +QWidget *SendBeansEntry::setupTabChain(QWidget *prev) { QWidget::setTabOrder(prev, ui->payTo); QWidget::setTabOrder(ui->payTo, ui->addressBookButton); @@ -147,24 +147,24 @@ QWidget *SendCoinsEntry::setupTabChain(QWidget *prev) return ui->payAmount->setupTabChain(ui->addAsLabel); } -void SendCoinsEntry::setValue(const SendCoinsRecipient &value) +void SendBeansEntry::setValue(const SendBeansRecipient &value) { ui->payTo->setText(value.address); ui->addAsLabel->setText(value.label); ui->payAmount->setValue(value.amount); } -bool SendCoinsEntry::isClear() +bool SendBeansEntry::isClear() { return ui->payTo->text().isEmpty(); } -void SendCoinsEntry::setFocus() +void SendBeansEntry::setFocus() { ui->payTo->setFocus(); } -void SendCoinsEntry::updateDisplayUnit() +void SendBeansEntry::updateDisplayUnit() { if(model && model->getOptionsModel()) { diff --git a/src/qt/sendcoinsentry.h b/src/qt/sendbeansentry.h similarity index 64% rename from src/qt/sendcoinsentry.h rename to src/qt/sendbeansentry.h index 3271e0d..5f813d7 100644 --- a/src/qt/sendcoinsentry.h +++ b/src/qt/sendbeansentry.h @@ -1,31 +1,31 @@ -#ifndef SENDCOINSENTRY_H -#define SENDCOINSENTRY_H +#ifndef SENDbeanSENTRY_H +#define SENDbeanSENTRY_H #include namespace Ui { - class SendCoinsEntry; + class SendBeansEntry; } class WalletModel; -class SendCoinsRecipient; +class SendBeansRecipient; -/** A single entry in the dialog for sending bitcoins. */ -class SendCoinsEntry : public QFrame +/** A single entry in the dialog for sending bitbeans. */ +class SendBeansEntry : public QFrame { Q_OBJECT public: - explicit SendCoinsEntry(QWidget *parent = 0); - ~SendCoinsEntry(); + explicit SendBeansEntry(QWidget *parent = 0); + ~SendBeansEntry(); void setModel(WalletModel *model); bool validate(); - SendCoinsRecipient getValue(); + SendBeansRecipient getValue(); /** Return whether the entry is still empty and unedited */ bool isClear(); - void setValue(const SendCoinsRecipient &value); + void setValue(const SendBeansRecipient &value); /** Set up the tab chain manually, as Qt messes up the tab chain by default in some cases (issue https://bugreports.qt-project.org/browse/QTBUG-10907). */ @@ -38,7 +38,7 @@ public slots: void clear(); signals: - void removeEntry(SendCoinsEntry *entry); + void removeEntry(SendBeansEntry *entry); void payAmountChanged(); private slots: @@ -49,8 +49,8 @@ private slots: void updateDisplayUnit(); private: - Ui::SendCoinsEntry *ui; + Ui::SendBeansEntry *ui; WalletModel *model; }; -#endif // SENDCOINSENTRY_H +#endif // SENDbeanSENTRY_H diff --git a/src/qt/sendcoinsdialog.h b/src/qt/sendcoinsdialog.h deleted file mode 100644 index 68424bb..0000000 --- a/src/qt/sendcoinsdialog.h +++ /dev/null @@ -1,68 +0,0 @@ -#ifndef SENDCOINSDIALOG_H -#define SENDCOINSDIALOG_H - -#include -#include - -namespace Ui { - class SendCoinsDialog; -} -class WalletModel; -class SendCoinsEntry; -class SendCoinsRecipient; - -QT_BEGIN_NAMESPACE -class QUrl; -QT_END_NAMESPACE - -/** Dialog for sending bitcoins */ -class SendCoinsDialog : public QDialog -{ - Q_OBJECT - -public: - explicit SendCoinsDialog(QWidget *parent = 0); - ~SendCoinsDialog(); - - void setModel(WalletModel *model); - - /** Set up the tab chain manually, as Qt messes up the tab chain by default in some cases (issue https://bugreports.qt-project.org/browse/QTBUG-10907). - */ - QWidget *setupTabChain(QWidget *prev); - - void pasteEntry(const SendCoinsRecipient &rv); - bool handleURI(const QString &uri); - -public slots: - void clear(); - void reject(); - void accept(); - SendCoinsEntry *addEntry(); - void updateRemoveEnabled(); - void setBalance(qint64 balance, qint64 stake, qint64 unconfirmedBalance, qint64 immatureBalance); - -private: - Ui::SendCoinsDialog *ui; - WalletModel *model; - bool fNewRecipientAllowed; - -private slots: - void on_sendButton_clicked(); - void removeEntry(SendCoinsEntry* entry); - void updateDisplayUnit(); - void coinControlFeatureChanged(bool); - void coinControlButtonClicked(); - void coinControlChangeChecked(int); - void coinControlChangeEdited(const QString &); - void coinControlUpdateLabels(); - void coinControlClipboardQuantity(); - void coinControlClipboardAmount(); - void coinControlClipboardFee(); - void coinControlClipboardAfterFee(); - void coinControlClipboardBytes(); - void coinControlClipboardPriority(); - void coinControlClipboardLowOutput(); - void coinControlClipboardChange(); -}; - -#endif // SENDCOINSDIALOG_H diff --git a/src/qt/signverifymessagedialog.cpp b/src/qt/signverifymessagedialog.cpp index c52fdfd..dfd6986 100644 --- a/src/qt/signverifymessagedialog.cpp +++ b/src/qt/signverifymessagedialog.cpp @@ -41,8 +41,8 @@ SignVerifyMessageDialog::SignVerifyMessageDialog(QWidget *parent) : ui->messageIn_VM->installEventFilter(this); ui->signatureIn_VM->installEventFilter(this); - ui->signatureOut_SM->setFont(GUIUtil::bitcoinAddressFont()); - ui->signatureIn_VM->setFont(GUIUtil::bitcoinAddressFont()); + ui->signatureOut_SM->setFont(GUIUtil::bitbeanAddressFont()); + ui->signatureIn_VM->setFont(GUIUtil::bitbeanAddressFont()); } SignVerifyMessageDialog::~SignVerifyMessageDialog() @@ -100,12 +100,22 @@ void SignVerifyMessageDialog::on_pasteButton_SM_clicked() setAddress_SM(QApplication::clipboard()->text()); } +void SignVerifyMessageDialog::on_closeButton_SM_clicked() +{ + close(); +} + +void SignVerifyMessageDialog::on_closeButton_VM_clicked() +{ + close(); +} + void SignVerifyMessageDialog::on_signMessageButton_SM_clicked() { /* Clear old signature to ensure users don't get confused on error with an old signature displayed */ ui->signatureOut_SM->clear(); - CBitcoinAddress addr(ui->addressIn_SM->text().toStdString()); + CBitbeanAddress addr(ui->addressIn_SM->text().toStdString()); if (!addr.IsValid()) { ui->addressIn_SM->setValid(false); @@ -186,7 +196,7 @@ void SignVerifyMessageDialog::on_addressBookButton_VM_clicked() void SignVerifyMessageDialog::on_verifyMessageButton_VM_clicked() { - CBitcoinAddress addr(ui->addressIn_VM->text().toStdString()); + CBitbeanAddress addr(ui->addressIn_VM->text().toStdString()); if (!addr.IsValid()) { ui->addressIn_VM->setValid(false); @@ -227,7 +237,7 @@ void SignVerifyMessageDialog::on_verifyMessageButton_VM_clicked() return; } - if (!(CBitcoinAddress(key.GetPubKey().GetID()) == addr)) + if (!(CBitbeanAddress(key.GetPubKey().GetID()) == addr)) { ui->statusLabel_VM->setStyleSheet("QLabel { color: red; }"); ui->statusLabel_VM->setText(QString("") + tr("Message verification failed.") + QString("")); diff --git a/src/qt/signverifymessagedialog.h b/src/qt/signverifymessagedialog.h index 5569c8b..5dd1c27 100644 --- a/src/qt/signverifymessagedialog.h +++ b/src/qt/signverifymessagedialog.h @@ -40,10 +40,14 @@ private slots: void on_signMessageButton_SM_clicked(); void on_copySignatureButton_SM_clicked(); void on_clearButton_SM_clicked(); + void on_closeButton_SM_clicked(); /* verify message */ void on_addressBookButton_VM_clicked(); void on_verifyMessageButton_VM_clicked(); void on_clearButton_VM_clicked(); + void on_closeButton_VM_clicked(); + + }; #endif // SIGNVERIFYMESSAGEDIALOG_H diff --git a/src/qt/transactiondesc.cpp b/src/qt/transactiondesc.cpp index 063e8f0..410ec6e 100644 --- a/src/qt/transactiondesc.cpp +++ b/src/qt/transactiondesc.cpp @@ -1,7 +1,7 @@ #include "transactiondesc.h" #include "guiutil.h" -#include "bitcoinunits.h" +#include "bitbeanunits.h" #include "main.h" #include "wallet.h" @@ -62,7 +62,7 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx) // // From // - if (wtx.IsCoinBase() || wtx.IsCoinStake()) + if (wtx.IsBeanBase() || wtx.IsBeanStake()) { strHTML += "" + tr("Source") + ": " + tr("Generated") + "
"; } @@ -88,7 +88,7 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx) { strHTML += "" + tr("From") + ": " + tr("unknown") + "
"; strHTML += "" + tr("To") + ": "; - strHTML += GUIUtil::HtmlEscape(CBitcoinAddress(address).ToString()); + strHTML += GUIUtil::HtmlEscape(CBitbeanAddress(address).ToString()); if (!wallet->mapAddressBook[address].empty()) strHTML += " (" + tr("own address") + ", " + tr("label") + ": " + GUIUtil::HtmlEscape(wallet->mapAddressBook[address]) + ")"; else @@ -110,7 +110,7 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx) // Online transaction std::string strAddress = wtx.mapValue["to"]; strHTML += "" + tr("To") + ": "; - CTxDestination dest = CBitcoinAddress(strAddress).Get(); + CTxDestination dest = CBitbeanAddress(strAddress).Get(); if (wallet->mapAddressBook.count(dest) && !wallet->mapAddressBook[dest].empty()) strHTML += GUIUtil::HtmlEscape(wallet->mapAddressBook[dest]) + " "; strHTML += GUIUtil::HtmlEscape(strAddress) + "
"; @@ -119,17 +119,17 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx) // // Amount // - if (wtx.IsCoinBase() && nCredit == 0) + if (wtx.IsBeanBase() && nCredit == 0) { // - // Coinbase + // Beanbase // int64_t nUnmatured = 0; BOOST_FOREACH(const CTxOut& txout, wtx.vout) nUnmatured += wallet->GetCredit(txout); strHTML += "" + tr("Credit") + ": "; if (wtx.IsInMainChain()) - strHTML += BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, nUnmatured)+ " (" + tr("matures in %n more block(s)", "", wtx.GetBlocksToMaturity()) + ")"; + strHTML += BitbeanUnits::formatWithUnit(BitbeanUnits::BitB, nUnmatured)+ " (" + tr("matures in %n more block(s)", "", wtx.GetBlocksToMaturity()) + ")"; else strHTML += "(" + tr("not accepted") + ")"; strHTML += "
"; @@ -139,7 +139,7 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx) // // Credit // - strHTML += "" + tr("Credit") + ": " + BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, nNet) + "
"; + strHTML += "" + tr("Credit") + ": " + BitbeanUnits::formatWithUnit(BitbeanUnits::BitB, nNet) + "
"; } else { @@ -170,12 +170,12 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx) strHTML += "" + tr("To") + ": "; if (wallet->mapAddressBook.count(address) && !wallet->mapAddressBook[address].empty()) strHTML += GUIUtil::HtmlEscape(wallet->mapAddressBook[address]) + " "; - strHTML += GUIUtil::HtmlEscape(CBitcoinAddress(address).ToString()); + strHTML += GUIUtil::HtmlEscape(CBitbeanAddress(address).ToString()); strHTML += "
"; } } - strHTML += "" + tr("Debit") + ": " + BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, -txout.nValue) + "
"; + strHTML += "" + tr("Debit") + ": " + BitbeanUnits::formatWithUnit(BitbeanUnits::BitB, -txout.nValue) + "
"; } if (fAllToMe) @@ -183,13 +183,13 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx) // Payment to self int64_t nChange = wtx.GetChange(); int64_t nValue = nCredit - nChange; - strHTML += "" + tr("Debit") + ": " + BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, -nValue) + "
"; - strHTML += "" + tr("Credit") + ": " + BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, nValue) + "
"; + strHTML += "" + tr("Debit") + ": " + BitbeanUnits::formatWithUnit(BitbeanUnits::BitB, -nValue) + "
"; + strHTML += "" + tr("Credit") + ": " + BitbeanUnits::formatWithUnit(BitbeanUnits::BitB, nValue) + "
"; } int64_t nTxFee = nDebit - wtx.GetValueOut(); if (nTxFee > 0) - strHTML += "" + tr("Transaction fee") + ": " + BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, -nTxFee) + "
"; + strHTML += "" + tr("Transaction fee") + ": " + BitbeanUnits::formatWithUnit(BitbeanUnits::BitB, -nTxFee) + "
"; } else { @@ -198,14 +198,14 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx) // BOOST_FOREACH(const CTxIn& txin, wtx.vin) if (wallet->IsMine(txin)) - strHTML += "" + tr("Debit") + ": " + BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, -wallet->GetDebit(txin)) + "
"; + strHTML += "" + tr("Debit") + ": " + BitbeanUnits::formatWithUnit(BitbeanUnits::BitB, -wallet->GetDebit(txin)) + "
"; BOOST_FOREACH(const CTxOut& txout, wtx.vout) if (wallet->IsMine(txout)) - strHTML += "" + tr("Credit") + ": " + BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, wallet->GetCredit(txout)) + "
"; + strHTML += "" + tr("Credit") + ": " + BitbeanUnits::formatWithUnit(BitbeanUnits::BitB, wallet->GetCredit(txout)) + "
"; } } - strHTML += "" + tr("Net amount") + ": " + BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, nNet, true) + "
"; + strHTML += "" + tr("Net amount") + ": " + BitbeanUnits::formatWithUnit(BitbeanUnits::BitB, nNet, true) + "
"; // // Message @@ -217,8 +217,8 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx) strHTML += "" + tr("Transaction ID") + ": " + wtx.GetHash().ToString().c_str() + "
"; - if (wtx.IsCoinBase() || wtx.IsCoinStake()) - strHTML += "
" + tr("Generated coins must mature 110 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.") + "
"; + if (wtx.IsBeanBase() || wtx.IsBeanStake()) + strHTML += "
" + tr("Generated beans must mature 110 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 view @@ -228,10 +228,10 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx) strHTML += "

" + tr("Debug information") + "

"; BOOST_FOREACH(const CTxIn& txin, wtx.vin) if(wallet->IsMine(txin)) - strHTML += "" + tr("Debit") + ": " + BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, -wallet->GetDebit(txin)) + "
"; + strHTML += "" + tr("Debit") + ": " + BitbeanUnits::formatWithUnit(BitbeanUnits::BitB, -wallet->GetDebit(txin)) + "
"; BOOST_FOREACH(const CTxOut& txout, wtx.vout) if(wallet->IsMine(txout)) - strHTML += "" + tr("Credit") + ": " + BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, wallet->GetCredit(txout)) + "
"; + strHTML += "" + tr("Credit") + ": " + BitbeanUnits::formatWithUnit(BitbeanUnits::BitB, wallet->GetCredit(txout)) + "
"; strHTML += "
" + tr("Transaction") + ":
"; strHTML += GUIUtil::HtmlEscape(wtx.ToString(), true); @@ -259,9 +259,9 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx) { if (wallet->mapAddressBook.count(address) && !wallet->mapAddressBook[address].empty()) strHTML += GUIUtil::HtmlEscape(wallet->mapAddressBook[address]) + " "; - strHTML += QString::fromStdString(CBitcoinAddress(address).ToString()); + strHTML += QString::fromStdString(CBitbeanAddress(address).ToString()); } - strHTML = strHTML + " " + tr("Amount") + "=" + BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, vout.nValue); + strHTML = strHTML + " " + tr("Amount") + "=" + BitbeanUnits::formatWithUnit(BitbeanUnits::BitB, vout.nValue); strHTML = strHTML + " IsMine=" + (wallet->IsMine(vout) ? tr("true") : tr("false")) + ""; } } diff --git a/src/qt/transactiondescdialog.cpp b/src/qt/transactiondescdialog.cpp index 3bd4808..253c283 100644 --- a/src/qt/transactiondescdialog.cpp +++ b/src/qt/transactiondescdialog.cpp @@ -18,3 +18,8 @@ TransactionDescDialog::~TransactionDescDialog() { delete ui; } + +void TransactionDescDialog::on_closeButton_clicked() +{ + close(); +} diff --git a/src/qt/transactiondescdialog.h b/src/qt/transactiondescdialog.h index e86fb58..4db74f7 100644 --- a/src/qt/transactiondescdialog.h +++ b/src/qt/transactiondescdialog.h @@ -21,6 +21,9 @@ class TransactionDescDialog : public QDialog private: Ui::TransactionDescDialog *ui; + +private slots: + void on_closeButton_clicked(); }; #endif // TRANSACTIONDESCDIALOG_H diff --git a/src/qt/transactionrecord.cpp b/src/qt/transactionrecord.cpp index 76061fd..a9c3365 100644 --- a/src/qt/transactionrecord.cpp +++ b/src/qt/transactionrecord.cpp @@ -7,9 +7,9 @@ */ bool TransactionRecord::showTransaction(const CWalletTx &wtx) { - if (wtx.IsCoinBase()) + if (wtx.IsBeanBase()) { - // Ensures we show generated coins / mined transactions at depth 1 + // Ensures we show generated beans / mined transactions at depth 1 if (!wtx.IsInMainChain()) { return false; @@ -31,7 +31,7 @@ QList TransactionRecord::decomposeTransaction(const CWallet * uint256 hash = wtx.GetHash(), hashPrev = 0; std::map mapValue = wtx.mapValue; - if (nNet > 0 || wtx.IsCoinBase() || wtx.IsCoinStake()) + if (nNet > 0 || wtx.IsBeanBase() || wtx.IsBeanStake()) { // // Credit @@ -46,9 +46,9 @@ QList TransactionRecord::decomposeTransaction(const CWallet * sub.credit = txout.nValue; if (ExtractDestination(txout.scriptPubKey, address) && IsMine(*wallet, address)) { - // Received by Bitcoin Address + // Received by Bitbean Address sub.type = TransactionRecord::RecvWithAddress; - sub.address = CBitcoinAddress(address).ToString(); + sub.address = CBitbeanAddress(address).ToString(); } else { @@ -56,17 +56,17 @@ QList TransactionRecord::decomposeTransaction(const CWallet * sub.type = TransactionRecord::RecvFromOther; sub.address = mapValue["from"]; } - if (wtx.IsCoinBase()) + if (wtx.IsBeanBase()) { // Generated (proof-of-work) sub.type = TransactionRecord::Generated; } - if (wtx.IsCoinStake()) + if (wtx.IsBeanStake()) { // Generated (proof-of-stake) if (hashPrev == hash) - continue; // last coinstake output + continue; // last beansprout output sub.type = TransactionRecord::Generated; sub.credit = nNet > 0 ? nNet : wtx.GetValueOut() - nDebit; @@ -118,9 +118,9 @@ QList TransactionRecord::decomposeTransaction(const CWallet * CTxDestination address; if (ExtractDestination(txout.scriptPubKey, address)) { - // Sent to Bitcoin Address + // Sent to Bitbean Address sub.type = TransactionRecord::SendToAddress; - sub.address = CBitcoinAddress(address).ToString(); + sub.address = CBitbeanAddress(address).ToString(); } else { @@ -166,7 +166,7 @@ void TransactionRecord::updateStatus(const CWalletTx &wtx) // Sort order, unrecorded transactions sort to the top status.sortKey = strprintf("%010d-%01d-%010u-%03d", (pindex ? pindex->nHeight : std::numeric_limits::max()), - (wtx.IsCoinBase() ? 1 : 0), + (wtx.IsBeanBase() ? 1 : 0), wtx.nTimeReceived, idx); status.countsForBalance = wtx.IsTrusted() && !(wtx.GetBlocksToMaturity() > 0); diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index aece3e7..7b265f0 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -6,7 +6,7 @@ #include "walletmodel.h" #include "optionsmodel.h" #include "addresstablemodel.h" -#include "bitcoinunits.h" +#include "bitbeanunits.h" #include "wallet.h" #include "ui_interface.h" @@ -358,7 +358,7 @@ QString TransactionTableModel::formatTxType(const TransactionRecord *wtx) const case TransactionRecord::SendToSelf: return tr("Payment to yourself"); case TransactionRecord::Generated: - return tr("Mined"); + return tr("SPROUT"); default: return QString(); } @@ -369,7 +369,7 @@ QVariant TransactionTableModel::txAddressDecoration(const TransactionRecord *wtx switch(wtx->type) { case TransactionRecord::Generated: - return QIcon(":/icons/tx_mined"); + return QIcon(":/icons/sprout"); case TransactionRecord::RecvWithAddress: case TransactionRecord::RecvFromOther: return QIcon(":/icons/tx_input"); @@ -423,7 +423,7 @@ QVariant TransactionTableModel::addressColor(const TransactionRecord *wtx) const QString TransactionTableModel::formatTxAmount(const TransactionRecord *wtx, bool showUnconfirmed) const { - QString str = BitcoinUnits::format(walletModel->getOptionsModel()->getDisplayUnit(), wtx->credit + wtx->debit); + QString str = BitbeanUnits::format(walletModel->getOptionsModel()->getDisplayUnit(), wtx->credit + wtx->debit); if(showUnconfirmed) { if(!wtx->status.countsForBalance) diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index a4eb9f7..01a8db1 100644 --- a/src/qt/transactionview.cpp +++ b/src/qt/transactionview.cpp @@ -5,7 +5,7 @@ #include "walletmodel.h" #include "addresstablemodel.h" #include "transactiontablemodel.h" -#include "bitcoinunits.h" +#include "bitbeanunits.h" #include "csvmodelwriter.h" #include "transactiondescdialog.h" #include "editaddressdialog.h" @@ -257,7 +257,7 @@ void TransactionView::changedAmount(const QString &amount) if(!transactionProxyModel) return; qint64 amount_parsed = 0; - if(BitcoinUnits::parse(model->getOptionsModel()->getDisplayUnit(), amount, &amount_parsed)) + if(BitbeanUnits::parse(model->getOptionsModel()->getDisplayUnit(), amount, &amount_parsed)) { transactionProxyModel->setMinAmount(amount_parsed); } diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index de71c9a..495f75d 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -125,11 +125,11 @@ void WalletModel::updateAddressBook(const QString &address, const QString &label bool WalletModel::validateAddress(const QString &address) { - CBitcoinAddress addressParsed(address.toStdString()); + CBitbeanAddress addressParsed(address.toStdString()); return addressParsed.IsValid(); } -WalletModel::SendCoinsReturn WalletModel::sendCoins(const QList &recipients, const CCoinControl *coinControl) +WalletModel::SendBeansReturn WalletModel::sendBeans(const QList &recipients, const CBeanControl *beanControl) { qint64 total = 0; QSet setAddress; @@ -141,7 +141,7 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(const QList vCoins; - wallet->AvailableCoins(vCoins, true, coinControl); + std::vector vBeans; + wallet->AvailableBeans(vBeans, true, beanControl); - BOOST_FOREACH(const COutput& out, vCoins) + BOOST_FOREACH(const COutput& out, vBeans) nBalance += out.tx->vout[out.i].nValue; if(total > nBalance) @@ -175,7 +175,7 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(const QList nBalance) { - return SendCoinsReturn(AmountWithFeeExceedsBalance, nTransactionFee); + return SendBeansReturn(AmountWithFeeExceedsBalance, nTransactionFee); } { @@ -183,23 +183,23 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(const QList > vecSend; - foreach(const SendCoinsRecipient &rcp, recipients) + foreach(const SendBeansRecipient &rcp, recipients) { CScript scriptPubKey; - scriptPubKey.SetDestination(CBitcoinAddress(rcp.address.toStdString()).Get()); + scriptPubKey.SetDestination(CBitbeanAddress(rcp.address.toStdString()).Get()); vecSend.push_back(make_pair(scriptPubKey, rcp.amount)); } CWalletTx wtx; CReserveKey keyChange(wallet); int64_t nFeeRequired = 0; - bool fCreated = wallet->CreateTransaction(vecSend, wtx, keyChange, nFeeRequired, coinControl); + bool fCreated = wallet->CreateTransaction(vecSend, wtx, keyChange, nFeeRequired, beanControl); if(!fCreated) { if((total + nFeeRequired) > nBalance) // FIXME: could cause collisions in the future { - return SendCoinsReturn(AmountWithFeeExceedsBalance, nFeeRequired); + return SendBeansReturn(AmountWithFeeExceedsBalance, nFeeRequired); } return TransactionCreationFailed; } @@ -215,10 +215,10 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(const QListcs_wallet); @@ -233,7 +233,7 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(const QList& vOutpoints, std::vect } } -// AvailableCoins + LockedCoins grouped by wallet address (put change in one group with wallet address) -void WalletModel::listCoins(std::map >& mapCoins) const +// AvailableBeans + LockedBeans grouped by wallet address (put change in one group with wallet address) +void WalletModel::listBeans(std::map >& mapBeans) const { - std::vector vCoins; - wallet->AvailableCoins(vCoins); - std::vector vLockedCoins; + std::vector vBeans; + wallet->AvailableBeans(vBeans); + std::vector vLockedBeans; - // add locked coins - BOOST_FOREACH(const COutPoint& outpoint, vLockedCoins) + // add locked beans + BOOST_FOREACH(const COutPoint& outpoint, vLockedBeans) { if (!wallet->mapWallet.count(outpoint.hash)) continue; int nDepth = wallet->mapWallet[outpoint.hash].GetDepthInMainChain(); if (nDepth < 0) continue; COutput out(&wallet->mapWallet[outpoint.hash], outpoint.n, nDepth); - vCoins.push_back(out); + vBeans.push_back(out); } - BOOST_FOREACH(const COutput& out, vCoins) + BOOST_FOREACH(const COutput& out, vBeans) { COutput cout = out; @@ -443,26 +443,26 @@ void WalletModel::listCoins(std::map >& mapCoins) CTxDestination address; if(!ExtractDestination(cout.tx->vout[cout.i].scriptPubKey, address)) continue; - mapCoins[CBitcoinAddress(address).ToString().c_str()].push_back(out); + mapBeans[CBitbeanAddress(address).ToString().c_str()].push_back(out); } } -bool WalletModel::isLockedCoin(uint256 hash, unsigned int n) const +bool WalletModel::isLockedBean(uint256 hash, unsigned int n) const { return false; } -void WalletModel::lockCoin(COutPoint& output) +void WalletModel::lockBean(COutPoint& output) { return; } -void WalletModel::unlockCoin(COutPoint& output) +void WalletModel::unlockBean(COutPoint& output) { return; } -void WalletModel::listLockedCoins(std::vector& vOutpts) +void WalletModel::listLockedBeans(std::vector& vOutpts) { return; } diff --git a/src/qt/walletmodel.h b/src/qt/walletmodel.h index b33ff75..d61b989 100644 --- a/src/qt/walletmodel.h +++ b/src/qt/walletmodel.h @@ -16,13 +16,13 @@ class CPubKey; class COutput; class COutPoint; class uint256; -class CCoinControl; +class CBeanControl; QT_BEGIN_NAMESPACE class QTimer; QT_END_NAMESPACE -class SendCoinsRecipient +class SendBeansRecipient { public: QString address; @@ -30,7 +30,7 @@ class SendCoinsRecipient qint64 amount; }; -/** Interface to Bitcoin wallet from Qt view code. */ +/** Interface to Bitbean wallet from Qt view code. */ class WalletModel : public QObject { Q_OBJECT @@ -39,7 +39,7 @@ class WalletModel : public QObject explicit WalletModel(CWallet *wallet, OptionsModel *optionsModel, QObject *parent = 0); ~WalletModel(); - enum StatusCode // Returned by sendCoins + enum StatusCode // Returned by sendBeans { OK, InvalidAmount, @@ -73,10 +73,10 @@ class WalletModel : public QObject // Check address for validity bool validateAddress(const QString &address); - // Return status record for SendCoins, contains error id + information - struct SendCoinsReturn + // Return status record for SendBeans, contains error id + information + struct SendBeansReturn { - SendCoinsReturn(StatusCode status=Aborted, + SendBeansReturn(StatusCode status=Aborted, qint64 fee=0, QString hex=QString()): status(status), fee(fee), hex(hex) {} @@ -85,8 +85,8 @@ class WalletModel : public QObject QString hex; // is filled with the transaction hash if status is "OK" }; - // Send coins to a list of recipients - SendCoinsReturn sendCoins(const QList &recipients, const CCoinControl *coinControl=NULL); + // Send beans to a list of recipients + SendBeansReturn sendBeans(const QList &recipients, const CBeanControl *beanControl=NULL); // Wallet encryption bool setWalletEncrypted(bool encrypted, const SecureString &passphrase); @@ -120,11 +120,11 @@ class WalletModel : public QObject bool getPubKey(const CKeyID &address, CPubKey& vchPubKeyOut) const; void getOutputs(const std::vector& vOutpoints, std::vector& vOutputs); - void listCoins(std::map >& mapCoins) const; - bool isLockedCoin(uint256 hash, unsigned int n) const; - void lockCoin(COutPoint& output); - void unlockCoin(COutPoint& output); - void listLockedCoins(std::vector& vOutpts); + void listBeans(std::map >& mapBeans) const; + bool isLockedBean(uint256 hash, unsigned int n) const; + void lockBean(COutPoint& output); + void unlockBean(COutPoint& output); + void listLockedBeans(std::vector& vOutpts); private: CWallet *wallet; diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp index 097a17d..037e326 100644 --- a/src/rpcblockchain.cpp +++ b/src/rpcblockchain.cpp @@ -4,7 +4,7 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "main.h" -#include "bitcoinrpc.h" +#include "bitbeanrpc.h" using namespace json_spirit; using namespace std; @@ -178,7 +178,7 @@ Value getdifficulty(const Array& params, bool fHelp) Object obj; obj.push_back(Pair("proof-of-work", GetDifficulty())); obj.push_back(Pair("proof-of-stake", GetDifficulty(GetLastBlockIndex(pindexBest, true)))); - obj.push_back(Pair("search-interval", (int)nLastCoinStakeSearchInterval)); + obj.push_back(Pair("search-interval", (int)nLastBeanStakeSearchInterval)); return obj; } @@ -274,7 +274,7 @@ Value getblockbynumber(const Array& params, bool fHelp) return blockToJSON(block, pblockindex, params.size() > 1 ? params[1].get_bool() : false); } -// ppcoin: get information of sync-checkpoint +// ppbean: get information of sync-checkpoint Value getcheckpoint(const Array& params, bool fHelp) { if (fHelp || params.size() != 0) diff --git a/src/rpcdump.cpp b/src/rpcdump.cpp index b01ddce..30bba93 100644 --- a/src/rpcdump.cpp +++ b/src/rpcdump.cpp @@ -1,4 +1,5 @@ // Copyright (c) 2009-2012 Bitcoin Developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -6,7 +7,7 @@ #include #include "init.h" // for pwalletMain -#include "bitcoinrpc.h" +#include "bitbeanrpc.h" #include "ui_interface.h" #include "base58.h" @@ -116,7 +117,7 @@ Value importprivkey(const Array& params, bool fHelp) string strLabel = ""; if (params.size() > 1) strLabel = params[1].get_str(); - CBitcoinSecret vchSecret; + CBitbeanSecret vchSecret; bool fGood = vchSecret.SetString(strSecret); if (!fGood) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid private key"); @@ -181,7 +182,7 @@ Value importwallet(const Array& params, bool fHelp) boost::split(vstr, line, boost::is_any_of(" ")); if (vstr.size() < 2) continue; - CBitcoinSecret vchSecret; + CBitbeanSecret vchSecret; if (!vchSecret.SetString(vstr[0])) continue; @@ -192,7 +193,7 @@ Value importwallet(const Array& params, bool fHelp) CKeyID keyid = key.GetPubKey().GetID(); if (pwalletMain->HaveKey(keyid)) { - printf("Skipping import of %s (key already present)\n", CBitcoinAddress(keyid).ToString().c_str()); + printf("Skipping import of %s (key already present)\n", CBitbeanAddress(keyid).ToString().c_str()); continue; } int64_t nTime = DecodeDumpTime(vstr[1]); @@ -210,7 +211,7 @@ Value importwallet(const Array& params, bool fHelp) fLabel = true; } } - printf("Importing %s...\n", CBitcoinAddress(keyid).ToString().c_str()); + printf("Importing %s...\n", CBitbeanAddress(keyid).ToString().c_str()); if (!pwalletMain->AddKey(key)) { fGood = false; continue; @@ -251,7 +252,7 @@ Value dumpprivkey(const Array& params, bool fHelp) EnsureWalletIsUnlocked(); string strAddress = params[0].get_str(); - CBitcoinAddress address; + CBitbeanAddress address; if (!address.SetString(strAddress)) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid BitBean address"); if (fWalletUnlockStakingOnly) @@ -263,7 +264,7 @@ Value dumpprivkey(const Array& params, bool fHelp) bool fCompressed; if (!pwalletMain->GetSecret(keyID, vchSecret, fCompressed)) throw JSONRPCError(RPC_WALLET_ERROR, "Private key for address " + strAddress + " is not known"); - return CBitcoinSecret(vchSecret, fCompressed).ToString(); + return CBitbeanSecret(vchSecret, fCompressed).ToString(); } Value dumpwallet(const Array& params, bool fHelp) @@ -305,20 +306,20 @@ Value dumpwallet(const Array& params, bool fHelp) for (std::vector >::const_iterator it = vKeyBirth.begin(); it != vKeyBirth.end(); it++) { const CKeyID &keyid = it->second; std::string strTime = EncodeDumpTime(it->first); - std::string strAddr = CBitcoinAddress(keyid).ToString(); + std::string strAddr = CBitbeanAddress(keyid).ToString(); bool IsCompressed; CKey key; if (pwalletMain->GetKey(keyid, key)) { if (pwalletMain->mapAddressBook.count(keyid)) { CSecret secret = key.GetSecret(IsCompressed); - file << strprintf("%s %s label=%s # addr=%s\n", CBitcoinSecret(secret, IsCompressed).ToString().c_str(), strTime.c_str(), EncodeDumpString(pwalletMain->mapAddressBook[keyid]).c_str(), strAddr.c_str()); + file << strprintf("%s %s label=%s # addr=%s\n", CBitbeanSecret(secret, IsCompressed).ToString().c_str(), strTime.c_str(), EncodeDumpString(pwalletMain->mapAddressBook[keyid]).c_str(), strAddr.c_str()); } else if (setKeyPool.count(keyid)) { CSecret secret = key.GetSecret(IsCompressed); - file << strprintf("%s %s reserve=1 # addr=%s\n", CBitcoinSecret(secret, IsCompressed).ToString().c_str(), strTime.c_str(), strAddr.c_str()); + file << strprintf("%s %s reserve=1 # addr=%s\n", CBitbeanSecret(secret, IsCompressed).ToString().c_str(), strTime.c_str(), strAddr.c_str()); } else { CSecret secret = key.GetSecret(IsCompressed); - file << strprintf("%s %s change=1 # addr=%s\n", CBitcoinSecret(secret, IsCompressed).ToString().c_str(), strTime.c_str(), strAddr.c_str()); + file << strprintf("%s %s change=1 # addr=%s\n", CBitbeanSecret(secret, IsCompressed).ToString().c_str(), strTime.c_str(), strAddr.c_str()); } } } diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp index 450f802..6cd844e 100644 --- a/src/rpcmining.cpp +++ b/src/rpcmining.cpp @@ -1,5 +1,6 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -8,7 +9,7 @@ #include "txdb.h" #include "init.h" #include "miner.h" -#include "bitcoinrpc.h" +#include "bitbeanrpc.h" using namespace json_spirit; using namespace std; @@ -40,7 +41,7 @@ Value getmininginfo(const Array& params, bool fHelp) diff.push_back(Pair("Proof of Work", GetDifficulty())); diff.push_back(Pair("Proof of Stake", GetDifficulty(GetLastBlockIndex(pindexBest, true)))); - diff.push_back(Pair("Search Interval", (int)nLastCoinStakeSearchInterval)); + diff.push_back(Pair("Search Interval", (int)nLastBeanStakeSearchInterval)); obj.push_back(Pair("Difficulty", diff)); obj.push_back(Pair("Block Value", (uint64_t)GetProofOfWorkReward(0))); @@ -54,7 +55,7 @@ Value getmininginfo(const Array& params, bool fHelp) weight.push_back(Pair("Combined", (uint64_t)nWeight)); obj.push_back(Pair("Stake Weight", weight)); - obj.push_back(Pair("Stake Interest", (uint64_t)COIN_YEAR_REWARD)); + obj.push_back(Pair("Stake Interest", (uint64_t)bean_YEAR_REWARD)); obj.push_back(Pair("Testnet", fTestNet)); return obj; } @@ -70,7 +71,7 @@ Value getstakinginfo(const Array& params, bool fHelp) pwalletMain->GetStakeWeight(*pwalletMain, nMinWeight, nMaxWeight, nWeight); uint64_t nNetworkWeight = GetPoSKernelPS(); - bool staking = nLastCoinStakeSearchInterval && nWeight; + bool staking = nLastBeanStakeSearchInterval && nWeight; int nExpectedTime = staking ? (nTargetSpacing * nNetworkWeight / nWeight) : -1; Object obj; @@ -84,7 +85,7 @@ Value getstakinginfo(const Array& params, bool fHelp) obj.push_back(Pair("Pooled Tx", (uint64_t)mempool.size())); obj.push_back(Pair("Difficulty", GetDifficulty(GetLastBlockIndex(pindexBest, true)))); - obj.push_back(Pair("Search Interval", (int)nLastCoinStakeSearchInterval)); + obj.push_back(Pair("Search Interval", (int)nLastBeanStakeSearchInterval)); obj.push_back(Pair("Weight", (uint64_t)nWeight)); obj.push_back(Pair("Net Stake Weight", (uint64_t)nNetworkWeight)); @@ -98,8 +99,8 @@ Value getworkex(const Array& params, bool fHelp) { if (fHelp || params.size() > 2) throw runtime_error( - "getworkex [data, coinbase]\n" - "If [data, coinbase] is not specified, returns extended work data.\n" + "getworkex [data, beanbase]\n" + "If [data, beanbase] is not specified, returns extended work data.\n" ); if (vNodes.empty()) @@ -164,7 +165,7 @@ Value getworkex(const Array& params, bool fHelp) uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256(); - CTransaction coinbaseTx = pblock->vtx[0]; + CTransaction beanbaseTx = pblock->vtx[0]; std::vector merkle = pblock->GetMerkleBranch(0); Object result; @@ -172,8 +173,8 @@ Value getworkex(const Array& params, bool fHelp) result.push_back(Pair("target", HexStr(BEGIN(hashTarget), END(hashTarget)))); CDataStream ssTx(SER_NETWORK, PROTOCOL_VERSION); - ssTx << coinbaseTx; - result.push_back(Pair("coinbase", HexStr(ssTx.begin(), ssTx.end()))); + ssTx << beanbaseTx; + result.push_back(Pair("beanbase", HexStr(ssTx.begin(), ssTx.end()))); Array merkle_arr; @@ -190,10 +191,10 @@ Value getworkex(const Array& params, bool fHelp) { // Parse parameters vector vchData = ParseHex(params[0].get_str()); - vector coinbase; + vector beanbase; if(params.size() == 2) - coinbase = ParseHex(params[1].get_str()); + beanbase = ParseHex(params[1].get_str()); if (vchData.size() != 128) throw JSONRPCError(-8, "Invalid parameter"); @@ -212,10 +213,10 @@ Value getworkex(const Array& params, bool fHelp) pblock->nTime = pdata->nTime; pblock->nNonce = pdata->nNonce; - if(coinbase.size() == 0) + if(beanbase.size() == 0) pblock->vtx[0].vin[0].scriptSig = mapNewBlock[pdata->hashMerkleRoot].second; else - CDataStream(coinbase, SER_NETWORK, PROTOCOL_VERSION) >> pblock->vtx[0]; // FIXME - HACK! + CDataStream(beanbase, SER_NETWORK, PROTOCOL_VERSION) >> pblock->vtx[0]; // FIXME - HACK! pblock->hashMerkleRoot = pblock->BuildMerkleTree(); @@ -348,9 +349,9 @@ Value getblocktemplate(const Array& params, bool fHelp) "Returns data needed to construct a block to work on:\n" " \"version\" : block version\n" " \"previousblockhash\" : hash of current highest block\n" - " \"transactions\" : contents of non-coinbase transactions that should be included in the next block\n" - " \"coinbaseaux\" : data that should be included in coinbase\n" - " \"coinbasevalue\" : maximum allowable input to coinbase transaction, including the generation award and transaction fees\n" + " \"transactions\" : contents of non-beanbase transactions that should be included in the next block\n" + " \"beanbaseaux\" : data that should be included in beanbase\n" + " \"beanbasevalue\" : maximum allowable input to beanbase transaction, including the generation award and transaction fees\n" " \"target\" : hash target\n" " \"mintime\" : minimum timestamp appropriate for next block\n" " \"curtime\" : current timestamp\n" @@ -360,7 +361,7 @@ Value getblocktemplate(const Array& params, bool fHelp) " \"sizelimit\" : limit of block size\n" " \"bits\" : compressed target of next block\n" " \"height\" : height of the next block\n" - "See https://en.bitcoin.it/wiki/BIP_0022 for full specification."); + "See https://en.bitbean.it/wiki/BIP_0022 for full specification."); std::string strMode = "template"; if (params.size() > 0) @@ -434,7 +435,7 @@ Value getblocktemplate(const Array& params, bool fHelp) uint256 txHash = tx.GetHash(); setTxIndex[txHash] = i++; - if (tx.IsCoinBase() || tx.IsCoinStake()) + if (tx.IsBeanBase() || tx.IsBeanStake()) continue; Object entry; @@ -469,7 +470,7 @@ Value getblocktemplate(const Array& params, bool fHelp) } Object aux; - aux.push_back(Pair("flags", HexStr(COINBASE_FLAGS.begin(), COINBASE_FLAGS.end()))); + aux.push_back(Pair("flags", HexStr(beanBASE_FLAGS.begin(), beanBASE_FLAGS.end()))); uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256(); @@ -485,8 +486,8 @@ Value getblocktemplate(const Array& params, bool fHelp) result.push_back(Pair("version", pblock->nVersion)); result.push_back(Pair("previousblockhash", pblock->hashPrevBlock.GetHex())); result.push_back(Pair("transactions", transactions)); - result.push_back(Pair("coinbaseaux", aux)); - result.push_back(Pair("coinbasevalue", (int64_t)pblock->vtx[0].vout[0].nValue)); + result.push_back(Pair("beanbaseaux", aux)); + result.push_back(Pair("beanbasevalue", (int64_t)pblock->vtx[0].vout[0].nValue)); result.push_back(Pair("target", hashTarget.GetHex())); result.push_back(Pair("mintime", (int64_t)pindexPrev->GetPastTimeLimit()+1)); result.push_back(Pair("mutable", aMutable)); @@ -507,7 +508,7 @@ Value submitblock(const Array& params, bool fHelp) "submitblock [optional-params-obj]\n" "[optional-params-obj] parameter is currently ignored.\n" "Attempts to submit new block to network.\n" - "See https://en.bitcoin.it/wiki/BIP_0022 for full specification."); + "See https://en.bitbean.it/wiki/BIP_0022 for full specification."); vector blockData(ParseHex(params[0].get_str())); CDataStream ssBlock(blockData, SER_NETWORK, PROTOCOL_VERSION); diff --git a/src/rpcnet.cpp b/src/rpcnet.cpp index ed378cf..04dc821 100644 --- a/src/rpcnet.cpp +++ b/src/rpcnet.cpp @@ -1,9 +1,10 @@ // Copyright (c) 2009-2012 Bitcoin Developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "net.h" -#include "bitcoinrpc.h" +#include "bitbeanrpc.h" #include "alert.h" #include "wallet.h" #include "db.h" @@ -68,7 +69,7 @@ Value getpeerinfo(const Array& params, bool fHelp) return ret; } -// ppcoin: send alert. +// ppbean: send alert. // There is a known deadlock situation with ThreadMessageHandler // ThreadMessageHandler: holds cs_vSend and acquiring cs_main in SendMessages() // ThreadRPCServer: holds cs_main and acquiring cs_vSend in alert.RelayTo()/PushMessage()/BeginMessage() diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp index 29c6f9b..34f14d7 100644 --- a/src/rpcrawtransaction.cpp +++ b/src/rpcrawtransaction.cpp @@ -1,12 +1,13 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // 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" -#include "bitcoinrpc.h" +#include "bitbeanrpc.h" #include "txdb.h" #include "init.h" #include "main.h" @@ -40,7 +41,7 @@ void ScriptPubKeyToJSON(const CScript& scriptPubKey, Object& out, bool fIncludeH Array a; BOOST_FOREACH(const CTxDestination& addr, addresses) - a.push_back(CBitcoinAddress(addr).ToString()); + a.push_back(CBitbeanAddress(addr).ToString()); out.push_back(Pair("addresses", a)); } @@ -54,8 +55,8 @@ void TxToJSON(const CTransaction& tx, const uint256 hashBlock, Object& entry) BOOST_FOREACH(const CTxIn& txin, tx.vin) { Object in; - if (tx.IsCoinBase()) - in.push_back(Pair("coinbase", HexStr(txin.scriptSig.begin(), txin.scriptSig.end()))); + if (tx.IsBeanBase()) + in.push_back(Pair("beanbase", HexStr(txin.scriptSig.begin(), txin.scriptSig.end()))); else { in.push_back(Pair("txid", txin.prevout.hash.GetHex())); @@ -158,13 +159,13 @@ Value listunspent(const Array& params, bool fHelp) if (params.size() > 1) nMaxDepth = params[1].get_int(); - set setAddress; + set setAddress; if (params.size() > 2) { Array inputs = params[2].get_array(); BOOST_FOREACH(Value& input, inputs) { - CBitcoinAddress address(input.get_str()); + CBitbeanAddress address(input.get_str()); if (!address.IsValid()) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid BitBean address: ")+input.get_str()); if (setAddress.count(address)) @@ -175,7 +176,7 @@ Value listunspent(const Array& params, bool fHelp) Array results; vector vecOutputs; - pwalletMain->AvailableCoins(vecOutputs, false); + pwalletMain->AvailableBeans(vecOutputs, false); BOOST_FOREACH(const COutput& out, vecOutputs) { if (out.nDepth < nMinDepth || out.nDepth > nMaxDepth) @@ -199,7 +200,7 @@ Value listunspent(const Array& params, bool fHelp) CTxDestination address; if (ExtractDestination(out.tx->vout[out.i].scriptPubKey, address)) { - entry.push_back(Pair("address", CBitcoinAddress(address).ToString())); + entry.push_back(Pair("address", CBitbeanAddress(address).ToString())); if (pwalletMain->mapAddressBook.count(address)) entry.push_back(Pair("account", pwalletMain->mapAddressBook[address])); } @@ -253,10 +254,10 @@ Value createrawtransaction(const Array& params, bool fHelp) rawTx.vin.push_back(in); } - set setAddress; + set setAddress; BOOST_FOREACH(const Pair& s, sendTo) { - CBitcoinAddress address(s.name_); + CBitbeanAddress address(s.name_); if (!address.IsValid()) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid BitBean address: ")+s.name_); @@ -321,7 +322,7 @@ Value decodescript(const Array& params, bool fHelp) } ScriptPubKeyToJSON(script, r, false); - r.push_back(Pair("p2sh", CBitcoinAddress(script.GetID()).ToString())); + r.push_back(Pair("p2sh", CBitbeanAddress(script.GetID()).ToString())); return r; } @@ -444,7 +445,7 @@ Value signrawtransaction(const Array& params, bool fHelp) Array keys = params[2].get_array(); BOOST_FOREACH(Value k, keys) { - CBitcoinSecret vchSecret; + CBitbeanSecret vchSecret; bool fGood = vchSecret.SetString(k.get_str()); if (!fGood) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY,"Invalid private key"); diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp index 56b43b6..283ec4e 100644 --- a/src/rpcwallet.cpp +++ b/src/rpcwallet.cpp @@ -1,11 +1,12 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // 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" -#include "bitcoinrpc.h" +#include "bitbeanrpc.h" #include "init.h" #include "base58.h" @@ -48,7 +49,7 @@ void WalletTxToJSON(const CWalletTx& wtx, Object& entry) { int confirms = wtx.GetDepthInMainChain(); entry.push_back(Pair("confirmations", confirms)); - if (wtx.IsCoinBase() || wtx.IsCoinStake()) + if (wtx.IsBeanBase() || wtx.IsBeanStake()) entry.push_back(Pair("generated", true)); if (confirms > 0) { @@ -116,7 +117,7 @@ Value getnewpubkey(const Array& params, bool fHelp) if (fHelp || params.size() > 1) throw runtime_error( "getnewpubkey [account]\n" - "Returns new public key for coinbase generation."); + "Returns new public key for beanbase generation."); // Parse the account first so we don't generate a key if there's an error string strAccount; @@ -164,11 +165,11 @@ Value getnewaddress(const Array& params, bool fHelp) pwalletMain->SetAddressBookName(keyID, strAccount); - return CBitcoinAddress(keyID).ToString(); + return CBitbeanAddress(keyID).ToString(); } -CBitcoinAddress GetAccountAddress(string strAccount, bool bForceNew=false) +CBitbeanAddress GetAccountAddress(string strAccount, bool bForceNew=false) { CWalletDB walletdb(pwalletMain->strWalletFile); @@ -203,7 +204,7 @@ CBitcoinAddress GetAccountAddress(string strAccount, bool bForceNew=false) walletdb.WriteAccount(strAccount, account); } - return CBitcoinAddress(account.vchPubKey.GetID()); + return CBitbeanAddress(account.vchPubKey.GetID()); } Value getaccountaddress(const Array& params, bool fHelp) @@ -232,7 +233,7 @@ Value setaccount(const Array& params, bool fHelp) "setaccount \n" "Sets the account associated with the given address."); - CBitcoinAddress address(params[0].get_str()); + CBitbeanAddress address(params[0].get_str()); if (!address.IsValid()) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid BitBean address"); @@ -262,7 +263,7 @@ Value getaccount(const Array& params, bool fHelp) "getaccount \n" "Returns the account associated with the given address."); - CBitcoinAddress address(params[0].get_str()); + CBitbeanAddress address(params[0].get_str()); if (!address.IsValid()) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid BitBean address"); @@ -285,9 +286,9 @@ Value getaddressesbyaccount(const Array& params, bool fHelp) // Find all addresses that have the given account Array ret; - BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress, string)& item, pwalletMain->mapAddressBook) + BOOST_FOREACH(const PAIRTYPE(CBitbeanAddress, string)& item, pwalletMain->mapAddressBook) { - const CBitcoinAddress& address = item.first; + const CBitbeanAddress& address = item.first; const string& strName = item.second; if (strName == strAccount) ret.push_back(address.ToString()); @@ -303,7 +304,7 @@ Value sendtoaddress(const Array& params, bool fHelp) " is a real and is rounded to the nearest 0.000001" + HelpRequiringPassphrase()); - CBitcoinAddress address(params[0].get_str()); + CBitbeanAddress address(params[0].get_str()); if (!address.IsValid()) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid BitBean address"); @@ -344,12 +345,12 @@ Value listaddressgroupings(const Array& params, bool fHelp) BOOST_FOREACH(CTxDestination address, grouping) { Array addressInfo; - addressInfo.push_back(CBitcoinAddress(address).ToString()); + addressInfo.push_back(CBitbeanAddress(address).ToString()); addressInfo.push_back(ValueFromAmount(balances[address])); { LOCK(pwalletMain->cs_wallet); - if (pwalletMain->mapAddressBook.find(CBitcoinAddress(address).Get()) != pwalletMain->mapAddressBook.end()) - addressInfo.push_back(pwalletMain->mapAddressBook.find(CBitcoinAddress(address).Get())->second); + if (pwalletMain->mapAddressBook.find(CBitbeanAddress(address).Get()) != pwalletMain->mapAddressBook.end()) + addressInfo.push_back(pwalletMain->mapAddressBook.find(CBitbeanAddress(address).Get())->second); } jsonGrouping.push_back(addressInfo); } @@ -370,7 +371,7 @@ Value signmessage(const Array& params, bool fHelp) string strAddress = params[0].get_str(); string strMessage = params[1].get_str(); - CBitcoinAddress addr(strAddress); + CBitbeanAddress addr(strAddress); if (!addr.IsValid()) throw JSONRPCError(RPC_TYPE_ERROR, "Invalid address"); @@ -404,7 +405,7 @@ Value verifymessage(const Array& params, bool fHelp) string strSign = params[1].get_str(); string strMessage = params[2].get_str(); - CBitcoinAddress addr(strAddress); + CBitbeanAddress addr(strAddress); if (!addr.IsValid()) throw JSONRPCError(RPC_TYPE_ERROR, "Invalid address"); @@ -437,8 +438,8 @@ Value getreceivedbyaddress(const Array& params, bool fHelp) "getreceivedbyaddress [minconf=1]\n" "Returns the total amount received by in transactions with at least [minconf] confirmations."); - // Bitcoin address - CBitcoinAddress address = CBitcoinAddress(params[0].get_str()); + // Bitbean address + CBitbeanAddress address = CBitbeanAddress(params[0].get_str()); CScript scriptPubKey; if (!address.IsValid()) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid BitBean address"); @@ -456,7 +457,7 @@ Value getreceivedbyaddress(const Array& params, bool fHelp) for (map::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) { const CWalletTx& wtx = (*it).second; - if (wtx.IsCoinBase() || wtx.IsCoinStake() || !wtx.IsFinal()) + if (wtx.IsBeanBase() || wtx.IsBeanStake() || !wtx.IsFinal()) continue; BOOST_FOREACH(const CTxOut& txout, wtx.vout) @@ -504,7 +505,7 @@ Value getreceivedbyaccount(const Array& params, bool fHelp) for (map::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) { const CWalletTx& wtx = (*it).second; - if (wtx.IsCoinBase() || wtx.IsCoinStake() || !wtx.IsFinal()) + if (wtx.IsBeanBase() || wtx.IsBeanStake() || !wtx.IsFinal()) continue; BOOST_FOREACH(const CTxOut& txout, wtx.vout) @@ -516,7 +517,7 @@ Value getreceivedbyaccount(const Array& params, bool fHelp) } } - return (double)nAmount / (double)COIN; + return (double)nAmount / (double)bean; } @@ -667,7 +668,7 @@ Value sendfrom(const Array& params, bool fHelp) + HelpRequiringPassphrase()); string strAccount = AccountFromValue(params[0]); - CBitcoinAddress address(params[1].get_str()); + CBitbeanAddress address(params[1].get_str()); if (!address.IsValid()) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid BitBean address"); int64_t nAmount = AmountFromValue(params[2]); @@ -718,13 +719,13 @@ Value sendmany(const Array& params, bool fHelp) if (params.size() > 3 && params[3].type() != null_type && !params[3].get_str().empty()) wtx.mapValue["comment"] = params[3].get_str(); - set setAddress; + set setAddress; vector > vecSend; int64_t totalAmount = 0; BOOST_FOREACH(const Pair& s, sendTo) { - CBitcoinAddress address(s.name_); + CBitbeanAddress address(s.name_); if (!address.IsValid()) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid BitBean address: ")+s.name_); @@ -794,8 +795,8 @@ Value addmultisigaddress(const Array& params, bool fHelp) { const std::string& ks = keys[i].get_str(); - // Case 1: Bitcoin address and we have full public key: - CBitcoinAddress address(ks); + // Case 1: Bitbean address and we have full public key: + CBitbeanAddress address(ks); if (address.IsValid()) { CKeyID keyID; @@ -831,7 +832,7 @@ Value addmultisigaddress(const Array& params, bool fHelp) throw runtime_error("AddCScript() failed"); pwalletMain->SetAddressBookName(innerID, strAccount); - return CBitcoinAddress(innerID).ToString(); + return CBitbeanAddress(innerID).ToString(); } Value addredeemscript(const Array& params, bool fHelp) @@ -856,7 +857,7 @@ Value addredeemscript(const Array& params, bool fHelp) throw runtime_error("AddCScript() failed"); pwalletMain->SetAddressBookName(innerID, strAccount); - return CBitcoinAddress(innerID).ToString(); + return CBitbeanAddress(innerID).ToString(); } struct tallyitem @@ -883,12 +884,12 @@ Value ListReceived(const Array& params, bool fByAccounts) fIncludeEmpty = params[1].get_bool(); // Tally - map mapTally; + map mapTally; for (map::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) { const CWalletTx& wtx = (*it).second; - if (wtx.IsCoinBase() || wtx.IsCoinStake() || !wtx.IsFinal()) + if (wtx.IsBeanBase() || wtx.IsBeanStake() || !wtx.IsFinal()) continue; int nDepth = wtx.GetDepthInMainChain(); @@ -910,11 +911,11 @@ Value ListReceived(const Array& params, bool fByAccounts) // Reply Array ret; map mapAccountTally; - BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress, string)& item, pwalletMain->mapAddressBook) + BOOST_FOREACH(const PAIRTYPE(CBitbeanAddress, string)& item, pwalletMain->mapAddressBook) { - const CBitcoinAddress& address = item.first; + const CBitbeanAddress& address = item.first; const string& strAccount = item.second; - map::iterator it = mapTally.find(address); + map::iterator it = mapTally.find(address); if (it == mapTally.end() && !fIncludeEmpty) continue; @@ -995,7 +996,7 @@ Value listreceivedbyaccount(const Array& params, bool fHelp) static void MaybePushAddress(Object & entry, const CTxDestination &dest) { - CBitcoinAddress addr; + CBitbeanAddress addr; if (addr.Set(dest)) entry.push_back(Pair("address", addr.ToString())); } @@ -1012,7 +1013,7 @@ void ListTransactions(const CWalletTx& wtx, const string& strAccount, int nMinDe bool fAllAccounts = (strAccount == string("*")); // Sent - if ((!wtx.IsCoinStake()) && (!listSent.empty() || nFee != 0) && (fAllAccounts || strAccount == strSentAccount)) + if ((!wtx.IsBeanStake()) && (!listSent.empty() || nFee != 0) && (fAllAccounts || strAccount == strSentAccount)) { BOOST_FOREACH(const PAIRTYPE(CTxDestination, int64_t)& s, listSent) { @@ -1042,7 +1043,7 @@ void ListTransactions(const CWalletTx& wtx, const string& strAccount, int nMinDe Object entry; entry.push_back(Pair("account", account)); MaybePushAddress(entry, r.first); - if (wtx.IsCoinBase() || wtx.IsCoinStake()) + if (wtx.IsBeanBase() || wtx.IsBeanStake()) { if (wtx.GetDepthInMainChain() < 1) entry.push_back(Pair("category", "orphan")); @@ -1055,12 +1056,12 @@ void ListTransactions(const CWalletTx& wtx, const string& strAccount, int nMinDe { entry.push_back(Pair("category", "receive")); } - if (!wtx.IsCoinStake()) + if (!wtx.IsBeanStake()) entry.push_back(Pair("amount", ValueFromAmount(r.second))); else { entry.push_back(Pair("amount", ValueFromAmount(-nFee))); - stop = true; // only one coinstake output + stop = true; // only one beansprout output } if (fLong) WalletTxToJSON(wtx, entry); @@ -1457,7 +1458,7 @@ Value walletpassphrase(const Array& params, bool fHelp) int64_t* pnSleepTime = new int64_t(params[1].get_int64()); NewThread(ThreadCleanWalletPassphrase, pnSleepTime); - // ppcoin: if user OS account compromised prevent trivial sendmoney commands + // ppbean: if user OS account compromised prevent trivial sendmoney commands if (params.size() > 2) fWalletUnlockStakingOnly = params[2].get_bool(); else @@ -1583,7 +1584,7 @@ class DescribeAddressVisitor : public boost::static_visitor obj.push_back(Pair("hex", HexStr(subscript.begin(), subscript.end()))); Array a; BOOST_FOREACH(const CTxDestination& addr, addresses) - a.push_back(CBitcoinAddress(addr).ToString()); + a.push_back(CBitbeanAddress(addr).ToString()); obj.push_back(Pair("addresses", a)); if (whichType == TX_MULTISIG) obj.push_back(Pair("sigsrequired", nRequired)); @@ -1598,7 +1599,7 @@ Value validateaddress(const Array& params, bool fHelp) "validateaddress \n" "Return information about ."); - CBitcoinAddress address(params[0].get_str()); + CBitbeanAddress address(params[0].get_str()); bool isValid = address.IsValid(); Object ret; @@ -1634,7 +1635,7 @@ Value validatepubkey(const Array& params, bool fHelp) bool isCompressed = pubKey.IsCompressed(); CKeyID keyID = pubKey.GetID(); - CBitcoinAddress address; + CBitbeanAddress address; address.Set(keyID); Object ret; @@ -1657,7 +1658,7 @@ Value validatepubkey(const Array& params, bool fHelp) return ret; } -// ppcoin: reserve balance from being staked for network protection +// ppbean: reserve balance from being staked for network protection Value reservebalance(const Array& params, bool fHelp) { if (fHelp || params.size() > 2) @@ -1696,7 +1697,7 @@ Value reservebalance(const Array& params, bool fHelp) } -// ppcoin: check wallet integrity +// ppbean: check wallet integrity Value checkwallet(const Array& params, bool fHelp) { if (fHelp || params.size() > 0) @@ -1706,20 +1707,20 @@ Value checkwallet(const Array& params, bool fHelp) int nMismatchSpent; int64_t nBalanceInQuestion; - pwalletMain->FixSpentCoins(nMismatchSpent, nBalanceInQuestion, true); + pwalletMain->FixSpentBeans(nMismatchSpent, nBalanceInQuestion, true); Object result; if (nMismatchSpent == 0) result.push_back(Pair("wallet check passed", true)); else { - result.push_back(Pair("mismatched spent coins", nMismatchSpent)); + result.push_back(Pair("mismatched spent beans", nMismatchSpent)); result.push_back(Pair("amount in question", ValueFromAmount(nBalanceInQuestion))); } return result; } -// ppcoin: repair wallet +// ppbean: repair wallet Value repairwallet(const Array& params, bool fHelp) { if (fHelp || params.size() > 0) @@ -1729,19 +1730,19 @@ Value repairwallet(const Array& params, bool fHelp) int nMismatchSpent; int64_t nBalanceInQuestion; - pwalletMain->FixSpentCoins(nMismatchSpent, nBalanceInQuestion); + pwalletMain->FixSpentBeans(nMismatchSpent, nBalanceInQuestion); Object result; if (nMismatchSpent == 0) result.push_back(Pair("wallet check passed", true)); else { - result.push_back(Pair("mismatched spent coins", nMismatchSpent)); + result.push_back(Pair("mismatched spent beans", nMismatchSpent)); result.push_back(Pair("amount affected by repair", ValueFromAmount(nBalanceInQuestion))); } return result; } -// NovaCoin: resend unconfirmed wallet transactions +// Bitbean: resend unconfirmed wallet transactions Value resendtx(const Array& params, bool fHelp) { if (fHelp || params.size() > 1) @@ -1755,7 +1756,7 @@ Value resendtx(const Array& params, bool fHelp) return Value::null; } -// ppcoin: make a public-private key pair +// ppbean: make a public-private key pair Value makekeypair(const Array& params, bool fHelp) { if (fHelp || params.size() > 1) diff --git a/src/script.cpp b/src/script.cpp index 4856cfa..af58f46 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -1,5 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -269,7 +270,7 @@ static bool IsCanonicalPubKey(const valtype &vchPubKey) { } static bool IsCanonicalSignature(const valtype &vchSig) { - // See https://bitcointalk.org/index.php?topic=8392.msg127623#msg127623 + // See https://bitbeantalk.org/index.php?topic=8392.msg127623#msg127623 // A canonical signature exists of: <30> <02> <02> // Where R and S are not negative (their first byte has its highest bit not set), and not // excessively padded (do not start with a 0 byte, unless an otherwise negative number follows, @@ -1302,7 +1303,7 @@ bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, vector #include @@ -54,7 +55,7 @@ class CNoDestination { * * CNoDestination: no destination set * * CKeyID: TX_PUBKEYHASH destination * * CScriptID: TX_SCRIPTHASH destination - * A CTxDestination is the internal data type encoded in a CBitcoinAddress + * A CTxDestination is the internal data type encoded in a CBitbeanAddress */ typedef boost::variant CTxDestination; @@ -515,7 +516,7 @@ class CScript : public std::vector return nFound; } - // Pre-version-0.6, Bitcoin always counted CHECKMULTISIGs + // Pre-version-0.6, Bitbean always counted CHECKMULTISIGs // as 20 sigops. With pay-to-script-hash, that changed: // CHECKMULTISIGs serialized in scriptSigs are // counted more accurately, assuming they are of the form diff --git a/src/scrypt-arm.S b/src/scrypt-arm.S index 143eb3a..3236071 100644 --- a/src/scrypt-arm.S +++ b/src/scrypt-arm.S @@ -1,5 +1,5 @@ /* - * Copyright 2012 pooler@litecoinpool.org + * Copyright 2012 pooler@litebeanpool.org * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free diff --git a/src/scrypt-x86.S b/src/scrypt-x86.S index c1d2cef..896543c 100644 --- a/src/scrypt-x86.S +++ b/src/scrypt-x86.S @@ -1,4 +1,4 @@ -# Copyright 2011 pooler@litecoinpool.org +# Copyright 2011 pooler@litebeanpool.org # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/scrypt-x86_64.S b/src/scrypt-x86_64.S index 3036d03..3e2435f 100644 --- a/src/scrypt-x86_64.S +++ b/src/scrypt-x86_64.S @@ -1,4 +1,4 @@ -# Copyright 2011-2012 pooler@litecoinpool.org +# Copyright 2011-2012 pooler@litebeanpool.org # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/serialize.h b/src/serialize.h index 114c6a3..82b8cd8 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -1,10 +1,11 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_SERIALIZE_H -#define BITCOIN_SERIALIZE_H +#ifndef BITBEAN_SERIALIZE_H +#define BITBEAN_SERIALIZE_H #include #include diff --git a/src/strlcpy.h b/src/strlcpy.h index 2cc786e..213586e 100644 --- a/src/strlcpy.h +++ b/src/strlcpy.h @@ -1,5 +1,6 @@ /* * Copyright (c) 1998 Todd C. Miller + * Copyright (c) 2015 Bean Core www.bitbean.org * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -13,8 +14,8 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#ifndef BITCOIN_STRLCPY_H -#define BITCOIN_STRLCPY_H +#ifndef BITBEAN_STRLCPY_H +#define BITBEAN_STRLCPY_H #include #include diff --git a/src/sync.cpp b/src/sync.cpp index 1ac4403..2937ea6 100644 --- a/src/sync.cpp +++ b/src/sync.cpp @@ -1,4 +1,5 @@ // Copyright (c) 2011-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // 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/sync.h b/src/sync.h index e80efbe..a60f9b3 100644 --- a/src/sync.h +++ b/src/sync.h @@ -1,9 +1,10 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_SYNC_H -#define BITCOIN_SYNC_H +#ifndef BITBEAN_SYNC_H +#define BITBEAN_SYNC_H #include #include diff --git a/src/testcoin-qt.pro b/src/testcoin-qt.pro deleted file mode 100644 index 2d2dd0d..0000000 --- a/src/testcoin-qt.pro +++ /dev/null @@ -1,432 +0,0 @@ -TEMPLATE = app -TARGET = testcoin-qt -VERSION = 1.0.7 -INCLUDEPATH += src src/json src/qt -DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE -CONFIG += no_include_pwd -CONFIG += thread - -greaterThan(QT_MAJOR_VERSION, 4) { - QT += widgets - DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0 -} - -# for boost 1.37, add -mt to the boost libraries -# use: qmake BOOST_LIB_SUFFIX=-mt -# for boost thread win32 with _win32 sufix -# use: BOOST_THREAD_LIB_SUFFIX=_win32-... -# or when linking against a specific BerkelyDB version: BDB_LIB_SUFFIX=-4.8 - -# Dependency library locations can be customized with: -# BOOST_INCLUDE_PATH, BOOST_LIB_PATH, BDB_INCLUDE_PATH, -# BDB_LIB_PATH, OPENSSL_INCLUDE_PATH and OPENSSL_LIB_PATH respectively - -OBJECTS_DIR = build -MOC_DIR = build -UI_DIR = build - -# use: qmake "RELEASE=1" -contains(RELEASE, 1) { - # Mac: compile for maximum compatibility (10.5, 32-bit) - macx:QMAKE_CXXFLAGS += -mmacosx-version-min=10.5 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.5.sdk - - !windows:!macx { - # Linux: static link - LIBS += -Wl,-Bstatic - } -} - -!win32 { -# for extra security against potential buffer overflows: enable GCCs Stack Smashing Protection -QMAKE_CXXFLAGS *= -fstack-protector-all --param ssp-buffer-size=1 -QMAKE_LFLAGS *= -fstack-protector-all --param ssp-buffer-size=1 -# We need to exclude this for Windows cross compile with MinGW 4.2.x, as it will result in a non-working executable! -# This can be enabled for Windows, when we switch to MinGW >= 4.4.x. -} -# for extra security on Windows: enable ASLR and DEP via GCC linker flags -win32:QMAKE_LFLAGS *= -Wl,--dynamicbase -Wl,--nxcompat -win32:QMAKE_LFLAGS += -static-libgcc -static-libstdc++ - -# use: qmake "USE_QRCODE=1" -# libqrencode (http://fukuchi.org/works/qrencode/index.en.html) must be installed for support -contains(USE_QRCODE, 1) { - message(Building with QRCode support) - DEFINES += USE_QRCODE - LIBS += -lqrencode -} - -# use: qmake "USE_UPNP=1" ( enabled by default; default) -# or: qmake "USE_UPNP=0" (disabled by default) -# or: qmake "USE_UPNP=-" (not supported) -# miniupnpc (http://miniupnp.free.fr/files/) must be installed for support -contains(USE_UPNP, -) { - message(Building without UPNP support) -} else { - message(Building with UPNP support) - count(USE_UPNP, 0) { - USE_UPNP=1 - } - DEFINES += USE_UPNP=$$USE_UPNP STATICLIB - INCLUDEPATH += $$MINIUPNPC_INCLUDE_PATH - LIBS += $$join(MINIUPNPC_LIB_PATH,,-L,) -lminiupnpc - win32:LIBS += -liphlpapi -} - -# use: qmake "USE_DBUS=1" or qmake "USE_DBUS=0" -linux:count(USE_DBUS, 0) { - USE_DBUS=1 -} -contains(USE_DBUS, 1) { - message(Building with DBUS (Freedesktop notifications) support) - DEFINES += USE_DBUS - QT += dbus -} - -contains(BITCOIN_NEED_QT_PLUGINS, 1) { - DEFINES += BITCOIN_NEED_QT_PLUGINS - QTPLUGIN += qcncodecs qjpcodecs qtwcodecs qkrcodecs qtaccessiblewidgets -} - -INCLUDEPATH += src/leveldb/include src/leveldb/helpers -LIBS += $$PWD/src/leveldb/libleveldb.a $$PWD/src/leveldb/libmemenv.a -SOURCES += src/txdb-leveldb.cpp -!win32 { - # we use QMAKE_CXXFLAGS_RELEASE even without RELEASE=1 because we use RELEASE to indicate linking preferences not -O preferences - genleveldb.commands = cd $$PWD/src/leveldb && CC=$$QMAKE_CC CXX=$$QMAKE_CXX $(MAKE) OPT=\"$$QMAKE_CXXFLAGS $$QMAKE_CXXFLAGS_RELEASE\" libleveldb.a libmemenv.a -} else { - # make an educated guess about what the ranlib command is called - isEmpty(QMAKE_RANLIB) { - QMAKE_RANLIB = $$replace(QMAKE_STRIP, strip, ranlib) - } - LIBS += -lshlwapi - genleveldb.commands = cd $$PWD/src/leveldb && CC=$$QMAKE_CC CXX=$$QMAKE_CXX TARGET_OS=OS_WINDOWS_CROSSCOMPILE $(MAKE) OPT=\"$$QMAKE_CXXFLAGS $$QMAKE_CXXFLAGS_RELEASE\" libleveldb.a libmemenv.a && $$QMAKE_RANLIB $$PWD/src/leveldb/libleveldb.a && $$QMAKE_RANLIB $$PWD/src/leveldb/libmemenv.a -} -genleveldb.target = $$PWD/src/leveldb/libleveldb.a -genleveldb.depends = FORCE -PRE_TARGETDEPS += $$PWD/src/leveldb/libleveldb.a -QMAKE_EXTRA_TARGETS += genleveldb -# Gross ugly hack that depends on qmake internals, unfortunately there is no other way to do it. -QMAKE_CLEAN += $$PWD/src/leveldb/libleveldb.a; cd $$PWD/src/leveldb ; $(MAKE) clean - -# regenerate src/build.h -!windows|contains(USE_BUILD_INFO, 1) { - genbuild.depends = FORCE - genbuild.commands = cd $$PWD; /bin/sh share/genbuild.sh $$OUT_PWD/build/build.h - genbuild.target = $$OUT_PWD/build/build.h - PRE_TARGETDEPS += $$OUT_PWD/build/build.h - QMAKE_EXTRA_TARGETS += genbuild - DEFINES += HAVE_BUILD_INFO -} - -contains(USE_O3, 1) { - message(Building O3 optimization flag) - QMAKE_CXXFLAGS_RELEASE -= -O2 - QMAKE_CFLAGS_RELEASE -= -O2 - QMAKE_CXXFLAGS += -O3 - QMAKE_CFLAGS += -O3 -} - -*-g++-32 { - message("32 platform, adding -msse2 flag") - - QMAKE_CXXFLAGS += -msse2 - QMAKE_CFLAGS += -msse2 -} - -QMAKE_CXXFLAGS_WARN_ON = -fdiagnostics-show-option -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector - -# Input -DEPENDPATH += src src/json src/qt -HEADERS += src/qt/bitcoingui.h \ - src/qt/transactiontablemodel.h \ - src/qt/addresstablemodel.h \ - src/qt/optionsdialog.h \ - src/qt/coincontroldialog.h \ - src/qt/coincontroltreewidget.h \ - src/qt/sendcoinsdialog.h \ - src/qt/addressbookpage.h \ - src/qt/signverifymessagedialog.h \ - src/qt/aboutdialog.h \ - src/qt/editaddressdialog.h \ - src/qt/bitcoinaddressvalidator.h \ - src/alert.h \ - src/addrman.h \ - src/base58.h \ - src/bignum.h \ - src/checkpoints.h \ - src/compat.h \ - src/coincontrol.h \ - src/sync.h \ - src/util.h \ - src/uint256.h \ - src/kernel.h \ - src/scrypt.h \ - src/pbkdf2.h \ - src/zerocoin/Accumulator.h \ - src/zerocoin/AccumulatorProofOfKnowledge.h \ - src/zerocoin/Coin.h \ - src/zerocoin/CoinSpend.h \ - src/zerocoin/Commitment.h \ - src/zerocoin/ParamGeneration.h \ - src/zerocoin/Params.h \ - src/zerocoin/SerialNumberSignatureOfKnowledge.h \ - src/zerocoin/SpendMetaData.h \ - src/zerocoin/ZeroTest.h \ - src/zerocoin/Zerocoin.h \ - src/serialize.h \ - src/strlcpy.h \ - src/main.h \ - src/miner.h \ - src/net.h \ - src/key.h \ - src/db.h \ - src/txdb.h \ - src/walletdb.h \ - src/script.h \ - src/init.h \ - src/irc.h \ - src/mruset.h \ - src/json/json_spirit_writer_template.h \ - src/json/json_spirit_writer.h \ - src/json/json_spirit_value.h \ - src/json/json_spirit_utils.h \ - src/json/json_spirit_stream_reader.h \ - src/json/json_spirit_reader_template.h \ - src/json/json_spirit_reader.h \ - src/json/json_spirit_error_position.h \ - src/json/json_spirit.h \ - src/qt/clientmodel.h \ - src/qt/guiutil.h \ - src/qt/transactionrecord.h \ - src/qt/guiconstants.h \ - src/qt/optionsmodel.h \ - src/qt/monitoreddatamapper.h \ - src/qt/transactiondesc.h \ - src/qt/transactiondescdialog.h \ - src/qt/bitcoinamountfield.h \ - src/wallet.h \ - src/keystore.h \ - src/qt/transactionfilterproxy.h \ - src/qt/transactionview.h \ - src/qt/walletmodel.h \ - src/bitcoinrpc.h \ - src/qt/overviewpage.h \ - src/qt/csvmodelwriter.h \ - src/crypter.h \ - src/qt/sendcoinsentry.h \ - src/qt/qvalidatedlineedit.h \ - src/qt/bitcoinunits.h \ - src/qt/qvaluecombobox.h \ - src/qt/askpassphrasedialog.h \ - src/protocol.h \ - src/qt/notificator.h \ - src/qt/qtipcserver.h \ - src/allocators.h \ - src/ui_interface.h \ - src/qt/rpcconsole.h \ - src/version.h \ - src/netbase.h \ - src/clientversion.h - -SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \ - src/qt/transactiontablemodel.cpp \ - src/qt/addresstablemodel.cpp \ - src/qt/optionsdialog.cpp \ - src/qt/sendcoinsdialog.cpp \ - src/qt/coincontroldialog.cpp \ - src/qt/coincontroltreewidget.cpp \ - src/qt/addressbookpage.cpp \ - src/qt/signverifymessagedialog.cpp \ - src/qt/aboutdialog.cpp \ - src/qt/editaddressdialog.cpp \ - src/qt/bitcoinaddressvalidator.cpp \ - src/alert.cpp \ - src/version.cpp \ - src/sync.cpp \ - src/util.cpp \ - src/netbase.cpp \ - src/key.cpp \ - src/script.cpp \ - src/main.cpp \ - src/miner.cpp \ - src/init.cpp \ - src/net.cpp \ - src/irc.cpp \ - src/checkpoints.cpp \ - src/addrman.cpp \ - src/db.cpp \ - src/walletdb.cpp \ - src/qt/clientmodel.cpp \ - src/qt/guiutil.cpp \ - src/qt/transactionrecord.cpp \ - src/qt/optionsmodel.cpp \ - src/qt/monitoreddatamapper.cpp \ - src/qt/transactiondesc.cpp \ - src/qt/transactiondescdialog.cpp \ - src/qt/bitcoinstrings.cpp \ - src/qt/bitcoinamountfield.cpp \ - src/wallet.cpp \ - src/keystore.cpp \ - src/qt/transactionfilterproxy.cpp \ - src/qt/transactionview.cpp \ - src/qt/walletmodel.cpp \ - src/bitcoinrpc.cpp \ - src/rpcdump.cpp \ - src/rpcnet.cpp \ - src/rpcmining.cpp \ - src/rpcwallet.cpp \ - src/rpcblockchain.cpp \ - src/rpcrawtransaction.cpp \ - src/qt/overviewpage.cpp \ - src/qt/csvmodelwriter.cpp \ - src/crypter.cpp \ - src/qt/sendcoinsentry.cpp \ - src/qt/qvalidatedlineedit.cpp \ - src/qt/bitcoinunits.cpp \ - src/qt/qvaluecombobox.cpp \ - src/qt/askpassphrasedialog.cpp \ - src/protocol.cpp \ - src/qt/notificator.cpp \ - src/qt/qtipcserver.cpp \ - src/qt/rpcconsole.cpp \ - src/noui.cpp \ - src/kernel.cpp \ - src/scrypt-arm.S \ - src/scrypt-x86.S \ - src/scrypt-x86_64.S \ - src/scrypt.cpp \ - src/pbkdf2.cpp \ - src/zerocoin/Accumulator.cpp \ - src/zerocoin/AccumulatorProofOfKnowledge.cpp \ - src/zerocoin/Coin.cpp \ - src/zerocoin/CoinSpend.cpp \ - src/zerocoin/Commitment.cpp \ - src/zerocoin/ParamGeneration.cpp \ - src/zerocoin/Params.cpp \ - src/zerocoin/SerialNumberSignatureOfKnowledge.cpp \ - src/zerocoin/SpendMetaData.cpp \ - src/zerocoin/ZeroTest.cpp - -RESOURCES += \ - src/qt/bitcoin.qrc - -FORMS += \ - src/qt/forms/coincontroldialog.ui \ - src/qt/forms/sendcoinsdialog.ui \ - src/qt/forms/addressbookpage.ui \ - src/qt/forms/signverifymessagedialog.ui \ - src/qt/forms/aboutdialog.ui \ - src/qt/forms/editaddressdialog.ui \ - src/qt/forms/transactiondescdialog.ui \ - src/qt/forms/overviewpage.ui \ - src/qt/forms/sendcoinsentry.ui \ - src/qt/forms/askpassphrasedialog.ui \ - src/qt/forms/rpcconsole.ui \ - src/qt/forms/optionsdialog.ui - -contains(USE_QRCODE, 1) { -HEADERS += src/qt/qrcodedialog.h -SOURCES += src/qt/qrcodedialog.cpp -FORMS += src/qt/forms/qrcodedialog.ui -} - -CODECFORTR = UTF-8 - -# for lrelease/lupdate -# also add new translations to src/qt/bitcoin.qrc under translations/ -TRANSLATIONS = $$files(src/qt/locale/bitcoin_*.ts) - -isEmpty(QMAKE_LRELEASE) { - win32:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\\lrelease.exe - else:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease -} -isEmpty(QM_DIR):QM_DIR = $$PWD/src/qt/locale -# automatically build translations, so they can be included in resource file -TSQM.name = lrelease ${QMAKE_FILE_IN} -TSQM.input = TRANSLATIONS -TSQM.output = $$QM_DIR/${QMAKE_FILE_BASE}.qm -TSQM.commands = $$QMAKE_LRELEASE ${QMAKE_FILE_IN} -qm ${QMAKE_FILE_OUT} -TSQM.CONFIG = no_link -QMAKE_EXTRA_COMPILERS += TSQM - -# "Other files" to show in Qt Creator -OTHER_FILES += \ - doc/*.rst doc/*.txt doc/README README.md res/bitcoin-qt.rc - -# platform specific defaults, if not overridden on command line -isEmpty(BOOST_LIB_SUFFIX) { - macx:BOOST_LIB_SUFFIX = -mt - windows:BOOST_LIB_SUFFIX = -mt -} - -isEmpty(BOOST_THREAD_LIB_SUFFIX) { - win32:BOOST_THREAD_LIB_SUFFIX = _win32$$BOOST_LIB_SUFFIX - else:BOOST_THREAD_LIB_SUFFIX = $$BOOST_LIB_SUFFIX -} - -isEmpty(BDB_LIB_PATH) { - macx:BDB_LIB_PATH = /opt/local/lib/db48 -} - -isEmpty(BDB_LIB_SUFFIX) { - macx:BDB_LIB_SUFFIX = -4.8 -} - -isEmpty(BDB_INCLUDE_PATH) { - macx:BDB_INCLUDE_PATH = /opt/local/include/db48 -} - -isEmpty(BOOST_LIB_PATH) { - macx:BOOST_LIB_PATH = /opt/local/lib -} - -isEmpty(BOOST_INCLUDE_PATH) { - macx:BOOST_INCLUDE_PATH = /opt/local/include -} - -windows:DEFINES += WIN32 -windows:RC_FILE = src/qt/res/bitcoin-qt.rc - -windows:!contains(MINGW_THREAD_BUGFIX, 0) { - # At least qmake's win32-g++-cross profile is missing the -lmingwthrd - # thread-safety flag. GCC has -mthreads to enable this, but it doesn't - # work with static linking. -lmingwthrd must come BEFORE -lmingw, so - # it is prepended to QMAKE_LIBS_QT_ENTRY. - # It can be turned off with MINGW_THREAD_BUGFIX=0, just in case it causes - # any problems on some untested qmake profile now or in the future. - DEFINES += _MT BOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN - QMAKE_LIBS_QT_ENTRY = -lmingwthrd $$QMAKE_LIBS_QT_ENTRY -} - -macx:HEADERS += src/qt/macdockiconhandler.h -macx:OBJECTIVE_SOURCES += src/qt/macdockiconhandler.mm -macx:LIBS += -framework Foundation -framework ApplicationServices -framework AppKit -macx:DEFINES += MAC_OSX MSG_NOSIGNAL=0 -macx:ICON = src/qt/res/icons/bitcoin.icns -macx:TARGET = "BitBean-Qt" -macx:QMAKE_CFLAGS_THREAD += -pthread -macx:QMAKE_LFLAGS_THREAD += -pthread -macx:QMAKE_CXXFLAGS_THREAD += -pthread - -# Set libraries and includes at end, to use platform-defined defaults if not overridden -INCLUDEPATH += $$BOOST_INCLUDE_PATH $$BDB_INCLUDE_PATH $$OPENSSL_INCLUDE_PATH $$QRENCODE_INCLUDE_PATH -LIBS += $$join(BOOST_LIB_PATH,,-L,) $$join(BDB_LIB_PATH,,-L,) $$join(OPENSSL_LIB_PATH,,-L,) $$join(QRENCODE_LIB_PATH,,-L,) -LIBS += -lssl -lcrypto -ldb_cxx$$BDB_LIB_SUFFIX -# -lgdi32 has to happen after -lcrypto (see #681) -windows:LIBS += -lws2_32 -lshlwapi -lmswsock -lole32 -loleaut32 -luuid -lgdi32 -LIBS += -lboost_system$$BOOST_LIB_SUFFIX -lboost_filesystem$$BOOST_LIB_SUFFIX -lboost_program_options$$BOOST_LIB_SUFFIX -lboost_thread$$BOOST_THREAD_LIB_SUFFIX -windows:LIBS += -lboost_chrono$$BOOST_LIB_SUFFIX - -contains(RELEASE, 1) { - !windows:!macx { - # Linux: turn dynamic linking back on for c/c++ runtime libraries - LIBS += -Wl,-Bdynamic - } -} - -!windows:!macx { - DEFINES += LINUX - LIBS += -lrt -ldl -} - -system($$QMAKE_LRELEASE -silent $$_PRO_FILE_) diff --git a/src/txdb-leveldb.cpp b/src/txdb-leveldb.cpp index 91687dd..d1789f4 100644 --- a/src/txdb-leveldb.cpp +++ b/src/txdb-leveldb.cpp @@ -1,5 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. @@ -386,7 +387,7 @@ bool CTxDB::LoadBlockIndex() return error("LoadBlockIndex() : CheckIndex failed at %d", pindexNew->nHeight); } - // NovaCoin: build setStakeSeen + // Bitbean: build setStakeSeen if (pindexNew->IsProofOfStake()) setStakeSeen.insert(make_pair(pindexNew->prevoutStake, pindexNew->nStakeTime)); @@ -410,7 +411,7 @@ bool CTxDB::LoadBlockIndex() { CBlockIndex* pindex = item.second; pindex->nChainTrust = (pindex->pprev ? pindex->pprev->nChainTrust : 0) + pindex->GetBlockTrust(); - // NovaCoin: calculate stake modifier checksum + // Bitbean: calculate stake modifier checksum pindex->nStakeModifierChecksum = GetStakeModifierChecksum(pindex); if (!CheckStakeModifierCheckpoints(pindex->nHeight, pindex->nStakeModifierChecksum)) return error("CTxDB::LoadBlockIndex() : Failed stake modifier checkpoint height=%d, modifier=0x%016"PRIx64, pindex->nHeight, pindex->nStakeModifier); @@ -433,7 +434,7 @@ bool CTxDB::LoadBlockIndex() hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, CBigNum(nBestChainTrust).ToString().c_str(), DateTimeStrFormat("%x %H:%M:%S", pindexBest->GetBlockTime()).c_str()); - // NovaCoin: load hashSyncCheckpoint + // Bitbean: load hashSyncCheckpoint if (!ReadSyncCheckpoint(Checkpoints::hashSyncCheckpoint)) return error("CTxDB::LoadBlockIndex() : hashSyncCheckpoint not loaded"); printf("LoadBlockIndex(): synchronized checkpoint %s\n", Checkpoints::hashSyncCheckpoint.ToString().c_str()); diff --git a/src/txdb.h b/src/txdb.h index a8e9f5b..049f442 100644 --- a/src/txdb.h +++ b/src/txdb.h @@ -1,11 +1,12 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_TXDB_H -#define BITCOIN_TXDB_H +#ifndef BITBEAN_TXDB_H +#define BITBEAN_TXDB_H #include "txdb-leveldb.h" -#endif // BITCOIN_TXDB_H +#endif // BITBEAN_TXDB_H diff --git a/src/ui_interface.h b/src/ui_interface.h index dc9b587..4fd5ed0 100644 --- a/src/ui_interface.h +++ b/src/ui_interface.h @@ -1,10 +1,11 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_UI_INTERFACE_H -#define BITCOIN_UI_INTERFACE_H +#ifndef BITBEAN_UI_INTERFACE_H +#define BITBEAN_UI_INTERFACE_H #include #include diff --git a/src/uint256.h b/src/uint256.h index f95b349..9b6589f 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -1,10 +1,11 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // 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 +#ifndef BITBEAN_UINT256_H +#define BITBEAN_UINT256_H #include #include diff --git a/src/util.cpp b/src/util.cpp index 38bf274..360cf7a 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1,5 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -369,8 +370,8 @@ string FormatMoney(int64_t n, bool fPlus) // Note: not using straight sprintf here because we do NOT want // localized number formatting. int64_t n_abs = (n > 0 ? n : -n); - int64_t quotient = n_abs/COIN; - int64_t remainder = n_abs%COIN; + int64_t quotient = n_abs/bean; + int64_t remainder = n_abs%bean; string str = strprintf("%"PRId64".%08"PRId64, quotient, remainder); // Right-trim excess zeros before the decimal point: @@ -424,10 +425,10 @@ bool ParseMoney(const char* pszIn, int64_t& nRet) return false; if (strWhole.size() > 10) // guard against 63 bit overflow return false; - if (nUnits < 0 || nUnits > COIN) + if (nUnits < 0 || nUnits > bean) return false; int64_t nWhole = atoi64(strWhole); - int64_t nValue = nWhole*COIN + nUnits; + int64_t nValue = nWhole*bean + nUnits; nRet = nValue; return true; @@ -1076,14 +1077,14 @@ void ReadConfigFile(map& mapSettingsRet, { boost::filesystem::ifstream streamConfig(GetConfigFile()); if (!streamConfig.good()) - return; // No bitcoin.conf file is OK + return; // No bitbean.conf file is OK set setOptions; setOptions.insert("*"); for (boost::program_options::detail::config_file_iterator it(streamConfig, setOptions), end; it != end; ++it) { - // Don't overwrite existing settings so command line settings override bitcoin.conf + // Don't overwrite existing settings so command line settings override bitbean.conf string strKey = string("-") + it->string_key; if (mapSettingsRet.count(strKey) == 0) { @@ -1263,7 +1264,7 @@ string FormatFullVersion() return CLIENT_BUILD; } -// Format the subversion field according to BIP 14 spec (https://en.bitcoin.it/wiki/BIP_0014) +// Format the subversion field according to BIP 14 spec (https://en.bitbean.it/wiki/BIP_0014) std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector& comments) { std::ostringstream ss; diff --git a/src/util.h b/src/util.h index f8e643b..dbc2938 100644 --- a/src/util.h +++ b/src/util.h @@ -1,10 +1,11 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_UTIL_H -#define BITCOIN_UTIL_H +#ifndef BITBEAN_UTIL_H +#define BITBEAN_UTIL_H #include "uint256.h" @@ -35,7 +36,7 @@ #include #include -static const int64_t COIN = 100000000; +static const int64_t bean = 100000000; static const int64_t CENT = 1000000; #define BEGIN(a) ((char*)&(a)) diff --git a/src/version.cpp b/src/version.cpp index 155599a..a4075d9 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -1,4 +1,5 @@ // Copyright (c) 2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include @@ -6,12 +7,12 @@ #include "version.h" // Name of client reported in the 'version' message. Report the same name -// for both bitcoind and bitcoin-qt, to make it harder for attackers to +// for both bitbeand and bitbean-qt, to make it harder for attackers to // target servers or GUI users specifically. -const std::string CLIENT_NAME("Satoshi"); +const std::string CLIENT_NAME("Bean Core"); // Client version number -#define CLIENT_VERSION_SUFFIX "" +#define CLIENT_VERSION_SUFFIX "RC1" // The following part of the code determines the CLIENT_BUILD variable. diff --git a/src/version.h b/src/version.h index 01e5e00..d86f880 100644 --- a/src/version.h +++ b/src/version.h @@ -1,8 +1,9 @@ // Copyright (c) 2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_VERSION_H -#define BITCOIN_VERSION_H +#ifndef BITBEAN_VERSION_H +#define BITBEAN_VERSION_H #include "clientversion.h" #include @@ -30,7 +31,7 @@ static const int DATABASE_VERSION = 70509; // network protocol versioning // -static const int PROTOCOL_VERSION = 60013; +static const int PROTOCOL_VERSION = 60014; // intial proto version, to be increased after version/verack negotiation static const int INIT_PROTO_VERSION = 209; diff --git a/src/wallet.cpp b/src/wallet.cpp index 25efc17..bc0bfe9 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1,5 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -10,13 +11,13 @@ #include "ui_interface.h" #include "base58.h" #include "kernel.h" -#include "coincontrol.h" +#include "beancontrol.h" #include using namespace std; unsigned int nStakeSplitAge = 1 * 24 * 60 * 60; -int64_t nStakeCombineThreshold = 1000 * COIN; +int64_t nStakeCombineThreshold = 1000 * bean; ////////////////////////////////////////////////////////////////////////////// // @@ -359,7 +360,7 @@ void CWallet::WalletUpdateSpent(const CTransaction &tx, bool fBlock) printf("WalletUpdateSpent: bad wtx %s\n", wtx.GetHash().ToString().c_str()); else if (!wtx.IsSpent(txin.prevout.n) && IsMine(wtx.vout[txin.prevout.n])) { - printf("WalletUpdateSpent found spent coin %s TC %s\n", FormatMoney(wtx.GetCredit()).c_str(), wtx.GetHash().ToString().c_str()); + printf("WalletUpdateSpent found spent bean %s TC %s\n", FormatMoney(wtx.GetCredit()).c_str(), wtx.GetHash().ToString().c_str()); wtx.MarkSpent(txin.prevout.n); wtx.WriteToDisk(); NotifyTransactionChanged(this, txin.prevout.hash, CT_UPDATED); @@ -507,7 +508,7 @@ bool CWallet::AddToWallet(const CWalletTx& wtxIn) } } #endif - // since AddToWallet is called directly for self-originating transactions, check for consumption of own coins + // since AddToWallet is called directly for self-originating transactions, check for consumption of own beans WalletUpdateSpent(wtx, (wtxIn.hashBlock != 0)); // Notify UI of new or updated transaction @@ -627,7 +628,7 @@ int CWalletTx::GetRequestCount() const int nRequests = -1; { LOCK(pwallet->cs_wallet); - if (IsCoinBase() || IsCoinStake()) + if (IsBeanBase() || IsBeanStake()) { // Generated block if (hashBlock != 0) @@ -870,7 +871,7 @@ void CWallet::ReacceptWalletTransactions() BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet) { CWalletTx& wtx = item.second; - if ((wtx.IsCoinBase() && wtx.IsSpent(0)) || (wtx.IsCoinStake() && wtx.IsSpent(1))) + if ((wtx.IsBeanBase() && wtx.IsSpent(0)) || (wtx.IsBeanStake() && wtx.IsSpent(1))) continue; CTxIndex txindex; @@ -896,7 +897,7 @@ void CWallet::ReacceptWalletTransactions() } if (fUpdated) { - printf("ReacceptWalletTransactions found spent coin %s TC %s\n", FormatMoney(wtx.GetCredit()).c_str(), wtx.GetHash().ToString().c_str()); + printf("ReacceptWalletTransactions found spent bean %s TC %s\n", FormatMoney(wtx.GetCredit()).c_str(), wtx.GetHash().ToString().c_str()); wtx.MarkDirty(); wtx.WriteToDisk(); } @@ -904,7 +905,7 @@ void CWallet::ReacceptWalletTransactions() else { // Re-accept any txes of ours that aren't already in a block - if (!(wtx.IsCoinBase() || wtx.IsCoinStake())) + if (!(wtx.IsBeanBase() || wtx.IsBeanStake())) wtx.AcceptWalletTransaction(txdb); } } @@ -921,14 +922,14 @@ void CWalletTx::RelayWalletTransaction(CTxDB& txdb) { BOOST_FOREACH(const CMerkleTx& tx, vtxPrev) { - if (!(tx.IsCoinBase() || tx.IsCoinStake())) + if (!(tx.IsBeanBase() || tx.IsBeanStake())) { uint256 hash = tx.GetHash(); if (!txdb.ContainsTx(hash)) RelayTransaction((CTransaction)tx, hash); } } - if (!(IsCoinBase() || IsCoinStake())) + if (!(IsBeanBase() || IsBeanStake())) { uint256 hash = GetHash(); if (!txdb.ContainsTx(hash)) @@ -1010,9 +1011,9 @@ int64_t CWallet::GetBalance() const LOCK(cs_wallet); for (map::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { - const CWalletTx* pcoin = &(*it).second; - if (pcoin->IsTrusted()) - nTotal += pcoin->GetAvailableCredit(); + const CWalletTx* pbean = &(*it).second; + if (pbean->IsTrusted()) + nTotal += pbean->GetAvailableCredit(); } } @@ -1026,9 +1027,9 @@ int64_t CWallet::GetUnconfirmedBalance() const LOCK(cs_wallet); for (map::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { - const CWalletTx* pcoin = &(*it).second; - if (!pcoin->IsFinal() || (!pcoin->IsTrusted() && pcoin->GetDepthInMainChain() == 0)) - nTotal += pcoin->GetAvailableCredit(); + const CWalletTx* pbean = &(*it).second; + if (!pbean->IsFinal() || (!pbean->IsTrusted() && pbean->GetDepthInMainChain() == 0)) + nTotal += pbean->GetAvailableCredit(); } } return nTotal; @@ -1041,69 +1042,69 @@ int64_t CWallet::GetImmatureBalance() const LOCK(cs_wallet); for (map::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { - const CWalletTx& pcoin = (*it).second; - if (pcoin.IsCoinBase() && pcoin.GetBlocksToMaturity() > 0 && pcoin.IsInMainChain()) - nTotal += GetCredit(pcoin); + const CWalletTx& pbean = (*it).second; + if (pbean.IsBeanBase() && pbean.GetBlocksToMaturity() > 0 && pbean.IsInMainChain()) + nTotal += GetCredit(pbean); } } return nTotal; } -// populate vCoins with vector of spendable COutputs -void CWallet::AvailableCoins(vector& vCoins, bool fOnlyConfirmed, const CCoinControl *coinControl) const +// populate vBeans with vector of spendable COutputs +void CWallet::AvailableBeans(vector& vBeans, bool fOnlyConfirmed, const CBeanControl *beanControl) const { - vCoins.clear(); + vBeans.clear(); { LOCK(cs_wallet); for (map::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { - const CWalletTx* pcoin = &(*it).second; + const CWalletTx* pbean = &(*it).second; - if (!pcoin->IsFinal()) + if (!pbean->IsFinal()) continue; - if (fOnlyConfirmed && !pcoin->IsTrusted()) + if (fOnlyConfirmed && !pbean->IsTrusted()) continue; - if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0) + if (pbean->IsBeanBase() && pbean->GetBlocksToMaturity() > 0) continue; - if(pcoin->IsCoinStake() && pcoin->GetBlocksToMaturity() > 0) + if(pbean->IsBeanStake() && pbean->GetBlocksToMaturity() > 0) continue; - int nDepth = pcoin->GetDepthInMainChain(); + int nDepth = pbean->GetDepthInMainChain(); if (nDepth < 0) continue; - for (unsigned int i = 0; i < pcoin->vout.size(); i++) - if (!(pcoin->IsSpent(i)) && IsMine(pcoin->vout[i]) && pcoin->vout[i].nValue >= nMinimumInputValue && - (!coinControl || !coinControl->HasSelected() || coinControl->IsSelected((*it).first, i))) - vCoins.push_back(COutput(pcoin, i, nDepth)); + for (unsigned int i = 0; i < pbean->vout.size(); i++) + if (!(pbean->IsSpent(i)) && IsMine(pbean->vout[i]) && pbean->vout[i].nValue >= nMinimumInputValue && + (!beanControl || !beanControl->HasSelected() || beanControl->IsSelected((*it).first, i))) + vBeans.push_back(COutput(pbean, i, nDepth)); } } } -void CWallet::AvailableCoinsMinConf(vector& vCoins, int nConf) const +void CWallet::AvailableBeansMinConf(vector& vBeans, int nConf) const { - vCoins.clear(); + vBeans.clear(); { LOCK(cs_wallet); for (map::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { - const CWalletTx* pcoin = &(*it).second; + const CWalletTx* pbean = &(*it).second; - if (!pcoin->IsFinal()) + if (!pbean->IsFinal()) continue; - if(pcoin->GetDepthInMainChain() < nConf) + if(pbean->GetDepthInMainChain() < nConf) continue; - for (unsigned int i = 0; i < pcoin->vout.size(); i++) - if (!(pcoin->IsSpent(i)) && IsMine(pcoin->vout[i]) && pcoin->vout[i].nValue >= nMinimumInputValue) - vCoins.push_back(COutput(pcoin, i, pcoin->GetDepthInMainChain())); + for (unsigned int i = 0; i < pbean->vout.size(); i++) + if (!(pbean->IsSpent(i)) && IsMine(pbean->vout[i]) && pbean->vout[i].nValue >= nMinimumInputValue) + vBeans.push_back(COutput(pbean, i, pbean->GetDepthInMainChain())); } } } @@ -1146,16 +1147,16 @@ static void ApproximateBestSubset(vector::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { - const CWalletTx* pcoin = &(*it).second; - if (pcoin->IsCoinStake() && pcoin->GetBlocksToMaturity() > 0 && pcoin->GetDepthInMainChain() > 0) - nTotal += CWallet::GetCredit(*pcoin); + const CWalletTx* pbean = &(*it).second; + if (pbean->IsBeanStake() && pbean->GetBlocksToMaturity() > 0 && pbean->GetDepthInMainChain() > 0) + nTotal += CWallet::GetCredit(*pbean); } return nTotal; } @@ -1166,58 +1167,58 @@ int64_t CWallet::GetNewMint() const LOCK(cs_wallet); for (map::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { - const CWalletTx* pcoin = &(*it).second; - if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0 && pcoin->GetDepthInMainChain() > 0) - nTotal += CWallet::GetCredit(*pcoin); + const CWalletTx* pbean = &(*it).second; + if (pbean->IsBeanBase() && pbean->GetBlocksToMaturity() > 0 && pbean->GetDepthInMainChain() > 0) + nTotal += CWallet::GetCredit(*pbean); } return nTotal; } -bool CWallet::SelectCoinsMinConf(int64_t nTargetValue, unsigned int nSpendTime, int nConfMine, int nConfTheirs, vector vCoins, set >& setCoinsRet, int64_t& nValueRet) const +bool CWallet::SelectBeansMinConf(int64_t nTargetValue, unsigned int nSpendTime, int nConfMine, int nConfTheirs, vector vBeans, set >& setBeansRet, int64_t& nValueRet) const { - setCoinsRet.clear(); + setBeansRet.clear(); nValueRet = 0; // List of values less than target - pair > coinLowestLarger; - coinLowestLarger.first = std::numeric_limits::max(); - coinLowestLarger.second.first = NULL; + pair > beanLowestLarger; + beanLowestLarger.first = std::numeric_limits::max(); + beanLowestLarger.second.first = NULL; vector > > vValue; int64_t nTotalLower = 0; - random_shuffle(vCoins.begin(), vCoins.end(), GetRandInt); + random_shuffle(vBeans.begin(), vBeans.end(), GetRandInt); - BOOST_FOREACH(COutput output, vCoins) + BOOST_FOREACH(COutput output, vBeans) { - const CWalletTx *pcoin = output.tx; + const CWalletTx *pbean = output.tx; - if (output.nDepth < (pcoin->IsFromMe() ? nConfMine : nConfTheirs)) + if (output.nDepth < (pbean->IsFromMe() ? nConfMine : nConfTheirs)) continue; int i = output.i; // Follow the timestamp rules - if (pcoin->nTime > nSpendTime) + if (pbean->nTime > nSpendTime) continue; - int64_t n = pcoin->vout[i].nValue; + int64_t n = pbean->vout[i].nValue; - pair > coin = make_pair(n,make_pair(pcoin, i)); + pair > bean = make_pair(n,make_pair(pbean, i)); if (n == nTargetValue) { - setCoinsRet.insert(coin.second); - nValueRet += coin.first; + setBeansRet.insert(bean.second); + nValueRet += bean.first; return true; } else if (n < nTargetValue + CENT) { - vValue.push_back(coin); + vValue.push_back(bean); nTotalLower += n; } - else if (n < coinLowestLarger.first) + else if (n < beanLowestLarger.first) { - coinLowestLarger = coin; + beanLowestLarger = bean; } } @@ -1225,7 +1226,7 @@ bool CWallet::SelectCoinsMinConf(int64_t nTargetValue, unsigned int nSpendTime, { for (unsigned int i = 0; i < vValue.size(); ++i) { - setCoinsRet.insert(vValue[i].second); + setBeansRet.insert(vValue[i].second); nValueRet += vValue[i].first; } return true; @@ -1233,10 +1234,10 @@ bool CWallet::SelectCoinsMinConf(int64_t nTargetValue, unsigned int nSpendTime, if (nTotalLower < nTargetValue) { - if (coinLowestLarger.second.first == NULL) + if (beanLowestLarger.second.first == NULL) return false; - setCoinsRet.insert(coinLowestLarger.second); - nValueRet += coinLowestLarger.first; + setBeansRet.insert(beanLowestLarger.second); + nValueRet += beanLowestLarger.first; return true; } @@ -1249,26 +1250,26 @@ bool CWallet::SelectCoinsMinConf(int64_t nTargetValue, unsigned int nSpendTime, if (nBest != nTargetValue && nTotalLower >= nTargetValue + CENT) ApproximateBestSubset(vValue, nTotalLower, nTargetValue + CENT, vfBest, nBest, 1000); - // If we have a bigger coin and (either the stochastic approximation didn't find a good solution, - // or the next bigger coin is closer), return the bigger coin - if (coinLowestLarger.second.first && - ((nBest != nTargetValue && nBest < nTargetValue + CENT) || coinLowestLarger.first <= nBest)) + // If we have a bigger bean and (either the stochastic approximation didn't find a good solution, + // or the next bigger bean is closer), return the bigger bean + if (beanLowestLarger.second.first && + ((nBest != nTargetValue && nBest < nTargetValue + CENT) || beanLowestLarger.first <= nBest)) { - setCoinsRet.insert(coinLowestLarger.second); - nValueRet += coinLowestLarger.first; + setBeansRet.insert(beanLowestLarger.second); + nValueRet += beanLowestLarger.first; } else { for (unsigned int i = 0; i < vValue.size(); i++) if (vfBest[i]) { - setCoinsRet.insert(vValue[i].second); + setBeansRet.insert(vValue[i].second); nValueRet += vValue[i].first; } if (fDebug && GetBoolArg("-printpriority")) { //// debug print - printf("SelectCoins() best subset: "); + printf("SelectBeans() best subset: "); for (unsigned int i = 0; i < vValue.size(); i++) if (vfBest[i]) printf("%s ", FormatMoney(vValue[i].first).c_str()); @@ -1279,39 +1280,39 @@ bool CWallet::SelectCoinsMinConf(int64_t nTargetValue, unsigned int nSpendTime, return true; } -bool CWallet::SelectCoins(int64_t nTargetValue, unsigned int nSpendTime, set >& setCoinsRet, int64_t& nValueRet, const CCoinControl* coinControl) const +bool CWallet::SelectBeans(int64_t nTargetValue, unsigned int nSpendTime, set >& setBeansRet, int64_t& nValueRet, const CBeanControl* beanControl) const { - vector vCoins; - AvailableCoins(vCoins, true, coinControl); + vector vBeans; + AvailableBeans(vBeans, true, beanControl); - // coin control -> return all selected outputs (we want all selected to go into the transaction for sure) - if (coinControl && coinControl->HasSelected()) + // bean control -> return all selected outputs (we want all selected to go into the transaction for sure) + if (beanControl && beanControl->HasSelected()) { - BOOST_FOREACH(const COutput& out, vCoins) + BOOST_FOREACH(const COutput& out, vBeans) { nValueRet += out.tx->vout[out.i].nValue; - setCoinsRet.insert(make_pair(out.tx, out.i)); + setBeansRet.insert(make_pair(out.tx, out.i)); } return (nValueRet >= nTargetValue); } - return (SelectCoinsMinConf(nTargetValue, nSpendTime, 1, 10, vCoins, setCoinsRet, nValueRet) || - SelectCoinsMinConf(nTargetValue, nSpendTime, 1, 1, vCoins, setCoinsRet, nValueRet) || - SelectCoinsMinConf(nTargetValue, nSpendTime, 0, 1, vCoins, setCoinsRet, nValueRet)); + return (SelectBeansMinConf(nTargetValue, nSpendTime, 1, 10, vBeans, setBeansRet, nValueRet) || + SelectBeansMinConf(nTargetValue, nSpendTime, 1, 1, vBeans, setBeansRet, nValueRet) || + SelectBeansMinConf(nTargetValue, nSpendTime, 0, 1, vBeans, setBeansRet, nValueRet)); } -// Select some coins without random shuffle or best subset approximation -bool CWallet::SelectCoinsSimple(int64_t nTargetValue, unsigned int nSpendTime, int nMinConf, set >& setCoinsRet, int64_t& nValueRet) const +// Select some beans without random shuffle or best subset approximation +bool CWallet::SelectBeansSimple(int64_t nTargetValue, unsigned int nSpendTime, int nMinConf, set >& setBeansRet, int64_t& nValueRet) const { - vector vCoins; - AvailableCoinsMinConf(vCoins, nMinConf); + vector vBeans; + AvailableBeansMinConf(vBeans, nMinConf); - setCoinsRet.clear(); + setBeansRet.clear(); nValueRet = 0; - BOOST_FOREACH(COutput output, vCoins) + BOOST_FOREACH(COutput output, vBeans) { - const CWalletTx *pcoin = output.tx; + const CWalletTx *pbean = output.tx; int i = output.i; // Stop if we've chosen enough inputs @@ -1319,32 +1320,32 @@ bool CWallet::SelectCoinsSimple(int64_t nTargetValue, unsigned int nSpendTime, i break; // Follow the timestamp rules - if (pcoin->nTime > nSpendTime) + if (pbean->nTime > nSpendTime) continue; - int64_t n = pcoin->vout[i].nValue; + int64_t n = pbean->vout[i].nValue; - pair > coin = make_pair(n,make_pair(pcoin, i)); + pair > bean = make_pair(n,make_pair(pbean, i)); if (n >= nTargetValue) { // If input value is greater or equal to target then simply insert // it into the current subset and exit - setCoinsRet.insert(coin.second); - nValueRet += coin.first; + setBeansRet.insert(bean.second); + nValueRet += bean.first; break; } else if (n < nTargetValue + CENT) { - setCoinsRet.insert(coin.second); - nValueRet += coin.first; + setBeansRet.insert(bean.second); + nValueRet += bean.first; } } return true; } -bool CWallet::CreateTransaction(const vector >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, const CCoinControl* coinControl) +bool CWallet::CreateTransaction(const vector >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, const CBeanControl* beanControl) { int64_t nValue = 0; BOOST_FOREACH (const PAIRTYPE(CScript, int64_t)& s, vecSend) @@ -1376,15 +1377,15 @@ bool CWallet::CreateTransaction(const vector >& vecSend, BOOST_FOREACH (const PAIRTYPE(CScript, int64_t)& s, vecSend) wtxNew.vout.push_back(CTxOut(s.second, s.first)); - // Choose coins to use - set > setCoins; + // Choose beans to use + set > setBeans; int64_t nValueIn = 0; - if (!SelectCoins(nTotalValue, wtxNew.nTime, setCoins, nValueIn, coinControl)) + if (!SelectBeans(nTotalValue, wtxNew.nTime, setBeans, nValueIn, beanControl)) return false; - BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pcoin, setCoins) + BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pbean, setBeans) { - int64_t nCredit = pcoin.first->vout[pcoin.second].nValue; - dPriority += (double)nCredit * pcoin.first->GetDepthInMainChain(); + int64_t nCredit = pbean.first->vout[pbean.second].nValue; + dPriority += (double)nCredit * pbean.first->GetDepthInMainChain(); } int64_t nChange = nValueIn - nValue - nFeeRet; @@ -1402,14 +1403,14 @@ bool CWallet::CreateTransaction(const vector >& vecSend, { // Fill a vout to ourself // TODO: pass in scriptChange instead of reservekey so - // change transaction isn't always pay-to-bitcoin-address + // change transaction isn't always pay-to-bitbean-address CScript scriptChange; - // coin control: send change to custom address - if (coinControl && !boost::get(&coinControl->destChange)) - scriptChange.SetDestination(coinControl->destChange); + // bean control: send change to custom address + if (beanControl && !boost::get(&beanControl->destChange)) + scriptChange.SetDestination(beanControl->destChange); - // no coin control: send change to newly generated address + // no bean control: send change to newly generated address else { // Note: We use a new key here to keep it from being obvious which side is the change. @@ -1434,13 +1435,13 @@ bool CWallet::CreateTransaction(const vector >& vecSend, reservekey.ReturnKey(); // Fill vin - BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins) - wtxNew.vin.push_back(CTxIn(coin.first->GetHash(),coin.second)); + BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& bean, setBeans) + wtxNew.vin.push_back(CTxIn(bean.first->GetHash(),bean.second)); // Sign int nIn = 0; - BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins) - if (!SignSignature(*this, *coin.first, wtxNew, nIn++)) + BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& bean, setBeans) + if (!SignSignature(*this, *bean.first, wtxNew, nIn++)) return false; // Limit size @@ -1470,17 +1471,17 @@ bool CWallet::CreateTransaction(const vector >& vecSend, return true; } -bool CWallet::CreateTransaction(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, const CCoinControl* coinControl) +bool CWallet::CreateTransaction(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, const CBeanControl* beanControl) { vector< pair > vecSend; vecSend.push_back(make_pair(scriptPubKey, nValue)); - return CreateTransaction(vecSend, wtxNew, reservekey, nFeeRet, coinControl); + return CreateTransaction(vecSend, wtxNew, reservekey, nFeeRet, beanControl); } -// NovaCoin: get current stake weight +// Bitbean: get current stake weight bool CWallet::GetStakeWeight(const CKeyStore& keystore, uint64_t& nMinWeight, uint64_t& nMaxWeight, uint64_t& nWeight) { - // Choose coins to use + // Choose beans to use int64_t nBalance = GetBalance(); if (nBalance <= nReserveBalance) @@ -1488,67 +1489,67 @@ bool CWallet::GetStakeWeight(const CKeyStore& keystore, uint64_t& nMinWeight, ui vector vwtxPrev; - set > setCoins; + set > setBeans; int64_t nValueIn = 0; - if (!SelectCoinsSimple(nBalance - nReserveBalance, GetTime(), nCoinbaseMaturity + 10, setCoins, nValueIn)) + if (!SelectBeansSimple(nBalance - nReserveBalance, GetTime(), nBeanbaseMaturity + 10, setBeans, nValueIn)) return false; - if (setCoins.empty()) + if (setBeans.empty()) return false; nMinWeight = nMaxWeight = nWeight = 0; CTxDB txdb("r"); - BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pcoin, setCoins) + BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pbean, setBeans) { CTxIndex txindex; { LOCK2(cs_main, cs_wallet); - if (!txdb.ReadTxIndex(pcoin.first->GetHash(), txindex)) + if (!txdb.ReadTxIndex(pbean.first->GetHash(), txindex)) continue; } - int64_t nTimeWeight = GetWeight((int64_t)pcoin.first->nTime, (int64_t)GetTime()); - CBigNum bnCoinDayWeight = CBigNum(pcoin.first->vout[pcoin.second].nValue) * nTimeWeight / COIN / (24 * 60 * 60); + int64_t nTimeWeight = GetWeight((int64_t)pbean.first->nTime, (int64_t)GetTime()); + CBigNum bnBeanDayWeight = CBigNum(pbean.first->vout[pbean.second].nValue) * nTimeWeight / bean / (24 * 60 * 60); // Weight is greater than zero if (nTimeWeight > 0) { - nWeight += bnCoinDayWeight.getuint64(); + nWeight += bnBeanDayWeight.getuint64(); } // Weight is greater than zero, but the maximum value isn't reached yet if (nTimeWeight > 0 && nTimeWeight < nStakeMaxAge) { - nMinWeight += bnCoinDayWeight.getuint64(); + nMinWeight += bnBeanDayWeight.getuint64(); } // Maximum weight was reached if (nTimeWeight == nStakeMaxAge) { - nMaxWeight += bnCoinDayWeight.getuint64(); + nMaxWeight += bnBeanDayWeight.getuint64(); } } return true; } -bool CWallet::CreateCoinStake(const CKeyStore& keystore, unsigned int nBits, int64_t nSearchInterval, int64_t nFees, CTransaction& txNew, CKey& key) +bool CWallet::CreateBeanStake(const CKeyStore& keystore, unsigned int nBits, int64_t nSearchInterval, int64_t nFees, CTransaction& txNew, CKey& key) { CBlockIndex* pindexPrev = pindexBest; - CBigNum bnTargetPerCoinDay; - bnTargetPerCoinDay.SetCompact(nBits); + CBigNum bnTargetPerBeanDay; + bnTargetPerBeanDay.SetCompact(nBits); txNew.vin.clear(); txNew.vout.clear(); - // Mark coin stake transaction + // Mark bean stake transaction CScript scriptEmpty; scriptEmpty.clear(); txNew.vout.push_back(CTxOut(0, scriptEmpty)); - // Choose coins to use + // Choose beans to use int64_t nBalance = GetBalance(); if (nBalance <= nReserveBalance) @@ -1556,25 +1557,25 @@ bool CWallet::CreateCoinStake(const CKeyStore& keystore, unsigned int nBits, int vector vwtxPrev; - set > setCoins; + set > setBeans; int64_t nValueIn = 0; - // Select coins with suitable depth - if (!SelectCoinsSimple(nBalance - nReserveBalance, txNew.nTime, nCoinbaseMaturity + 10, setCoins, nValueIn)) + // Select beans with suitable depth + if (!SelectBeansSimple(nBalance - nReserveBalance, txNew.nTime, nBeanbaseMaturity + 10, setBeans, nValueIn)) return false; - if (setCoins.empty()) + if (setBeans.empty()) return false; int64_t nCredit = 0; CScript scriptPubKeyKernel; CTxDB txdb("r"); - BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pcoin, setCoins) + BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pbean, setBeans) { CTxIndex txindex; { LOCK2(cs_main, cs_wallet); - if (!txdb.ReadTxIndex(pcoin.first->GetHash(), txindex)) + if (!txdb.ReadTxIndex(pbean.first->GetHash(), txindex)) continue; } @@ -1588,7 +1589,7 @@ bool CWallet::CreateCoinStake(const CKeyStore& keystore, unsigned int nBits, int static int nMaxStakeSearchInterval = 60; if (block.GetBlockTime() + nStakeMinAge > txNew.nTime - nMaxStakeSearchInterval) - continue; // only count coins meeting min age requirement + continue; // only count beans meeting min age requirement bool fKernelFound = false; for (unsigned int n=0; nGetHash(), pcoin.second); - if (CheckStakeKernelHash(nBits, block, txindex.pos.nTxPos - txindex.pos.nBlockPos, *pcoin.first, prevoutStake, txNew.nTime - n, hashProofOfStake, targetProofOfStake)) + COutPoint prevoutStake = COutPoint(pbean.first->GetHash(), pbean.second); + if (CheckStakeKernelHash(nBits, block, txindex.pos.nTxPos - txindex.pos.nBlockPos, *pbean.first, prevoutStake, txNew.nTime - n, hashProofOfStake, targetProofOfStake)) { // Found a kernel - if (fDebug && GetBoolArg("-printcoinstake")) - printf("CreateCoinStake : kernel found\n"); + if (fDebug && GetBoolArg("-printbeansprout")) + printf("CreateBeanStake : kernel found\n"); vector vSolutions; txnouttype whichType; CScript scriptPubKeyOut; - scriptPubKeyKernel = pcoin.first->vout[pcoin.second].scriptPubKey; + scriptPubKeyKernel = pbean.first->vout[pbean.second].scriptPubKey; if (!Solver(scriptPubKeyKernel, whichType, vSolutions)) { - if (fDebug && GetBoolArg("-printcoinstake")) - printf("CreateCoinStake : failed to parse kernel\n"); + if (fDebug && GetBoolArg("-printbeansprout")) + printf("CreateBeanStake : failed to parse kernel\n"); break; } - if (fDebug && GetBoolArg("-printcoinstake")) - printf("CreateCoinStake : parsed kernel type=%d\n", whichType); + if (fDebug && GetBoolArg("-printbeansprout")) + printf("CreateBeanStake : parsed kernel type=%d\n", whichType); if (whichType != TX_PUBKEY && whichType != TX_PUBKEYHASH) { - if (fDebug && GetBoolArg("-printcoinstake")) - printf("CreateCoinStake : no support for kernel type=%d\n", whichType); + if (fDebug && GetBoolArg("-printbeansprout")) + printf("CreateBeanStake : no support for kernel type=%d\n", whichType); break; // only support pay to public key and pay to address } if (whichType == TX_PUBKEYHASH) // pay to address type @@ -1625,8 +1626,8 @@ bool CWallet::CreateCoinStake(const CKeyStore& keystore, unsigned int nBits, int // convert to pay to public key type if (!keystore.GetKey(uint160(vSolutions[0]), key)) { - if (fDebug && GetBoolArg("-printcoinstake")) - printf("CreateCoinStake : failed to get key for kernel type=%d\n", whichType); + if (fDebug && GetBoolArg("-printbeansprout")) + printf("CreateBeanStake : failed to get key for kernel type=%d\n", whichType); break; // unable to find corresponding public key } scriptPubKeyOut << key.GetPubKey() << OP_CHECKSIG; @@ -1636,15 +1637,15 @@ bool CWallet::CreateCoinStake(const CKeyStore& keystore, unsigned int nBits, int valtype& vchPubKey = vSolutions[0]; if (!keystore.GetKey(Hash160(vchPubKey), key)) { - if (fDebug && GetBoolArg("-printcoinstake")) - printf("CreateCoinStake : failed to get key for kernel type=%d\n", whichType); + if (fDebug && GetBoolArg("-printbeansprout")) + printf("CreateBeanStake : failed to get key for kernel type=%d\n", whichType); break; // unable to find corresponding public key } if (key.GetPubKey() != vchPubKey) { - if (fDebug && GetBoolArg("-printcoinstake")) - printf("CreateCoinStake : invalid key for kernel type=%d\n", whichType); + if (fDebug && GetBoolArg("-printbeansprout")) + printf("CreateBeanStake : invalid key for kernel type=%d\n", whichType); break; // keys mismatch } @@ -1652,15 +1653,15 @@ bool CWallet::CreateCoinStake(const CKeyStore& keystore, unsigned int nBits, int } txNew.nTime -= n; - txNew.vin.push_back(CTxIn(pcoin.first->GetHash(), pcoin.second)); - nCredit += pcoin.first->vout[pcoin.second].nValue; - vwtxPrev.push_back(pcoin.first); + txNew.vin.push_back(CTxIn(pbean.first->GetHash(), pbean.second)); + nCredit += pbean.first->vout[pbean.second].nValue; + vwtxPrev.push_back(pbean.first); txNew.vout.push_back(CTxOut(0, scriptPubKeyOut)); if (GetWeight(block.GetBlockTime(), (int64_t)txNew.nTime) < nStakeSplitAge) txNew.vout.push_back(CTxOut(0, scriptPubKeyOut)); //split stake - if (fDebug && GetBoolArg("-printcoinstake")) - printf("CreateCoinStake : added kernel type=%d\n", whichType); + if (fDebug && GetBoolArg("-printbeansprout")) + printf("CreateBeanStake : added kernel type=%d\n", whichType); fKernelFound = true; break; } @@ -1673,14 +1674,14 @@ bool CWallet::CreateCoinStake(const CKeyStore& keystore, unsigned int nBits, int if (nCredit == 0 || nCredit > nBalance - nReserveBalance) return false; - BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pcoin, setCoins) + BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pbean, setBeans) { // Attempt to add more inputs - // Only add coins of the same key/address as kernel - if (txNew.vout.size() == 2 && ((pcoin.first->vout[pcoin.second].scriptPubKey == scriptPubKeyKernel || pcoin.first->vout[pcoin.second].scriptPubKey == txNew.vout[1].scriptPubKey)) - && pcoin.first->GetHash() != txNew.vin[0].prevout.hash) + // Only add beans of the same key/address as kernel + if (txNew.vout.size() == 2 && ((pbean.first->vout[pbean.second].scriptPubKey == scriptPubKeyKernel || pbean.first->vout[pbean.second].scriptPubKey == txNew.vout[1].scriptPubKey)) + && pbean.first->GetHash() != txNew.vin[0].prevout.hash) { - int64_t nTimeWeight = GetWeight((int64_t)pcoin.first->nTime, (int64_t)txNew.nTime); + int64_t nTimeWeight = GetWeight((int64_t)pbean.first->nTime, (int64_t)txNew.nTime); // Stop adding more inputs if already too many inputs if (txNew.vin.size() >= 100) @@ -1689,29 +1690,29 @@ bool CWallet::CreateCoinStake(const CKeyStore& keystore, unsigned int nBits, int if (nCredit >= nStakeCombineThreshold) break; // Stop adding inputs if reached reserve limit - if (nCredit + pcoin.first->vout[pcoin.second].nValue > nBalance - nReserveBalance) + if (nCredit + pbean.first->vout[pbean.second].nValue > nBalance - nReserveBalance) break; // Do not add additional significant input - if (pcoin.first->vout[pcoin.second].nValue >= nStakeCombineThreshold) + if (pbean.first->vout[pbean.second].nValue >= nStakeCombineThreshold) continue; // Do not add input that is still too young if (nTimeWeight < nStakeMinAge) continue; - txNew.vin.push_back(CTxIn(pcoin.first->GetHash(), pcoin.second)); - nCredit += pcoin.first->vout[pcoin.second].nValue; - vwtxPrev.push_back(pcoin.first); + txNew.vin.push_back(CTxIn(pbean.first->GetHash(), pbean.second)); + nCredit += pbean.first->vout[pbean.second].nValue; + vwtxPrev.push_back(pbean.first); } } - // Calculate coin age reward + // Calculate bean age reward { - uint64_t nCoinAge; + uint64_t nBeanAge; CTxDB txdb("r"); - if (!txNew.GetCoinAge(txdb, nCoinAge)) - return error("CreateCoinStake : failed to calculate coin age"); + if (!txNew.GetBeanAge(txdb, nBeanAge)) + return error("CreateBeanStake : failed to calculate bean age"); - int64_t nReward = GetProofOfStakeReward(nCoinAge, nFees); + int64_t nReward = GetProofOfStakeReward(nBeanAge, nFees); if (nReward <= 0) return false; @@ -1729,18 +1730,18 @@ bool CWallet::CreateCoinStake(const CKeyStore& keystore, unsigned int nBits, int // Sign int nIn = 0; - BOOST_FOREACH(const CWalletTx* pcoin, vwtxPrev) + BOOST_FOREACH(const CWalletTx* pbean, vwtxPrev) { - if (!SignSignature(*this, *pcoin, txNew, nIn++)) - return error("CreateCoinStake : failed to sign coinstake"); + if (!SignSignature(*this, *pbean, txNew, nIn++)) + return error("CreateBeanStake : failed to sign beansprout"); } // Limit size unsigned int nBytes = ::GetSerializeSize(txNew, SER_NETWORK, PROTOCOL_VERSION); if (nBytes >= MAX_BLOCK_SIZE_GEN/5) - return error("CreateCoinStake : exceeded coinstake size limit"); + return error("CreateBeanStake : exceeded beansprout size limit"); - // Successfully generated coinstake + // Successfully generated beansprout return true; } @@ -1764,15 +1765,15 @@ bool CWallet::CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey) // otherwise just for transaction history. AddToWallet(wtxNew); - // Mark old coins as spent - set setCoins; + // Mark old beans as spent + set setBeans; BOOST_FOREACH(const CTxIn& txin, wtxNew.vin) { - CWalletTx &coin = mapWallet[txin.prevout.hash]; - coin.BindWallet(this); - coin.MarkSpent(txin.prevout.n); - coin.WriteToDisk(); - NotifyTransactionChanged(this, coin.GetHash(), CT_UPDATED); + CWalletTx &bean = mapWallet[txin.prevout.hash]; + bean.BindWallet(this); + bean.MarkSpent(txin.prevout.n); + bean.WriteToDisk(); + NotifyTransactionChanged(this, bean.GetHash(), CT_UPDATED); } if (fFileBacked) @@ -1829,7 +1830,7 @@ string CWallet::SendMoney(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNe return "ABORTED"; if (!CommitTransaction(wtxNew, reservekey)) - return _("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."); + return _("Error: The transaction was rejected. This might happen if some of the beans in your wallet were already spent, such as if you used a copy of wallet.dat and beans were spent in the copy but not marked as spent here."); return ""; } @@ -1844,7 +1845,7 @@ string CWallet::SendMoneyToDestination(const CTxDestination& address, int64_t nV if (nValue + nTransactionFee > GetBalance()) return _("Insufficient funds"); - // Parse Bitcoin address + // Parse Bitbean address CScript scriptPubKey; scriptPubKey.SetDestination(address); @@ -1887,7 +1888,7 @@ bool CWallet::SetAddressBookName(const CTxDestination& address, const string& st NotifyAddressBookChanged(this, address, strName, ::IsMine(*this, address), (mi == mapAddressBook.end()) ? CT_NEW : CT_UPDATED); if (!fFileBacked) return false; - return CWalletDB(strWalletFile).WriteName(CBitcoinAddress(address).ToString(), strName); + return CWalletDB(strWalletFile).WriteName(CBitbeanAddress(address).ToString(), strName); } bool CWallet::DelAddressBookName(const CTxDestination& address) @@ -1896,7 +1897,7 @@ bool CWallet::DelAddressBookName(const CTxDestination& address) NotifyAddressBookChanged(this, address, "", ::IsMine(*this, address), CT_DELETED); if (!fFileBacked) return false; - return CWalletDB(strWalletFile).EraseName(CBitcoinAddress(address).ToString()); + return CWalletDB(strWalletFile).EraseName(CBitbeanAddress(address).ToString()); } @@ -2120,27 +2121,27 @@ std::map CWallet::GetAddressBalances() LOCK(cs_wallet); BOOST_FOREACH(PAIRTYPE(uint256, CWalletTx) walletEntry, mapWallet) { - CWalletTx *pcoin = &walletEntry.second; + CWalletTx *pbean = &walletEntry.second; - if (!pcoin->IsFinal() || !pcoin->IsTrusted()) + if (!pbean->IsFinal() || !pbean->IsTrusted()) continue; - if ((pcoin->IsCoinBase() || pcoin->IsCoinStake()) && pcoin->GetBlocksToMaturity() > 0) + if ((pbean->IsBeanBase() || pbean->IsBeanStake()) && pbean->GetBlocksToMaturity() > 0) continue; - int nDepth = pcoin->GetDepthInMainChain(); - if (nDepth < (pcoin->IsFromMe() ? 0 : 1)) + int nDepth = pbean->GetDepthInMainChain(); + if (nDepth < (pbean->IsFromMe() ? 0 : 1)) continue; - for (unsigned int i = 0; i < pcoin->vout.size(); i++) + for (unsigned int i = 0; i < pbean->vout.size(); i++) { CTxDestination addr; - if (!IsMine(pcoin->vout[i])) + if (!IsMine(pbean->vout[i])) continue; - if(!ExtractDestination(pcoin->vout[i].scriptPubKey, addr)) + if(!ExtractDestination(pbean->vout[i].scriptPubKey, addr)) continue; - int64_t n = pcoin->IsSpent(i) ? 0 : pcoin->vout[i].nValue; + int64_t n = pbean->IsSpent(i) ? 0 : pbean->vout[i].nValue; if (!balances.count(addr)) balances[addr] = 0; @@ -2159,12 +2160,12 @@ set< set > CWallet::GetAddressGroupings() BOOST_FOREACH(PAIRTYPE(uint256, CWalletTx) walletEntry, mapWallet) { - CWalletTx *pcoin = &walletEntry.second; + CWalletTx *pbean = &walletEntry.second; - if (pcoin->vin.size() > 0 && IsMine(pcoin->vin[0])) + if (pbean->vin.size() > 0 && IsMine(pbean->vin[0])) { // group all input addresses with each other - BOOST_FOREACH(CTxIn txin, pcoin->vin) + BOOST_FOREACH(CTxIn txin, pbean->vin) { CTxDestination address; if(!ExtractDestination(mapWallet[txin.prevout.hash].vout[txin.prevout.n].scriptPubKey, address)) @@ -2173,10 +2174,10 @@ set< set > CWallet::GetAddressGroupings() } // group change with input addresses - BOOST_FOREACH(CTxOut txout, pcoin->vout) + BOOST_FOREACH(CTxOut txout, pbean->vout) if (IsChange(txout)) { - CWalletTx tx = mapWallet[pcoin->vin[0].prevout.hash]; + CWalletTx tx = mapWallet[pbean->vin[0].prevout.hash]; CTxDestination txoutAddr; if(!ExtractDestination(txout.scriptPubKey, txoutAddr)) continue; @@ -2187,11 +2188,11 @@ set< set > CWallet::GetAddressGroupings() } // group lone addrs by themselves - for (unsigned int i = 0; i < pcoin->vout.size(); i++) - if (IsMine(pcoin->vout[i])) + for (unsigned int i = 0; i < pbean->vout.size(); i++) + if (IsMine(pbean->vout[i])) { CTxDestination address; - if(!ExtractDestination(pcoin->vout[i].scriptPubKey, address)) + if(!ExtractDestination(pbean->vout[i].scriptPubKey, address)) continue; grouping.insert(address); groupings.insert(grouping); @@ -2235,61 +2236,61 @@ set< set > CWallet::GetAddressGroupings() return ret; } -// ppcoin: check 'spent' consistency between wallet and txindex -// ppcoin: fix wallet spent state according to txindex -void CWallet::FixSpentCoins(int& nMismatchFound, int64_t& nBalanceInQuestion, bool fCheckOnly) +// ppbean: check 'spent' consistency between wallet and txindex +// ppbean: fix wallet spent state according to txindex +void CWallet::FixSpentBeans(int& nMismatchFound, int64_t& nBalanceInQuestion, bool fCheckOnly) { nMismatchFound = 0; nBalanceInQuestion = 0; LOCK(cs_wallet); - vector vCoins; - vCoins.reserve(mapWallet.size()); + vector vBeans; + vBeans.reserve(mapWallet.size()); for (map::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) - vCoins.push_back(&(*it).second); + vBeans.push_back(&(*it).second); CTxDB txdb("r"); - BOOST_FOREACH(CWalletTx* pcoin, vCoins) + BOOST_FOREACH(CWalletTx* pbean, vBeans) { // Find the corresponding transaction index CTxIndex txindex; - if (!txdb.ReadTxIndex(pcoin->GetHash(), txindex)) + if (!txdb.ReadTxIndex(pbean->GetHash(), txindex)) continue; - for (unsigned int n=0; n < pcoin->vout.size(); n++) + for (unsigned int n=0; n < pbean->vout.size(); n++) { - if (IsMine(pcoin->vout[n]) && pcoin->IsSpent(n) && (txindex.vSpent.size() <= n || txindex.vSpent[n].IsNull())) + if (IsMine(pbean->vout[n]) && pbean->IsSpent(n) && (txindex.vSpent.size() <= n || txindex.vSpent[n].IsNull())) { - printf("FixSpentCoins found lost coin %s TC %s[%d], %s\n", - FormatMoney(pcoin->vout[n].nValue).c_str(), pcoin->GetHash().ToString().c_str(), n, fCheckOnly? "repair not attempted" : "repairing"); + printf("FixSpentBeans found lost bean %s TC %s[%d], %s\n", + FormatMoney(pbean->vout[n].nValue).c_str(), pbean->GetHash().ToString().c_str(), n, fCheckOnly? "repair not attempted" : "repairing"); nMismatchFound++; - nBalanceInQuestion += pcoin->vout[n].nValue; + nBalanceInQuestion += pbean->vout[n].nValue; if (!fCheckOnly) { - pcoin->MarkUnspent(n); - pcoin->WriteToDisk(); + pbean->MarkUnspent(n); + pbean->WriteToDisk(); } } - else if (IsMine(pcoin->vout[n]) && !pcoin->IsSpent(n) && (txindex.vSpent.size() > n && !txindex.vSpent[n].IsNull())) + else if (IsMine(pbean->vout[n]) && !pbean->IsSpent(n) && (txindex.vSpent.size() > n && !txindex.vSpent[n].IsNull())) { - printf("FixSpentCoins found spent coin %s TC %s[%d], %s\n", - FormatMoney(pcoin->vout[n].nValue).c_str(), pcoin->GetHash().ToString().c_str(), n, fCheckOnly? "repair not attempted" : "repairing"); + printf("FixSpentBeans found spent bean %s TC %s[%d], %s\n", + FormatMoney(pbean->vout[n].nValue).c_str(), pbean->GetHash().ToString().c_str(), n, fCheckOnly? "repair not attempted" : "repairing"); nMismatchFound++; - nBalanceInQuestion += pcoin->vout[n].nValue; + nBalanceInQuestion += pbean->vout[n].nValue; if (!fCheckOnly) { - pcoin->MarkSpent(n); - pcoin->WriteToDisk(); + pbean->MarkSpent(n); + pbean->WriteToDisk(); } } } } } -// ppcoin: disable transaction (only for coinstake) +// ppbean: disable transaction (only for beansprout) void CWallet::DisableTransaction(const CTransaction &tx) { - if (!tx.IsCoinStake() || !IsFromMe(tx)) - return; // only disconnecting coinstake requires marking input unspent + if (!tx.IsBeanStake() || !IsFromMe(tx)) + return; // only disconnecting beansprout requires marking input unspent LOCK(cs_wallet); BOOST_FOREACH(const CTxIn& txin, tx.vin) diff --git a/src/wallet.h b/src/wallet.h index b7db491..1fe1211 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -1,9 +1,10 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_WALLET_H -#define BITCOIN_WALLET_H +#ifndef BITBEAN_WALLET_H +#define BITBEAN_WALLET_H #include #include @@ -24,7 +25,7 @@ class CAccountingEntry; class CWalletTx; class CReserveKey; class COutput; -class CCoinControl; +class CBeanControl; /** (client) version numbers for particular wallet features */ enum WalletFeature @@ -70,8 +71,8 @@ class CKeyPool class CWallet : public CCryptoKeyStore { private: - bool SelectCoinsSimple(int64_t nTargetValue, unsigned int nSpendTime, int nMinConf, std::set >& setCoinsRet, int64_t& nValueRet) const; - bool SelectCoins(int64_t nTargetValue, unsigned int nSpendTime, std::set >& setCoinsRet, int64_t& nValueRet, const CCoinControl *coinControl=NULL) const; + bool SelectBeansSimple(int64_t nTargetValue, unsigned int nSpendTime, int nMinConf, std::set >& setBeansRet, int64_t& nValueRet) const; + bool SelectBeans(int64_t nTargetValue, unsigned int nSpendTime, std::set >& setBeansRet, int64_t& nValueRet, const CBeanControl *beanControl=NULL) const; CWalletDB *pwalletdbEncryption; @@ -129,9 +130,9 @@ class CWallet : public CCryptoKeyStore // check whether we are allowed to upgrade (or already support) to the named feature bool CanSupportFeature(enum WalletFeature wf) { return nWalletMaxVersion >= wf; } - void AvailableCoinsMinConf(std::vector& vCoins, int nConf) const; - void AvailableCoins(std::vector& vCoins, bool fOnlyConfirmed=true, const CCoinControl *coinControl=NULL) const; - bool SelectCoinsMinConf(int64_t nTargetValue, unsigned int nSpendTime, int nConfMine, int nConfTheirs, std::vector vCoins, std::set >& setCoinsRet, int64_t& nValueRet) const; + void AvailableBeansMinConf(std::vector& vBeans, int nConf) const; + void AvailableBeans(std::vector& vBeans, bool fOnlyConfirmed=true, const CBeanControl *beanControl=NULL) const; + bool SelectBeansMinConf(int64_t nTargetValue, unsigned int nSpendTime, int nConfMine, int nConfTheirs, std::vector vBeans, std::set >& setBeansRet, int64_t& nValueRet) const; // keystore implementation // Generate a new key CPubKey GenerateNewKey(); @@ -186,12 +187,12 @@ class CWallet : public CCryptoKeyStore int64_t GetImmatureBalance() const; int64_t GetStake() const; int64_t GetNewMint() const; - bool CreateTransaction(const std::vector >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, const CCoinControl *coinControl=NULL); - bool CreateTransaction(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, const CCoinControl *coinControl=NULL); + bool CreateTransaction(const std::vector >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, const CBeanControl *beanControl=NULL); + bool CreateTransaction(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, const CBeanControl *beanControl=NULL); bool CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey); bool GetStakeWeight(const CKeyStore& keystore, uint64_t& nMinWeight, uint64_t& nMaxWeight, uint64_t& nWeight); - bool CreateCoinStake(const CKeyStore& keystore, unsigned int nBits, int64_t nSearchInterval, int64_t nFees, CTransaction& txNew, CKey& key); + bool CreateBeanStake(const CKeyStore& keystore, unsigned int nBits, int64_t nSearchInterval, int64_t nFees, CTransaction& txNew, CKey& key); std::string SendMoney(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNew, bool fAskFee=false); std::string SendMoneyToDestination(const CTxDestination &address, int64_t nValue, CWalletTx& wtxNew, bool fAskFee=false); @@ -312,7 +313,7 @@ class CWallet : public CCryptoKeyStore // get the current wallet format (the oldest client version guaranteed to understand this wallet) int GetVersion() { return nWalletVersion; } - void FixSpentCoins(int& nMismatchSpent, int64_t& nBalanceInQuestion, bool fCheckOnly = false); + void FixSpentBeans(int& nMismatchSpent, int64_t& nBalanceInQuestion, bool fCheckOnly = false); void DisableTransaction(const CTransaction &tx); /** Address book entry changed. @@ -585,8 +586,8 @@ class CWalletTx : public CMerkleTx int64_t GetCredit(bool fUseCache=true) const { - // Must wait until coinbase is safely deep enough in the chain before valuing it - if ((IsCoinBase() || IsCoinStake()) && GetBlocksToMaturity() > 0) + // Must wait until beanbase is safely deep enough in the chain before valuing it + if ((IsBeanBase() || IsBeanStake()) && GetBlocksToMaturity() > 0) return 0; // GetBalance can assume transactions in mapWallet won't change @@ -599,8 +600,8 @@ class CWalletTx : public CMerkleTx int64_t GetAvailableCredit(bool fUseCache=true) const { - // Must wait until coinbase is safely deep enough in the chain before valuing it - if ((IsCoinBase() || IsCoinStake()) && GetBlocksToMaturity() > 0) + // Must wait until beanbase is safely deep enough in the chain before valuing it + if ((IsBeanBase() || IsBeanStake()) && GetBlocksToMaturity() > 0) return 0; if (fUseCache && fAvailableCreditCached) diff --git a/src/walletdb.cpp b/src/walletdb.cpp index cc4d56c..344dd1e 100644 --- a/src/walletdb.cpp +++ b/src/walletdb.cpp @@ -1,5 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -213,7 +214,7 @@ ReadKeyValue(CWallet* pwallet, CDataStream& ssKey, CDataStream& ssValue, { string strAddress; ssKey >> strAddress; - ssValue >> pwallet->mapAddressBook[CBitcoinAddress(strAddress).Get()]; + ssValue >> pwallet->mapAddressBook[CBitbeanAddress(strAddress).Get()]; } else if (strType == "tx") { diff --git a/src/walletdb.h b/src/walletdb.h index 9b54b35..51be695 100644 --- a/src/walletdb.h +++ b/src/walletdb.h @@ -1,9 +1,10 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers +// Copyright (c) 2015 Bean Core www.bitbean.org // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#ifndef BITCOIN_WALLETDB_H -#define BITCOIN_WALLETDB_H +#ifndef BITBEAN_WALLETDB_H +#define BITBEAN_WALLETDB_H #include "db.h" #include "base58.h" @@ -182,4 +183,4 @@ class CWalletDB : public CDB static bool Recover(CDBEnv& dbenv, std::string filename); }; -#endif // BITCOIN_WALLETDB_H +#endif // BITBEAN_WALLETDB_H diff --git a/src/zerocoin/Accumulator.cpp b/src/zerocoin/Accumulator.cpp deleted file mode 100644 index e05f8ac..0000000 --- a/src/zerocoin/Accumulator.cpp +++ /dev/null @@ -1,106 +0,0 @@ -/** - * @file Accumulator.cpp - * - * @brief Accumulator and AccumulatorWitness classes for the Zerocoin library. - * - * @author Ian Miers, Christina Garman and Matthew Green - * @date June 2013 - * - * @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green - * @license This project is released under the MIT license. - **/ - -#include -#include "Zerocoin.h" - -namespace libzerocoin { - -//Accumulator class -Accumulator::Accumulator(const AccumulatorAndProofParams* p, const CoinDenomination d): params(p), denomination(d) { - if (!(params->initialized)) { - throw ZerocoinException("Invalid parameters for accumulator"); - } - - this->value = this->params->accumulatorBase; -} - -Accumulator::Accumulator(const Params* p, const CoinDenomination d) { - this->params = &(p->accumulatorParams); - this->denomination = d; - - if (!(params->initialized)) { - throw ZerocoinException("Invalid parameters for accumulator"); - } - - this->value = this->params->accumulatorBase; -} - -void Accumulator::accumulate(const PublicCoin& coin) { - // Make sure we're initialized - if(!(this->value)) { - throw ZerocoinException("Accumulator is not initialized"); - } - - if(this->denomination != coin.getDenomination()) { - //std::stringstream msg; - std::string msg; - msg = "Wrong denomination for coin. Expected coins of denomination: "; - msg += this->denomination; - msg += ". Instead, got a coin of denomination: "; - msg += coin.getDenomination(); - throw std::invalid_argument(msg); - } - - if(coin.validate()) { - // Compute new accumulator = "old accumulator"^{element} mod N - this->value = this->value.pow_mod(coin.getValue(), this->params->accumulatorModulus); - } else { - throw std::invalid_argument("Coin is not valid"); - } -} - -const CoinDenomination Accumulator::getDenomination() const { - return static_cast (this->denomination); -} - -const Bignum& Accumulator::getValue() const { - return this->value; -} - -Accumulator& Accumulator::operator += (const PublicCoin& c) { - this->accumulate(c); - return *this; -} - -bool Accumulator::operator == (const Accumulator rhs) const { - return this->value == rhs.value; -} - -//AccumulatorWitness class -AccumulatorWitness::AccumulatorWitness(const Params* p, - const Accumulator& checkpoint, const PublicCoin coin): params(p), witness(checkpoint), element(coin) { -} - -void AccumulatorWitness::AddElement(const PublicCoin& c) { - if(element != c) { - witness += c; - } -} - -const Bignum& AccumulatorWitness::getValue() const { - return this->witness.getValue(); -} - -bool AccumulatorWitness::VerifyWitness(const Accumulator& a, const PublicCoin &publicCoin) const { - Accumulator temp(witness); - temp += element; - return (temp == a && this->element == publicCoin); -} - -AccumulatorWitness& AccumulatorWitness::operator +=( - const PublicCoin& rhs) { - this->AddElement(rhs); - return *this; -} - -} /* namespace libzerocoin */ diff --git a/src/zerocoin/Accumulator.h b/src/zerocoin/Accumulator.h deleted file mode 100644 index deed87b..0000000 --- a/src/zerocoin/Accumulator.h +++ /dev/null @@ -1,148 +0,0 @@ -/** - * @file Accumulator.h - * - * @brief Accumulator and AccumulatorWitness classes for the Zerocoin library. - * - * @author Ian Miers, Christina Garman and Matthew Green - * @date June 2013 - * - * @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green - * @license This project is released under the MIT license. - **/ -#ifndef ACCUMULATOR_H_ -#define ACCUMULATOR_H_ - -namespace libzerocoin { -/** - * \brief Implementation of the RSA-based accumulator. - **/ - -class Accumulator { -public: - - /** - * @brief Construct an Accumulator from a stream. - * @param p An AccumulatorAndProofParams object containing global parameters - * @param d the denomination of coins we are accumulating - * @throw Zerocoin exception in case of invalid parameters - **/ - template - Accumulator(const AccumulatorAndProofParams* p, Stream& strm): params(p) { - strm >> *this; - } - - template - Accumulator(const Params* p, Stream& strm) { - strm >> *this; - this->params = &(p->accumulatorParams); - } - - /** - * @brief Construct an Accumulator from a Params object. - * @param p A Params object containing global parameters - * @param d the denomination of coins we are accumulating - * @throw Zerocoin exception in case of invalid parameters - **/ - Accumulator(const AccumulatorAndProofParams* p, const CoinDenomination d = ZQ_PEDERSEN); - - Accumulator(const Params* p, const CoinDenomination d = ZQ_PEDERSEN); - - /** - * Accumulate a coin into the accumulator. Validates - * the coin prior to accumulation. - * - * @param coin A PublicCoin to accumulate. - * - * @throw Zerocoin exception if the coin is not valid. - * - **/ - void accumulate(const PublicCoin &coin); - - const CoinDenomination getDenomination() const; - /** Get the accumulator result - * - * @return a Bignum containing the result. - */ - const Bignum& getValue() const; - - - // /** - // * Used to set the accumulator value - // * - // * Use this to handle accumulator checkpoints - // * @param b the value to set the accumulator to. - // * @throw A ZerocoinException if the accumulator value is invalid. - // */ - // void setValue(Bignum &b); // shouldn't this be a constructor? - - /** Used to accumulate a coin - * - * @param c the coin to accumulate - * @return a refrence to the updated accumulator. - */ - Accumulator& operator +=(const PublicCoin& c); - bool operator==(const Accumulator rhs) const; - - IMPLEMENT_SERIALIZE - ( - READWRITE(value); - READWRITE(denomination); - ) -private: - const AccumulatorAndProofParams* params; - Bignum value; - // Denomination is stored as an INT because storing - // and enum raises amigiuities in the serialize code //FIXME if possible - int denomination; -}; - -/**A witness that a PublicCoin is in the accumulation of a set of coins - * - */ -class AccumulatorWitness { -public: - template - AccumulatorWitness(const Params* p, Stream& strm): params(p) { - strm >> *this; - } - - /** Construct's a witness. You must add all elements after the witness - * @param p pointer to params - * @param checkpoint the last known accumulator value before the element was added - * @param coin the coin we want a witness to - */ - AccumulatorWitness(const Params* p, const Accumulator& checkpoint, const PublicCoin coin); - - /** Adds element to the set whose's accumulation we are proving coin is a member of - * - * @param c the coin to add - */ - void AddElement(const PublicCoin& c); - - /** - * - * @return the value of the witness - */ - const Bignum& getValue() const; - - /** Checks that this is a witness to the accumulation of coin - * @param a the accumulator we are checking against. - * @param publicCoin the coin we're providing a witness for - * @return True if the witness computation validates - */ - bool VerifyWitness(const Accumulator& a, const PublicCoin &publicCoin) const; - - /** - * Adds rhs to the set whose's accumulation ware proving coin is a member of - * @param rhs the PublicCoin to add - * @return - */ - AccumulatorWitness& operator +=(const PublicCoin& rhs); -private: - const Params* params; - Accumulator witness; - const PublicCoin element; -}; - -} /* namespace libzerocoin */ -#endif /* ACCUMULATOR_H_ */ diff --git a/src/zerocoin/AccumulatorProofOfKnowledge.cpp b/src/zerocoin/AccumulatorProofOfKnowledge.cpp deleted file mode 100644 index ed9ac91..0000000 --- a/src/zerocoin/AccumulatorProofOfKnowledge.cpp +++ /dev/null @@ -1,143 +0,0 @@ -/** - * @file AccumulatorProofOfKnowledge.cpp - * - * @brief AccumulatorProofOfKnowledge class for the Zerocoin library. - * - * @author Ian Miers, Christina Garman and Matthew Green - * @date June 2013 - * - * @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green - * @license This project is released under the MIT license. - **/ - -#include "Zerocoin.h" - -namespace libzerocoin { - -AccumulatorProofOfKnowledge::AccumulatorProofOfKnowledge(const AccumulatorAndProofParams* p): params(p) {} - -AccumulatorProofOfKnowledge::AccumulatorProofOfKnowledge(const AccumulatorAndProofParams* p, - const Commitment& commitmentToCoin, const AccumulatorWitness& witness, - Accumulator& a): params(p) { - - Bignum sg = params->accumulatorPoKCommitmentGroup.g; - Bignum sh = params->accumulatorPoKCommitmentGroup.h; - - Bignum g_n = params->accumulatorQRNCommitmentGroup.g; - Bignum h_n = params->accumulatorQRNCommitmentGroup.h; - - Bignum e = commitmentToCoin.getContents(); - Bignum r = commitmentToCoin.getRandomness(); - - Bignum r_1 = Bignum::randBignum(params->accumulatorModulus/4); - Bignum r_2 = Bignum::randBignum(params->accumulatorModulus/4); - Bignum r_3 = Bignum::randBignum(params->accumulatorModulus/4); - - this->C_e = g_n.pow_mod(e, params->accumulatorModulus) * h_n.pow_mod(r_1, params->accumulatorModulus); - this->C_u = witness.getValue() * h_n.pow_mod(r_2, params->accumulatorModulus); - this->C_r = g_n.pow_mod(r_2, params->accumulatorModulus) * h_n.pow_mod(r_3, params->accumulatorModulus); - - Bignum r_alpha = Bignum::randBignum(params->maxCoinValue * Bignum(2).pow(params->k_prime + params->k_dprime)); - if(!(Bignum::randBignum(Bignum(3)) % 2)) { - r_alpha = 0-r_alpha; - } - - Bignum r_gamma = Bignum::randBignum(params->accumulatorPoKCommitmentGroup.modulus); - Bignum r_phi = Bignum::randBignum(params->accumulatorPoKCommitmentGroup.modulus); - Bignum r_psi = Bignum::randBignum(params->accumulatorPoKCommitmentGroup.modulus); - Bignum r_sigma = Bignum::randBignum(params->accumulatorPoKCommitmentGroup.modulus); - Bignum r_xi = Bignum::randBignum(params->accumulatorPoKCommitmentGroup.modulus); - - Bignum r_epsilon = Bignum::randBignum((params->accumulatorModulus/4) * Bignum(2).pow(params->k_prime + params->k_dprime)); - if(!(Bignum::randBignum(Bignum(3)) % 2)) { - r_epsilon = 0-r_epsilon; - } - Bignum r_eta = Bignum::randBignum((params->accumulatorModulus/4) * Bignum(2).pow(params->k_prime + params->k_dprime)); - if(!(Bignum::randBignum(Bignum(3)) % 2)) { - r_eta = 0-r_eta; - } - Bignum r_zeta = Bignum::randBignum((params->accumulatorModulus/4) * Bignum(2).pow(params->k_prime + params->k_dprime)); - if(!(Bignum::randBignum(Bignum(3)) % 2)) { - r_zeta = 0-r_zeta; - } - - Bignum r_beta = Bignum::randBignum((params->accumulatorModulus/4) * params->accumulatorPoKCommitmentGroup.modulus * Bignum(2).pow(params->k_prime + params->k_dprime)); - if(!(Bignum::randBignum(Bignum(3)) % 2)) { - r_beta = 0-r_beta; - } - Bignum r_delta = Bignum::randBignum((params->accumulatorModulus/4) * params->accumulatorPoKCommitmentGroup.modulus * Bignum(2).pow(params->k_prime + params->k_dprime)); - if(!(Bignum::randBignum(Bignum(3)) % 2)) { - r_delta = 0-r_delta; - } - - this->st_1 = (sg.pow_mod(r_alpha, params->accumulatorPoKCommitmentGroup.modulus) * sh.pow_mod(r_phi, params->accumulatorPoKCommitmentGroup.modulus)) % params->accumulatorPoKCommitmentGroup.modulus; - this->st_2 = (((commitmentToCoin.getCommitmentValue() * sg.inverse(params->accumulatorPoKCommitmentGroup.modulus)).pow_mod(r_gamma, params->accumulatorPoKCommitmentGroup.modulus)) * sh.pow_mod(r_psi, params->accumulatorPoKCommitmentGroup.modulus)) % params->accumulatorPoKCommitmentGroup.modulus; - this->st_3 = ((sg * commitmentToCoin.getCommitmentValue()).pow_mod(r_sigma, params->accumulatorPoKCommitmentGroup.modulus) * sh.pow_mod(r_xi, params->accumulatorPoKCommitmentGroup.modulus)) % params->accumulatorPoKCommitmentGroup.modulus; - - this->t_1 = (h_n.pow_mod(r_zeta, params->accumulatorModulus) * g_n.pow_mod(r_epsilon, params->accumulatorModulus)) % params->accumulatorModulus; - this->t_2 = (h_n.pow_mod(r_eta, params->accumulatorModulus) * g_n.pow_mod(r_alpha, params->accumulatorModulus)) % params->accumulatorModulus; - this->t_3 = (C_u.pow_mod(r_alpha, params->accumulatorModulus) * ((h_n.inverse(params->accumulatorModulus)).pow_mod(r_beta, params->accumulatorModulus))) % params->accumulatorModulus; - this->t_4 = (C_r.pow_mod(r_alpha, params->accumulatorModulus) * ((h_n.inverse(params->accumulatorModulus)).pow_mod(r_delta, params->accumulatorModulus)) * ((g_n.inverse(params->accumulatorModulus)).pow_mod(r_beta, params->accumulatorModulus))) % params->accumulatorModulus; - - CHashWriter hasher(0,0); - hasher << *params << sg << sh << g_n << h_n << commitmentToCoin.getCommitmentValue() << C_e << C_u << C_r << st_1 << st_2 << st_3 << t_1 << t_2 << t_3 << t_4; - - //According to the proof, this hash should be of length k_prime bits. It is currently greater than that, which should not be a problem, but we should check this. - Bignum c = Bignum(hasher.GetHash()); - - this->s_alpha = r_alpha - c*e; - this->s_beta = r_beta - c*r_2*e; - this->s_zeta = r_zeta - c*r_3; - this->s_sigma = r_sigma - c*((e+1).inverse(params->accumulatorPoKCommitmentGroup.groupOrder)); - this->s_eta = r_eta - c*r_1; - this->s_epsilon = r_epsilon - c*r_2; - this->s_delta = r_delta - c*r_3*e; - this->s_xi = r_xi + c*r*((e+1).inverse(params->accumulatorPoKCommitmentGroup.groupOrder)); - this->s_phi = (r_phi - c*r) % params->accumulatorPoKCommitmentGroup.groupOrder; - this->s_gamma = r_gamma - c*((e-1).inverse(params->accumulatorPoKCommitmentGroup.groupOrder)); - this->s_psi = r_psi + c*r*((e-1).inverse(params->accumulatorPoKCommitmentGroup.groupOrder)); -} - -/** Verifies that a commitment c is accumulated in accumulator a - */ -bool AccumulatorProofOfKnowledge:: Verify(const Accumulator& a, const Bignum& valueOfCommitmentToCoin) const { - Bignum sg = params->accumulatorPoKCommitmentGroup.g; - Bignum sh = params->accumulatorPoKCommitmentGroup.h; - - Bignum g_n = params->accumulatorQRNCommitmentGroup.g; - Bignum h_n = params->accumulatorQRNCommitmentGroup.h; - - //According to the proof, this hash should be of length k_prime bits. It is currently greater than that, which should not be a problem, but we should check this. - CHashWriter hasher(0,0); - hasher << *params << sg << sh << g_n << h_n << valueOfCommitmentToCoin << C_e << C_u << C_r << st_1 << st_2 << st_3 << t_1 << t_2 << t_3 << t_4; - - Bignum c = Bignum(hasher.GetHash()); //this hash should be of length k_prime bits - - Bignum st_1_prime = (valueOfCommitmentToCoin.pow_mod(c, params->accumulatorPoKCommitmentGroup.modulus) * sg.pow_mod(s_alpha, params->accumulatorPoKCommitmentGroup.modulus) * sh.pow_mod(s_phi, params->accumulatorPoKCommitmentGroup.modulus)) % params->accumulatorPoKCommitmentGroup.modulus; - Bignum st_2_prime = (sg.pow_mod(c, params->accumulatorPoKCommitmentGroup.modulus) * ((valueOfCommitmentToCoin * sg.inverse(params->accumulatorPoKCommitmentGroup.modulus)).pow_mod(s_gamma, params->accumulatorPoKCommitmentGroup.modulus)) * sh.pow_mod(s_psi, params->accumulatorPoKCommitmentGroup.modulus)) % params->accumulatorPoKCommitmentGroup.modulus; - Bignum st_3_prime = (sg.pow_mod(c, params->accumulatorPoKCommitmentGroup.modulus) * (sg * valueOfCommitmentToCoin).pow_mod(s_sigma, params->accumulatorPoKCommitmentGroup.modulus) * sh.pow_mod(s_xi, params->accumulatorPoKCommitmentGroup.modulus)) % params->accumulatorPoKCommitmentGroup.modulus; - - Bignum t_1_prime = (C_r.pow_mod(c, params->accumulatorModulus) * h_n.pow_mod(s_zeta, params->accumulatorModulus) * g_n.pow_mod(s_epsilon, params->accumulatorModulus)) % params->accumulatorModulus; - Bignum t_2_prime = (C_e.pow_mod(c, params->accumulatorModulus) * h_n.pow_mod(s_eta, params->accumulatorModulus) * g_n.pow_mod(s_alpha, params->accumulatorModulus)) % params->accumulatorModulus; - Bignum t_3_prime = ((a.getValue()).pow_mod(c, params->accumulatorModulus) * C_u.pow_mod(s_alpha, params->accumulatorModulus) * ((h_n.inverse(params->accumulatorModulus)).pow_mod(s_beta, params->accumulatorModulus))) % params->accumulatorModulus; - Bignum t_4_prime = (C_r.pow_mod(s_alpha, params->accumulatorModulus) * ((h_n.inverse(params->accumulatorModulus)).pow_mod(s_delta, params->accumulatorModulus)) * ((g_n.inverse(params->accumulatorModulus)).pow_mod(s_beta, params->accumulatorModulus))) % params->accumulatorModulus; - - bool result = false; - - bool result_st1 = (st_1 == st_1_prime); - bool result_st2 = (st_2 == st_2_prime); - bool result_st3 = (st_3 == st_3_prime); - - bool result_t1 = (t_1 == t_1_prime); - bool result_t2 = (t_2 == t_2_prime); - bool result_t3 = (t_3 == t_3_prime); - bool result_t4 = (t_4 == t_4_prime); - - bool result_range = ((s_alpha >= -(params->maxCoinValue * Bignum(2).pow(params->k_prime + params->k_dprime + 1))) && (s_alpha <= (params->maxCoinValue * Bignum(2).pow(params->k_prime + params->k_dprime + 1)))); - - result = result_st1 && result_st2 && result_st3 && result_t1 && result_t2 && result_t3 && result_t4 && result_range; - - return result; -} - -} /* namespace libzerocoin */ diff --git a/src/zerocoin/AccumulatorProofOfKnowledge.h b/src/zerocoin/AccumulatorProofOfKnowledge.h deleted file mode 100644 index 4078940..0000000 --- a/src/zerocoin/AccumulatorProofOfKnowledge.h +++ /dev/null @@ -1,91 +0,0 @@ -/** - * @file AccumulatorProofOfKnowledge.h - * - * @brief AccumulatorProofOfKnowledge class for the Zerocoin library. - * - * @author Ian Miers, Christina Garman and Matthew Green - * @date June 2013 - * - * @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green - * @license This project is released under the MIT license. - **/ - -#ifndef ACCUMULATEPROOF_H_ -#define ACCUMULATEPROOF_H_ - -namespace libzerocoin { - -/**A prove that a value insde the commitment commitmentToCoin is in an accumulator a. - * - */ -class AccumulatorProofOfKnowledge { -public: - AccumulatorProofOfKnowledge(const AccumulatorAndProofParams* p); - - /** Generates a proof that a commitment to a coin c was accumulated - * @param p Cryptographic parameters - * @param commitmentToCoin commitment containing the coin we want to prove is accumulated - * @param witness The witness to the accumulation of the coin - * @param a - */ - AccumulatorProofOfKnowledge(const AccumulatorAndProofParams* p, const Commitment& commitmentToCoin, const AccumulatorWitness& witness, Accumulator& a); - /** Verifies that a commitment c is accumulated in accumulated a - */ - bool Verify(const Accumulator& a,const Bignum& valueOfCommitmentToCoin) const; - - IMPLEMENT_SERIALIZE - ( - READWRITE(C_e); - READWRITE(C_u); - READWRITE(C_r); - READWRITE(st_1); - READWRITE(st_2); - READWRITE(st_3); - READWRITE(t_1); - READWRITE(t_2); - READWRITE(t_3); - READWRITE(t_4); - READWRITE(s_alpha); - READWRITE(s_beta); - READWRITE(s_zeta); - READWRITE(s_sigma); - READWRITE(s_eta); - READWRITE(s_epsilon); - READWRITE(s_delta); - READWRITE(s_xi); - READWRITE(s_phi); - READWRITE(s_gamma); - READWRITE(s_psi); - ) -private: - const AccumulatorAndProofParams* params; - - /* Return values for proof */ - Bignum C_e; - Bignum C_u; - Bignum C_r; - - Bignum st_1; - Bignum st_2; - Bignum st_3; - - Bignum t_1; - Bignum t_2; - Bignum t_3; - Bignum t_4; - - Bignum s_alpha; - Bignum s_beta; - Bignum s_zeta; - Bignum s_sigma; - Bignum s_eta; - Bignum s_epsilon; - Bignum s_delta; - Bignum s_xi; - Bignum s_phi; - Bignum s_gamma; - Bignum s_psi; -}; - -} /* namespace libzerocoin */ -#endif /* ACCUMULATEPROOF_H_ */ diff --git a/src/zerocoin/Coin.cpp b/src/zerocoin/Coin.cpp deleted file mode 100644 index c9aa9a5..0000000 --- a/src/zerocoin/Coin.cpp +++ /dev/null @@ -1,167 +0,0 @@ -/** - * @file Coin.cpp - * - * @brief PublicCoin and PrivateCoin classes for the Zerocoin library. - * - * @author Ian Miers, Christina Garman and Matthew Green - * @date June 2013 - * - * @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green - * @license This project is released under the MIT license. - **/ - -#include -#include "Zerocoin.h" - -namespace libzerocoin { - -//PublicCoin class -PublicCoin::PublicCoin(const Params* p): - params(p), denomination(ZQ_PEDERSEN) { - if(this->params->initialized == false) { - throw std::invalid_argument("Params are not initialized"); - } -}; - -PublicCoin::PublicCoin(const Params* p, const Bignum& coin, const CoinDenomination d): - params(p), value(coin), denomination(d) { - if(this->params->initialized == false) { - throw std::invalid_argument("Params are not initialized"); - } -}; - -bool PublicCoin::operator==(const PublicCoin& rhs) const { - return this->value == rhs.value;// FIXME check param equality -} - -bool PublicCoin::operator!=(const PublicCoin& rhs) const { - return !(*this == rhs); -} - -const Bignum& PublicCoin::getValue() const { - return this->value; -} - -const CoinDenomination PublicCoin::getDenomination() const { - return static_cast(this->denomination); -} - -bool PublicCoin::validate() const { - return (this->params->accumulatorParams.minCoinValue < value) && (value < this->params->accumulatorParams.maxCoinValue) && value.isPrime(params->zkp_iterations); -} - -//PrivateCoin class -PrivateCoin::PrivateCoin(const Params* p, const CoinDenomination denomination): params(p), publicCoin(p) { - // Verify that the parameters are valid - if(this->params->initialized == false) { - throw std::invalid_argument("Params are not initialized"); - } - -#ifdef ZEROCOIN_FAST_MINT - // Mint a new coin with a random serial number using the fast process. - // This is more vulnerable to timing attacks so don't mint coins when - // somebody could be timing you. - this->mintCoinFast(denomination); -#else - // Mint a new coin with a random serial number using the standard process. - this->mintCoin(denomination); -#endif - -} - -/** - * - * @return the coins serial number - */ -const Bignum& PrivateCoin::getSerialNumber() const { - return this->serialNumber; -} - -const Bignum& PrivateCoin::getRandomness() const { - return this->randomness; -} - -void PrivateCoin::mintCoin(const CoinDenomination denomination) { - // Repeat this process up to MAX_COINMINT_ATTEMPTS times until - // we obtain a prime number - for(uint32_t attempt = 0; attempt < MAX_COINMINT_ATTEMPTS; attempt++) { - - // Generate a random serial number in the range 0...{q-1} where - // "q" is the order of the commitment group. - Bignum s = Bignum::randBignum(this->params->coinCommitmentGroup.groupOrder); - - // Generate a Pedersen commitment to the serial number "s" - Commitment coin(¶ms->coinCommitmentGroup, s); - - // Now verify that the commitment is a prime number - // in the appropriate range. If not, we'll throw this coin - // away and generate a new one. - if (coin.getCommitmentValue().isPrime(ZEROCOIN_MINT_PRIME_PARAM) && - coin.getCommitmentValue() >= params->accumulatorParams.minCoinValue && - coin.getCommitmentValue() <= params->accumulatorParams.maxCoinValue) { - // Found a valid coin. Store it. - this->serialNumber = s; - this->randomness = coin.getRandomness(); - this->publicCoin = PublicCoin(params,coin.getCommitmentValue(), denomination); - - // Success! We're done. - return; - } - } - - // We only get here if we did not find a coin within - // MAX_COINMINT_ATTEMPTS. Throw an exception. - throw ZerocoinException("Unable to mint a new Zerocoin (too many attempts)"); -} - -void PrivateCoin::mintCoinFast(const CoinDenomination denomination) { - - // Generate a random serial number in the range 0...{q-1} where - // "q" is the order of the commitment group. - Bignum s = Bignum::randBignum(this->params->coinCommitmentGroup.groupOrder); - - // Generate a random number "r" in the range 0...{q-1} - Bignum r = Bignum::randBignum(this->params->coinCommitmentGroup.groupOrder); - - // Manually compute a Pedersen commitment to the serial number "s" under randomness "r" - // C = g^s * h^r mod p - Bignum commitmentValue = this->params->coinCommitmentGroup.g.pow_mod(s, this->params->coinCommitmentGroup.modulus).mul_mod(this->params->coinCommitmentGroup.h.pow_mod(r, this->params->coinCommitmentGroup.modulus), this->params->coinCommitmentGroup.modulus); - - // Repeat this process up to MAX_COINMINT_ATTEMPTS times until - // we obtain a prime number - for (uint32_t attempt = 0; attempt < MAX_COINMINT_ATTEMPTS; attempt++) { - // First verify that the commitment is a prime number - // in the appropriate range. If not, we'll throw this coin - // away and generate a new one. - if (commitmentValue.isPrime(ZEROCOIN_MINT_PRIME_PARAM) && - commitmentValue >= params->accumulatorParams.minCoinValue && - commitmentValue <= params->accumulatorParams.maxCoinValue) { - // Found a valid coin. Store it. - this->serialNumber = s; - this->randomness = r; - this->publicCoin = PublicCoin(params, commitmentValue, denomination); - - // Success! We're done. - return; - } - - // Generate a new random "r_delta" in 0...{q-1} - Bignum r_delta = Bignum::randBignum(this->params->coinCommitmentGroup.groupOrder); - - // The commitment was not prime. Increment "r" and recalculate "C": - // r = r + r_delta mod q - // C = C * h mod p - r = (r + r_delta) % this->params->coinCommitmentGroup.groupOrder; - commitmentValue = commitmentValue.mul_mod(this->params->coinCommitmentGroup.h.pow_mod(r_delta, this->params->coinCommitmentGroup.modulus), this->params->coinCommitmentGroup.modulus); - } - - // We only get here if we did not find a coin within - // MAX_COINMINT_ATTEMPTS. Throw an exception. - throw ZerocoinException("Unable to mint a new Zerocoin (too many attempts)"); -} - -const PublicCoin& PrivateCoin::getPublicCoin() const { - return this->publicCoin; -} - -} /* namespace libzerocoin */ diff --git a/src/zerocoin/Coin.h b/src/zerocoin/Coin.h deleted file mode 100644 index 09e3caa..0000000 --- a/src/zerocoin/Coin.h +++ /dev/null @@ -1,139 +0,0 @@ -/** - * @file Coin.h - * - * @brief PublicCoin and PrivateCoin classes for the Zerocoin library. - * - * @author Ian Miers, Christina Garman and Matthew Green - * @date June 2013 - * - * @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green - * @license This project is released under the MIT license. - **/ - -#ifndef COIN_H_ -#define COIN_H_ -#include "../bignum.h" -#include "Params.h" -namespace libzerocoin { - -enum CoinDenomination { - ZQ_LOVELACE = 1, - ZQ_GOLDWASSER = 10, - ZQ_RACKOFF = 25, - ZQ_PEDERSEN = 50, - ZQ_WILLIAMSON = 100 // Malcolm J. Williamson, - // the scientist who actually invented - // Public key cryptography -}; - -/** A Public coin is the part of a coin that - * is published to the network and what is handled - * by other clients. It contains only the value - * of commitment to a serial number and the - * denomination of the coin. - */ -class PublicCoin { -public: - template - PublicCoin(const Params* p, Stream& strm): params(p) { - strm >> *this; - } - - PublicCoin( const Params* p); - - /**Generates a public coin - * - * @param p cryptographic paramters - * @param coin the value of the commitment. - * @param denomination The denomination of the coin. Defaults to ZQ_PEDERSEN - */ - PublicCoin( const Params* p, const Bignum& coin, const CoinDenomination d = ZQ_PEDERSEN); - const Bignum& getValue() const; - const CoinDenomination getDenomination() const; - bool operator==(const PublicCoin& rhs) const; - bool operator!=(const PublicCoin& rhs) const; - /** Checks that a coin prime - * and in the appropriate range - * given the parameters - * @return true if valid - */ - bool validate() const; - IMPLEMENT_SERIALIZE - ( - READWRITE(value); - READWRITE(denomination); - ) -private: - const Params* params; - Bignum value; - // Denomination is stored as an INT because storing - // and enum raises amigiuities in the serialize code //FIXME if possible - int denomination; -}; - -/** - * A private coin. As the name implies, the content - * of this should stay private except PublicCoin. - * - * Contains a coin's serial number, a commitment to it, - * and opening randomness for the commitment. - * - * @warning Failure to keep this secret(or safe), - * @warning will result in the theft of your coins - * @warning and a TOTAL loss of anonymity. - */ -class PrivateCoin { -public: - template - PrivateCoin(const Params* p, Stream& strm): params(p) { - strm >> *this; - } - PrivateCoin(const Params* p,const CoinDenomination denomination = ZQ_PEDERSEN); - const PublicCoin& getPublicCoin() const; - const Bignum& getSerialNumber() const; - const Bignum& getRandomness() const; - - IMPLEMENT_SERIALIZE - ( - READWRITE(publicCoin); - READWRITE(randomness); - READWRITE(serialNumber); - ) -private: - const Params* params; - PublicCoin publicCoin; - Bignum randomness; - Bignum serialNumber; - - /** - * @brief Mint a new coin. - * @param denomination the denomination of the coin to mint - * @throws ZerocoinException if the process takes too long - * - * Generates a new Zerocoin by (a) selecting a random serial - * number, (b) committing to this serial number and repeating until - * the resulting commitment is prime. Stores the - * resulting commitment (coin) and randomness (trapdoor). - **/ - void mintCoin(const CoinDenomination denomination); - - /** - * @brief Mint a new coin using a faster process. - * @param denomination the denomination of the coin to mint - * @throws ZerocoinException if the process takes too long - * - * Generates a new Zerocoin by (a) selecting a random serial - * number, (b) committing to this serial number and repeating until - * the resulting commitment is prime. Stores the - * resulting commitment (coin) and randomness (trapdoor). - * This routine is substantially faster than the - * mintCoin() routine, but could be more vulnerable - * to timing attacks. Don't use it if you think someone - * could be timing your coin minting. - **/ - void mintCoinFast(const CoinDenomination denomination); - -}; - -} /* namespace libzerocoin */ -#endif /* COIN_H_ */ diff --git a/src/zerocoin/CoinSpend.cpp b/src/zerocoin/CoinSpend.cpp deleted file mode 100644 index c7890f5..0000000 --- a/src/zerocoin/CoinSpend.cpp +++ /dev/null @@ -1,82 +0,0 @@ -/** - * @file CoinSpend.cpp - * - * @brief CoinSpend class for the Zerocoin library. - * - * @author Ian Miers, Christina Garman and Matthew Green - * @date June 2013 - * - * @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green - * @license This project is released under the MIT license. - **/ - -#include "Zerocoin.h" - -namespace libzerocoin { - -CoinSpend::CoinSpend(const Params* p, const PrivateCoin& coin, - Accumulator& a, const AccumulatorWitness& witness, const SpendMetaData& m): - params(p), - denomination(coin.getPublicCoin().getDenomination()), - coinSerialNumber((coin.getSerialNumber())), - accumulatorPoK(&p->accumulatorParams), - serialNumberSoK(p), - commitmentPoK(&p->serialNumberSoKCommitmentGroup, &p->accumulatorParams.accumulatorPoKCommitmentGroup) { - - // Sanity check: let's verify that the Witness is valid with respect to - // the coin and Accumulator provided. - if (!(witness.VerifyWitness(a, coin.getPublicCoin()))) { - throw std::invalid_argument("Accumulator witness does not verify"); - } - - // 1: Generate two separate commitments to the public coin (C), each under - // a different set of public parameters. We do this because the RSA accumulator - // has specific requirements for the commitment parameters that are not - // compatible with the group we use for the serial number proof. - // Specifically, our serial number proof requires the order of the commitment group - // to be the same as the modulus of the upper group. The Accumulator proof requires a - // group with a significantly larger order. - const Commitment fullCommitmentToCoinUnderSerialParams(&p->serialNumberSoKCommitmentGroup, coin.getPublicCoin().getValue()); - this->serialCommitmentToCoinValue = fullCommitmentToCoinUnderSerialParams.getCommitmentValue(); - - const Commitment fullCommitmentToCoinUnderAccParams(&p->accumulatorParams.accumulatorPoKCommitmentGroup, coin.getPublicCoin().getValue()); - this->accCommitmentToCoinValue = fullCommitmentToCoinUnderAccParams.getCommitmentValue(); - - // 2. Generate a ZK proof that the two commitments contain the same public coin. - this->commitmentPoK = CommitmentProofOfKnowledge(&p->serialNumberSoKCommitmentGroup, &p->accumulatorParams.accumulatorPoKCommitmentGroup, fullCommitmentToCoinUnderSerialParams, fullCommitmentToCoinUnderAccParams); - - // Now generate the two core ZK proofs: - // 3. Proves that the committed public coin is in the Accumulator (PoK of "witness") - this->accumulatorPoK = AccumulatorProofOfKnowledge(&p->accumulatorParams, fullCommitmentToCoinUnderAccParams, witness, a); - - // 4. Proves that the coin is correct w.r.t. serial number and hidden coin secret - // (This proof is bound to the coin 'metadata', i.e., transaction hash) - this->serialNumberSoK = SerialNumberSignatureOfKnowledge(p, coin, fullCommitmentToCoinUnderSerialParams, signatureHash(m)); -} - -const Bignum& -CoinSpend::getCoinSerialNumber() { - return this->coinSerialNumber; -} - -const CoinDenomination -CoinSpend::getDenomination() { - return static_cast(this->denomination); -} - -bool -CoinSpend::Verify(const Accumulator& a, const SpendMetaData &m) const { - // Verify both of the sub-proofs using the given meta-data - return (a.getDenomination() == this->denomination) - && commitmentPoK.Verify(serialCommitmentToCoinValue, accCommitmentToCoinValue) - && accumulatorPoK.Verify(a, accCommitmentToCoinValue) - && serialNumberSoK.Verify(coinSerialNumber, serialCommitmentToCoinValue, signatureHash(m)); -} - -const uint256 CoinSpend::signatureHash(const SpendMetaData &m) const { - CHashWriter h(0,0); - h << m << serialCommitmentToCoinValue << accCommitmentToCoinValue << commitmentPoK << accumulatorPoK; - return h.GetHash(); -} - -} /* namespace libzerocoin */ diff --git a/src/zerocoin/CoinSpend.h b/src/zerocoin/CoinSpend.h deleted file mode 100644 index 8bf6925..0000000 --- a/src/zerocoin/CoinSpend.h +++ /dev/null @@ -1,107 +0,0 @@ -/** - * @file CoinSpend.h - * - * @brief CoinSpend class for the Zerocoin library. - * - * @author Ian Miers, Christina Garman and Matthew Green - * @date June 2013 - * - * @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green - * @license This project is released under the MIT license. - **/ - -#ifndef COINSPEND_H_ -#define COINSPEND_H_ - -#include "Params.h" -#include "Coin.h" -#include "Commitment.h" -#include "../bignum.h" -#include "Accumulator.h" -#include "AccumulatorProofOfKnowledge.h" -#include "SerialNumberSignatureOfKnowledge.h" -#include "SpendMetaData.h" -#include "../serialize.h" - -namespace libzerocoin { - -/** The complete proof needed to spend a zerocoin. - * Composes together a proof that a coin is accumulated - * and that it has a given serial number. - */ -class CoinSpend { -public: - template - CoinSpend(const Params* p, Stream& strm):denomination(ZQ_PEDERSEN), - accumulatorPoK(&p->accumulatorParams), - serialNumberSoK(p), - commitmentPoK(&p->serialNumberSoKCommitmentGroup, &p->accumulatorParams.accumulatorPoKCommitmentGroup) { - strm >> *this; - } - /**Generates a proof spending a zerocoin. - * - * To use this, provide an unspent PrivateCoin, the latest Accumulator - * (e.g from the most recent Bitcoin block) containing the public part - * of the coin, a witness to that, and whatever medeta data is needed. - * - * Once constructed, this proof can be serialized and sent. - * It is validated simply be calling validate. - * @warning Validation only checks that the proof is correct - * @warning for the specified values in this class. These values must be validated - * Clients ought to check that - * 1) params is the right params - * 2) the accumulator actually is in some block - * 3) that the serial number is unspent - * 4) that the transaction - * - * @param p cryptographic parameters - * @param coin The coin to be spend - * @param a The current accumulator containing the coin - * @param witness The witness showing that the accumulator contains the coin - * @param m arbitrary meta data related to the spend that might be needed by Bitcoin - * (i.e. the transaction hash) - * @throw ZerocoinException if the process fails - */ - CoinSpend(const Params* p, const PrivateCoin& coin, Accumulator& a, const AccumulatorWitness& witness, const SpendMetaData& m); - - /** Returns the serial number of the coin spend by this proof. - * - * @return the coin's serial number - */ - const Bignum& getCoinSerialNumber(); - - /**Gets the denomination of the coin spent in this proof. - * - * @return the denomination - */ - const CoinDenomination getDenomination(); - - bool Verify(const Accumulator& a, const SpendMetaData &metaData) const; - - IMPLEMENT_SERIALIZE - ( - READWRITE(denomination); - READWRITE(accCommitmentToCoinValue); - READWRITE(serialCommitmentToCoinValue); - READWRITE(coinSerialNumber); - READWRITE(accumulatorPoK); - READWRITE(serialNumberSoK); - READWRITE(commitmentPoK); - ) - -private: - const Params *params; - const uint256 signatureHash(const SpendMetaData &m) const; - // Denomination is stored as an INT because storing - // and enum raises amigiuities in the serialize code //FIXME if possible - int denomination; - Bignum accCommitmentToCoinValue; - Bignum serialCommitmentToCoinValue; - Bignum coinSerialNumber; - AccumulatorProofOfKnowledge accumulatorPoK; - SerialNumberSignatureOfKnowledge serialNumberSoK; - CommitmentProofOfKnowledge commitmentPoK; -}; - -} /* namespace libzerocoin */ -#endif /* COINSPEND_H_ */ diff --git a/src/zerocoin/Commitment.cpp b/src/zerocoin/Commitment.cpp deleted file mode 100644 index 50e7fcd..0000000 --- a/src/zerocoin/Commitment.cpp +++ /dev/null @@ -1,172 +0,0 @@ -/** - * @file Commitment.cpp - * - * @brief Commitment and CommitmentProof classes for the Zerocoin library. - * - * @author Ian Miers, Christina Garman and Matthew Green - * @date June 2013 - * - * @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green - * @license This project is released under the MIT license. - **/ - -#include -#include "Zerocoin.h" - -namespace libzerocoin { - -//Commitment class -Commitment::Commitment::Commitment(const IntegerGroupParams* p, - const Bignum& value): params(p), contents(value) { - this->randomness = Bignum::randBignum(params->groupOrder); - this->commitmentValue = (params->g.pow_mod(this->contents, params->modulus).mul_mod( - params->h.pow_mod(this->randomness, params->modulus), params->modulus)); -} - -const Bignum& Commitment::getCommitmentValue() const { - return this->commitmentValue; -} - -const Bignum& Commitment::getRandomness() const { - return this->randomness; -} - -const Bignum& Commitment::getContents() const { - return this->contents; -} - -//CommitmentProofOfKnowledge class -CommitmentProofOfKnowledge::CommitmentProofOfKnowledge(const IntegerGroupParams* ap, const IntegerGroupParams* bp): ap(ap), bp(bp) {} - -// TODO: get parameters from the commitment group -CommitmentProofOfKnowledge::CommitmentProofOfKnowledge(const IntegerGroupParams* aParams, - const IntegerGroupParams* bParams, const Commitment& a, const Commitment& b): - ap(aParams),bp(bParams) -{ - Bignum r1, r2, r3; - - // First: make sure that the two commitments have the - // same contents. - if (a.getContents() != b.getContents()) { - throw std::invalid_argument("Both commitments must contain the same value"); - } - - // Select three random values "r1, r2, r3" in the range 0 to (2^l)-1 where l is: - // length of challenge value + max(modulus 1, modulus 2, order 1, order 2) + margin. - // We set "margin" to be a relatively generous security parameter. - // - // We choose these large values to ensure statistical zero knowledge. - uint32_t randomSize = COMMITMENT_EQUALITY_CHALLENGE_SIZE + COMMITMENT_EQUALITY_SECMARGIN + - std::max(std::max(this->ap->modulus.bitSize(), this->bp->modulus.bitSize()), - std::max(this->ap->groupOrder.bitSize(), this->bp->groupOrder.bitSize())); - Bignum maxRange = (Bignum(2).pow(randomSize) - Bignum(1)); - - r1 = Bignum::randBignum(maxRange); - r2 = Bignum::randBignum(maxRange); - r3 = Bignum::randBignum(maxRange); - - // Generate two random, ephemeral commitments "T1, T2" - // of the form: - // T1 = g1^r1 * h1^r2 mod p1 - // T2 = g2^r1 * h2^r3 mod p2 - // - // Where (g1, h1, p1) are from "aParams" and (g2, h2, p2) are from "bParams". - Bignum T1 = this->ap->g.pow_mod(r1, this->ap->modulus).mul_mod((this->ap->h.pow_mod(r2, this->ap->modulus)), this->ap->modulus); - Bignum T2 = this->bp->g.pow_mod(r1, this->bp->modulus).mul_mod((this->bp->h.pow_mod(r3, this->bp->modulus)), this->bp->modulus); - - // Now hash commitment "A" with commitment "B" as well as the - // parameters and the two ephemeral commitments "T1, T2" we just generated - this->challenge = calculateChallenge(a.getCommitmentValue(), b.getCommitmentValue(), T1, T2); - - // Let "m" be the contents of the commitments "A, B". We have: - // A = g1^m * h1^x mod p1 - // B = g2^m * h2^y mod p2 - // T1 = g1^r1 * h1^r2 mod p1 - // T2 = g2^r1 * h2^r3 mod p2 - // - // Now compute: - // S1 = r1 + (m * challenge) -- note, not modular arithmetic - // S2 = r2 + (x * challenge) -- note, not modular arithmetic - // S3 = r3 + (y * challenge) -- note, not modular arithmetic - this->S1 = r1 + (a.getContents() * this->challenge); - this->S2 = r2 + (a.getRandomness() * this->challenge); - this->S3 = r3 + (b.getRandomness() * this->challenge); - - // We're done. The proof is S1, S2, S3 and "challenge", all of which - // are stored in member variables. -} - -bool CommitmentProofOfKnowledge::Verify(const Bignum& A, const Bignum& B) const -{ - // Compute the maximum range of S1, S2, S3 and verify that the given values are - // in a correct range. This might be an unnecessary check. - uint32_t maxSize = 64 * (COMMITMENT_EQUALITY_CHALLENGE_SIZE + COMMITMENT_EQUALITY_SECMARGIN + - std::max(std::max(this->ap->modulus.bitSize(), this->bp->modulus.bitSize()), - std::max(this->ap->groupOrder.bitSize(), this->bp->groupOrder.bitSize()))); - - if ((uint32_t)this->S1.bitSize() > maxSize || - (uint32_t)this->S2.bitSize() > maxSize || - (uint32_t)this->S3.bitSize() > maxSize || - this->S1 < Bignum(0) || - this->S2 < Bignum(0) || - this->S3 < Bignum(0) || - this->challenge < Bignum(0) || - this->challenge > (Bignum(2).pow(COMMITMENT_EQUALITY_CHALLENGE_SIZE) - Bignum(1))) { - // Invalid inputs. Reject. - return false; - } - - // Compute T1 = g1^S1 * h1^S2 * inverse(A^{challenge}) mod p1 - Bignum T1 = A.pow_mod(this->challenge, ap->modulus).inverse(ap->modulus).mul_mod( - (ap->g.pow_mod(S1, ap->modulus).mul_mod(ap->h.pow_mod(S2, ap->modulus), ap->modulus)), - ap->modulus); - - // Compute T2 = g2^S1 * h2^S3 * inverse(B^{challenge}) mod p2 - Bignum T2 = B.pow_mod(this->challenge, bp->modulus).inverse(bp->modulus).mul_mod( - (bp->g.pow_mod(S1, bp->modulus).mul_mod(bp->h.pow_mod(S3, bp->modulus), bp->modulus)), - bp->modulus); - - // Hash T1 and T2 along with all of the public parameters - Bignum computedChallenge = calculateChallenge(A, B, T1, T2); - - // Return success if the computed challenge matches the incoming challenge - if(computedChallenge == this->challenge) { - return true; - } - - // Otherwise return failure - return false; -} - -const Bignum CommitmentProofOfKnowledge::calculateChallenge(const Bignum& a, const Bignum& b, const Bignum &commitOne, const Bignum &commitTwo) const { - CHashWriter hasher(0,0); - - // Hash together the following elements: - // * A string identifying the proof - // * Commitment A - // * Commitment B - // * Ephemeral commitment T1 - // * Ephemeral commitment T2 - // * A serialized instance of the commitment A parameters - // * A serialized instance of the commitment B parameters - - hasher << std::string(ZEROCOIN_COMMITMENT_EQUALITY_PROOF); - hasher << commitOne; - hasher << std::string("||"); - hasher << commitTwo; - hasher << std::string("||"); - hasher << a; - hasher << std::string("||"); - hasher << b; - hasher << std::string("||"); - hasher << *(this->ap); - hasher << std::string("||"); - hasher << *(this->bp); - - // Convert the SHA256 result into a Bignum - // Note that if we ever change the size of the hash function we will have - // to update COMMITMENT_EQUALITY_CHALLENGE_SIZE appropriately! - return Bignum(hasher.GetHash()); -} - -} /* namespace libzerocoin */ diff --git a/src/zerocoin/Commitment.h b/src/zerocoin/Commitment.h deleted file mode 100644 index d8630a3..0000000 --- a/src/zerocoin/Commitment.h +++ /dev/null @@ -1,105 +0,0 @@ -/** - * @file Commitment.h - * - * @brief Commitment and CommitmentProof classes for the Zerocoin library. - * - * @author Ian Miers, Christina Garman and Matthew Green - * @date June 2013 - * - * @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green - * @license This project is released under the MIT license. - **/ - -#ifndef COMMITMENT_H_ -#define COMMITMENT_H_ - -#include "Params.h" -#include "../serialize.h" - -// We use a SHA256 hash for our PoK challenges. Update the following -// if we ever change hash functions. -#define COMMITMENT_EQUALITY_CHALLENGE_SIZE 256 - -// A 512-bit security parameter for the statistical ZK PoK. -#define COMMITMENT_EQUALITY_SECMARGIN 512 - -namespace libzerocoin { - -/** - * A commitment, complete with contents and opening randomness. - * These should remain secret. Publish only the commitment value. - */ -class Commitment { -public: - /**Generates a Pedersen commitment to the given value. - * - * @param p the group parameters for the coin - * @param value the value to commit to - */ - Commitment(const IntegerGroupParams* p, const Bignum& value); - const Bignum& getCommitmentValue() const; - const Bignum& getRandomness() const; - const Bignum& getContents() const; -private: - const IntegerGroupParams *params; - Bignum commitmentValue; - Bignum randomness; - const Bignum contents; - IMPLEMENT_SERIALIZE - ( - READWRITE(commitmentValue); - READWRITE(randomness); - READWRITE(contents); - ) -}; - -/**Proof that two commitments open to the same value. - * - */ -class CommitmentProofOfKnowledge { -public: - CommitmentProofOfKnowledge(const IntegerGroupParams* ap, const IntegerGroupParams* bp); - /** Generates a proof that two commitments, a and b, open to the same value. - * - * @param ap the IntegerGroup for commitment a - * @param bp the IntegerGroup for commitment b - * @param a the first commitment - * @param b the second commitment - */ - CommitmentProofOfKnowledge(const IntegerGroupParams* aParams, const IntegerGroupParams* bParams, const Commitment& a, const Commitment& b); - //FIXME: is it best practice that this is here? - template - CommitmentProofOfKnowledge(const IntegerGroupParams* aParams, - const IntegerGroupParams* bParams, Stream& strm): ap(aParams), bp(bParams) - { - strm >> *this; - } - - const Bignum calculateChallenge(const Bignum& a, const Bignum& b, const Bignum &commitOne, const Bignum &commitTwo) const; - - /**Verifies the proof - * - * @return true if the proof is valid. - */ - /**Verifies the proof of equality of the two commitments - * - * @param A value of commitment one - * @param B value of commitment two - * @return - */ - bool Verify(const Bignum& A, const Bignum& B) const; - IMPLEMENT_SERIALIZE - ( - READWRITE(S1); - READWRITE(S2); - READWRITE(S3); - READWRITE(challenge); - ) -private: - const IntegerGroupParams *ap, *bp; - - Bignum S1, S2, S3, challenge; -}; - -} /* namespace libzerocoin */ -#endif /* COMMITMENT_H_ */ diff --git a/src/zerocoin/ParamGeneration.cpp b/src/zerocoin/ParamGeneration.cpp deleted file mode 100644 index d5bd36b..0000000 --- a/src/zerocoin/ParamGeneration.cpp +++ /dev/null @@ -1,654 +0,0 @@ -/// \file ParamGeneration.cpp -/// -/// \brief Parameter manipulation routines for the Zerocoin cryptographic -/// components. -/// -/// \author Ian Miers, Christina Garman and Matthew Green -/// \date June 2013 -/// -/// \copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green -/// \license This project is released under the MIT license. - -#include -#include "Zerocoin.h" - -using namespace std; - -namespace libzerocoin { - -/// \brief Fill in a set of Zerocoin parameters from a modulus "N". -/// \param N A trusted RSA modulus -/// \param aux An optional auxiliary string used in derivation -/// \param securityLevel A security level -/// -/// \throws ZerocoinException if the process fails -/// -/// Fills in a ZC_Params data structure deterministically from -/// a trustworthy RSA modulus "N", which is provided as a Bignum. -/// -/// Note: this routine makes the fundamental assumption that "N" -/// encodes a valid RSA-style modulus of the form "e1*e2" for some -/// unknown safe primes "e1" and "e2". These factors must not -/// be known to any party, or the security of Zerocoin is -/// compromised. The integer "N" must be a MINIMUM of 1023 -/// in length, and 3072 bits is strongly recommended. -/// - -void -CalculateParams(Params ¶ms, Bignum N, string aux, uint32_t securityLevel) -{ - params.initialized = false; - params.accumulatorParams.initialized = false; - - // Verify that |N| is > 1023 bits. - uint32_t NLen = N.bitSize(); - if (NLen < 1023) { - throw ZerocoinException("Modulus must be at least 1023 bits"); - } - - // Verify that "securityLevel" is at least 80 bits (minimum). - if (securityLevel < 80) { - throw ZerocoinException("Security level must be at least 80 bits."); - } - - // Set the accumulator modulus to "N". - params.accumulatorParams.accumulatorModulus = N; - - // Calculate the required size of the field "F_p" into which - // we're embedding the coin commitment group. This may throw an - // exception if the securityLevel is too large to be supported - // by the current modulus. - uint32_t pLen = 0; - uint32_t qLen = 0; - calculateGroupParamLengths(NLen - 2, securityLevel, &pLen, &qLen); - - // Calculate candidate parameters ("p", "q") for the coin commitment group - // using a deterministic process based on "N", the "aux" string, and - // the dedicated string "COMMITMENTGROUP". - params.coinCommitmentGroup = deriveIntegerGroupParams(calculateSeed(N, aux, securityLevel, STRING_COMMIT_GROUP), - pLen, qLen); - - // Next, we derive parameters for a second Accumulated Value commitment group. - // This is a Schnorr group with the specific property that the order of the group - // must be exactly equal to "q" from the commitment group. We set - // the modulus of the new group equal to "2q+1" and test to see if this is prime. - params.serialNumberSoKCommitmentGroup = deriveIntegerGroupFromOrder(params.coinCommitmentGroup.modulus); - - // Calculate the parameters for the internal commitment - // using the same process. - params.accumulatorParams.accumulatorPoKCommitmentGroup = deriveIntegerGroupParams(calculateSeed(N, aux, securityLevel, STRING_AIC_GROUP), - qLen + 300, qLen + 1); - - // Calculate the parameters for the accumulator QRN commitment generators. This isn't really - // a whole group, just a pair of random generators in QR_N. - uint32_t resultCtr; - params.accumulatorParams.accumulatorQRNCommitmentGroup.g = generateIntegerFromSeed(NLen - 1, - calculateSeed(N, aux, securityLevel, STRING_QRNCOMMIT_GROUPG), - &resultCtr).pow_mod(Bignum(2), N); - params.accumulatorParams.accumulatorQRNCommitmentGroup.h = generateIntegerFromSeed(NLen - 1, - calculateSeed(N, aux, securityLevel, STRING_QRNCOMMIT_GROUPG), - &resultCtr).pow_mod(Bignum(2), N); - - // Calculate the accumulator base, which we calculate as "u = C**2 mod N" - // where C is an arbitrary value. In the unlikely case that "u = 1" we increment - // "C" and repeat. - Bignum constant(ACCUMULATOR_BASE_CONSTANT); - params.accumulatorParams.accumulatorBase = Bignum(1); - for (uint32_t count = 0; count < MAX_ACCUMGEN_ATTEMPTS && params.accumulatorParams.accumulatorBase.isOne(); count++) { - params.accumulatorParams.accumulatorBase = constant.pow_mod(Bignum(2), params.accumulatorParams.accumulatorModulus); - } - - // Compute the accumulator range. The upper range is the largest possible coin commitment value. - // The lower range is sqrt(upper range) + 1. Since OpenSSL doesn't have - // a square root function we use a slightly higher approximation. - params.accumulatorParams.maxCoinValue = params.coinCommitmentGroup.modulus; - params.accumulatorParams.minCoinValue = Bignum(2).pow((params.coinCommitmentGroup.modulus.bitSize() / 2) + 3); - - // If all went well, mark params as successfully initialized. - params.accumulatorParams.initialized = true; - - // If all went well, mark params as successfully initialized. - params.initialized = true; -} - -/// \brief Format a seed string by hashing several values. -/// \param N A Bignum -/// \param aux An auxiliary string -/// \param securityLevel The security level in bits -/// \param groupName A group description string -/// \throws ZerocoinException if the process fails -/// -/// Returns the hash of the value. - -uint256 -calculateGeneratorSeed(uint256 seed, uint256 pSeed, uint256 qSeed, string label, uint32_t index, uint32_t count) -{ - CHashWriter hasher(0,0); - uint256 hash; - - // Compute the hash of: - // ||||||groupName - hasher << seed; - hasher << string("||"); - hasher << pSeed; - hasher << string("||"); - hasher << qSeed; - hasher << string("||"); - hasher << label; - hasher << string("||"); - hasher << index; - hasher << string("||"); - hasher << count; - - return hasher.GetHash(); -} - -/// \brief Format a seed string by hashing several values. -/// \param N A Bignum -/// \param aux An auxiliary string -/// \param securityLevel The security level in bits -/// \param groupName A group description string -/// \throws ZerocoinException if the process fails -/// -/// Returns the hash of the value. - -uint256 -calculateSeed(Bignum modulus, string auxString, uint32_t securityLevel, string groupName) -{ - CHashWriter hasher(0,0); - uint256 hash; - - // Compute the hash of: - // ||||||groupName - hasher << modulus; - hasher << string("||"); - hasher << securityLevel; - hasher << string("||"); - hasher << auxString; - hasher << string("||"); - hasher << groupName; - - return hasher.GetHash(); -} - -uint256 -calculateHash(uint256 input) -{ - CHashWriter hasher(0,0); - - // Compute the hash of "input" - hasher << input; - - return hasher.GetHash(); -} - -/// \brief Calculate field/group parameter sizes based on a security level. -/// \param maxPLen Maximum size of the field (modulus "p") in bits. -/// \param securityLevel Required security level in bits (at least 80) -/// \param pLen Result: length of "p" in bits -/// \param qLen Result: length of "q" in bits -/// \throws ZerocoinException if the process fails -/// -/// Calculates the appropriate sizes of "p" and "q" for a prime-order -/// subgroup of order "q" embedded within a field "F_p". The sizes -/// are based on a 'securityLevel' provided in symmetric-equivalent -/// bits. Our choices slightly exceed the specs in FIPS 186-3: -/// -/// securityLevel = 80: pLen = 1024, qLen = 256 -/// securityLevel = 112: pLen = 2048, qLen = 256 -/// securityLevel = 128: qLen = 3072, qLen = 320 -/// -/// If the length of "p" exceeds the length provided in "maxPLen", or -/// if "securityLevel < 80" this routine throws an exception. - -void -calculateGroupParamLengths(uint32_t maxPLen, uint32_t securityLevel, - uint32_t *pLen, uint32_t *qLen) -{ - *pLen = *qLen = 0; - - if (securityLevel < 80) { - throw ZerocoinException("Security level must be at least 80 bits."); - } else if (securityLevel == 80) { - *qLen = 256; - *pLen = 1024; - } else if (securityLevel <= 112) { - *qLen = 256; - *pLen = 2048; - } else if (securityLevel <= 128) { - *qLen = 320; - *pLen = 3072; - } else { - throw ZerocoinException("Security level not supported."); - } - - if (*pLen > maxPLen) { - throw ZerocoinException("Modulus size is too small for this security level."); - } -} - -/// \brief Deterministically compute a set of group parameters using NIST procedures. -/// \param seedStr A byte string seeding the process. -/// \param pLen The desired length of the modulus "p" in bits -/// \param qLen The desired length of the order "q" in bits -/// \return An IntegerGroupParams object -/// -/// Calculates the description of a group G of prime order "q" embedded within -/// a field "F_p". The input to this routine is in arbitrary seed. It uses the -/// algorithms described in FIPS 186-3 Appendix A.1.2 to calculate -/// primes "p" and "q". It uses the procedure in Appendix A.2.3 to -/// derive two generators "g", "h". - -IntegerGroupParams -deriveIntegerGroupParams(uint256 seed, uint32_t pLen, uint32_t qLen) -{ - IntegerGroupParams result; - Bignum p; - Bignum q; - uint256 pSeed, qSeed; - - // Calculate "p" and "q" and "domain_parameter_seed" from the - // "seed" buffer above, using the procedure described in NIST - // FIPS 186-3, Appendix A.1.2. - calculateGroupModulusAndOrder(seed, pLen, qLen, &(result.modulus), - &(result.groupOrder), &pSeed, &qSeed); - - // Calculate the generators "g", "h" using the process described in - // NIST FIPS 186-3, Appendix A.2.3. This algorithm takes ("p", "q", - // "domain_parameter_seed", "index"). We use "index" value 1 - // to generate "g" and "index" value 2 to generate "h". - result.g = calculateGroupGenerator(seed, pSeed, qSeed, result.modulus, result.groupOrder, 1); - result.h = calculateGroupGenerator(seed, pSeed, qSeed, result.modulus, result.groupOrder, 2); - - // Perform some basic tests to make sure we have good parameters - if ((uint32_t)(result.modulus.bitSize()) < pLen || // modulus is pLen bits long - (uint32_t)(result.groupOrder.bitSize()) < qLen || // order is qLen bits long - !(result.modulus.isPrime()) || // modulus is prime - !(result.groupOrder.isPrime()) || // order is prime - !((result.g.pow_mod(result.groupOrder, result.modulus)).isOne()) || // g^order mod modulus = 1 - !((result.h.pow_mod(result.groupOrder, result.modulus)).isOne()) || // h^order mod modulus = 1 - ((result.g.pow_mod(Bignum(100), result.modulus)).isOne()) || // g^100 mod modulus != 1 - ((result.h.pow_mod(Bignum(100), result.modulus)).isOne()) || // h^100 mod modulus != 1 - result.g == result.h || // g != h - result.g.isOne()) { // g != 1 - // If any of the above tests fail, throw an exception - throw ZerocoinException("Group parameters are not valid"); - } - - return result; -} - -/// \brief Deterministically compute a set of group parameters with a specified order. -/// \param groupOrder The order of the group -/// \return An IntegerGroupParams object -/// -/// Given "q" calculates the description of a group G of prime order "q" embedded within -/// a field "F_p". - -IntegerGroupParams -deriveIntegerGroupFromOrder(Bignum &groupOrder) -{ - IntegerGroupParams result; - - // Set the order to "groupOrder" - result.groupOrder = groupOrder; - - // Try possible values for "modulus" of the form "groupOrder * 2 * i" where - // "p" is prime and i is a counter starting at 1. - for (uint32_t i = 1; i < NUM_SCHNORRGEN_ATTEMPTS; i++) { - // Set modulus equal to "groupOrder * 2 * i" - result.modulus = (result.groupOrder * Bignum(i*2)) + Bignum(1); - - // Test the result for primality - // TODO: This is a probabilistic routine and thus not the right choice - if (result.modulus.isPrime(256)) { - - // Success. - // - // Calculate the generators "g", "h" using the process described in - // NIST FIPS 186-3, Appendix A.2.3. This algorithm takes ("p", "q", - // "domain_parameter_seed", "index"). We use "index" value 1 - // to generate "g" and "index" value 2 to generate "h". - uint256 seed = calculateSeed(groupOrder, "", 128, ""); - uint256 pSeed = calculateHash(seed); - uint256 qSeed = calculateHash(pSeed); - result.g = calculateGroupGenerator(seed, pSeed, qSeed, result.modulus, result.groupOrder, 1); - result.h = calculateGroupGenerator(seed, pSeed, qSeed, result.modulus, result.groupOrder, 2); - - // Perform some basic tests to make sure we have good parameters - if (!(result.modulus.isPrime()) || // modulus is prime - !(result.groupOrder.isPrime()) || // order is prime - !((result.g.pow_mod(result.groupOrder, result.modulus)).isOne()) || // g^order mod modulus = 1 - !((result.h.pow_mod(result.groupOrder, result.modulus)).isOne()) || // h^order mod modulus = 1 - ((result.g.pow_mod(Bignum(100), result.modulus)).isOne()) || // g^100 mod modulus != 1 - ((result.h.pow_mod(Bignum(100), result.modulus)).isOne()) || // h^100 mod modulus != 1 - result.g == result.h || // g != h - result.g.isOne()) { // g != 1 - // If any of the above tests fail, throw an exception - throw ZerocoinException("Group parameters are not valid"); - } - - return result; - } - } - - // If we reached this point group generation has failed. Throw an exception. - throw ZerocoinException("Too many attempts to generate Schnorr group."); -} - -/// \brief Deterministically compute a group description using NIST procedures. -/// \param seed A byte string seeding the process. -/// \param pLen The desired length of the modulus "p" in bits -/// \param qLen The desired length of the order "q" in bits -/// \param resultModulus A value "p" describing a finite field "F_p" -/// \param resultGroupOrder A value "q" describing the order of a subgroup -/// \param resultDomainParameterSeed A resulting seed for use in later calculations. -/// -/// Calculates the description of a group G of prime order "q" embedded within -/// a field "F_p". The input to this routine is in arbitrary seed. It uses the -/// algorithms described in FIPS 186-3 Appendix A.1.2 to calculate -/// primes "p" and "q". - -void -calculateGroupModulusAndOrder(uint256 seed, uint32_t pLen, uint32_t qLen, - Bignum *resultModulus, Bignum *resultGroupOrder, - uint256 *resultPseed, uint256 *resultQseed) -{ - // Verify that the seed length is >= qLen - if (qLen > (sizeof(seed)) * 8) { - // TODO: The use of 256-bit seeds limits us to 256-bit group orders. We should probably change this. - // throw ZerocoinException("Seed is too short to support the required security level."); - } - -#ifdef ZEROCOIN_DEBUG - cout << "calculateGroupModulusAndOrder: pLen = " << pLen << endl; -#endif - - // Generate a random prime for the group order. - // This may throw an exception, which we'll pass upwards. - // Result is the value "resultGroupOrder", "qseed" and "qgen_counter". - uint256 qseed; - uint32_t qgen_counter; - *resultGroupOrder = generateRandomPrime(qLen, seed, &qseed, &qgen_counter); - - // Using ⎡pLen / 2 + 1⎤ as the length and qseed as the input_seed, use the random prime - // routine to obtain p0 , pseed, and pgen_counter. We pass exceptions upward. - uint32_t p0len = ceil((pLen / 2.0) + 1); - uint256 pseed; - uint32_t pgen_counter; - Bignum p0 = generateRandomPrime(p0len, qseed, &pseed, &pgen_counter); - - // Set x = 0, old_counter = pgen_counter - uint32_t old_counter = pgen_counter; - - // Generate a random integer "x" of pLen bits - uint32_t iterations; - Bignum x = generateIntegerFromSeed(pLen, pseed, &iterations); - pseed += (iterations + 1); - - // Set x = 2^{pLen−1} + (x mod 2^{pLen–1}). - Bignum powerOfTwo = Bignum(2).pow(pLen-1); - x = powerOfTwo + (x % powerOfTwo); - - // t = ⎡x / (2 * resultGroupOrder * p0)⎤. - // TODO: we don't have a ceiling function - Bignum t = x / (Bignum(2) * (*resultGroupOrder) * p0); - - // Now loop until we find a valid prime "p" or we fail due to - // pgen_counter exceeding ((4*pLen) + old_counter). - for ( ; pgen_counter <= ((4*pLen) + old_counter) ; pgen_counter++) { - // If (2 * t * resultGroupOrder * p0 + 1) > 2^{pLen}, then - // t = ⎡2^{pLen−1} / (2 * resultGroupOrder * p0)⎤. - powerOfTwo = Bignum(2).pow(pLen); - Bignum prod = (Bignum(2) * t * (*resultGroupOrder) * p0) + Bignum(1); - if (prod > powerOfTwo) { - // TODO: implement a ceil function - t = Bignum(2).pow(pLen-1) / (Bignum(2) * (*resultGroupOrder) * p0); - } - - // Compute a candidate prime resultModulus = 2tqp0 + 1. - *resultModulus = (Bignum(2) * t * (*resultGroupOrder) * p0) + Bignum(1); - - // Verify that resultModulus is prime. First generate a pseudorandom integer "a". - Bignum a = generateIntegerFromSeed(pLen, pseed, &iterations); - pseed += iterations + 1; - - // Set a = 2 + (a mod (resultModulus–3)). - a = Bignum(2) + (a % ((*resultModulus) - Bignum(3))); - - // Set z = a^{2 * t * resultGroupOrder} mod resultModulus - Bignum z = a.pow_mod(Bignum(2) * t * (*resultGroupOrder), (*resultModulus)); - - // If GCD(z–1, resultModulus) == 1 AND (z^{p0} mod resultModulus == 1) - // then we have found our result. Return. - if ((resultModulus->gcd(z - Bignum(1))).isOne() && - (z.pow_mod(p0, (*resultModulus))).isOne()) { - // Success! Return the seeds and primes. - *resultPseed = pseed; - *resultQseed = qseed; - return; - } - - // This prime did not work out. Increment "t" and try again. - t = t + Bignum(1); - } // loop continues until pgen_counter exceeds a limit - - // We reach this point only if we exceeded our maximum iteration count. - // Throw an exception. - throw ZerocoinException("Unable to generate a prime modulus for the group"); -} - -/// \brief Deterministically compute a generator for a given group. -/// \param seed A first seed for the process. -/// \param pSeed A second seed for the process. -/// \param qSeed A third seed for the process. -/// \param modulus Proposed prime modulus for the field. -/// \param groupOrder Proposed order of the group. -/// \param index Index value, selects which generator you're building. -/// \return The resulting generator. -/// \throws A ZerocoinException if error. -/// -/// Generates a random group generator deterministically as a function of (seed,pSeed,qSeed) -/// Uses the algorithm described in FIPS 186-3 Appendix A.2.3. - -Bignum -calculateGroupGenerator(uint256 seed, uint256 pSeed, uint256 qSeed, Bignum modulus, Bignum groupOrder, uint32_t index) -{ - Bignum result; - - // Verify that 0 <= index < 256 - if (index > 255) { - throw ZerocoinException("Invalid index for group generation"); - } - - // Compute e = (modulus - 1) / groupOrder - Bignum e = (modulus - Bignum(1)) / groupOrder; - - // Loop until we find a generator - for (uint32_t count = 1; count < MAX_GENERATOR_ATTEMPTS; count++) { - // hash = Hash(seed || pSeed || qSeed || “ggen” || index || count - uint256 hash = calculateGeneratorSeed(seed, pSeed, qSeed, "ggen", index, count); - Bignum W(hash); - - // Compute result = W^e mod p - result = W.pow_mod(e, modulus); - - // If result > 1, we have a generator - if (result > 1) { - return result; - } - } - - // We only get here if we failed to find a generator - throw ZerocoinException("Unable to find a generator, too many attempts"); -} - -/// \brief Deterministically compute a random prime number. -/// \param primeBitLen Desired bit length of the prime. -/// \param in_seed Input seed for the process. -/// \param out_seed Result: output seed from the process. -/// \param prime_gen_counter Result: number of iterations required. -/// \return The resulting prime number. -/// \throws A ZerocoinException if error. -/// -/// Generates a random prime number of primeBitLen bits from a given input -/// seed. Uses the Shawe-Taylor algorithm as described in FIPS 186-3 -/// Appendix C.6. This is a recursive function. - -Bignum -generateRandomPrime(uint32_t primeBitLen, uint256 in_seed, uint256 *out_seed, - uint32_t *prime_gen_counter) -{ - // Verify that primeBitLen is not too small - if (primeBitLen < 2) { - throw ZerocoinException("Prime length is too short"); - } - - // If primeBitLen < 33 bits, perform the base case. - if (primeBitLen < 33) { - Bignum result(0); - - // Set prime_seed = in_seed, prime_gen_counter = 0. - uint256 prime_seed = in_seed; - (*prime_gen_counter) = 0; - - // Loop up to "4 * primeBitLen" iterations. - while ((*prime_gen_counter) < (4 * primeBitLen)) { - - // Generate a pseudorandom integer "c" of length primeBitLength bits - uint32_t iteration_count; - Bignum c = generateIntegerFromSeed(primeBitLen, prime_seed, &iteration_count); -#ifdef ZEROCOIN_DEBUG - cout << "generateRandomPrime: primeBitLen = " << primeBitLen << endl; - cout << "Generated c = " << c << endl; -#endif - - prime_seed += (iteration_count + 1); - (*prime_gen_counter)++; - - // Set "intc" to be the least odd integer >= "c" we just generated - uint32_t intc = c.getulong(); - intc = (2 * floor(intc / 2.0)) + 1; -#ifdef ZEROCOIN_DEBUG - cout << "Should be odd. c = " << intc << endl; - cout << "The big num is: c = " << c << endl; -#endif - - // Perform trial division on this (relatively small) integer to determine if "intc" - // is prime. If so, return success. - if (primalityTestByTrialDivision(intc)) { - // Return "intc" converted back into a Bignum and "prime_seed". We also updated - // the variable "prime_gen_counter" in previous statements. - result = intc; - *out_seed = prime_seed; - - // Success - return result; - } - } // while() - - // If we reached this point there was an error finding a candidate prime - // so throw an exception. - throw ZerocoinException("Unable to find prime in Shawe-Taylor algorithm"); - - // END OF BASE CASE - } - // If primeBitLen >= 33 bits, perform the recursive case. - else { - // Recurse to find a new random prime of roughly half the size - uint32_t newLength = ceil((double)primeBitLen / 2.0) + 1; - Bignum c0 = generateRandomPrime(newLength, in_seed, out_seed, prime_gen_counter); - - // Generate a random integer "x" of primeBitLen bits using the output - // of the previous call. - uint32_t numIterations; - Bignum x = generateIntegerFromSeed(primeBitLen, *out_seed, &numIterations); - (*out_seed) += numIterations + 1; - - // Compute "t" = ⎡x / (2 * c0⎤ - // TODO no Ceiling call - Bignum t = x / (Bignum(2) * c0); - - // Repeat the following procedure until we find a prime (or time out) - for (uint32_t testNum = 0; testNum < MAX_PRIMEGEN_ATTEMPTS; testNum++) { - - // If ((2 * t * c0) + 1 > 2^{primeBitLen}), - // then t = ⎡2^{primeBitLen} – 1 / (2 * c0)⎤. - if ((Bignum(2) * t * c0) > (Bignum(2).pow(Bignum(primeBitLen)))) { - t = ((Bignum(2).pow(Bignum(primeBitLen))) - Bignum(1)) / (Bignum(2) * c0); - } - - // Set c = (2 * t * c0) + 1 - Bignum c = (Bignum(2) * t * c0) + Bignum(1); - - // Increment prime_gen_counter - (*prime_gen_counter)++; - - // Test "c" for primality as follows: - // 1. First pick an integer "a" in between 2 and (c - 2) - Bignum a = generateIntegerFromSeed(c.bitSize(), (*out_seed), &numIterations); - a = Bignum(2) + (a % (c - Bignum(3))); - (*out_seed) += (numIterations + 1); - - // 2. Compute "z" = a^{2*t} mod c - Bignum z = a.pow_mod(Bignum(2) * t, c); - - // 3. Check if "c" is prime. - // Specifically, verify that gcd((z-1), c) == 1 AND (z^c0 mod c) == 1 - // If so we return "c" as our result. - if (c.gcd(z - Bignum(1)).isOne() && z.pow_mod(c0, c).isOne()) { - // Return "c", out_seed and prime_gen_counter - // (the latter two of which were already updated) - return c; - } - - // 4. If the test did not succeed, increment "t" and loop - t = t + Bignum(1); - } // end of test loop - } - - // We only reach this point if the test loop has iterated MAX_PRIMEGEN_ATTEMPTS - // and failed to identify a valid prime. Throw an exception. - throw ZerocoinException("Unable to generate random prime (too many tests)"); -} - -Bignum -generateIntegerFromSeed(uint32_t numBits, uint256 seed, uint32_t *numIterations) -{ - Bignum result(0); - uint32_t iterations = ceil((double)numBits / (double)HASH_OUTPUT_BITS); - -#ifdef ZEROCOIN_DEBUG - cout << "numBits = " << numBits << endl; - cout << "iterations = " << iterations << endl; -#endif - - // Loop "iterations" times filling up the value "result" with random bits - for (uint32_t count = 0; count < iterations; count++) { - // result += ( H(pseed + count) * 2^{count * p0len} ) - result += Bignum(calculateHash(seed + count)) * Bignum(2).pow(count * HASH_OUTPUT_BITS); - } - - result = Bignum(2).pow(numBits - 1) + (result % (Bignum(2).pow(numBits - 1))); - - // Return the number of iterations and the result - *numIterations = iterations; - return result; -} - -/// \brief Determines whether a uint32_t is a prime through trial division. -/// \param candidate Candidate to test. -/// \return true if the value is prime, false otherwise -/// -/// Performs trial division to determine whether a uint32_t is prime. - -bool -primalityTestByTrialDivision(uint32_t candidate) -{ - // TODO: HACK HACK WRONG WRONG - Bignum canBignum(candidate); - - return canBignum.isPrime(); -} - -} // namespace libzerocoin diff --git a/src/zerocoin/ParamGeneration.h b/src/zerocoin/ParamGeneration.h deleted file mode 100644 index de2d452..0000000 --- a/src/zerocoin/ParamGeneration.h +++ /dev/null @@ -1,53 +0,0 @@ -/// \file ParamGeneration.h -/// -/// \brief Parameter generation routines for Zerocoin. -/// -/// \author Ian Miers, Christina Garman and Matthew Green -/// \date June 2013 -/// -/// \copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green -/// \license This project is released under the MIT license. - -#ifndef PARAMGENERATION_H_ -#define PARAMGENERATION_H_ - -namespace libzerocoin { - -void CalculateParams(Params ¶ms, Bignum N, std::string aux, uint32_t securityLevel); -void calculateGroupParamLengths(uint32_t maxPLen, uint32_t securityLevel, - uint32_t *pLen, uint32_t *qLen); - -// Constants -#define STRING_COMMIT_GROUP "COIN_COMMITMENT_GROUP" -#define STRING_AVC_GROUP "ACCUMULATED_VALUE_COMMITMENT_GROUP" -#define STRING_AVC_ORDER "ACCUMULATED_VALUE_COMMITMENT_ORDER" -#define STRING_AIC_GROUP "ACCUMULATOR_INTERNAL_COMMITMENT_GROUP" -#define STRING_QRNCOMMIT_GROUPG "ACCUMULATOR_QRN_COMMITMENT_GROUPG" -#define STRING_QRNCOMMIT_GROUPH "ACCUMULATOR_QRN_COMMITMENT_GROUPH" -#define ACCUMULATOR_BASE_CONSTANT 31 -#define MAX_PRIMEGEN_ATTEMPTS 10000 -#define MAX_ACCUMGEN_ATTEMPTS 10000 -#define MAX_GENERATOR_ATTEMPTS 10000 -#define NUM_SCHNORRGEN_ATTEMPTS 10000 - -// Prototypes -bool primalityTestByTrialDivision(uint32_t candidate); -uint256 calculateSeed(Bignum modulus, std::string auxString, uint32_t securityLevel, std::string groupName); -uint256 calculateGeneratorSeed(uint256 seed, uint256 pSeed, uint256 qSeed, std::string label, uint32_t index, uint32_t count); - -uint256 calculateHash(uint256 input); -IntegerGroupParams deriveIntegerGroupParams(uint256 seed, uint32_t pLen, uint32_t qLen); -IntegerGroupParams deriveIntegerGroupFromOrder(Bignum &groupOrder); -void calculateGroupModulusAndOrder(uint256 seed, uint32_t pLen, uint32_t qLen, - Bignum *resultModulus, Bignum *resultGroupOrder, - uint256 *resultPseed, uint256 *resultQseed); -Bignum calculateGroupGenerator(uint256 seed, uint256 pSeed, uint256 qSeed, Bignum modulus, - Bignum groupOrder, uint32_t index); -Bignum generateRandomPrime(uint32_t primeBitLen, uint256 in_seed, uint256 *out_seed, - uint32_t *prime_gen_counter); -Bignum generateIntegerFromSeed(uint32_t numBits, uint256 seed, uint32_t *numIterations); -bool primalityTestByTrialDivision(uint32_t candidate); - -}/* namespace libzerocoin */ - -#endif /* PARAMGENERATION_H_ */ diff --git a/src/zerocoin/Params.cpp b/src/zerocoin/Params.cpp deleted file mode 100644 index c275044..0000000 --- a/src/zerocoin/Params.cpp +++ /dev/null @@ -1,45 +0,0 @@ -/** -* @file Params.cpp -* -* @brief Parameter class for Zerocoin. -* -* @author Ian Miers, Christina Garman and Matthew Green -* @date June 2013 -* -* @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green -* @license This project is released under the MIT license. -**/ -#include "Zerocoin.h" - -namespace libzerocoin { - -Params::Params(Bignum N, uint32_t securityLevel) { - this->zkp_hash_len = securityLevel; - this->zkp_iterations = securityLevel; - - this->accumulatorParams.k_prime = ACCPROOF_KPRIME; - this->accumulatorParams.k_dprime = ACCPROOF_KDPRIME; - - // Generate the parameters - CalculateParams(*this, N, ZEROCOIN_PROTOCOL_VERSION, securityLevel); - - this->accumulatorParams.initialized = true; - this->initialized = true; -} - -AccumulatorAndProofParams::AccumulatorAndProofParams() { - this->initialized = false; -} - -IntegerGroupParams::IntegerGroupParams() { - this->initialized = false; -} - -Bignum IntegerGroupParams::randomElement() const { - // The generator of the group raised - // to a random number less than the order of the group - // provides us with a uniformly distributed random number. - return this->g.pow_mod(Bignum::randBignum(this->groupOrder),this->modulus); -} - -} /* namespace libzerocoin */ diff --git a/src/zerocoin/Params.h b/src/zerocoin/Params.h deleted file mode 100644 index 60a5af4..0000000 --- a/src/zerocoin/Params.h +++ /dev/null @@ -1,216 +0,0 @@ -/** -* @file Params.h -* -* @brief Parameter classes for Zerocoin. -* -* @author Ian Miers, Christina Garman and Matthew Green -* @date June 2013 -* -* @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green -* @license This project is released under the MIT license. -**/ -#ifndef PARAMS_H_ -#define PARAMS_H_ - -namespace libzerocoin { - -class IntegerGroupParams { -public: - /** @brief Integer group class, default constructor - * - * Allocates an empty (uninitialized) set of parameters. - **/ - IntegerGroupParams(); - - /** - * Generates a random group element - * @return a random element in the group. - */ - Bignum randomElement() const; - bool initialized; - - /** - * A generator for the group. - */ - Bignum g; - - /** - * A second generator for the group. - * Note log_g(h) and log_h(g) must - * be unknown. - */ - Bignum h; - - /** - * The modulus for the group. - */ - Bignum modulus; - - /** - * The order of the group - */ - Bignum groupOrder; - - IMPLEMENT_SERIALIZE - ( - READWRITE(initialized); - READWRITE(g); - READWRITE(h); - READWRITE(modulus); - READWRITE(groupOrder); - ) -}; - -class AccumulatorAndProofParams { -public: - /** @brief Construct a set of Zerocoin parameters from a modulus "N". - * @param N A trusted RSA modulus - * @param securityLevel A security level expressed in symmetric bits (default 80) - * - * Allocates and derives a set of Zerocoin parameters from - * a trustworthy RSA modulus "N". This routine calculates all - * of the remaining parameters (group descriptions etc.) from N - * using a verifiable, deterministic procedure. - * - * Note: this constructor makes the fundamental assumption that "N" - * encodes a valid RSA-style modulus of the form "e1 * e2" where - * "e1" and "e2" are safe primes. The factors "e1", "e2" MUST NOT - * be known to any party, or the security of Zerocoin is - * compromised. The integer "N" must be a MINIMUM of 1024 - * in length. 3072 bits is strongly recommended. - **/ - AccumulatorAndProofParams(); - - //AccumulatorAndProofParams(Bignum accumulatorModulus); - - bool initialized; - - /** - * Modulus used for the accumulator. - * Product of two safe primes who's factorization is unknown. - */ - Bignum accumulatorModulus; - - /** - * The initial value for the accumulator - * A random Quadratic residue mod n thats not 1 - */ - Bignum accumulatorBase; - - /** - * Lower bound on the value for committed coin. - * Required by the accumulator proof. - */ - Bignum minCoinValue; - - /** - * Upper bound on the value for a comitted coin. - * Required by the accumulator proof. - */ - Bignum maxCoinValue; - - /** - * The second of two groups used to form a commitment to - * a coin (which it self is a commitment to a serial number). - * This one differs from serialNumberSokCommitment due to - * restrictions from Camenisch and Lysyanskaya's paper. - */ - IntegerGroupParams accumulatorPoKCommitmentGroup; - - /** - * Hidden order quadratic residue group mod N. - * Used in the accumulator proof. - */ - IntegerGroupParams accumulatorQRNCommitmentGroup; - - /** - * Security parameter. - * Bit length of the challenges used in the accumulator proof. - */ - uint32_t k_prime; - - /** - * Security parameter. - * The statistical zero-knowledgeness of the accumulator proof. - */ - uint32_t k_dprime; - - IMPLEMENT_SERIALIZE - ( - READWRITE(initialized); - READWRITE(accumulatorModulus); - READWRITE(accumulatorBase); - READWRITE(accumulatorPoKCommitmentGroup); - READWRITE(accumulatorQRNCommitmentGroup); - READWRITE(minCoinValue); - READWRITE(maxCoinValue); - READWRITE(k_prime); - READWRITE(k_dprime); - ) -}; - -class Params { -public: - /** @brief Construct a set of Zerocoin parameters from a modulus "N". - * @param N A trusted RSA modulus - * @param securityLevel A security level expressed in symmetric bits (default 80) - * - * Allocates and derives a set of Zerocoin parameters from - * a trustworthy RSA modulus "N". This routine calculates all - * of the remaining parameters (group descriptions etc.) from N - * using a verifiable, deterministic procedure. - * - * Note: this constructor makes the fundamental assumption that "N" - * encodes a valid RSA-style modulus of the form "e1 * e2" where - * "e1" and "e2" are safe primes. The factors "e1", "e2" MUST NOT - * be known to any party, or the security of Zerocoin is - * compromised. The integer "N" must be a MINIMUM of 1024 - * in length. 3072 bits is strongly recommended. - **/ - Params(Bignum accumulatorModulus, - uint32_t securityLevel = ZEROCOIN_DEFAULT_SECURITYLEVEL); - - bool initialized; - - AccumulatorAndProofParams accumulatorParams; - - /** - * The Quadratic Residue group from which we form - * a coin as a commitment to a serial number. - */ - IntegerGroupParams coinCommitmentGroup; - - /** - * One of two groups used to form a commitment to - * a coin (which it self is a commitment to a serial number). - * This is the one used in the serial number poof. - * It's order must be equal to the modulus of coinCommitmentGroup. - */ - IntegerGroupParams serialNumberSoKCommitmentGroup; - - /** - * The number of iterations to use in the serial - * number proof. - */ - uint32_t zkp_iterations; - - /** - * The amount of the hash function we use for - * proofs. - */ - uint32_t zkp_hash_len; - - IMPLEMENT_SERIALIZE - ( - READWRITE(initialized); - READWRITE(accumulatorParams); - READWRITE(coinCommitmentGroup); - READWRITE(serialNumberSoKCommitmentGroup); - READWRITE(zkp_iterations); - READWRITE(zkp_hash_len); - ) -}; - -} /* namespace libzerocoin */ - -#endif /* PARAMS_H_ */ diff --git a/src/zerocoin/SerialNumberSignatureOfKnowledge.cpp b/src/zerocoin/SerialNumberSignatureOfKnowledge.cpp deleted file mode 100644 index 1654c50..0000000 --- a/src/zerocoin/SerialNumberSignatureOfKnowledge.cpp +++ /dev/null @@ -1,139 +0,0 @@ -/** -* @file SerialNumberSignatureOfKnowledge.cpp -* -* @brief SerialNumberSignatureOfKnowledge class for the Zerocoin library. -* -* @author Ian Miers, Christina Garman and Matthew Green -* @date June 2013 -* -* @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green -* @license This project is released under the MIT license. -**/ - -#include "Zerocoin.h" - -namespace libzerocoin { - -SerialNumberSignatureOfKnowledge::SerialNumberSignatureOfKnowledge(const Params* p): params(p) { } - -SerialNumberSignatureOfKnowledge::SerialNumberSignatureOfKnowledge(const - Params* p, const PrivateCoin& coin, const Commitment& commitmentToCoin, - uint256 msghash):params(p), - s_notprime(p->zkp_iterations), - sprime(p->zkp_iterations) { - - // Sanity check: verify that the order of the "accumulatedValueCommitmentGroup" is - // equal to the modulus of "coinCommitmentGroup". Otherwise we will produce invalid - // proofs. - if (params->coinCommitmentGroup.modulus != params->serialNumberSoKCommitmentGroup.groupOrder) { - throw ZerocoinException("Groups are not structured correctly."); - } - - Bignum a = params->coinCommitmentGroup.g; - Bignum b = params->coinCommitmentGroup.h; - Bignum g = params->serialNumberSoKCommitmentGroup.g; - Bignum h = params->serialNumberSoKCommitmentGroup.h; - - CHashWriter hasher(0,0); - hasher << *params << commitmentToCoin.getCommitmentValue() << coin.getSerialNumber(); - - vector r(params->zkp_iterations); - vector v(params->zkp_iterations); - vector c(params->zkp_iterations); - - - for(uint32_t i=0; i < params->zkp_iterations; i++) { - //FIXME we really ought to use one BN_CTX for all of these - // operations for performance reasons, not the one that - // is created individually by the wrapper - r[i] = Bignum::randBignum(params->coinCommitmentGroup.groupOrder); - v[i] = Bignum::randBignum(params->serialNumberSoKCommitmentGroup.groupOrder); - } - - // Openssl's rng is not thread safe, so we don't call it in a parallel loop, - // instead we generate the random values beforehand and run the calculations - // based on those values in parallel. -#ifdef ZEROCOIN_THREADING - #pragma omp parallel for -#endif - for(uint32_t i=0; i < params->zkp_iterations; i++) { - // compute g^{ {a^x b^r} h^v} mod p2 - c[i] = challengeCalculation(coin.getSerialNumber(), r[i], v[i]); - } - - // We can't hash data in parallel either - // because OPENMP cannot not guarantee loops - // execute in order. - for(uint32_t i=0; i < params->zkp_iterations; i++) { - hasher << c[i]; - } - this->hash = hasher.GetHash(); - unsigned char *hashbytes = (unsigned char*) &hash; - -#ifdef ZEROCOIN_THREADING - #pragma omp parallel for -#endif - for(uint32_t i = 0; i < params->zkp_iterations; i++) { - int bit = i % 8; - int byte = i / 8; - - bool challenge_bit = ((hashbytes[byte] >> bit) & 0x01); - if (challenge_bit) { - s_notprime[i] = r[i]; - sprime[i] = v[i]; - } else { - s_notprime[i] = r[i] - coin.getRandomness(); - sprime[i] = v[i] - (commitmentToCoin.getRandomness() * - b.pow_mod(r[i] - coin.getRandomness(), params->serialNumberSoKCommitmentGroup.groupOrder)); - } - } -} - -inline Bignum SerialNumberSignatureOfKnowledge::challengeCalculation(const Bignum& a_exp,const Bignum& b_exp, - const Bignum& h_exp) const { - - Bignum a = params->coinCommitmentGroup.g; - Bignum b = params->coinCommitmentGroup.h; - Bignum g = params->serialNumberSoKCommitmentGroup.g; - Bignum h = params->serialNumberSoKCommitmentGroup.h; - - Bignum exponent = (a.pow_mod(a_exp, params->serialNumberSoKCommitmentGroup.groupOrder) - * b.pow_mod(b_exp, params->serialNumberSoKCommitmentGroup.groupOrder)) % params->serialNumberSoKCommitmentGroup.groupOrder; - - return (g.pow_mod(exponent, params->serialNumberSoKCommitmentGroup.modulus) * h.pow_mod(h_exp, params->serialNumberSoKCommitmentGroup.modulus)) % params->serialNumberSoKCommitmentGroup.modulus; -} - -bool SerialNumberSignatureOfKnowledge::Verify(const Bignum& coinSerialNumber, const Bignum& valueOfCommitmentToCoin, - const uint256 msghash) const { - Bignum a = params->coinCommitmentGroup.g; - Bignum b = params->coinCommitmentGroup.h; - Bignum g = params->serialNumberSoKCommitmentGroup.g; - Bignum h = params->serialNumberSoKCommitmentGroup.h; - CHashWriter hasher(0,0); - hasher << *params << valueOfCommitmentToCoin < tprime(params->zkp_iterations); - unsigned char *hashbytes = (unsigned char*) &this->hash; -#ifdef ZEROCOIN_THREADING - #pragma omp parallel for -#endif - for(uint32_t i = 0; i < params->zkp_iterations; i++) { - int bit = i % 8; - int byte = i / 8; - bool challenge_bit = ((hashbytes[byte] >> bit) & 0x01); - if(challenge_bit) { - tprime[i] = challengeCalculation(coinSerialNumber, s_notprime[i], sprime[i]); - } else { - Bignum exp = b.pow_mod(s_notprime[i], params->serialNumberSoKCommitmentGroup.groupOrder); - tprime[i] = ((valueOfCommitmentToCoin.pow_mod(exp, params->serialNumberSoKCommitmentGroup.modulus) % params->serialNumberSoKCommitmentGroup.modulus) * - (h.pow_mod(sprime[i], params->serialNumberSoKCommitmentGroup.modulus) % params->serialNumberSoKCommitmentGroup.modulus)) % - params->serialNumberSoKCommitmentGroup.modulus; - } - } - for(uint32_t i = 0; i < params->zkp_iterations; i++) { - hasher << tprime[i]; - } - return hasher.GetHash() == hash; -} - -} /* namespace libzerocoin */ diff --git a/src/zerocoin/SerialNumberSignatureOfKnowledge.h b/src/zerocoin/SerialNumberSignatureOfKnowledge.h deleted file mode 100644 index 3177618..0000000 --- a/src/zerocoin/SerialNumberSignatureOfKnowledge.h +++ /dev/null @@ -1,75 +0,0 @@ -/** -* @file SerialNumberSignatureOfKnowledge.h -* -* @brief SerialNumberSignatureOfKnowledge class for the Zerocoin library. -* -* @author Ian Miers, Christina Garman and Matthew Green -* @date June 2013 -* -* @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green -* @license This project is released under the MIT license. -**/ - -#ifndef SERIALNUMBERPROOF_H_ -#define SERIALNUMBERPROOF_H_ - -#include -#include -#include -#include "Params.h" -#include "Coin.h" -#include "Commitment.h" -#include "../bignum.h" -#include "../serialize.h" -#include "Accumulator.h" -#include "../util.h" - -using namespace std; -namespace libzerocoin { - -/**A Signature of knowledge on the hash of metadata attesting that the signer knows the values - * necessary to open a commitment which contains a coin(which it self is of course a commitment) - * with a given serial number. - */ -class SerialNumberSignatureOfKnowledge { -public: - SerialNumberSignatureOfKnowledge(const Params* p); - /** Creates a Signature of knowledge object that a commitment to a coin contains a coin with serial number x - * - * @param p params - * @param coin the coin we are going to prove the serial number of. - * @param commitmentToCoin the commitment to the coin - * @param msghash hash of meta data to create a signature of knowledge on. - */ - SerialNumberSignatureOfKnowledge(const Params* p, const PrivateCoin& coin, const Commitment& commitmentToCoin, uint256 msghash); - - /** Verifies the Signature of knowledge. - * - * @param msghash hash of meta data to create a signature of knowledge on. - * @return - */ - bool Verify(const Bignum& coinSerialNumber, const Bignum& valueOfCommitmentToCoin,const uint256 msghash) const; - - IMPLEMENT_SERIALIZE - ( - READWRITE(s_notprime); - READWRITE(sprime); - READWRITE(hash); - ) -private: - const Params* params; - // challenge hash - uint256 hash; //TODO For efficiency, should this be a bitset where Templates define params? - - // challenge response values - // this is s_notprime instead of s - // because the serialization macros - // define something named s and it conflicts - vector s_notprime; - vector sprime; - inline Bignum challengeCalculation(const Bignum& a_exp, const Bignum& b_exp, - const Bignum& h_exp) const; -}; - -} /* namespace libzerocoin */ -#endif /* SERIALNUMBERPROOF_H_ */ diff --git a/src/zerocoin/SpendMetaData.cpp b/src/zerocoin/SpendMetaData.cpp deleted file mode 100644 index 83d5619..0000000 --- a/src/zerocoin/SpendMetaData.cpp +++ /dev/null @@ -1,19 +0,0 @@ -/** -* @file SpendMetaData.cpp -* -* @brief SpendMetaData class for the Zerocoin library. -* -* @author Ian Miers, Christina Garman and Matthew Green -* @date June 2013 -* -* @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green -* @license This project is released under the MIT license. -**/ - -#include "Zerocoin.h" - -namespace libzerocoin { - -SpendMetaData::SpendMetaData(uint256 accumulatorId, uint256 txHash): accumulatorId(accumulatorId), txHash(txHash) {} - -} /* namespace libzerocoin */ diff --git a/src/zerocoin/SpendMetaData.h b/src/zerocoin/SpendMetaData.h deleted file mode 100644 index 855d8f9..0000000 --- a/src/zerocoin/SpendMetaData.h +++ /dev/null @@ -1,52 +0,0 @@ -/** -* @file SpendMetaData.h -* -* @brief SpendMetaData class for the Zerocoin library. -* -* @author Ian Miers, Christina Garman and Matthew Green -* @date June 2013 -* -* @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green -* @license This project is released under the MIT license. -**/ - -#ifndef SPENDMETADATA_H_ -#define SPENDMETADATA_H_ - -#include "../uint256.h" -#include "../serialize.h" - -using namespace std; -namespace libzerocoin { - -/** Any meta data needed for actual bitcoin integration. - * Can extended provided the getHash() function is updated - */ -class SpendMetaData { -public: - /** - * Creates meta data associated with a coin spend - * @param accumulatorId hash of block containing accumulator - * @param txHash hash of transaction - */ - SpendMetaData(uint256 accumulatorId, uint256 txHash); - - /** - * The hash of the block containing the accumulator CoinSpend - * proves membership in. - */ - uint256 accumulatorId; // The block the accumulator is in - /**Contains the hash of the rest of transaction - * spending a zerocoin (excluding the coinspend proof) - */ - uint256 txHash; // The Hash of the rest of the transaction the spend proof is n. - // Allows us to sign the transaction. - IMPLEMENT_SERIALIZE - ( - READWRITE(accumulatorId); - READWRITE(txHash); - ) -}; - -} /* namespace libzerocoin */ -#endif /* SPENDMETADATA_H_ */ diff --git a/src/zerocoin/ZeroTest.cpp b/src/zerocoin/ZeroTest.cpp deleted file mode 100644 index f00f0c5..0000000 --- a/src/zerocoin/ZeroTest.cpp +++ /dev/null @@ -1,421 +0,0 @@ -/** -* @file Tests.cpp -* -* @brief Test routines for Zerocoin. -* -* @author Ian Miers, Christina Garman and Matthew Green -* @date June 2013 -* -* @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green -* @license This project is released under the MIT license. -**/ - -using namespace std; - -#include -#include -#include -#include -#include "Zerocoin.h" -#include "../util.h" - -using namespace libzerocoin; -extern Params* ZCParams; - - -#define TESTS_COINS_TO_ACCUMULATE 10 - -// Global test counters -uint32_t gNumTests = 0; -uint32_t gSuccessfulTests = 0; - -// Proof size -uint32_t gProofSize = 0; -uint32_t gCoinSize = 0; -uint32_t gSerialNumberSize = 0; - -// Global coin array -PrivateCoin *gCoins[TESTS_COINS_TO_ACCUMULATE]; - -// Global params -Params *g_Params; - -////////// -// Utility routines -////////// - -void -LogTestResult(string testName, bool (*testPtr)()) -{ - printf("Testing if %s ...\n", testName.c_str()); - - bool testResult = testPtr(); - - if (testResult == true) { - printf("\t[PASS]\n"); - gSuccessfulTests++; - } else { - printf("\t[FAIL]\n"); - } - - gNumTests++; -} - -Bignum -GetTestModulus() -{ - static Bignum testModulus(0); - - // TODO: should use a hard-coded RSA modulus for testing - if (!testModulus) { - Bignum p, q; - - // Note: we are NOT using safe primes for testing because - // they take too long to generate. Don't do this in real - // usage. See the paramgen utility for better code. - p = Bignum::generatePrime(1024, false); - q = Bignum::generatePrime(1024, false); - testModulus = p * q; - } - - return testModulus; -} - -////////// -// Test routines -////////// - -bool -Test_GenRSAModulus() -{ - Bignum result = GetTestModulus(); - - if (!result) { - return false; - } - else { - return true; - } -} - -bool -Test_CalcParamSizes() -{ - bool result = true; -#if 0 - - uint32_t pLen, qLen; - - try { - calculateGroupParamLengths(4000, 80, &pLen, &qLen); - if (pLen < 1024 || qLen < 256) { - result = false; - } - calculateGroupParamLengths(4000, 96, &pLen, &qLen); - if (pLen < 2048 || qLen < 256) { - result = false; - } - calculateGroupParamLengths(4000, 112, &pLen, &qLen); - if (pLen < 3072 || qLen < 320) { - result = false; - } - calculateGroupParamLengths(4000, 120, &pLen, &qLen); - if (pLen < 3072 || qLen < 320) { - result = false; - } - calculateGroupParamLengths(4000, 128, &pLen, &qLen); - if (pLen < 3072 || qLen < 320) { - result = false; - } - } catch (exception &e) { - result = false; - } -#endif - - return result; -} - -bool -Test_GenerateGroupParams() -{ - int32_t pLen = 1024, qLen = 256, count; - IntegerGroupParams group; - - for (count = 0; count < 1; count++) { - - try { - group = deriveIntegerGroupParams(calculateSeed(GetTestModulus(), "test", ZEROCOIN_DEFAULT_SECURITYLEVEL, "TEST GROUP"), pLen, qLen); - } catch (std::runtime_error e) { - printf("Caught exception %s\n", e.what()); - return false; - } - - // Now perform some simple tests on the resulting parameters - if (group.groupOrder.bitSize() < qLen || group.modulus.bitSize() < pLen) { - return false; - } - - Bignum c = group.g.pow_mod(group.groupOrder, group.modulus); - if (!(c.isOne())) return false; - - // Try at multiple parameter sizes - pLen = pLen * 1.5; - qLen = qLen * 1.5; - } - - return true; -} - -bool -Test_ParamGen() -{ - bool result = true; - - try { - // Instantiating testParams runs the parameter generation code - Params testParams(GetTestModulus(),ZEROCOIN_DEFAULT_SECURITYLEVEL); - } catch (runtime_error e) { - printf("ParamGen exception %s\n", e.what()); - result = false; - } - - return result; -} - -bool -Test_Accumulator() -{ - // This test assumes a list of coins were generated during - // the Test_MintCoin() test. - if (gCoins[0] == NULL) { - return false; - } - try { - // Accumulate the coin list from first to last into one accumulator - Accumulator accOne(&g_Params->accumulatorParams); - Accumulator accTwo(&g_Params->accumulatorParams); - Accumulator accThree(&g_Params->accumulatorParams); - Accumulator accFour(&g_Params->accumulatorParams); - AccumulatorWitness wThree(g_Params, accThree, gCoins[0]->getPublicCoin()); - - for (uint32_t i = 0; i < TESTS_COINS_TO_ACCUMULATE; i++) { - accOne += gCoins[i]->getPublicCoin(); - accTwo += gCoins[TESTS_COINS_TO_ACCUMULATE - (i+1)]->getPublicCoin(); - accThree += gCoins[i]->getPublicCoin(); - wThree += gCoins[i]->getPublicCoin(); - if(i != 0) { - accFour += gCoins[i]->getPublicCoin(); - } - } - - // Compare the accumulated results - if (accOne.getValue() != accTwo.getValue() || accOne.getValue() != accThree.getValue()) { - printf("Accumulators don't match\n"); - return false; - } - - if(accFour.getValue() != wThree.getValue()) { - printf("Witness math not working,\n"); - return false; - } - - // Verify that the witness is correct - if (!wThree.VerifyWitness(accThree, gCoins[0]->getPublicCoin()) ) { - printf("Witness not valid\n"); - return false; - } - - // Serialization test: see if we can serialize the accumulator - CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); - ss << accOne; - - // Deserialize it into a new object - Accumulator newAcc(g_Params, ss); - - // Compare the results - if (accOne.getValue() != newAcc.getValue()) { - return false; - } - - } catch (runtime_error e) { - return false; - } - - return true; -} - -bool -Test_EqualityPoK() -{ - // Run this test 10 times - for (uint32_t i = 0; i < 10; i++) { - try { - // Generate a random integer "val" - Bignum val = Bignum::randBignum(g_Params->coinCommitmentGroup.groupOrder); - - // Manufacture two commitments to "val", both - // under different sets of parameters - Commitment one(&g_Params->accumulatorParams.accumulatorPoKCommitmentGroup, val); - - Commitment two(&g_Params->serialNumberSoKCommitmentGroup, val); - - // Now generate a proof of knowledge that "one" and "two" are - // both commitments to the same value - CommitmentProofOfKnowledge pok(&g_Params->accumulatorParams.accumulatorPoKCommitmentGroup, - &g_Params->serialNumberSoKCommitmentGroup, - one, two); - - // Serialize the proof into a stream - CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); - ss << pok; - - // Deserialize back into a PoK object - CommitmentProofOfKnowledge newPok(&g_Params->accumulatorParams.accumulatorPoKCommitmentGroup, - &g_Params->serialNumberSoKCommitmentGroup, - ss); - - if (newPok.Verify(one.getCommitmentValue(), two.getCommitmentValue()) != true) { - return false; - } - - // Just for fun, deserialize the proof a second time - CDataStream ss2(SER_NETWORK, PROTOCOL_VERSION); - ss2 << pok; - - // This time tamper with it, then deserialize it back into a PoK - ss2[15] = 0; - CommitmentProofOfKnowledge newPok2(&g_Params->accumulatorParams.accumulatorPoKCommitmentGroup, - &g_Params->serialNumberSoKCommitmentGroup, - ss2); - - // If the tampered proof verifies, that's a failure! - if (newPok2.Verify(one.getCommitmentValue(), two.getCommitmentValue()) == true) { - return false; - } - - } catch (runtime_error &e) { - return false; - } - } - - return true; -} - -bool -Test_MintCoin() -{ - gCoinSize = 0; - - try { - // Generate a list of coins - for (uint32_t i = 0; i < TESTS_COINS_TO_ACCUMULATE; i++) { - gCoins[i] = new PrivateCoin(g_Params); - - PublicCoin pc = gCoins[i]->getPublicCoin(); - CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); - ss << pc; - gCoinSize += ss.size(); - } - - gCoinSize /= TESTS_COINS_TO_ACCUMULATE; - - } catch (exception &e) { - return false; - } - - return true; -} - -bool -Test_MintAndSpend() -{ - try { - // This test assumes a list of coins were generated in Test_MintCoin() - if (gCoins[0] == NULL) - { - // No coins: mint some. - Test_MintCoin(); - if (gCoins[0] == NULL) { - return false; - } - } - - // Accumulate the list of generated coins into a fresh accumulator. - // The first one gets marked as accumulated for a witness, the - // others just get accumulated normally. - Accumulator acc(&g_Params->accumulatorParams); - AccumulatorWitness wAcc(g_Params, acc, gCoins[0]->getPublicCoin()); - - for (uint32_t i = 0; i < TESTS_COINS_TO_ACCUMULATE; i++) { - acc += gCoins[i]->getPublicCoin(); - wAcc +=gCoins[i]->getPublicCoin(); - } - - // Now spend the coin - SpendMetaData m(1,1); - - CoinSpend spend(g_Params, *(gCoins[0]), acc, wAcc, m); - - // Serialize the proof and deserialize into newSpend - CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); - ss << spend; - gProofSize = ss.size(); - CoinSpend newSpend(g_Params, ss); - - // See if we can verify the deserialized proof (return our result) - bool ret = newSpend.Verify(acc, m); - - // Extract the serial number - Bignum serialNumber = newSpend.getCoinSerialNumber(); - gSerialNumberSize = ceil((double)serialNumber.bitSize() / 8.0); - - return ret; - } catch (runtime_error &e) { - printf("MintAndSpend exception %s\n", e.what()); - return false; - } - - return false; -} - -void -Test_RunAllTests() -{ - printf("ZeroCoin v%s self-test routine\n", ZEROCOIN_VERSION_STRING); - - // Make a new set of parameters from a random RSA modulus - //g_Params = new Params(GetTestModulus()); - g_Params = ZCParams; - - gNumTests = gSuccessfulTests = gProofSize = 0; - for (uint32_t i = 0; i < TESTS_COINS_TO_ACCUMULATE; i++) { - gCoins[i] = NULL; - } - - // Run through all of the Zerocoin tests - LogTestResult("an RSA modulus can be generated", Test_GenRSAModulus); - LogTestResult("parameter sizes are correct", Test_CalcParamSizes); - LogTestResult("group/field parameters can be generated", Test_GenerateGroupParams); - LogTestResult("parameter generation is correct", Test_ParamGen); - LogTestResult("coins can be minted", Test_MintCoin); - LogTestResult("the accumulator works", Test_Accumulator); - LogTestResult("the commitment equality PoK works", Test_EqualityPoK); - LogTestResult("a minted coin can be spent", Test_MintAndSpend); - - printf("\nAverage coin size is %d bytes.\n", gCoinSize); - printf("Serial number size is %d bytes.\n", gSerialNumberSize); - printf("Spend proof size is %d bytes.\n", gProofSize); - - // Summarize test results - if (gSuccessfulTests < gNumTests) { - printf("\nERROR: SOME TESTS FAILED\n"); - } - - // Clear any generated coins - for (uint32_t i = 0; i < TESTS_COINS_TO_ACCUMULATE; i++) { - delete gCoins[i]; - } - - printf("\n%d out of %d tests passed.\n\n", gSuccessfulTests, gNumTests); - delete g_Params; -} diff --git a/src/zerocoin/ZeroTest.h b/src/zerocoin/ZeroTest.h deleted file mode 100644 index 36ab6b7..0000000 --- a/src/zerocoin/ZeroTest.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef ZEROTEST_H_ -#define ZEROTEST_H_ - -void Test_RunAllTests(); - -#endif diff --git a/src/zerocoin/Zerocoin.h b/src/zerocoin/Zerocoin.h deleted file mode 100644 index 7672750..0000000 --- a/src/zerocoin/Zerocoin.h +++ /dev/null @@ -1,61 +0,0 @@ -/** -* @file Zerocoin.h -* -* @brief Exceptions and constants for Zerocoin -* -* @author Ian Miers, Christina Garman and Matthew Green -* @date June 2013 -* -* @copyright Copyright 2013 Ian Miers, Christina Garman and Matthew Green -* @license This project is released under the MIT license. -**/ - -#ifndef ZEROCOIN_H_ -#define ZEROCOIN_H_ - -#include - -#define ZEROCOIN_DEFAULT_SECURITYLEVEL 80 -#define ZEROCOIN_MIN_SECURITY_LEVEL 80 -#define ZEROCOIN_MAX_SECURITY_LEVEL 80 -#define ACCPROOF_KPRIME 160 -#define ACCPROOF_KDPRIME 128 -#define MAX_COINMINT_ATTEMPTS 10000 -#define ZEROCOIN_MINT_PRIME_PARAM 20 -#define ZEROCOIN_VERSION_STRING "0.11" -#define ZEROCOIN_VERSION_INT 11 -#define ZEROCOIN_PROTOCOL_VERSION "1" -#define HASH_OUTPUT_BITS 256 -#define ZEROCOIN_COMMITMENT_EQUALITY_PROOF "COMMITMENT_EQUALITY_PROOF" -#define ZEROCOIN_ACCUMULATOR_PROOF "ACCUMULATOR_PROOF" -#define ZEROCOIN_SERIALNUMBER_PROOF "SERIALNUMBER_PROOF" - -// Activate multithreaded mode for proof verification - -//#define ZEROCOIN_THREADING 1 - -// Uses a fast technique for coin generation. Could be more vulnerable -// to timing attacks. Turn off if an attacker can measure coin minting time. -#define ZEROCOIN_FAST_MINT 1 - -// Errors thrown by the Zerocoin library - -class ZerocoinException : public std::runtime_error -{ -public: - explicit ZerocoinException(const std::string& str) : std::runtime_error(str) {} -}; - -#include "../serialize.h" -#include "../bignum.h" -#include "../util.h" -#include "Params.h" -#include "Coin.h" -#include "Commitment.h" -#include "Accumulator.h" -#include "AccumulatorProofOfKnowledge.h" -#include "CoinSpend.h" -#include "SerialNumberSignatureOfKnowledge.h" -#include "ParamGeneration.h" - -#endif /* ZEROCOIN_H_ */